X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=JSDOC%2FPacker.vala;h=21782f1ad0774a372d02287d5f310c92e5b1148f;hb=c12a84ef03d4a7bab8e558f76a2828eb533026f3;hp=e0c61324b27965143e4615b94a207b0b6c45f205;hpb=11d063a3ad4871eeea1105996dc0f0e8cf51e614;p=gnome.introspection-doc-generator diff --git a/JSDOC/Packer.vala b/JSDOC/Packer.vala index e0c6132..21782f1 100644 --- a/JSDOC/Packer.vala +++ b/JSDOC/Packer.vala @@ -56,7 +56,9 @@ x.packAll(); // writes files etc.. */ namespace JSDOC { - + public errordomain PackerError { + ArgumentError + } public class Packer : Object { @@ -64,11 +66,14 @@ namespace JSDOC * @cfg {String} target to write files to - must be full path. */ string target; + GLib.FileOutputStream targetStream = null; /** * @cfg {String} debugTarget target to write files debug version to (uncompacted)- must be full path. */ - string debugTarget; - + string targetDebug; + + + GLib.FileOutputStream targetDebugStream = null; /** * @cfg {String} tmpDir (optional) where to put the temporary files. * if you set this, then files will not be cleaned up @@ -95,12 +100,17 @@ namespace JSDOC // list of files to compile... Gee.ArrayList files; + + + public string activeFile = ""; + + public string out = ""; // if no target is specified - then this will contain the result - public Packer(string target, string debugTarget) + public Packer(string target, string targetDebug = "") { this.target = target; - this.debugTarget = debugTarget; + this.targetDebug = targetDebug; } @@ -117,16 +127,19 @@ namespace JSDOC this.files.add(f); //?? easier way? } } - FileOutputStream targetStream; - FileOutputStream targetDebugStream; + public void pack() { - if (!this.files) { - throw new Packer.ArgumentError("No Files loaded before pack() called"); + if (this.files.size < 1) { + throw new PackerError.ArgumentError("No Files loaded before pack() called"); + } + if (this.target.length > 0 ) { + this.targetStream = File.new_for_path(this.target).replace(null, false,FileCreateFlags.NONE); + } + if (this.targetDebug.length > 0 ) { + this.targetDebugStream = File.new_for_path(this.targetDebug).replace(null, false,FileCreateFlags.NONE); } - - this.packAll(); } @@ -153,13 +166,13 @@ namespace JSDOC var f = lines[i].strip(); if (f.length < 1 || - Regex.match_simple ("^\/", f) || + Regex.match_simple ("^/", f) || !Regex.match_simple ("[a-zA-Z]+", f) ){ continue; // blank comment or not starting with a-z } - if (Regex.match_simple ("\.js$", f)) { + if (Regex.match_simple ("\\.js$", f)) { this.files.add( f); // js file.. continue; @@ -169,10 +182,10 @@ namespace JSDOC // should we prefix? =- or should this be done elsewhere? var add = f.replace(".", "/") + ".js"; - if (_this.files.contains(add)) { + if (this.files.contains(add)) { continue; } - _this.files.add( add ); + this.files.add( add ); } } @@ -183,30 +196,33 @@ namespace JSDOC //this.transOrigFile= bpath + '/../lang.en.js'; // needs better naming... //File.write(this.transfile, ""); - if (this.target.length) { - File.write(this.target, ""); + if (this.target.length > 0) { + this.targetStream.write("".data); } - if (this.debugTarget) { - File.write(this.debugTarget, ""); - } - if (this.debugTranslateTarget) { - File.write(this.debugTarget, ""); + if (this.targetDebugStream != null) { + this.targetDebugStream.write("".data); } - for(var i=0; i < this.files.length; i++) { - var file = this.files[i]; + + foreach(var file in this.files) { + + print("reading %s\n",file ); - print("reading " +file ); - if (!File.isFile(file)) { - print("SKIP (is not a file) " + file); + if (FileUtils.test (file, FileTest.EXISTS) && ! FileUtils.test (file, FileTest.IS_DIR)) { + print("SKIP (is not a file) %s\n ", file); continue; } + var loaded_string = false; + string file_contents; // debug Target - if (this.debugTarget) { - File.append(this.debugTarget, File.read(file)); + if (this.targetDebugStream !=null) { + + FileUtils.get_contents(file,out file_contents); + this.targetDebugStream.write(file_contents.data); + loaded_string = false; } // it's a good idea to check with 0 compression to see if the code can parse!! @@ -215,17 +231,25 @@ namespace JSDOC - var minfile = this.tmpDir + '/' +file.replace(/\//g, '.'); + var minfile = this.tmpDir + "/" + file.replace("/", "."); // let's see if we have a min file already? // this might happen if tmpDir is set .. - if (true && File.exists(minfile)) { - var mt = File.mtime(minfile); - var ot = File.mtime(file); - print("compare : " + mt + "=>" + ot); - if (mt >= ot) { - continue; + + + if (true && FileUtils.test (minfile, FileTest.EXISTS)) { + + var otv = File.new_for_path(file).query_info (FileAttribute.TIME_MODIFIED, 0).get_modification_time(); + var mtv = File.new_for_path(minfile).query_info (FileAttribute.TIME_MODIFIED, 0).get_modification_time(); + + var ot = new Date(); + ot.set_time_val(otv); + var mt = new Date(); + mt.set_time_val(mtv); + //print("compare : " + mt + "=>" + ot); + if (mt.compare(ot) >= 0) { + continue; // file is newer or the same time.. } @@ -233,11 +257,14 @@ namespace JSDOC print("COMPRESSING "); //var codeComp = pack(str, 10, 0, 0); - if (File.exists(minfile)) { - File.remove(minfile); + if (FileUtils.test (minfile, FileTest.EXISTS)) { + FileUtils.remove(minfile); } - var str = File.read(file); - var str = this.packFile(str, file, minfile); + if (!loaded_string) { + FileUtils.get_contents(file,out file_contents); + } + + var str = this.packFile(file_contents, file, minfile); } @@ -246,12 +273,12 @@ namespace JSDOC // if we are translating, write the translations strings at the top // of the file.. - + /* if (this.translateJSON) { print("MERGING LANGUAGE"); - var out = "if (typeof(_T) == 'undefined') { _T={};}\n" + var out = "if (typeof(_T) == 'undefined') { _T={};}\n"; if (this.target) { File.write(this.target, out); } else { @@ -290,274 +317,116 @@ namespace JSDOC } } - + */ print("MERGING SOURCE"); - for(var i=0; i < this.files.length; i++) { + for(var i=0; i < this.files.size; i++) { var file = this.files[i]; - var minfile = this.tmpDir + '/' + file.replace(/\//g, '.'); + var minfile = this.tmpDir + "/" + file.replace("/", "."); - if (!File.exists(minfile)) { + if ( FileUtils.test(minfile, FileTest.EXISTS)) { continue; } - var str = File.read(minfile); - print("using MIN FILE "+ minfile); - if (str.length) { - if (this.target) { - File.append(this.target, '//' + file + "\n"); - File.append(this.target, str + "\n"); + string str; + FileUtils.get_contents(minfile, out str); + print("using MIN FILE %s\n", minfile); + if (str.length > 0) { + if (this.targetStream != null) { + this.targetStream.write(("//" + file + "\n").data); + this.targetStream.write((str + "\n").data); + } else { - this.out += '//' + file + "\n"; + this.out += "//" + file + "\n"; this.out += str + "\n"; } } if (this.cleanup) { - File.remove(minfile); + FileUtils.remove(minfile); } } print("Output file: " + this.target); - if (this.debugTarget) print("Output debug file: " + this.debugTarget); + if (this.targetDebug.length > 0) { + print("Output debug file: " + this.targetDebug); + } - }, - /** - * Core packing routine for a file - * - * @param str - str source text.. - * @param fn - filename (for reference?) - * @param minfile - min file location... - * - */ - - packFile : function (str,fn,minfile) - { - - var tr = new TokenReader( { - keepDocs :true, - keepWhite : true, - keepComments : true, - sepIdents : true, - collapseWhite : false, - filename : fn - }); - this.timerPrint("START" + fn); - - // we can load translation map here... - - var toks = tr.tokenize(new TextStream(str)); // dont merge xxx + . + yyyy etc. - - // at this point we can write a language file... - if (this.translateJSON) { - - this.writeTranslateFile(fn, minfile, toks); - } - - this.activeFile = fn; - - // and replace if we are generating a different language.. - - this.timerPrint("Tokenized"); - //var ts = new TokenStream(toks); - //print(JSON.stringify(toks, null,4 )); Seed.quit(); - var ts = new Collapse(toks); - // print(JSON.stringify(ts.tokens, null,4 )); Seed.quit(); - //return;// - var sp = new ScopeParser(ts); - this.timerPrint("Converted to Parser"); - sp.packer = this; - sp.buildSymbolTree(); - this.timerPrint("Built Sym tree"); - sp.mungeSymboltree(); - this.timerPrint("Munged Sym tree"); - print(sp.warnings.join("\n")); - this.timerPrint("Compressed"); - - var out = CompressWhite(new TokenStream(toks), this, this.keepWhite); // do not kill whitespace.. - - - this.timerPrint("Compressed"); - - if (out.length) { - File.write(minfile, out); - this.timerPrint("Write (" + out.length + "bytes) " + minfile); - } - - return out; - - - - }, - - timerPrint: function (str) { - var ntime = new Date() * 1; - var tdif = ntime -this.timer; - this.timer = ntime; - print('['+tdif+']'+str); - }, - - /** - * - * Translation concept... - * -> replace text strings with _T.... - * -> this file will need inserting at the start of the application.... - * -> we need to generate 2 files, - * -> a reference used to do the translation, and the _T file.. - * - * - * We store the trsum on the token... - * - */ + } + /** + * Core packing routine for a file + * + * @param str - str source text.. + * @param fn - filename (for reference?) + * @param minfile - min file location... + * + */ + + private string packFile (string str,string fn, string minfile) + { + + var tr = new TokenReader(); + tr.keepDocs =true; + tr.keepWhite = true; + tr.keepComments = true; + tr.sepIdents = true; + tr.collapseWhite = false; + tr.filename = fn; + + // we can load translation map here... + + TokenArray toks = tr.tokenize(new TextStream(str)); // dont merge xxx + . + yyyy etc. + + + + this.activeFile = fn; + + // and replace if we are generating a different language.. + + + //var ts = new TokenStream(toks); + //print(JSON.stringify(toks, null,4 )); Seed.quit(); + var ts = new Collapse(toks.tokens); + // print(JSON.stringify(ts.tokens, null,4 )); Seed.quit(); + //return;// + var sp = new ScopeParser(ts); + + //sp.packer = this; + sp.buildSymbolTree(); + + sp.mungeSymboltree(); + sp.printWarnings(); + //print(sp.warnings.join("\n")); + + + var outf = CompressWhite(new TokenStream(toks.tokens), this, this.keepWhite); // do not kill whitespace.. + + + + + if (outf.length > 0) { + FileUtils.set_contents(minfile, outf); + + } + + return out; + + + + } + + + public string md5(string str) + { + + return GLib.Checksum.compute_for_string(GLib.ChecksumType.MD5, str); + + } - writeTranslateFile : function(fn, minfile, toks) - { - - var map = {}; // 'string=> md5sum' - var _this = this; - var t, last, next; - - - var tokfind = function (j,dir) { - while (1) { - if ((dir < 0) && (j < 0)) { - return false; - } - if ((dir > 0) && (j >= toks.length)) { - return false; - } - j += dir; - if (toks[j].type != 'WHIT') { - return toks[j]; - } - } - return false; - - } - - - for (var i=0;i