JSDOC/PackerRun.vala
[gnome.introspection-doc-generator] / JSDOC / PackerRun.vala
1
2 /** 
3   the application
4   -- in theory this code  can be used as a library... but this is the standard command line version...
5 */
6
7 namespace JSDOC
8 {
9         // --------------- <<<<<<< <MAIN HERE....
10         
11
12         class PackerRun : Application  
13         {
14                 public static string opt_target = "";
15                 public static string opt_debug_target = "";
16                 public static string opt_tmpdir = "";
17                 
18                 
19                 private static string[]? opt_files = null;
20                 private static string[]? opt_files_from = null;
21                 public static bool opt_debug = false;
22                 
23
24                 
25                 const OptionEntry[] options = {
26                 
27                         { "jsfile", 'f', 0, OptionArg.FILENAME_ARRAY, ref opt_files ,"add a file to compile", null },
28                 //      { "target", 't', 0, OptionArg.STRING, ref opt_target, "Target File to write (eg. roojs.js)", null },
29                 //      { "debug-target", 'T', 0, OptionArg.STRING, ref opt_debug_target, "Target File to write debug code (eg. roojs-debug.js)", null },
30         //              { "tmpdir", 'm', 0, OptionArg.STRING, ref opt_tmpdir, "Temporary Directory to use", null },
31
32 //                      { "index-files", 'i', 0, OptionArg.FILENAME_ARRAY, ref opt_files_from ,"files that contain listing of files to compile", null },                 
33  
34                         { "debug", 0, 0, OptionArg.NONE, ref opt_debug, "Show debug messages", null },
35                         // fixme -- keepwhite.. cleanup 
36                         
37                         { null }
38                 };
39                 public static int main(string[] args) 
40                 {
41                         var opt_context = new OptionContext ("JSDOC Packer");
42                         
43                                 try {
44                                         opt_context.set_help_enabled (true);
45                                         opt_context.add_main_entries (options, null);
46                                         if (!opt_context.parse ( ref args)) {
47                                                 print("options parse error");
48                                                 GLib.Process.exit(Posix.EXIT_FAILURE);
49                                         }
50
51                                 
52                                          
53                                 
54                                 } catch (OptionError e) {
55                                         stdout.printf ("error: %s\n", e.message);
56                                         stdout.printf ("Run '%s --help' to see a full list of available command line options.\n %s", 
57                                                                  args[0], opt_context.get_help(true,null));
58                                         GLib.Process.exit(Posix.EXIT_FAILURE);
59                                          
60                                 }
61                 
62                         new PackerRun(args);
63                         return 0;
64                 }
65
66
67         
68                 public PackerRun (string[] args)
69                 {
70                 
71                         Object(
72                             application_id: "org.roojs.jsdoc.packerrun",
73                                 flags: ApplicationFlags.HANDLES_COMMAND_LINE 
74                         );
75                                          
76                          
77                         
78                         // what's required...
79                         if (opt_debug) {
80                                 GLib.Log.set_handler(null, 
81                                         GLib.LogLevelFlags.LEVEL_DEBUG | GLib.LogLevelFlags.LEVEL_WARNING, 
82                                         (dom, lvl, msg) => {
83                                         print("%s: %s\n", dom, msg);
84                                 });
85                         }
86                         
87                         // now run the Packer...
88                         var p = new Packer(opt_target, opt_debug_target);
89                         if (opt_files != null) {
90                                 GLib.debug("Adding File %s", string.join(", ",opt_files));
91                                 foreach (string f in opt_files) {
92                                         GLib.debug("Adding File %s", f);
93                                         p.loadFile(f);
94                                 }
95                         } else {
96                                 GLib.debug("No files added");
97                         }
98                         p.pack();
99                 }        
100                 
101         }
102         
103 }