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     //print(JSON.stringify(classes['Gtk.CellRenderer'].titleType, null, 4));
74     //print(JSON.stringify(classes['Gtk.CellRenderer'].childClasses, null, 4));
75     //print(JSON.stringify(classes['Gtk.CellRenderer'].implementedBy, null, 4));
76           
77     
78
79     print("Looping throught namespaces");
80     var ns_idx = [];
81     var implementations = {};
82     
83     var methods = {};
84     var allmethods = [];  
85     
86     for (cls in classes) {
87         
88         methods[cls] = {
89             can_contain : [],
90           //  can_be_added_to : [],
91             //using_methods : { },
92             can_be_added_to_as : {}
93         };
94         var odata = classes[cls];
95         
96         implementations[odata.alias] = odata.titleType == 'Class' ? odata.childClasses :  odata.implementedBy;
97         
98     }
99     for (cls in classes) {
100         var odata = classes[cls];
101         
102         //print(cls);
103         //print(JSON.stringify(odata.methods,null,4));
104         odata.methods.forEach(function(m) {
105             
106             
107             
108             
109              if (!m.name.match(/^(add|pack)/)) {
110                 return;
111             }
112             //print(JSON.stringify(m,null,4));
113             m.params.forEach(function(p) {
114                  
115                 if (!p.type || typeof(classes[p.type]) == 'undefined') {
116                     return;
117                 }
118                 // now add it..
119                 //print(JSON.stringify(p));Seed.exit();
120                 var addable_type = p.type;
121                 if (addable_type.indexOf('.') < 0) {
122                     addable_type = p.memberOf + '.' + p.type;
123                 }
124                 
125                 
126                
127                 
128                 //print(full_method_name );
129                 
130                 //if (allmethods.indexOf(full_method_name) < 0) {
131                 //    allmethods.push(full_method_name);
132                 //}
133                 
134                 methods[cls].can_contain.pushUnique(addable_type);
135                 
136                 //methods[cls].using_methods[m.name] = m.params;
137                 
138                 //if (methods[addable_type].can_be_added_to.indexOf(cls) < 0) { 
139                 //    methods[addable_type].can_be_added_to.push(cls);
140                 //}
141                 
142                 
143                 var add = m.memberOf +':'+ m.name;
144                 
145                 if (typeof(methods[addable_type].can_be_added_to_as[cls]) == 'undefined') {
146                     methods[addable_type].can_be_added_to_as[cls]=[];
147                 }
148                 methods[addable_type].can_be_added_to_as[cls].pushUnique( add );
149                 implementations[cls].forEach(function(imp) {
150                     if (typeof(methods[addable_type ].can_be_added_to_as[imp]) == 'undefined') {
151                         methods[addable_type].can_be_added_to_as[imp] = [];
152                     }
153                     
154                     methods[addable_type].can_be_added_to_as[imp].pushUnique(add);
155                      
156                     
157                 });
158                 
159                  implementations[cls].forEach(function(imp) {
160                     if (typeof(methods[imp ].can_be_added_to_as[imp]) == 'undefined') {
161                         methods[imp].can_be_added_to_as[imp] = [];
162                     }
163                     
164                     methods[imp].can_be_added_to_as[imp].pushUnique(add);
165                      
166                     
167                 });
168                 
169                 
170                 
171                 
172                 
173                 
174                 
175                 
176                 
177                 
178                 return;
179             /*
180                     methods[cls].using_methods[m.name] = {};
181                 }
182                 
183                 
184                 if (typeof(methods[cls][full_method_name]) == 'undefined') {
185                     methods[cls][full_method_name] = [];
186                 }
187                 if (methods[cls][full_method_name].indexOf(m.name) > -1) {
188                     return;
189                 }
190                 methods[cls][full_method_name].push(m.name);
191             */  
192             });
193             
194         });
195         //for(method in odata.methods) {
196         //    print(method.name);
197         //}
198         
199         
200     }
201     /*
202     // fill in the added to list..
203     for(var p in methods ) {
204         var odata = methods[p];
205         
206         methods[p].can_be_added_to.forEach(function(c) {
207             methods[p].can_be_added_to_as[c]=c;
208             implementations[c].forEach(function(imp) {
209                 methods[p].can_be_added_to_as[imp]=c;
210             });
211         });
212         
213         
214     }
215     */
216     // now do the reverese 'can be added to'
217     
218     
219     
220     this.methods = methods;
221     this.allmethods = methods;
222     this.implementations = implementations;
223     print(JSON.stringify(methods,null,4));
224     
225     //print(JSON.stringify(implementations ,null,4));
226     /*
227       methods is
228         [a class]
229             [has methods that use this object]
230                 [list of methods of the top class..]
231      
232      
233       So let's pick one..
234         TOP        ARRAY  2ND
235         Gtk.Button.add(Gtk.Widget) <<
236         
237         
238         What we need:
239         
240         A) what can this dragged element be dropped onto.
241         eg. list of parents.
242         - can_be_added_to_as (left)
243         
244         
245         
246         B) what method is available when this object is dropped onto this one.
247         
248         - get the right hand side?
249         
250         
251      
252      
253     */
254     
255     
256     //print(JSON.stringify(implementations,null,4));
257     
258 }
259 BuildLists();
260
261 // we now have a list of classes / methods that can be used..
262 // we now need a ui to flag stuff as "don't bother with"
263
264