Monitor.vala
[gitlive] / Monitor.vala
1 //<Script type="text/javascript">
2 //var Gio     = imports.gi.Gio;
3 //var GLib    = imports.gi.GLib;
4
5 //var XObject = imports.XObject.XObject;
6 //var File    = imports.File.File;
7
8 /// # valac --pkg gee-0.8 --pkg gio-2.0  --pkg posix Monitor.val
9
10  
11 using Gee; // for array list?
12
13 static int main (string[] args) {
14     // A reference to our file
15     var file = File.new_for_path ("data.txt");
16     var m = new Monitory();
17     return 0;
18
19 }
20
21
22 public class  MonitorNamePathDir {
23     
24     public string name;
25     public string path;
26     public string dir;
27     
28     public MonitorNamePathDir(string name, string path, string dir)
29     {
30         this.name = name;
31         this.path = path;
32         this.dir = dir;
33         
34     }
35 }
36
37 public delegate void onEventHander (FileMonitor fm, File f_orig, File of_orig, FileMonitorEvent event_type);
38
39
40 /**
41  * Monitor class - handles monitor managment for a large tree...
42  *
43  *
44  * This 
45  * 
46  * usage : 
47  * x = new Monitor({
48      change : function () {
49          * ....
50          *}
51   }
52  * x.add('/somepath')
53  * x.stop() // stops all scanning.
54  * x.play(); // starts the scanning
55  * 
56  * 
57  * 
58  * 
59  */
60  
61 public class Monitor : Object
62 {
63
64
65
66     public Monitor()
67     {
68        
69      
70         this.monitors = new ArrayList<FileMonitor> ();
71         this.top = new ArrayList<string> ();
72         this.paused = false;
73     }
74      
75     public ArrayList<FileMonitor> monitors;// Array of MonitorNamePathDirileMonitors
76     public ArrayList<string> top; // list of top level directories..
77     public bool paused;
78     /**
79      * add a directory or file to monitor
80      */
81     public void add (string add)
82     {
83         this.top.add(add);
84     }
85     /**
86      * start monitoring
87      */
88     public void start()
89     {
90         for(int i = 0; i < this.monitors.size ; i++) {
91             this.monitor(this.top[i], ( fm,  f_orig,  of_orig,  event_type) => {
92                 this.onEvent (fm,  f_orig,  of_orig,  event_type ) ;
93                 } );
94         }
95     }
96     /**
97      * stop / pause monitoring
98      * 
99      */
100     public void stop()
101     {
102         
103         for(int i = 0; i < this.monitors.size ; i++) {
104             this.monitors[i].cancel();
105         } 
106         this.monitors = new ArrayList<FileMonitor>(); // clean /destroy/ kill old?
107     }
108     /**
109      * pause monitoring - without changing what's monitored 
110      */
111     public void pause()
112     {
113         this.paused = true;
114     }
115     /**
116      * resume monitoring - without changing what's monitored 
117      */
118     public void resume()
119     {
120         this.paused = false;
121     }
122     /**
123      * monitor a file or directory (privatish)
124      *
125      * initially called with ~/gitlive  null 0 (effectvely)
126      * 
127      * 
128      */
129     public void monitor(string path, onEventHander fn , int depth = 0)
130     {
131          
132        // print("ADD: " + path)
133         
134         //depth = typeof(depth) == 'number'  ? depth *1 : 0;
135         depth = depth > 0  ? depth *1 : 0;
136         
137         
138         //fn = fn || function (fm, f, of, event_type, uh) {
139         //    _this.onEvent(fm, f, of, event_type, uh);
140         //}
141        
142           
143         var f = File.new_for_path(path);
144             //var cancel = new Gio.Cancellable ();
145         if (depth > 0) {     
146             var fm = f.monitor(FileMonitorFlags.SEND_MOVED,null); //Gio.FileMonitorFlags.SEND_MOVED
147             
148             fm.changed.connect( ( fm,  f_orig,  of_orig,  event_type) => {
149                     //if (fn) {
150                         fn (fm,  f_orig,  of_orig,  event_type ) ;
151                        // return;
152                     //}
153                     //this.onEvent (fm,  f_orig,  of_orig,  event_type ) ;
154             });
155             this.monitors.add(fm);
156             // print("ADD path " + depth + ' ' + path);
157         }
158         // iterate children?
159         // - this is not used.
160         //if (GLib.file_test(path + '/.git' , GLib.FileTest.IS_DIR) && this.initRepo) {
161             
162         //    this.initRepo(path);
163         //}
164         
165        
166          var file_enum = f.enumerate_children(
167             FileAttribute.STANDARD_DISPLAY_NAME + "," +   FileAttribute.STANDARD_TYPE,
168             0, // FileQueryInfoFlags.NONE,
169             null);
170         
171         FileInfo next_file;
172         
173         while ((next_file = file_enum.next_file(null)) != null) {
174          
175             //print("got a file " + next_file.sudo () + '?=' + Gio.FileType.DIRECTORY);
176             
177             if (next_file.get_file_type() != FileType.DIRECTORY) {
178                 next_file = null;
179                 continue;
180             }
181             
182             if (next_file.get_file_type() ==FileType.SYMBOLIC_LINK) {
183                 next_file = null;
184                 continue;
185             }
186             
187             if (next_file.get_display_name()[0] == '.') {
188                 next_file = null;
189                 continue;
190             }
191             var sp = path+"/"+next_file.get_display_name();
192             // skip modules.
193             //print("got a file : " + sp);
194          
195             next_file = null;
196             
197             
198             
199             this.monitor(sp, fn, depth + 1);
200             
201         }
202     
203         file_enum.close(null);
204     }
205     
206     
207     
208     public File realpath(File file)
209     {
210         if (file != null) {
211             return file;
212         }
213         
214         if (FileUtils.test(file.get_path(), FileTest.EXISTS)) {
215             var rp = Posix.realpath(file.get_path());
216             return File.new_for_path(rp);  
217             
218         }
219         // file does not currently exist..
220         // check parent.
221         
222 // FIX ME - string split?/? 
223         var bn = file.get_basename();
224         var ar =  file.get_path().split("/");
225         ar.resize(ar.length-1);
226         var dirname = string.joinv("/",ar );
227         var rp = Posix.realpath(dirname);
228         return File.new_for_path(rp + "/" + bn);
229         
230     }
231    
232     
233     
234      
235     public void onEvent(FileMonitor fm, File f_orig, File of_orig, FileMonitorEvent event_type)
236     {
237         if (this.paused) {
238             return;
239         }
240         
241         var f = this.realpath(f_orig);
242         
243         var of = this.realpath(of_orig);
244  
245         
246  
247         MonitorNamePathDir src = new MonitorNamePathDir( f.get_basename(), f.get_path() , Path.get_dirname(f.get_path()));
248         MonitorNamePathDir dest = null;
249         
250         if (of != null) {
251             dest = new MonitorNamePathDir( of.get_basename(), of.get_path(),  Path.get_dirname(of.get_path()));
252             
253         }
254         //string event_name = "UKNOWN";
255         
256         
257         // extract the event names ... - not sure if introspection is feasible in vala..
258         //for(var i in Gio.FileMonitorEvent) {
259          //    if (Gio.FileMonitorEvent[i] == event_type) {
260          //        event_name = i;
261          //    }
262          //}
263         
264         //print (JSON.stringify([event_name , f.get_path(), of ? of.get_path() : false ] ));
265         //print ("got src: " + src.toString());
266         //print ("got event: " + src.toString());
267         try {
268                 
269             switch(event_type) {
270                 case FileMonitorEvent.CHANGED:
271                     this.onChanged(src);
272                     return; // ingore thise?? -wait for changes_done_htin?
273                     
274                 case FileMonitorEvent.CHANGES_DONE_HINT:
275                     this.onChangesDoneHint(src);
276                     return;
277                     
278                 case FileMonitorEvent.DELETED:
279                     this.onDeleted(src);
280                     return;
281                     
282                 case FileMonitorEvent.CREATED:
283                     this.onCreated(src);
284                     return;
285                 
286                 case FileMonitorEvent.ATTRIBUTE_CHANGED: // eg. chmod/chatt
287                     this.onAttributeChanged(src);
288                     return;
289                 
290                 case FileMonitorEvent.MOVED: // eg. chmod/chatt
291                     this.onMoved(src,dest);
292                     return; 
293                 
294                 // rest are mount related - not really relivant.. maybe add later..
295             } 
296         } catch(Error e) {
297             print(e.message);
298         }
299         
300     }
301     
302     /** override these to do stuff.. */
303     public void initRepo(MonitorNamePathDir src) { } // called on startup at the top level repo dir.
304     public void onChanged(MonitorNamePathDir src) { }
305     public void onChangesDoneHint(MonitorNamePathDir src) { }
306     public void onDeleted(MonitorNamePathDir src) { }
307     public void onCreated(MonitorNamePathDir src) { }
308     public void onAttributeChanged(MonitorNamePathDir src) { }
309     public void onMoved(MonitorNamePathDir src,MonitorNamePathDir dest) { }
310           
311     
312 }
313  
314  
315
316
317
318
319