JSDOC/BuildDocs.js
[gnome.introspection-doc-generator] / Introspect / NameSpace.js
1 //<script type="text/javascript">
2 //Gtk = imports.gi.Gtk;
3 GI      = imports.gi.GIRepository;
4 GLib    = imports.gi.GLib;
5 xml     = imports.libxml;
6
7
8 XObject = imports.XObject.XObject;
9
10 console = imports.console.console;
11
12  
13
14 NameSpace = {
15    
16     references : { }, 
17     
18     namespaces : function(ns) 
19     {
20         // this should be a class of it's own...
21         this.references[ns] = []; // technically not needed - but fills in files..
22         // get this from GI... (it's the path..)
23         var ret = [];
24        
25         function scanGir(dir) 
26         {
27             if (!GLib.file_test(dir, GLib.FileTest.EXISTS)) {
28                 return;
29             }
30             var gdir = GLib.dir_open(dir,0);
31             
32             while (true) {
33                 
34                 var fn = gdir.read_name ? gdir.read_name () : GLib.dir_read_name(gdir);
35            //      console.log('trying ' +  fn);
36                 if (!fn) {
37                     gdir.close ? gdir.close() : GLib.dir_close(gdir);
38                     return;;
39                 }
40                 if (!fn.match(/.typelib$/)) {
41                     continue;
42                 }
43                 var par = fn.split('-').shift();
44                  //console.log('trying ' +  par);
45                 if (ret.indexOf(par) > -1) {
46                      continue;
47                 }
48                 ret.push(par);
49                 
50                 
51             } 
52         }
53         var gi = GI.IRepository.get_default();
54         var pth = GI.IRepository.get_search_path ();
55         
56         scanGir(pth[0]);
57         ret.sort();
58         console.dump(ret);
59         return ret;
60         
61     },
62         
63         
64     ns:  function(ns) {
65         var gi = GI.IRepository.get_default();
66         ret = {
67             titleType: 'Namespace',
68             ns: ns,
69             name : ns,
70             alias : ns,
71             objects : [],
72             functions : [],
73             enums : [],
74             structs: [],
75             constants : [],
76             unions : [],
77             
78             // so ns looks like class..
79           
80             extendsClasses : [], // what it extends...
81             childClasses : [], // what uses it..
82             properties : [],
83             constructors : [],
84             methods : [],
85             values : [], /// really constants.
86             signals : [],
87             interfaces: [],
88         };
89      
90         for (var i=0; i <  gi.get_n_infos (ns); i++ ) {
91             var info = gi.get_info (ns, i);
92             
93             var info_type = GI.base_info_get_type (info);
94             switch(info_type) {
95                 case  GI.IInfoType.OBJECT:
96                     ret.objects.push(GI.base_info_get_name(info));
97                     this.clsGatherInterfaces(ns , GI.base_info_get_name(info));
98                     continue;
99                  case  GI.IInfoType.INTERFACE:
100                     ret.interfaces.push(GI.base_info_get_name(info));
101                     continue;
102                 case  GI.IInfoType.FUNCTION:
103                     new imports.Method.Method(info, ret, 'functions', []);    
104                     continue;
105                 
106                 case  GI.IInfoType.CALLBACK:
107                    // new Introspect.Callback(info, ret, 'callbacks', []);
108                     continue;
109                 
110                 case  GI.IInfoType.ENUM:
111                 case  GI.IInfoType.FLAGS:
112                     ret.enums.push(GI.base_info_get_name(info));
113                     continue;
114                 case  GI.IInfoType.STRUCT:
115                     if (GI.struct_info_is_gtype_struct (info)) {
116                         continue;
117                     }
118
119                     ret.structs.push(GI.base_info_get_name(info));
120                     continue;
121                 case  GI.IInfoType.UNION:
122                     ret.unions.push(GI.base_info_get_name(info));
123                     continue;
124                 case  GI.IInfoType.CONSTANT:
125                     new imports.Constant.Constant(info, ret, 'values', []);
126                     
127                     continue;
128                 
129                 
130                 default:
131                     continue;
132             }
133         }
134         
135                 
136         var gi = GI.IRepository.get_default();
137         var ver = gi.get_version(ns);
138         var pth = GI.IRepository.get_search_path ();
139         var gir_path = pth[0].replace(/lib\/girepository-1.0/, 'share\/gir-1.0');
140        //console.log(fn);
141         ret.gir_file = gir_path + '/'+ ns + '-' + ver + '.gir';
142         ret.gir_filename = ns + '-' + ver + '.gir';
143         
144         //console.dump(this.ifaceList);
145         return ret;
146
147     },
148  
149     
150   
151     // store all the interfaces, so we can show a list of them later...
152     // called when you list the namespace
153     clsGatherInterfaces : function(ns, cls)
154     {
155         var gi = GI.IRepository.get_default();
156         var bb = gi.find_by_name(ns, cls);
157         var fullname = ns+'.'+cls;
158         this.ifaceList = this.ifaceList || { };
159          
160         
161         for(var i =0; i < GI.object_info_get_n_interfaces(bb); i++) {
162            
163             var prop = GI.object_info_get_interface(bb,i);
164            
165             var add =  GI.base_info_get_namespace(prop) +'.' + GI.base_info_get_name(prop);
166             this.ifaceList[add] = this.ifaceList[add] || [];
167             if (this.ifaceList[add].indexOf(fullname) < 0) {
168                 this.ifaceList[add].push(fullname);
169             }
170              
171         }
172         
173        
174         
175     },
176     
177            
178         
179    
180     doc : function(what) {
181         var ns = what.split('.').shift();
182         this.commentLoad(ns);
183         return typeof(this.comments[ns][what]) == 'undefined' ?  '' : this.comments[ns][what];
184         
185     },
186     
187     
188     
189     comments : {},
190     
191     commentLoad : function(ns)
192     {
193         
194         if (typeof(this.comments[ns]) != 'undefined') {
195             return;
196         }
197         
198         console.log("LOAD DOCS: " + ns);
199         var gi = GI.IRepository.get_default();
200         var ver = gi.get_version(ns);
201         if (!ver) {
202             this.comments[ns] = {};
203             return;
204         }
205         var ret = { };
206         
207         // no idea why this is broken on my build system.
208         var  getAttribute = function(n, name){
209             var properties = n.properties;
210             while (properties){
211                 if (properties.name == name)
212                     return properties.children.content;
213                 properties = properties.next
214             }
215             return null;
216         }
217                 
218         
219         function walk (element, path) {
220             
221             
222             if (!element) {
223                 return;
224             }
225             
226             var n =  getAttribute(element, 'name') ;
227             //console.log("WALK" + n);
228             if (element.name == 'signal') {
229                 path += '.signal';
230             }
231             
232             if (n) {
233                 path += path.length ? '.' : '';
234                 path += n;
235             }
236             if (element.name == 'return-value') {
237                 path += '.return-value';
238             }
239             
240             var d =   getAttribute(element,'doc');
241             if (d) {
242              //   Seed.print(path + ':' + d);
243                 ret[path] = d;
244             }
245             
246             var child = element.children;
247
248             while (child){
249                 //console.log(child.tag);
250                 if (child.type == "element"){
251                     walk (child, path);
252                 }
253                 child = child.next;
254             }
255         }
256         
257         var pth = GI.IRepository.get_search_path ();
258         
259         
260         var gir_path = pth[0].replace(/lib\/girepository-1.0/, 'share\/gir-1.0');
261        
262         
263         //console.log(fn);
264         var  fn = gir_path + '/'+ ns + '-' + ver + '.gir';
265        // console.log(fn);
266         
267         if (!GLib.file_test(fn, GLib.FileTest.EXISTS)) {
268             console.log('missing docc file ' + fn);
269             this.comments[ns] = {};
270             
271             return;
272         }
273         var doc = xml.parseFile(fn);
274         //console.log("xmldoc?" + doc);
275         walk (doc.root, '');
276         //console.dump(ret);
277         this.comments[ns] = ret;
278
279     },
280     registry : { },
281     factory : function(type, ns, name) {
282         if (typeof (this.registry[ns +'.' + name]) == 'undefined') {
283             this.registry[ns +'.' + name] = new imports[type][type](ns,name);
284             this.registry[ns +'.' + name].load();
285         }
286         
287         return this.registry[ns +'.' + name];
288     }
289         
290 };
291
292
293