JSDOC/PackerRun.vala
[gnome.introspection-doc-generator] / JSDOC / PackerRun.vala
index e4e8f17..3b4d329 100644 (file)
@@ -6,35 +6,45 @@
 
 namespace JSDOC
 {
+       // --------------- <<<<<<< <MAIN HERE....
+       public static int main(string[] args) 
+       {
+               new PackerRun(args);
+               return 0;
+       }
 
-       class PackerRun : Gtk.Application  
+
+       class PackerRun : Application  
        {
                const OptionEntry[] options = {
                
                        
-                       { "project", 0, 0, OptionArg.STRING, ref opt_compile_project, "Compile a project", null },
-                       { "target", 0, 0, OptionArg.STRING, ref opt_compile_target, "Target to build", null },
-                       { "skip-file", 0, 0, OptionArg.STRING, ref opt_compile_skip ,"For test compiles do not add this (usually used in conjunction with add-file ", null },
-                       { "add-file", 0, 0, OptionArg.STRING, ref opt_compile_add, "Add this file to compile list", null },
-                       { "output", 0, 0, OptionArg.STRING, ref opt_compile_output, "output binary file path", null },
+                       { "target", 0, 0, OptionArg.STRING, ref opt_target, "Target File to write (eg. roojs.js)", null },
+                       { "debug-target", 0, 0, OptionArg.STRING, ref opt_debug_target, "Target File to write debug code (eg. roojs-debug.js)", null },
+                       { "tmpdir", 0, 0, OptionArg.STRING, ref opt_tmpdir, "Temporary Directory to use", null },
+                       { "file", 0, 0, OptionArg.STRING_ARRAY, ref opt_files ,"add a file to compile", null },
+                       { "index-files", 0, 0, OptionArg.STRING_ARRAY, ref opt_files_from ,"files that contain listing of files to compile", null },             
                        { "debug", 0, 0, OptionArg.NONE, ref opt_debug, "Show debug messages", null },
+                       // fixme -- keepwhite.. cleanup 
+                       
                        { null }
                };
-               public static string opt_compile_project;
-               public static string opt_compile_target;
-               public static string opt_compile_skip;
-               public static string opt_compile_add;
-               public static string opt_compile_output;                
+               public static string opt_target = "";
+               public static string opt_debug_target = "";
+               public static string opt_tmpdir = "";
+               
+               
+               public static string[] opt_files = {};
+               public static string opt_files_from = "";
                public static bool opt_debug = false;
                
-               public static string _self;
+
+
        
                public PackerRun (string[] args)
                {
                
-                       _self = FileUtils.read_link("/proc/self/exe");
-                       GLib.debug("SELF = %s", _self);
-                       
                        Object(
                            application_id: "org.roojs.jsdoc.packerrun",
                                flags: ApplicationFlags.FLAGS_NONE
@@ -56,12 +66,16 @@ namespace JSDOC
                                GLib.Process.exit(Posix.EXIT_FAILURE);
                                 
                        }
-                       
-                       // now run the Packer...
-                       
+                       // what's required...
                        
                        
-               
+                       // now run the Packer...
+                       var p = new Packer(opt_target, opt_debug_target);
+                       if (opt_files.length > 0) {
+                               p.loadFiles(opt_files);
+                       }
+                       p.pack();
+               }        
                
        }