JSDOC/Options.js
[gnome.introspection-doc-generator] / JSDOC / Options.js
index 0279355..fa0bef1 100644 (file)
@@ -2,15 +2,17 @@
 /**
  * Options management...
  */
-
+XObject = import.XObject.XObject;
+File = import.File.File;
 
 Options = {
     
-    
-    "directory" : '',   // was d.
+    "src" : [],  // array of source directories..
+    "directory" : '',   // was d. ?? source directory (needed to put temporary files..)
+    "cacheDirectory" : '',
     "conf" : '',       // was c.
     "template": '',   // was t.
-    "recurse": '',   // was r.
+    // "recurse": false,   // was r. - not supported..
     "ext": '',   // was x.
     "private": '',   // was p
     "allfunctions": '',   // was a
@@ -23,7 +25,7 @@ Options = {
     "verbose": '',   // was v
     "disablecache": '',   // was C
     "define" : [],   // was D.
-    "handler" : [],  // was H
+    "handler" : [],  // was H -- not supported..
     LOG : {
         warn : function(str) {
             print("Warn: " +str );
@@ -39,7 +41,41 @@ Options = {
     },
     init : function()
     {
-        Log.verbose = this.verbose;
+        this.LOG.verbose = this.verbose;
+        
+        
+        if (this.conf) {
+            XObject.extend(this, JSON.parse(File.read(this.conf)));;
+        }
+        // help ?? -- usage..
+        
+        if (!this.src.length) {
+            throw {
+                name: "ArgumentError", 
+                message: "No source directories specified" 
+            };
+        }
+        if (!this.template) {
+            throw {
+                name: "ArgumentError", 
+                message: "No template specified" 
+            };
+        }
+         
+        if (!this.directory) {
+            throw {
+                name: "ArgumentError", 
+                message: "No directory specified" 
+            };
+        }
+        // should cacheDirectory be a subdirectory of target??
+        // if not set..
+        if (!this.cacheDirectory) {
+            throw {
+                name: "ArgumentError", 
+                message: "No cacheDirectory specified" 
+            };
+        }
         
     }
 }
\ No newline at end of file