]> asedeno.scripts.mit.edu Git - cl-protobufs.git/blobdiff - asdf-support.lisp
Merge branch 'extentions-no-required-fields'
[cl-protobufs.git] / asdf-support.lisp
index 9e329d68fe1503d151a84eb3f1b8440c27741edc..2087836d4cb04b0af8a5474bbd40e43cc45dae6d 100644 (file)
@@ -67,7 +67,7 @@
     ;; Path was specified with ':proto-pathname'
     (subpathname (component-pathname (component-parent component))
                  (proto-relative-pathname component)
-                 :type "proto")
+                 :type (source-file-explicit-type component))
     ;; No ':proto-pathname', the path of the protobuf file
     ;; defaults to the component-pathname, with its automatic type "proto"
     (component-pathname component)))
          (proto-impl:*protobuf-output-path* output))
     (dolist (path paths (error 'compile-failed
                           :component component :operation op))
-      (let ((proto (make-pathname :type "proto" :defaults (merge-pathnames* path (pathname input)))))
+      (let ((proto (merge-pathnames* path input)))
         (destructuring-bind (lisp imports)
             (output-files op component)
           (when (probe-file proto)
     (destructuring-bind (fasl proto-imports)
         (input-files op component)
       (proto-impl:process-imports-from-file proto-imports)
-      (load fasl))))
+      (let ((proto-impl:*protobuf-pathname* (protobuf-input-file component)))
+        (load fasl)))))
 
 (defmethod operation-description ((op compile-op) (component protobuf-file))
   (format nil (compatfmt "~@<compiling ~3i~_~A~@:>")
 
 ;; Process 'import' lines
 (defun process-imports (schema imports)
-  "Imports all of the files given by 'imports'.
-   If the file is a .proto file, it first parses it and writes a .lisp file.
-   The .lisp file is the compiled and loaded."
+  "Processes the imports for a schema.
+   If the import is a symbol, see if that resolves to an existing schema.
+   If the import is a file (string, pathname), parse it as a .proto in the usual manner."
   (dolist (import imports)
-    (block import-one
-      (let* ((import      (pathname import))
-             (import-name (pathname-name import))
-             (proto-file  (do-process-import import import-name))
-             (imported    (find-schema proto-file)))
-        (when imported
-          (appendf (proto-imported-schemas schema) (list imported)))
-        (return-from import-one)))))
+    (let ((imported-schema (find-schema
+                            (etypecase import
+                              ((or string pathname)
+                               (do-process-import (pathname import)))
+                              (symbol import)))))
+      (if imported-schema
+        (appendf (proto-imported-schemas schema) (list imported-schema))
+        (error "Could not import ~S" import)))))
 
 (defun process-imports-from-file (imports-file)
   (when (probe-file imports-file)
                                     :element-type 'character)
                      (with-standard-io-syntax (read stream)))))
       (dolist (import imports)
-        (let* ((import      (pathname import))
-               (import-name (pathname-name import)))
-          (do-process-import import import-name))))))
+        (do-process-import (pathname import))))))
 
-(defun do-process-import (import import-name
+(defun do-process-import (import
                           &key (search-path *protobuf-search-path*)
                                (output-path *protobuf-output-path*))
-  (dolist (path search-path (error "Could not import ~S" import))
-    (let* ((base-path  (asdf::merge-pathnames* import path))
-           (proto-file (make-pathname :name import-name :type "proto"
-                                      :defaults base-path))
+  (dolist (path (or search-path
+                    ;; Fallback in case someone is playing with 'parse-schema' by hand
+                    (and (asdf::absolute-pathname-p import) (list (directory-namestring import))))
+           (error "Could not import ~S" import))
+    (let* ((proto-file (asdf::merge-pathnames* import path))
            (lisp-file (if output-path
                         (asdf::lispize-pathname
-                         (make-pathname :name (asdf::protobuf-mangle-name base-path)
+                         (make-pathname :name (asdf::protobuf-mangle-name proto-file)
                                         :directory (pathname-directory output-path)))
-                        (asdf::protobuf-lispize-pathname base-path)))
+                        (asdf::protobuf-lispize-pathname proto-file)))
            (imports-file (make-pathname :type "proto-imports"
                                         :defaults lisp-file))
            (fasl-file  (compile-file-pathname lisp-file))
         (when (find-schema proto-file)
           (return proto-file))
         (let ((*protobuf-pathname* proto-file))
-          (when (string= (pathname-type base-path) "proto")
-            ;; The user asked to import a .proto file
-            ;; If there's no .lisp file or an older .lisp file, or no
-            ;; .proto-imports file or an older .proto-imports file parse
-            ;; the .proto file now
-            ;; If we did not parse the .proto file, process the generated
-            ;; .proto-imports file now.
-            (cond ((not proto-date)
-                   (warn "Could not find the .proto file to be imported: ~A" proto-file))
-                  ((or (not (and lisp-date imports-date))
-                       (< lisp-date proto-date)
-                       (< imports-date proto-date))
-                   (parse-protobuf-file proto-file lisp-file imports-file)
-                   (setq lisp-date (file-write-date lisp-file))
-                   (setq imports-date (file-write-date imports-file)))
-                  (t
-                   (process-imports-from-file imports-file))))
+          ;; The user asked to import a .proto file
+          ;; If there's no .lisp file or an older .lisp file, or no
+          ;; .proto-imports file or an older .proto-imports file parse
+          ;; the .proto file now.
+          ;; If we did not parse the .proto file, process the generated
+          ;; .proto-imports file now.
+          (cond ((not proto-date)
+                 (warn "Could not find the .proto file to be imported: ~A" proto-file))
+                ((or (not (and lisp-date imports-date))
+                     (< lisp-date proto-date)
+                     (< imports-date proto-date))
+                 (parse-protobuf-file proto-file lisp-file imports-file)
+                 (setq lisp-date (file-write-date lisp-file))
+                 (setq imports-date (file-write-date imports-file)))
+                (t
+                 (process-imports-from-file imports-file)))
           ;; Compile the .lisp file, if necessary
           (cond ((not lisp-date)
-                 (unless (string= (pathname-type base-path) "proto")
-                   (warn "Could not find the .lisp file to be compiled: ~A" lisp-file)))
+                 (warn "Could not find the .lisp file to be compiled: ~A" lisp-file))
                 (t
                  (when (or (not fasl-date)
                            (< fasl-date lisp-date))
                    (setq fasl-date (file-write-date fasl-file)))))
           ;; Load the .fasl file
           (cond ((not fasl-date)
-                 (unless (string= (pathname-type base-path) "proto")
-                   (warn "Could not find the .fasl file to be loaded: ~A" fasl-file)))
+                 (warn "Could not find the .fasl file to be loaded: ~A" fasl-file))
                 (t
                  (let ((*compile-file-pathname* nil)
                        (*load-pathname* fasl-file))