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
41 function BuildLists () {
42  
43
44     var ns_list = [ 'Gtk' ] ; //NameSpace.namespaces();
45      
46     ns_list = ns_list.sort();
47     // let's try and load them, so we find out early what will fail.
48     print("loading library to make sure it works.");
49
50     var classes = {};
51
52     ns_list.forEach(function(ns_name) {   
53         var  core = imports.gi[ns_name];
54         var ns = NameSpace.ns(ns_name); // fetch all the elements in namespace...
55         ns['objects'].forEach( function(n) {
56             var odata = NameSpace.factory('Class', ns_name, n);
57             classes[odata.alias] = odata;
58             
59         });
60         ns['interfaces'].forEach( function(n) {
61              var odata =NameSpace.factory('Interface', ns_name, n);
62             classes[odata.alias] = odata;
63         });
64     });
65
66
67     print("Looping throught namespaces");
68     var ns_idx = [];
69     var implementations = {};
70     var methods = {};
71     var allmethods = [];  
72     
73     for (cls in classes) {
74         var odata = classes[cls];
75         methods[cls] = {}
76            
77         implementations[odata.alias] = odata.titleType == 'Class' ? odata.childClasses :  odata.implementedBy;  
78         //print(JSON.stringify(odata.methods,null,4));
79         odata.methods.forEach(function(m) {
80            
81             m.params.forEach(function(p) {
82                  
83                 if (!p.type || typeof(classes[p.type]) == 'undefined') {
84                     return;
85                 }
86                 // now add it..
87                 //print(JSON.stringify(p));Seed.exit();
88                 var full_method_name = p.type;
89                 if (full_method_name.indexOf('.') < 0) {
90                     full_method_name = p.memberOf + '.' + p.type;
91                 }
92                 
93                 
94                 if (!m.name.match(/^(add|pack)/)) {
95                     return;
96                 }
97                 
98                 //print(full_method_name );
99                 
100                 if (allmethods.indexOf(full_method_name) < 0) {
101                     allmethods.push(full_method_name);
102                 }
103                 
104                 if (typeof(methods[cls][full_method_name]) == 'undefined') {
105                     methods[cls][full_method_name] = [];
106                 }
107                 if (methods[cls][full_method_name].indexOf(m.name) > -1) {
108                     return;
109                 }
110                 methods[cls][full_method_name].push(m.name);
111                 
112             });
113             
114         });
115         //for(method in odata.methods) {
116         //    print(method.name);
117         //}
118         
119         
120     }
121     this.methods = methods;
122     this.allmethods = methods;
123     this.implementations = implementations;
124     //print(JSON.stringify(methods,null,4));
125     print(JSON.stringify(implementations ,null,4));
126     /*
127       methods is
128         [a class]
129             [has methods that use this object]
130                 [list of methods of the top class..]
131      
132      
133       So let's pick one..
134         TOP        ARRAY  2ND
135         Gtk.Button.add(Gtk.Widget) <<
136      
137      
138     */
139     
140     
141     //print(JSON.stringify(implementations,null,4));
142     
143 }
144 BuildLists();
145
146 // we now have a list of classes / methods that can be used..
147 // we now need a ui to flag stuff as "don't bother with"
148
149