tools/build_gtk_tree.js
[app.Builder.js] / tools / build_gtk_tree.js
index d9760d4..901bce8 100644 (file)
@@ -9,6 +9,12 @@
 // b) what methods are available for each type, that include a reference to another type..
 
 // let's start with types.. 
+GIRepository = imports.gi.GIRepository;
+GLib        = imports.gi.GLib;
+
+// we add this in, as it appears to get lost sometimes if we set it using the ENV. variable in builder.sh
+GIRepository.IRepository.prepend_search_path(GLib.get_home_dir() + '/.Builder/girepository-1.1');
+
 
 imports.searchPath.push('../../gnome.introspection-doc-generator');
 
@@ -19,18 +25,26 @@ File        = imports.File.File;
 NameSpace   = imports.Introspect.NameSpace.NameSpace; 
 Link        = imports.Introspect.Link.Link; 
 
-var ns_list = NameSpace.namespaces();
+var ns_list = [ 'Gtk' ] ; //NameSpace.namespaces();
  
 ns_list = ns_list.sort();
 // let's try and load them, so we find out early what will fail.
 print("loading library to make sure it works.");
 ns_list.forEach(function(ns_name) {   
     var  core = imports.gi[ns_name];
+    var ns = NameSpace.ns(ns_name); // fetch all the elements in namespace...
+    ns['objects'].forEach( function(n) {
+        NameSpace.factory('Class', ns_name, n);
+    });
+    ns['interfaces'].forEach( function(n) {
+        NameSpace.factory('Interface', ns_name, n);
+    });
 });
 
 
 print("Looping throught namespaces");
 var ns_idx = [];
+var implementations = {};
 ns_list.forEach(function(ns_name) 
 {
     
@@ -38,30 +52,36 @@ ns_list.forEach(function(ns_name)
     
     var  core = imports.gi[ns_name];
     var idx = { name: ns_name}; 
-    console.log("START:" + ns_name);
+    print("START:" + ns_name);
+   
+    var ns = NameSpace.ns(ns_name); // fetch all the elements in namespace...
+    // as a type => list of them..
+    
    
-    var ns = NameSpace.ns(ns_name);
     
     
-    var actions = {
-        'objects' : 'Class',
-        'interfaces' : 'Interface',
-        //'structs' : 'Struct',
-        //'unions' : 'Union',
-        //'enums' : 'Enum'
-        
-    };
     
-    for (var i in actions) {
-        // we flag GLib as a GObject lib...
+    
+      
        
-        ns[i].forEach( function(n) {
-            
-            print('NameSpace.factory(' + actions[i] +','+ns_name+','+n);
-            var odata =   NameSpace.factory(actions[i], ns_name, n);
-            print(odata);
-        }); 
-    }
+    ns['objects'].forEach( function(n) {
+        
+       print('NameSpace.factory(Class,'+ns_name+'.'+n+')');
+        var odata =   NameSpace.factory('Class', ns_name, n);
+        implementations[odata.alias] = odata.childClasses;
+        //print(JSON.stringify(odata.childClasses,null,4));
+    });
+    ns['interfaces'].forEach( function(n) {
+        
+        print('NameSpace.factory(Interface,'+ns_name+'.'+n+')');
+        var odata =   NameSpace.factory('Interface', ns_name, n);
+        implementations[odata.alias] = odata.implementedBy;
+        //print(JSON.stringify(odata.implementedBy,null,4));
+    });
+         // what we are interested in..
+        
+         
     
     
 });
+print(JSON.stringify(implementations,null,4));
\ No newline at end of file