src/jsdoc/PackerRun.vala
[roojspacker] / src / 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   valac  --vapidir=/usr/share/vala/vapi 
8      --vapidir=/usr/share/vala/vapi 
9     --vapidir=/usr/share/vala-0.30/vapi 
10         --thread  -g  
11       JSDOC/Lang.vala JSDOC/TextStream.vala JSDOC/TokenReader.vala JSDOC/Token.vala JSDOC/TokenStream.vala JSDOC/Packer.vala 
12       JSDOC/Collapse.vala JSDOC/ScopeParser.vala JSDOC/Scope.vala JSDOC/Identifier.vala JSDOC/CompressWhite.vala 
13        JSDOC/PackerRun.vala --pkg glib-2.0 --pkg gee-1.0 --pkg gio-2.0 --pkg posix -o /tmp/jspack --target-glib=2.32  -X -lm
14
15   
16 */
17
18 namespace JSDOC
19 {
20         // --------------- <<<<<<< <MAIN HERE....
21         
22
23         class PackerRun : Application  
24         {
25                 public static string opt_target = null;
26                 public static string opt_debug_target = null;
27                 public static string opt_tmpdir = null;
28                 public static string opt_basedir = null;
29                                 
30                 [CCode (array_length = false, array_null_terminated = true)]
31                 private static string[]? opt_files = null;
32                 [CCode (array_length = false, array_null_terminated = true)]
33                 private static string[]? opt_files_from = null;
34                 public static bool opt_debug = false;
35                 public static bool opt_skip_scope = false;
36
37                 public static bool opt_keep_whitespace = false; 
38                 public static bool opt_dump_tokens = false;     
39
40                 
41                 const OptionEntry[] options = {
42                 
43                         { "jsfile", 'f', 0, OptionArg.FILENAME_ARRAY, ref opt_files ,"add a file to compile", null },
44                         { "target", 't', 0, OptionArg.STRING, ref opt_target, "Target File to write (eg. roojs.js)", null },
45                         { "debug-target", 'T', 0, OptionArg.STRING, ref opt_debug_target, "Target File to write debug code (eg. roojs-debug.js)", null },
46                         { "tmpdir", 'm', 0, OptionArg.STRING, ref opt_tmpdir, "Temporary Directory to use (defaults to /tmp)", null },
47                         { "basedir", 'b', 0, OptionArg.STRING, ref opt_basedir, "Base directory (where the files listed in index files are located.)", null },
48
49                         { "index-files", 'i', 0, OptionArg.FILENAME_ARRAY, ref opt_files_from ,"files that contain listing of files to compile", null },                 
50                         { "keep-whitespace", 'w', 0, OptionArg.NONE, ref opt_keep_whitespace, "Keep whitespace", null },
51                         { "skip-scope", 's', 0, OptionArg.NONE, ref opt_skip_scope, "Skip scope parsing and variable replacement", null },
52                         { "debug", 0, 0, OptionArg.NONE, ref opt_debug, "Show debug messages", null },
53                         { "dump-tokens", 'k', 0, OptionArg.NONE, ref opt_dump_tokens, "Dump the tokens from a file", null },
54                         // fixme -- keepwhite.. cleanup 
55                         
56                         { null }
57                 };
58                 public static int main(string[] args) 
59                 {
60                         foreach(var a in args) {
61                                 debug("ARG: %s\n", a);
62                         }
63                         
64                         var opt_context = new OptionContext ("JSDOC Packer");
65                         
66                                 try {
67                                         opt_context.set_help_enabled (true);
68                                         opt_context.add_main_entries (options, null);
69                                         if (!opt_context.parse ( ref args)) {
70                                                 print("options parse error");
71                                                 GLib.Process.exit(Posix.EXIT_FAILURE);
72                                         }
73
74                                 
75                                          
76                                 
77                                 } catch (OptionError e) {
78                                         stdout.printf ("error: %s\n", e.message);
79                                         stdout.printf ("Run '%s --help' to see a full list of available command line options.\n %s", 
80                                                                  args[0], opt_context.get_help(true,null));
81                                         GLib.Process.exit(Posix.EXIT_FAILURE);
82                                          
83                                 }
84                 
85                         new PackerRun(args);
86                         return 0;
87                 }
88
89
90         
91                 public PackerRun (string[] args)
92                 {
93                 
94                         Object(
95                             application_id: "org.roojs.jsdoc.packerrun",
96                                 flags: ApplicationFlags.HANDLES_COMMAND_LINE 
97                         );
98                                          
99                          
100                         
101                         // what's required...
102                         if (opt_debug) {
103                                 GLib.Log.set_handler(null, 
104                                         GLib.LogLevelFlags.LEVEL_DEBUG | GLib.LogLevelFlags.LEVEL_WARNING, 
105                                         (dom, lvl, msg) => {
106                                         print("%s: %s\n", dom, msg);
107                                 });
108                         }
109                         
110                         // now run the Packer...
111                         var p = new Packer(
112                                         opt_target == null ? "" : opt_target ,
113                                         opt_debug_target == null ? "" :  opt_debug_target 
114                                 );
115                         p.keepWhite = opt_keep_whitespace;
116                         p.skipScope = opt_skip_scope;
117                         
118                         // set the base directory...
119                         var curdir = Environment.get_current_dir() + Path.DIR_SEPARATOR_S;
120                         if (opt_basedir == null) {
121                                 p.baseDir = curdir;
122                         } else if (opt_basedir[0] == '/') {     
123                                 p.baseDir = opt_basedir;
124                         } else {
125                                 p.baseDir = curdir + opt_basedir;
126                         }
127                         // suffix a slash..
128                         if (p.baseDir[p.baseDir.length-1].to_string() != Path.DIR_SEPARATOR_S) {
129                                 p.baseDir += Path.DIR_SEPARATOR_S;
130                         }
131                         
132                         print("BaseDir = '%s' : opt_basedir ='%s'\n", p.baseDir, opt_basedir);
133                         
134                         
135                         if (opt_files == null && opt_files_from == null) {
136                                 GLib.error("You must list some files with -f or -i to compile - see --help for more details");
137                                 GLib.Process.exit(1);
138                         }
139                         
140                         
141                         if (opt_files != null) {
142                          
143                                 foreach (var  f in opt_files) {
144                                         GLib.debug("Adding File %s", f);
145                                         p.loadFile(f);
146                                 }
147                         }  
148                         if (opt_files_from != null) {
149                          
150                                 foreach (var  f in opt_files_from) {
151                                         GLib.debug("Adding File %s", f);
152                                         p.loadSourceIndex(f);
153                                 }
154                         }  
155                         
156                         
157                         
158                         p.pack();
159                 }        
160                 
161         }
162         
163 }