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
10         class PackerRun : Application  
11         {
12                 const OptionEntry[] options = {
13                 
14                         
15                         { "target", 0, 0, OptionArg.STRING, ref opt_target, "Target File to write (eg. roojs.js)", null },
16                         { "tmpdir", 0, 0, OptionArg.STRING, ref opt_tmpdir, "Temporary Directory to use", null },
17                         { "file", 0, 0, OptionArg.STRING, ref opt_files ,"add a file to compile", null },
18                         { "files-from", 0, 0, OptionArg.STRING, ref opt_files_from ,"a text file listing files to compile", null },              
19  
20                         { "debug", 0, 0, OptionArg.NONE, ref opt_debug, "Show debug messages", null },
21                         { null }
22                 };
23                 public static string opt_target;
24                 public static string opt_tmpdir;
25                 
26                 
27                 public static string[] opt_files;
28                 public static string opt_files_from;
29                 
30                 
31
32         
33                 public PackerRun (string[] args)
34                 {
35                 
36                         Object(
37                             application_id: "org.roojs.jsdoc.packerrun",
38                                 flags: ApplicationFlags.FLAGS_NONE
39                         );
40                                          
41                          
42                         var opt_context = new OptionContext ("JSDOC Packer");
43                         
44                         try {
45                                 opt_context.set_help_enabled (true);
46                                 opt_context.add_main_entries (options, null);
47                                 opt_context.parse (ref args);
48                                  
49                                 
50                         } catch (OptionError e) {
51                                 stdout.printf ("error: %s\n", e.message);
52                                 stdout.printf ("Run '%s --help' to see a full list of available command line options.\n %s", 
53                                                          args[0], opt_context.get_help(true,null));
54                                 GLib.Process.exit(Posix.EXIT_FAILURE);
55                                  
56                         }
57                         
58                         // now run the Packer...
59                         
60                         
61                 }       
62                 
63                 
64         }
65         
66 }