tools/build_gtk_tree.js
[app.Builder.js] / tools / build_gtk_tree.js
1 //<script type="text/javascript">
2
3
4 /**
5  * usage:
6  * 
7  * this.data = new BuildLists();
8  * 
9  * 
10  * 
11  * 
12  * 
13  */
14 // see if we can build the insertion tree for gtk - using introspection
15
16 // it should build the tree of feasible insertions, then we will have to manually prune it..
17
18 // it needs to know
19 // a) what the inherited types are
20 // b) what methods are available for each type, that include a reference to another type..
21
22 // let's start with types.. 
23 GIRepository = imports.gi.GIRepository;
24 GLib        = imports.gi.GLib;
25
26 // we add this in, as it appears to get lost sometimes if we set it using the ENV. variable in builder.sh
27 //GIRepository.Repository.prepend_search_path(GLib.get_home_dir() + '/.Builder/girepository-1.1');
28
29
30 imports.searchPath.push('../../gnome.introspection-doc-generator');
31
32 XObject     = imports.XObject.XObject;
33 File        = imports.File.File; 
34  
35 // Introspecion specific..
36 NameSpace   = imports.Introspect.NameSpace.NameSpace; 
37 Link        = imports.Introspect.Link.Link; 
38
39
40 Array.prototype.pushUnique = function(v) {
41     if (this.indexOf(v) < 0) {
42         this.push(v);
43     }
44 }
45
46 function BuildLists () {
47  
48     
49  
50
51     var ns_list = [ 'Gtk' ] ; //NameSpace.namespaces();
52      
53     ns_list = ns_list.sort();
54     // let's try and load them, so we find out early what will fail.
55     print("loading library to make sure it works.");
56
57     var classes = {};
58
59     ns_list.forEach(function(ns_name) {   
60         var  core = imports.gi[ns_name];
61         var ns = NameSpace.ns(ns_name); // fetch all the elements in namespace...
62         ns['objects'].forEach( function(n) {
63             var odata = NameSpace.factory('Class', ns_name, n);
64             classes[odata.alias] = odata;
65             
66         });
67         ns['interfaces'].forEach( function(n) {
68              var odata =NameSpace.factory('Interface', ns_name, n);
69             classes[odata.alias] = odata;
70         });
71     });
72
73
74     print("Looping throught namespaces");
75     var ns_idx = [];
76     var implementations = {};
77     
78     var methods = {};
79     var allmethods = [];  
80     
81     for (cls in classes) {
82         
83         methods[cls] = {
84             can_contain : [],
85           //  can_be_added_to : [],
86             //using_methods : { },
87             can_be_added_to_as : {}
88         };
89         var odata = classes[cls];
90         
91         implementations[odata.alias] = odata.titleType == 'Class' ? odata.childClasses :  odata.implementedBy;
92         
93     }
94     for (cls in classes) {
95         var odata = classes[cls];
96         
97         //print(cls);
98         //print(JSON.stringify(odata.methods,null,4));
99         odata.methods.forEach(function(m) {
100             
101             
102             
103             
104              if (!m.name.match(/^(add|pack)/)) {
105                 return;
106             }
107             //print(JSON.stringify(m,null,4));
108             m.params.forEach(function(p) {
109                  
110                 if (!p.type || typeof(classes[p.type]) == 'undefined') {
111                     return;
112                 }
113                 // now add it..
114                 //print(JSON.stringify(p));Seed.exit();
115                 var addable_type = p.type;
116                 if (addable_type.indexOf('.') < 0) {
117                     addable_type = p.memberOf + '.' + p.type;
118                 }
119                 
120                 
121                
122                 
123                 //print(full_method_name );
124                 
125                 //if (allmethods.indexOf(full_method_name) < 0) {
126                 //    allmethods.push(full_method_name);
127                 //}
128                 
129                 methods[cls].can_contain.pushUnique(addable_type);
130                 
131                 //methods[cls].using_methods[m.name] = m.params;
132                 
133                 //if (methods[addable_type].can_be_added_to.indexOf(cls) < 0) { 
134                 //    methods[addable_type].can_be_added_to.push(cls);
135                 //}
136                 
137                 
138                 var add = m.memberOf +':'+ m.name;
139                 
140                 if (typeof(methods[addable_type].can_be_added_to_as[cls]) == 'undefined') {
141                     methods[addable_type].can_be_added_to_as[cls]=[];
142                 }
143                 methods[addable_type].can_be_added_to_as[cls].pushUnique( add );
144                 implementations[cls].forEach(function(imp) {
145                     if (typeof(methods[addable_type].can_be_added_to_as[imp]) == 'undefined') {
146                         methods[addable_type].can_be_added_to_as[imp] = [];
147                     }
148                     
149                     methods[addable_type].can_be_added_to_as[imp].pushUnique(add);
150                 });
151                 
152                 
153                 
154                 
155                 
156                 
157                 
158                 
159                 
160                 
161                 
162                 
163                 return;
164             /*
165                     methods[cls].using_methods[m.name] = {};
166                 }
167                 
168                 
169                 if (typeof(methods[cls][full_method_name]) == 'undefined') {
170                     methods[cls][full_method_name] = [];
171                 }
172                 if (methods[cls][full_method_name].indexOf(m.name) > -1) {
173                     return;
174                 }
175                 methods[cls][full_method_name].push(m.name);
176             */  
177             });
178             
179         });
180         //for(method in odata.methods) {
181         //    print(method.name);
182         //}
183         
184         
185     }
186     /*
187     // fill in the added to list..
188     for(var p in methods ) {
189         var odata = methods[p];
190         
191         methods[p].can_be_added_to.forEach(function(c) {
192             methods[p].can_be_added_to_as[c]=c;
193             implementations[c].forEach(function(imp) {
194                 methods[p].can_be_added_to_as[imp]=c;
195             });
196         });
197         
198         
199     }
200     */
201     // now do the reverese 'can be added to'
202     
203     
204     
205     this.methods = methods;
206     this.allmethods = methods;
207     this.implementations = implementations;
208     print(JSON.stringify(methods,null,4));
209     
210     //print(JSON.stringify(implementations ,null,4));
211     /*
212       methods is
213         [a class]
214             [has methods that use this object]
215                 [list of methods of the top class..]
216      
217      
218       So let's pick one..
219         TOP        ARRAY  2ND
220         Gtk.Button.add(Gtk.Widget) <<
221         
222         
223         What we need:
224         
225         A) what can this dragged element be dropped onto.
226         eg. list of parents.
227         - can_be_added_to_as (left)
228         
229         
230         
231         B) what method is available when this object is dropped onto this one.
232         
233         - get the right hand side?
234         
235         
236      
237      
238     */
239     
240     
241     //print(JSON.stringify(implementations,null,4));
242     
243 }
244 BuildLists();
245
246 // we now have a list of classes / methods that can be used..
247 // we now need a ui to flag stuff as "don't bother with"
248
249