JSDOC/Packer.vala
[gnome.introspection-doc-generator] / JSDOC / Packer.vala
index a119bd3..2b8ae16 100644 (file)
@@ -197,15 +197,21 @@ namespace JSDOC
                    foreach(var file in this.files) {
                        
                        print("reading %s\n",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.debugTargetStream !=null) {
+                               
+                               FileUtils.get_contents(file,out file_contents);
+                           this.debugTarget.write(file_contents);
+                           loaded_string = false;
                        }
                        // it's a good idea to check with 0 compression to see if the code can parse!!
                        
@@ -214,17 +220,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..
                                
                            }
                            
@@ -232,11 +246,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);
                         
                      
                    }