23b6c05676e911783408157032b5f5c1596f033d
[app.Builder.js] / tools / build_gtk_tree.js
1 //<script type="text/javascript">
2
3 // see if we can build the insertion tree for gtk - using introspection
4
5 // it should build the tree of feasible insertions, then we will have to manually prune it..
6
7 // it needs to know
8 // a) what the inherited types are
9 // b) what methods are available for each type, that include a reference to another type..
10
11 // let's start with types.. 
12 GIRepository = imports.gi.GIRepository;
13 GLib        = imports.gi.GLib;
14
15 // we add this in, as it appears to get lost sometimes if we set it using the ENV. variable in builder.sh
16 GIRepository.IRepository.prepend_search_path(GLib.get_home_dir() + '/.Builder/girepository-1.1');
17
18
19 imports.searchPath.push('../../gnome.introspection-doc-generator');
20
21 XObject     = imports.XObject.XObject;
22 File        = imports.File.File; 
23  
24 // Introspecion specific..
25 NameSpace   = imports.Introspect.NameSpace.NameSpace; 
26 Link        = imports.Introspect.Link.Link; 
27
28
29
30 function BuildLists () {
31  
32
33     var ns_list = [ 'Gtk' ] ; //NameSpace.namespaces();
34      
35     ns_list = ns_list.sort();
36     // let's try and load them, so we find out early what will fail.
37     print("loading library to make sure it works.");
38
39     var classes = {};
40
41     ns_list.forEach(function(ns_name) {   
42         var  core = imports.gi[ns_name];
43         var ns = NameSpace.ns(ns_name); // fetch all the elements in namespace...
44         ns['objects'].forEach( function(n) {
45             var odata = NameSpace.factory('Class', ns_name, n);
46             classes[odata.alias] = odata;
47             
48         });
49         ns['interfaces'].forEach( function(n) {
50              var odata =NameSpace.factory('Interface', ns_name, n);
51             classes[odata.alias] = odata;
52         });
53     });
54
55
56     print("Looping throught namespaces");
57     var ns_idx = [];
58     var implementations = {};
59     var methods = {}
60        
61     for (cls in classes) {
62         var odata = classes[cls];
63         methods[cls] = {}
64            
65         implementations[odata.alias] = odata.titleType == 'Class' ? odata.childClasses :  odata.implementedBy;  
66         //print(JSON.stringify(odata.methods,null,4));
67         odata.methods.forEach(function(m) {
68            
69             m.params.forEach(function(p) {
70                  
71                 if (!p.type || typeof(classes[p.type]) == 'undefined') {
72                     return;
73                 }
74                 if (typeof(methods[cls][p.type]) == 'undefined') {
75                     methods[cls][p.type] = [];
76                 }
77                 if (methods[cls][p.type].indexOf(m.name) > -1) {
78                     return;
79                 }
80                 methods[cls][p.type].push(m.name);
81                 
82             });
83             
84         });
85         //for(method in odata.methods) {
86         //    print(method.name);
87         //}
88         
89         
90     }
91     this.methods = methods;
92     this.implementations = implementations;
93     //print(JSON.stringify(methods,null,4));
94     //print(JSON.stringify(implementations,null,4));
95     
96 }
97
98
99 // we now have a list of classes / methods that can be used..
100 // we now need a ui to flag stuff as "don't bother with"
101
102