src/jsdoc/Packer.vala
[roojspacker] / src / jsdoc / Packer.vala
1  
2 /**
3  * @namespace JSDOC
4  * @class  Packer
5  * Create a new packer
6  * 
7  * Use with pack.js 
8  * 
9  * 
10  * Usage:
11  * <code>
12  *
13  
14 var x = new  JSON.Packer(target, debugTarget);
15
16 x.files = an array of files
17 x.srcfiles = array of files (that list other files...) << not supported?
18 x.target = "output.pathname.js"
19 x.debugTarget = "output.pathname.debug.js"
20
21  
22     
23 x.pack();  // writes files  etc..
24     
25  *</code> 
26  *
27  * Notes for improving compacting:
28  *  if you add a jsdoc comment 
29  * <code>
30  * /**
31  *   eval:var:avarname
32  *   eval:var:bvarname
33  *   ....
34  * </code>
35  * directly before an eval statement, it will compress all the code around the eval, 
36  * and not rename the variables 'avarname'
37  * 
38  * Dont try running this on a merged uncompressed large file - it's used to be horrifically slow. not sure about now..
39  * Best to use lot's of small classes, and use it to merge, as it will cache the compaction
40  * 
41  * 
42  * 
43  * Notes for translation
44  *  - translation relies on you using double quotes for strings if they need translating
45  *  - single quoted strings are ignored.
46  * 
47  * Generation of indexFiles
48  *   - translateIndex = the indexfile
49  * 
50  * 
51  * 
52  * 
53
54  */
55 namespace JSDOC 
56 {
57         public errordomain PackerError {
58             ArgumentError
59     }
60
61         public class Packer : Object 
62         {
63                 /**
64                 * @cfg {String} target to write files to - must be full path.
65                 */
66                 string target = "";
67                 GLib.FileOutputStream targetStream = null;
68                 /**
69                  * @cfg {String} debugTarget target to write files debug version to (uncompacted)- must be full path.
70                  */
71                 string targetDebug = "";
72                 
73
74                 GLib.FileOutputStream targetDebugStream  = null;
75                 /**
76                  * @cfg {String} tmpDir  (optional) where to put the temporary files. 
77                  *      if you set this, then files will not be cleaned up
78                  *  
79                  *  at present we need tmpfiles - as we compile multiple files into one.
80                  *  we could do this in memory now, as I suspect vala will not be as bad as javascript for leakage...
81                  *
82                  */
83                 public string tmpDir = "/tmp";  // FIXME??? in ctor?
84         
85         
86                   
87                 /**
88                  * @cfg {Boolean} cleanup  (optional) clean up temp files after done - 
89                  *    Defaults to false if you set tmpDir, otherwise true.
90                  */
91                 public bool cleanup =  false;
92                 
93                 
94                 /**
95                  * @cfg {Boolean} keepWhite (optional) do not remove white space in output.
96                  *    usefull for debugging compressed files.
97                  */
98                 
99                 public bool keepWhite =  false;
100                         
101                 /**
102                  * @cfg {Boolean} skipScope (optional) skip Scope parsing and replacement.
103                  *    usefull for debugging...
104                  */
105                 
106                 public bool skipScope = false;
107                 
108                 
109                 /**
110                  * @cfg {Boolean} dumpTokens (optional) read the first file and dump the tokens.
111                  *    usefull for debugging...
112                  */
113                 
114                 public bool dumpTokens = false;
115                 
116                 // list of files to compile...
117                 Gee.ArrayList<string> files;
118                 
119                 /**
120                 * @cfg activeFile ??? used???
121                 */
122                  
123                 public string activeFile = "";
124                 
125                         
126                 /**
127                 * @cfg baseDir -- prefix the files listed in indexfiles with this.
128                 */
129                  
130                 public string baseDir = "";
131                 
132                 
133                 public  string outstr = ""; // if no target is specified - then this will contain the result
134     
135                 public Packer()
136                 {
137                         
138                         this.files = new Gee.ArrayList<string>();
139                         
140                         new Lang_Class(); ///initilizaze lang..
141                          
142                 }
143                 
144                 public void loadSourceIndexes(Gee.ArrayList<string> indexes)
145                 {
146                         foreach(var f in indexes) {
147                                 this.loadSourceIndex(f);
148                         }
149                 }
150                 
151                 public void loadFiles(string[] fs)
152                 {
153                         // fixme -- prefix baseDir?
154                         foreach(var f in fs) {
155                             GLib.debug("add File: %s", f);
156                                 this.files.add(f); //?? easier way?
157                         }
158                 }
159                 public void loadFile(string f)
160                 {
161                     // fixme -- prefix baseDir?
162                     GLib.debug("add File: %s", f);
163                         this.files.add(f); 
164                         GLib.debug("FILE LEN: %d", this.files.size);
165                 }
166                  
167                 
168                 public string pack(string target, string targetDebug = "")
169                 {
170                     this.target = target;
171                         this.targetDebug  = targetDebug;
172                     
173                     if (this.files.size < 1) {
174                                 throw new PackerError.ArgumentError("No Files loaded before pack() called");
175                         }
176                         if (this.target.length > 0 ) {
177                                 this.targetStream = File.new_for_path(this.target).replace(null, false,FileCreateFlags.NONE);
178                         }
179                         if (this.targetDebug.length > 0 ) {
180                                 this.targetDebugStream = File.new_for_path(this.targetDebug).replace(null, false,FileCreateFlags.NONE);
181                         }
182                         return this.packAll();
183                 }
184                 
185   
186                 
187                 
188    
189                 
190  
191            
192                 /**
193                  * load a dependancy list -f option
194                  * @param {String} srcfile sourcefile to parse
195                  * 
196                  */
197                 
198                 public void loadSourceIndex(string in_srcfile)
199                 {
200                     
201                     var srcfile = in_srcfile;
202                     if (srcfile[0] != '/') {
203                                 srcfile = this.baseDir + in_srcfile;
204                         }
205                     string str;
206                     FileUtils.get_contents(srcfile,out str);
207                     
208                     var lines = str.split("\n");
209                     for(var i =0; i < lines.length;i++) {
210  
211                             var f = lines[i].strip();
212                         if (f.length < 1 ||
213                                 Regex.match_simple ("^/", f) ||
214                                 !Regex.match_simple ("[a-zA-Z]+", f) 
215                         ){
216                                 continue; // blank comment or not starting with a-z
217                         }
218                         
219                         if (Regex.match_simple ("\\.js$", f)) {
220                             this.files.add( f);
221                             // js file..
222                             continue;
223                         }
224                         
225                                 // this maps Roo.bootstrap.XXX to Roo/bootstrap/xxx.js
226                                 // should we prefix? =- or should this be done elsewhere?
227                                 
228                         var add = f.replace(".", "/") + ".js";
229                         
230                         if (add[0] != '/') {
231                                         add = this.baseDir + add;
232                                 }
233                         
234                         if (this.files.contains(add)) {
235                             continue;
236                         }
237                         
238                         
239                         
240                         this.files.add( add );
241                         
242                     }
243                 }
244                 
245     
246                 private string packAll()  // do the packing (run from constructor)
247                 {
248                     
249                     //this.transOrigFile= bpath + '/../lang.en.js'; // needs better naming...
250                     //File.write(this.transfile, "");
251                     if (this.target.length > 0) {
252                         this.targetStream.write("".data);
253                     }
254                     
255                     if (this.targetDebugStream != null) {
256                             this.targetDebugStream.write("".data);
257                     }
258                     
259                     
260                     foreach(var file in this.files) {
261                         
262                         print("reading %s\n",file );
263                         
264                         if (!FileUtils.test (file, FileTest.EXISTS) || FileUtils.test (file, FileTest.IS_DIR)) {
265                             print("SKIP (is not a file) %s\n ", file);
266                             continue;
267                         }
268                        
269                                 var loaded_string = false;
270                                 string file_contents = "";
271                         // debug Target
272                         
273                         if (this.targetDebugStream !=null) {
274                                 
275                                 FileUtils.get_contents(file,out file_contents);
276                             this.targetDebugStream.write(file_contents.data);
277                             loaded_string = false;
278                         }
279                         // it's a good idea to check with 0 compression to see if the code can parse!!
280                         
281                         // debug file..
282                         //File.append(dout, str +"\n"); 
283                         
284                    
285                         
286                         var minfile = this.tmpDir + "/" + file.replace("/", ".");
287                         
288                         
289                         // let's see if we have a min file already?
290                         // this might happen if tmpDir is set .. 
291
292                         
293                         if ( FileUtils.test (minfile, FileTest.EXISTS)) {
294                                  
295                                 var otv = File.new_for_path(file).query_info (FileAttribute.TIME_MODIFIED, 0).get_modification_time();
296                                 var mtv = File.new_for_path(minfile).query_info (FileAttribute.TIME_MODIFIED, 0).get_modification_time();
297                                         
298                                          
299                            // print("%s : compare : Cache file  %s to Orignal Time %s\n", file, mtv.to_iso8601(), otv.to_iso8601());
300                             if (mtv.tv_usec > otv.tv_usec) {
301                                 continue; // file is newer or the same time..
302                                 
303                             }
304                             
305                         }
306                          
307                         print("COMPRESSING to %s\n", minfile);
308                         //var codeComp = pack(str, 10, 0, 0);
309                         if (this.cleanup && FileUtils.test (minfile, FileTest.EXISTS)) {
310                             FileUtils.remove(minfile);
311                         }
312                         if (!loaded_string) {
313                                 FileUtils.get_contents(file,out file_contents);
314                         }
315
316                          this.packFile(file_contents, file, minfile);
317                          
318                       
319                     }
320                     
321                         if (this.dumpTokens) {
322                                  
323                                 GLib.Process.exit(0);
324                         }
325                     print("MERGING SOURCE\n");
326                     
327                     for(var i=0; i < this.files.size; i++)  {
328                         var file = this.files[i];
329                         var minfile = this.tmpDir + "/" + file.replace("/", ".");
330                         
331                         
332                         if ( !FileUtils.test(minfile, FileTest.EXISTS)) {
333                                 print("skipping source %s - does not exist\n", minfile);
334                             continue;
335                         }
336                         string str;
337                         FileUtils.get_contents(minfile, out str);
338                         print("using MIN FILE  %s\n", minfile);
339                         if (str.length > 0) {
340                             if (this.targetStream != null) {
341                                         this.targetStream.write(("// " + 
342                                                 ( (file.length > this.baseDir.length) ? file.substring(this.baseDir.length)  : file ) + 
343                                                 "\n").data); 
344                                         this.targetStream.write((str + "\n").data); 
345
346                             } else {
347                                 this.outstr += "//" + 
348                                         ( (file.length > this.baseDir.length) ? file.substring(this.baseDir.length)  : file ) +  "\n";
349                                 this.outstr += str + "\n";
350                             }
351                             
352                         }
353                         if (this.cleanup) {
354                             FileUtils.remove(minfile);
355                         }
356                         
357                     }
358                     if (this.target.length > 0 ) {
359                             print("Output file: " + this.target);
360                     }
361                     if (this.targetDebug.length > 0) {
362                                  print("Output debug file: %s\n" , this.targetDebug);
363                         }
364             
365                         // OUTPUT should be handled by PackerRun (so that this can be used as a library...)
366                         if (this.outstr.length > 0 ) {
367                 return this.outstr;
368                         //      stdout.printf ("%s", this.outstr);
369                         }
370                     return "";
371                 
372                 
373                 }
374                 /**
375                  * Core packing routine  for a file
376                  * 
377                  * @param str - str source text..
378                  * @param fn - filename (for reference?)
379                  * @param minfile - min file location...
380                  * 
381                  */
382
383                 private string packFile  (string str,string fn, string minfile)
384                 {
385
386                         var tr = new  TokenReader();
387                         tr.keepDocs =true;
388                         tr.keepWhite = true;
389                         tr.keepComments = true;
390                         tr.sepIdents = true;
391                         tr.collapseWhite = false;
392                         tr.filename = fn;
393  
394                         // we can load translation map here...
395                 
396                         TokenArray toks = tr.tokenize(new TextStream(str)); // dont merge xxx + . + yyyy etc.
397                 
398                         if (this.dumpTokens) {
399                                 toks.dump();
400                                 return "";
401                                 //GLib.Process.exit(0);
402                         }
403                 
404                         this.activeFile = fn;
405                 
406                         // and replace if we are generating a different language..
407                 
408
409                         //var ts = new TokenStream(toks);
410                         //print(JSON.stringify(toks, null,4 )); Seed.quit();
411                         var ts = new Collapse(toks.tokens);
412                         
413                         //ts.dumpAll("");                       print("Done collaps"); Process.exit(1);
414                         
415                    // print(JSON.stringify(ts.tokens, null,4 )); Seed.quit();
416                         //return;//
417                         if (!this.skipScope) {
418                                 var sp = new ScopeParser(ts);
419  
420                                 //sp.packer = this;
421                                 sp.buildSymbolTree();
422                                 sp.mungeSymboltree();
423                         
424                         
425                                 sp.printWarnings();
426                         }
427                         
428                         
429                         //print(sp.warnings.join("\n"));
430                         //(new TokenStream(toks.tokens)).dumpAll(""); GLib.Process.exit(1);
431                         // compress works on the original array - in theory the replacements have already been done by now 
432                         var outf = CompressWhite(new TokenStream(toks.tokens), this, this.keepWhite); // do not kill whitespace..
433                 
434                         
435                         debug("RESULT: \n %s\n", outf);
436                 
437                          if (outf.length > 0) {
438                                 FileUtils.set_contents(minfile, outf);
439                                  
440                         }  
441
442                 
443                         return outf;
444                 
445                 
446                          
447                 }
448                  
449
450                 public string md5(string str)
451                 {
452                 
453                         return GLib.Checksum.compute_for_string(GLib.ChecksumType.MD5, str);
454                 
455                 }
456     
457          //stringHandler : function(tok) -- not used...
458     }
459     
460 }