dbgenerate.js
[app.Builder.js] / gtkrun.js
1 #!/usr/bin/seed 
2 //<Script type="text/javascript">
3 /**
4  * runtime file
5  * takes a gtk project directory, and turns it into an application!
6  * by compling the files into JS files..
7  * 
8  * Initially developed for runtime testing. (the vte runner)
9  * 
10  * Might be the way to go for full runtime 
11  * 
12  * 
13  * Usage: (call with wrapper to set up directories..)
14  *    sh builder.sh
15  * 
16  * Concepts.. 
17  * a) load dependancies.. (eg. gi's..) - derived later?
18  * Gtk.init()
19  * 
20  * loop the files (find .bjs)
21  *   - comple to js (if not exist // or force enabled..)
22  * b) load all the files
23  * 
24  * Gtk.main();
25  * 
26  */
27 // autogen?
28
29 // sort out import path - this is  a bit of a mess..
30 GIRepository = imports.gi.GIRepository;
31 GLib        = imports.gi.GLib;
32
33 // we add this in, as it appears to get lost sometimes if we set it using the ENV. variable in builder.sh
34 GIRepository.IRepository.prepend_search_path(GLib.get_home_dir() + '/.Builder/girepository-1.1');
35 //print(JSON.stringify(GIRepository.IRepository.get_search_path()));
36
37 Gtk         = imports.gi.Gtk;
38 Gdk         = imports.gi.Gdk;
39 Pango       = imports.gi.Pango;
40
41 Gio         = imports.gi.Gio;
42 GObject     = imports.gi.GObject;
43 GtkSource   = imports.gi.GtkSource;
44 WebKit      = imports.gi.WebKit;
45 Vte         = imports.gi.Vte;
46
47 ////Gdl         = imports.gi.Gdl;
48
49 //GtkClutter  = imports.gi.GtkClutter;
50
51 //if (GtkClutter) {    
52 //    GtkClutter.init(Seed.argv);
53 //}
54
55 File    = imports.File.File;
56
57 XObject = imports.XObject.XObject;
58 //XObject.debug = true;
59 Gtk.init(Seed.argv);
60
61
62 imports.searchPath.push('/'); // allow global paths..
63 // error checking todo..
64 var files = File.list(Seed.argv[2]);
65 var olist = [];
66
67 var gtkbuilder = false;
68 files.forEach(function(f) {
69     var fp = Seed.argv[2] + '/' + f;
70     if (!fp.match(/\.bjs$/)) {
71         return;
72     }
73     var js = fp.replace(/\.bjs$/, '.js');
74     if (File.isFile(js)) {
75         // check file time.. = bjs is less than compiled file..
76         if (File.mtime(fp) < File.mtime(js)) {
77             XObject.log("LOADING" + js);
78             olist.push(imports[js]);
79             return;
80         }
81         
82         
83     }
84     var gtkbuilder =  new imports.Builder.Provider.File.Gtk.Gtk({ path : fp });
85     gtkbuilder.loadItems(function() { });
86     XObject.log("COMPILING" + js);
87     var fn = gtkbuilder.saveJS();
88     if (fn === false) { // skip files that do not contain anythng!
89         return;
90     }
91     olist.push(imports[fn]);
92     
93     
94 });
95
96
97
98           
99 Gtk.main();
100