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