Add long line check
authorFrank Duncan <frank@kank.net>
Sat, 11 Jul 2015 01:11:51 +0000 (20:11 -0500)
committerFrank Duncan <frank@kank.net>
Sat, 11 Jul 2015 01:11:51 +0000 (20:11 -0500)
resources/good.lisp [new file with mode: 0644]
resources/longline.lisp [new file with mode: 0644]
src/main/checker.lisp

diff --git a/resources/good.lisp b/resources/good.lisp
new file mode 100644 (file)
index 0000000..3328e2e
--- /dev/null
@@ -0,0 +1,8 @@
+(in-package #:nothing)
+
+(defun hello-world (a b c)
+ (progn
+  (with-open-file (str "increasinglylongfilenamesfailme.dat" :direction :input :if-does-not-exist :create)
+   (when
+    (read-line str)
+    (format t "This file had some things in int, yay!~%")))))
diff --git a/resources/longline.lisp b/resources/longline.lisp
new file mode 100644 (file)
index 0000000..9ad1fbc
--- /dev/null
@@ -0,0 +1,3 @@
+(in-package #:nothing)
+
+(defun hello-world (a b c) (progn (with-open-file (str "increasinglylongfilenamesfailme.dat" :direction :input :if-does-not-exist :create) (when (read-line str) (format t "This file had some things in int, yay!~%")))))
index 769ec3f4c98886625d6c182ef2d1371424447b18..2ccf7f427cf40e50160b6a75020b8ede83bd3a75 100644 (file)
@@ -4,11 +4,11 @@
 ; - Elements in each form must be indented the same amount
 ; - No form longer than 50 lines
 ; - Top level multiline forms must be separated by exactly one space
-; - No line longer than 120 characters
+; * No line longer than 120 characters
 ; - No use of unexported symbols in other packages
 ; - No tabs
 ; - Only one space between elements in a form on a single line
-; - in-package must be first line in file unless file is package.lisp
+; * in-package must be first line in file unless file is package.lisp
 ; - No whitespace only lines
 ; - No empty lines at end of file
 ;
 (defvar *col-no* nil)
 (defvar *evaluators* nil)
 
+(defparameter *possible-states*
+ '(:begin ; start of file
+   :normal ; normal processing
+  ))
+
+
 (defun set-state (state)
- (when (not (find state (list :begin ; start of file
-                              :normal
-                        )))
+ (when (not (find state *possible-states*))
   (error "Can't set state to ~A" state))
  (setf *state* state)
  nil)
 
 (defmacro defevaluator (state match func)
+ (when (not (find state *possible-states*)) (error "~A is an invalid state" state))
  (let
   ((scanner (gensym)))
  `(let
     *evaluators*))))
 
 (defun evaluate (text)
-; (if (string= "" text)
+ (if (string= "" text)
+     (let*
+      ((evaluator (find-if (lambda (f) (funcall f *state* :eof)) *evaluators* :from-end t :key #'car))
+       (problem (when evaluator (funcall (third evaluator)))))
+      (when problem (error (make-condition 'check-failure :msg problem :line-no *line-no* :col-no *col-no*))))
      (let
       ((evaluator (find-if (lambda (f) (funcall f *state* text)) *evaluators* :from-end t :key #'car)))
       (when (not evaluator) (error (make-condition 'check-failure :msg (format nil "Can't check in state ~S: ~S..." *state* (subseq text 0 (min (length text) 10))) :line-no *line-no* :col-no *col-no*)))
@@ -65,8 +74,8 @@
        (let
         ((length-of-match (funcall (cadr evaluator) text)))
         (incf *col-no* length-of-match)
-        (when (< 120 *col-no*) (error (make-condition 'check-failure :msg "Line longer than 120 characters" :line-no *line-no* :col-no *col-no*)))
-        (evaluate (subseq text length-of-match))))));)
+        (when (< 120 *col-no*) (error (make-condition 'check-failure :msg "Line longer than 120 characters" :line-no *line-no* :col-no 0)))
+        (evaluate (subseq text length-of-match)))))))
 
 (defun slurp-file (filename &key (element-type 'character) (sequence-type 'string))
  (with-open-file (str filename :element-type element-type)
  (set-state :begin)
  (setf *line-no* 0)
  (setf *col-no* 0)
+ (format t "~%File: ~A~%" file)
  (handler-case
   (progn (evaluate (slurp-file file)) t)
   (check-failure (cf)
-   (format t "In file ~A, Had an error: ~S at ~A:~A~%" (check-failure-msg cf) (check-failure-line-no cf) (check-failure-col-no cf))
+   (format t " - Had an error: ~S at ~A:~A~%" (check-failure-msg cf) (check-failure-line-no cf) (check-failure-col-no cf))
    nil)))
 
 (defun check-directory (dir)
  (every #'identity (mapcar #'check-file (directory (format nil "~A/**/*.lisp" dir)))))
 
+; These are in reverse order
 (progn
  (setf *evaluators* nil)
  (defevaluator :begin "\\(in-package[^\\)]*\\)"
    (set-state :normal) nil))
  (defevaluator :begin ".*"
   (lambda ()
-   "Must begin with in-package form")))
+   "Must begin with in-package form"))
+ (defevaluator :normal "\\n"
+  (lambda ()
+   (incf *line-no*)
+   (setf *col-no* 0)
+   nil))
+ (defevaluator :normal "." (constantly nil))
+ )