File.js
[app.Builder.js] / File.js
1 // <script type ="text/Javascript">
2 GLib = imports.gi.GLib;
3 Gio = imports.gi.Gio;
4
5
6
7 /**
8 * @namespace File
9
10 * Library to wrap GLib and Gio basic File related methods
11
12 * usage:
13
14 * File = import.File.File;
15
16 * var contents = File.read("/tmp/test.txt");
17 *
18
19
20 */
21 var File = {
22
23     SEPARATOR : '/',
24
25     join : function () {
26         // fixme!
27         imports['String.js'].load(String);
28         
29         var out = "";
30         for (var i = 0; i < arguments.length; i++) {
31             if (i == 0) {
32               out += arguments[i].rtrim(File.SEPARATOR);
33             }
34             else if (i == arguments.length - 1) {
35               out += File.SEPARATOR + arguments[i].ltrim(File.SEPARATOR);
36             }
37             else {
38               out += File.SEPARATOR + arguments[i].trim(File.SEPARATOR);
39             }
40         }
41         return out;
42     },
43
44     read : function (path) {
45         var out = {};
46         GLib.file_get_contents(path, out, null, null);
47         return out['value'];
48     },
49
50     isFile : function (path) {
51       return GLib.file_test(path, GLib.FileTest.IS_REGULAR);
52     },
53     exists : function (path) {
54       return GLib.file_test(path, GLib.FileTest.EXISTS);
55     },
56     isDirectory : function (path) {
57       return GLib.file_test(path, GLib.FileTest.IS_DIR);
58     },
59
60     list : function (path) {
61         var listing = [];
62
63         var f = Gio.file_new_for_path(String(path));
64         var file_enum = f.enumerate_children(Gio.FILE_ATTRIBUTE_STANDARD_DISPLAY_NAME, Gio.FileQueryInfoFlags.NONE, null);
65
66         var next_file = null;
67
68         while ((next_file = file_enum.next_file(null)) != null) {
69           listing.push(next_file.get_display_name());
70         }
71
72         file_enum.close(null);
73
74         listing.sort();
75
76         return listing;
77     },
78
79     mtime : function (path) {
80         var f = Gio.file_new_for_path(String(path));
81         var mtime = new GLib.TimeVal();
82
83         var info = f.query_info(Gio.FILE_ATTRIBUTE_TIME_MODIFIED, Gio.FileQueryInfoFlags.NONE, null);
84         info.get_modification_time(mtime);
85
86         return new Date(mtime.tv_sec * 1000);
87     },
88
89     /**
90      * resolve the real path
91      * @arg path {String} Path to resolve
92      * @returns {String} the resolved path path.
93      * 
94      */
95     realpath :  function (path) { 
96         return this.canonical(path);
97     },
98     canonical : function (path) { 
99         var f = Gio.file_new_for_path(String(path));
100         var can = f.resolve_relative_path('');
101         return can.get_path();
102     },
103     /**
104      * write a string to a file
105      * @arg path {String} File to write to alwasy overwrites.
106      * @arg string {String} Contents of file.
107      * 
108      */
109     write : function (path, string) {
110         var f = Gio.file_new_for_path(String(path));
111         var data_out = new Gio.DataOutputStream({base_stream:f.replace(null, false, Gio.FileCreateFlags.NONE, null)});
112         data_out.put_string(string, null);
113         data_out.close(null);
114     },
115     /**
116      * append
117      * @arg path {String} File to write to
118      * @arg string {String} string to append to file.
119      * 
120      */
121     append : function (path, string) {
122         var f = Gio.file_new_for_path(String(path));
123         var data_out = new Gio.DataOutputStream({
124                 base_stream:f.append_to(Gio.FileCreateFlags.NONE, null)
125         });
126         data_out.put_string(string, null);
127         data_out.close(null);
128     },
129     /**
130      * remove 
131      * Delete a file.
132      * @arg path {String} File to remove
133      * 
134      * 
135      */
136     remove : function (path)
137     {
138         var f = Gio.file_new_for_path(String(path));
139         return f['delete']();
140     },
141     // copy files recursively from fromDir, silently ignore them if they already exist in toDir
142     silentRecursiveCopy : function (fromDir, toDir) {
143         var filesToCopy = File.recursiveListing(fromDir);
144         var srcPath, destPath, src, dest;
145
146         for (var index in filesToCopy) {
147           srcPath = File.join(String(fromDir), filesToCopy[index]);
148           destPath = File.join(String(toDir), filesToCopy[index]);
149
150           if (File.isFile(srcPath) && !File.isFile(destPath)) {
151             File.copyFile(srcPath, destPath);
152           }
153           else if (File.isDirectory(srcPath) && !File.isDirectory(destPath)) {
154             File.mkdir(destPath);
155           }
156
157         }
158     },
159     /**
160      * Make a symbolic link
161      * @arg  new_link {String} The new link
162      * @arg  target    {String} Where it links to.
163      */
164     link : function (new_link, target) {
165         var dest = Gio.file_new_for_path(String(new_link));
166         return dest.make_symbolic_link(target, null);
167     },
168     /**
169      * Make a directory
170      * FIXME - needs perms setting..
171      * 
172      * @arg  directory  {String} Directory to make
173      */
174
175     mkdir : function (destPath) {
176         var dest = Gio.file_new_for_path(String(destPath));
177         return dest.make_directory(null);
178     },
179
180     /**
181      * Copy a file or (directory maybe?)
182      * @arg  srcPath {String} source file
183      * @arg  destPath {String} destination file
184      * @arg  flags {Gio.FileCopyFlags} to overwrite etc...  Gio.FileCopyFlags.OVERWRITE
185      */
186     copy : function (srcPath, destPath, flags) {
187         return this.copyFile(srcPath, destPath, flags);
188     },
189     copyFile : function (srcPath, destPath, flags) {
190         
191         flags = typeof(flags) == 'undefined' ? Gio.FileCopyFlags.NONE : flags;
192         var dest = Gio.file_new_for_path(String(destPath));
193         var src = Gio.file_new_for_path(String(srcPath));
194
195         // a bit of a hack for the fact that Gio.File.copy arguments
196         // can be nulled, but not according to the GIR file
197         return src.copy(dest, flags);
198     },
199     
200     
201     
202
203     recursiveListing : function (dir) {
204
205         function recursiveListingInternal(prefix, listing, dir) {
206           var entries = File.list(dir);
207           var next, fullPath;
208
209           for (var index in entries) {
210             next = entries[index];
211             fullPath = File.join(prefix, dir, next);
212
213             if (File.isDirectory(fullPath)) {
214               listing.push(next);
215               listing = listing.concat(recursiveListingInternal(next, [], fullPath));
216             }
217             else {
218               if (prefix) {
219                 next = File.join(prefix, next);
220               }
221               listing.push(next);
222             }
223           }
224
225           return listing;
226         }
227
228         return recursiveListingInternal('', [], dir);
229     }
230
231 };