Query serving error report improvement.
[scratchy.git] / burrower.scm
index 867a289..581ea9c 100644 (file)
@@ -82,7 +82,7 @@
      ((or (= (string-length l) 0) (string-suffix? "/" l)) 1)
      ((has-suffix? l ".txt" ".org" ".md") 0)
      ((has-suffix? l ".png" ".jpg" ".gif" ".bmp" ".tif" ".tga") 'I)
-     ((has-suffix? l "?") 7)
+     ((has-suffix? l "?.scm") 7)
      (else 9))))
 
 
         (error "File not found." file-name))))
 
 (define (serve-query selector arguments remote-ip config)
-  (let ((file-name (make-pathname (config-root-dir config)
-                                  (conc (string-chomp selector "?") ".scm"))))
+  (let ((file-name (make-pathname (config-root-dir config) selector)))
     (if (and (regular-file? file-name)
              (= (length arguments) 1))
         (with-input-from-file file-name
               (lambda ()
                 (apply (eval (read))
                        (list (car arguments) remote-ip)))))))
-        (error "Invalid query."))))
+        (error "Invalid query." selector arguments))))
 
 
 ;;; Index rendering
    dir-selector config
    (lambda ()
      (let-values (((in-port out-port id) (process command)))
-       (serve-info-records (string-chomp (read-string #f in-port) "\n"))))))
+       (let ((string (read-string #f in-port)))
+         (if (and (not (eof-object? string))
+                  (> (string-length string) 0))
+             (serve-info-records (string-chomp string "\n"))))))))
 
 (define (serve-expression expression dir-selector config)
   (with-selector-dir
 (define (with-current-working-directory directory thunk)
   (let ((old-wd (current-directory))
         (result 'none))
-    (change-directory directory)
-    (set! result (thunk))
-    (change-directory old-wd)
-    result))
+    (condition-case
+        (begin
+          (change-directory directory)
+          (set! result (thunk))
+          (change-directory old-wd)
+          result)
+      (o (exn)
+         (change-directory old-wd)
+         (signal o)))))
 
 (define (with-selector-dir selector config thunk)
   (with-current-working-directory