JSDOC/Packer.vala
[gnome.introspection-doc-generator] / JSDOC / Packer.vala
index 9b823e7..a876cb7 100644 (file)
@@ -64,11 +64,14 @@ namespace JSDOC
                * @cfg {String} target to write files to - must be full path.
                */
                string target;
+               FileOutputStream targetStream = null;
                /**
                 * @cfg {String} debugTarget target to write files debug version to (uncompacted)- must be full path.
                 */
-               string debugTarget;
-       
+               string targetDebug;
+               
+
+               FileOutputStream targetDebugStream  = null;
                /**
                 * @cfg {String} tmpDir  (optional) where to put the temporary files. 
                 *      if you set this, then files will not be cleaned up
@@ -97,10 +100,10 @@ namespace JSDOC
                
                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,8 +120,7 @@ namespace JSDOC
                                this.files.add(f); //?? easier way?
                        }
                }
-               FileOutputStream targetStream = null;
-               FileOutputStream targetDebugStream  = null;
+       
                
                public void pack()
                {
@@ -128,6 +130,9 @@ namespace JSDOC
                        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();
                }
                
@@ -154,13 +159,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;
@@ -184,30 +189,31 @@ 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("");
                    }
                    
-                   if (this.debugTarget) {
-                       File.write(this.debugTarget, "");
-                   }
-                   if (this.debugTranslateTarget) {
-                       File.write(this.debugTarget, "");
+                   if (this.debugTarget > 0) {
+                           this.targetDebugStream.write("");
                    }
-                   
-                   for(var i=0; i < this.files.length; i++)  {
-                       var file = this.files[i];
+                   foreach(var file in this.files) {
                        
-                       print("reading " +file );
-                       if (!File.isFile(file)) {
-                           print("SKIP (is not a file) " + file);
+                       print("reading %s\n",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);
+                           loaded_string = false;
                        }
                        // it's a good idea to check with 0 compression to see if the code can parse!!
                        
@@ -216,17 +222,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..
                                
                            }
                            
@@ -234,11 +248,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);
                         
                      
                    }
@@ -247,12 +264,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 {
@@ -291,12 +308,12 @@ namespace JSDOC
                           
                        }
                    }
-                   
+                   */
                    print("MERGING SOURCE");
                    
                    for(var i=0; i < this.files.length; i++)  {
                        var file = this.files[i];
-                       var minfile = this.tmpDir + '/' + file.replace(/\//g, '.');
+                       var minfile = this.tmpDir + '/' + file.replace('/', '.');
                        
                        
                        if (!File.exists(minfile)) {
@@ -305,17 +322,18 @@ namespace JSDOC
                        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");   
+                           if (this.targetStream != null) {
+                                       this.targetStream.write("//" + file + "\n"); 
+                                       this.targetStream.write(str + "\n"); 
+
                            } else {
-                               this.out += '//' + file + "\n";
+                               this.out += "//" + file + "\n";
                                this.out += str + "\n";
                            }
                            
                        }
                        if (this.cleanup) {
-                           File.remove(minfile);
+                           FileUtils.remove(minfile);
                        }
                        
                    }