JSDOC/Options.js
[gnome.introspection-doc-generator] / JSDOC / Options.js
index dc031f1..40bf757 100644 (file)
@@ -3,27 +3,59 @@
  * Options management...
  */
 XObject = import.XObject.XObject;
-XObject = import.File.File;
+File = import.File.File;
+
 Options = {
     
-    "files" : [],  // was _
-    "directory" : '',   // was d.
-    "conf" : '',       // was c.
+    argTypes : {
+        "src"           :  "source directory (either absolute - starts with "/" or relative " + 
+                            "- without, in which case it's added to baseDir"
+        "baseDir"       :  'Base Directory (root directory of code)',
+        "target"        :  'Target Directory (where html files go)',
+        "cacheDirectory": 'Cached Files Directory',
+        "conf"          : 'Read From a Configuration file',       // was c. - configuration file.. - parsed with JSON.parse
+        "template"      : 'Template Directory',   // was t.
+        // "recurse": false,   // was r. - not supported..
+        "ext"           :  'Extension of code files to read (normally js)',   // was x.
+        "publishExt"    : 'Extension of html files to write (normally html)',
+        //"private": '',   // was p
+        //"allfunctions": '',   // was a
+        //"encoding": '',   // was e.
+        //"nocode": '',  // was n
+        //"out": '',   // was o.
+        //"suppress": '',  // was s ??? used?
+        "outputSource" : 'Output the Source code to symbols/src/* (boolean)',
+        //"testmode": '',  // was t
+        "help"          : 'Show help',   // was h
+        "verbose"       : 'Show verbose messages',   // was v
+        //"disablecache": '',   // was C -- not needed? - see if cacheDirectory was set..
+        //"define" : [],   // was D.
+        //"handler" : [],  // was H -- not supported..
+    }
+    
+    // and now the defaults.. (which type can be infered from..)
+    
+    "baseDir" :  '',  // base directory - 
+    "target" : '',   // was d. ?? source directory (needed to put temporary files..)
+    "cacheDirectory" : '',
+    "conf" : '',       // was c. - configuration file.. - parsed with JSON.parse
     "template": '',   // was t.
-    "recurse": '',   // was r.
-    "ext": '',   // was x.
+    // "recurse": false,   // was r. - not supported..
+    "ext": 'js',   // was x.
+    "publishExt" : 'html',
     "private": '',   // was p
     "allfunctions": '',   // was a
     "encoding": '',   // was e.
     "nocode": '',  // was n
     "out": '',   // was o.
-    "suppress": '',  // was s
+    "suppress": '',  // was s ??? used?
+    "outputSource" : true,
     "testmode": '',  // was t
-    "help": '',   // was h
+    "help": false,   // was h;se
     "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,9 +71,98 @@ Options = {
     },
     init : function()
     {
-        Log.verbose = this.verbose;
-        if (Options.conf) {
-            
+        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.target) {
+            throw {
+                name: "ArgumentError", 
+                message: "No directory specified" 
+            };
+        }
+        f (!this.baseDir) {
+            throw {
+                name: "ArgumentError", 
+                message: "No baseDir specified" 
+            };
+        }
+        
+        // should cacheDirectory be a subdirectory of target??
+        // if not set..
+        if (!this.cacheDirectory) {
+            throw {
+                name: "ArgumentError", 
+                message: "No cacheDirectory specified" 
+            };
+        }
+        
+    },
+    /** 
+     *  this might be nice as a standard bit of code..
+     */
+       
+    parseArgv : function() 
+    {
+        
+        var args = Array.prototype.slice.call(Seed.argv);
+        args.shift(); //seed
+        args.shift(); // pack.js
+        
+        
+        
+        
+        
+
+        for(var i =0; i < args.length;i++) {
+            if (!args[i].match(/\-\-[a-z+]$/)) {
+                throw {
+                    name: "ArgumentError", 
+                    message: "Unknown argument: " + args[i] 
+                };
+            }
+            var a = arg[i].substring(2);
+            if (typeof(argTypes[a]) == 'undefined') {
+                throw {
+                    name: "ArgumentError", 
+                    message: "Unknown argument: " + args[i] 
+                };
+            }
+            // type!!?!?
+            if (typeof(this[a]) == 'string') {
+                this[a] = args[i+1];
+                i++;
+                continue;
+            }
+            if (typeof(this[a]) == 'boolean') {
+                if (['false', 'true'].indexOf(args[i+1]) < 0) {
+                    throw {
+                        name: "ArgumentError", 
+                        message: "Unknown value for : " + args[i] + ' : ' +  args[i+1] 
+                    };
+                }
+                this[a] = args[i+1] == 'true';
+                i++;
+                continue;
+            }
+            
+            
+    
 }
\ No newline at end of file