JSDOC/BuildDocs.js
[gnome.introspection-doc-generator] / JSDOC / BuildDocs.js
1 //<script type="text/javascript">
2 /**
3         This is the main container for the JSDOC application.
4         @namespace
5 */
6 Gio = imports.gi.Gio;
7
8 XObject = imports.XObject.XObject;
9 File = imports.File.File;
10
11 Template = imports.JsTemplate.Template.Template;
12 Link = imports.JsTemplate.Link.Link; // ?? fixme!??
13
14 Parser      = imports.Parser.Parser;
15 TextStream  = imports.TextStream.TextStream;
16 TokenReader = imports.TokenReader.TokenReader;
17 TokenStream = imports.TokenStream.TokenStream;
18 Symbol      = imports.Symbol.Symbol;
19 DocComment  = imports.DocComment.DocComment;
20
21 /******************    INCLUDES ARE ALL AT THE BOTTOM OF THIS FILE!!!!! *******************/
22
23 // should not realy be here -- or anywhere...??
24
25 function makeSortby(attribute) {
26     return function(a, b) {
27         if (a[attribute] != undefined && b[attribute] != undefined) {
28             a = a[attribute]; //.toLowerCase();
29             b = b[attribute];//.toLowerCase();
30             if (a < b) return -1;
31             if (a > b) return 1;
32             return 0;
33         }
34     }
35 }
36
37 Options = false; // refer to this everywhere!
38
39
40 BuildDocs = {
41     
42     VERSION : "2.0.0",
43     
44     
45     srcFiles : [],
46     
47     
48     build : function (opts)
49     {
50         Options = opts; 
51         Options.init();
52         
53         Options.LOG.inform("JsDoc Toolkit main() running at "+new Date()+".");
54         //Options.LOG.inform("With options: ");
55         
56         if (Options.cacheDirectory.length && !File.isDirectory(Options.cacheDirectory)) {   
57             File.mkdir(Options.cacheDirectory)
58         }
59         
60         Options.srcFiles = this._getSrcFiles();
61         this._parseSrcFiles();
62         this.symbolSet = Parser.symbols;
63         
64         // this currently uses the concept of publish.js...
65         
66         this.publish();
67          
68         
69         
70     },
71     
72     
73     _getSrcFiles : function() 
74     {
75         this.srcFiles = [];
76         var _this = this;
77         var ext = ["js"];
78         if (Options.ext) {
79             ext = Options.ext.split(",").map(function($) {return $.toLowerCase()});
80         }
81         
82         for (var i = 0; i < Options.src.length; i++) {
83             // add to sourcefiles..
84             
85             File.list(Options.src[i] ).forEach(function($) {
86                 if (Options['exclude-src'].indexOf($) > -1) {
87                     return;
88                 }
89                 var thisExt = $.split(".").pop().toLowerCase();
90                 if (ext.indexOf(thisExt) < 0) {
91                     return;
92                 }
93                 _this.srcFiles.push(Options.src[i] + '/' + $);
94             });
95                 
96         }
97         //Seed.print(JSON.stringify(this.srcFiles, null,4));Seed.quit();
98         return this.srcFiles;
99     },
100
101     _parseSrcFiles : function() 
102     {
103         Parser.init();
104         
105         for (var i = 0, l = this.srcFiles.length; i < l; i++) {
106             
107             var srcFile = this.srcFiles[i];
108             
109             
110             var cacheFile = Options.cacheDirectory + srcFile.replace(/\//g, '_') + ".cache";
111             
112             //println(cacheFile);
113             // disabled at present!@!!
114             
115             if (false && !Options.disablecache  && File.exists(cacheFile)) {
116                 // check filetime?
117                 
118                 var c_mt = File.getTimes(cacheFile);
119                 var o_mt = File.getTimes(srcFile);
120                 //println(c_mt.toSource());
121                // println(o_mt.toSource());
122                
123                 // this check does not appear to work according to the doc's - need to check it out.
124                
125                 if (c_mt[0] > o_mt[0]) { // cached time  > original time!
126                     // use the cached mtimes..
127                     var syms =  JSON.parse(File.read(cacheFile));
128                     
129                     throw "Conversion of cache not done yet!";
130                     
131                     for (var sy in syms) {
132                         //println("ADD:" + sy );
133                        Parser.symbols.addSymbol(syms[sy]);
134                     }
135                     continue;
136                 }
137             }
138             
139             var src = ''
140             try {
141                 Options.LOG.inform("reading : " + srcFile);
142                 src = File.read(srcFile);
143             }
144             catch(e) {
145                 Options.LOG.warn("Can't read source file '"+srcFile+"': "+e.message);
146                 continue;
147             }
148
149             var txs = new TextStream(src);
150             
151             var tr = new TokenReader({ keepComments : true, keepWhite : true , sepIdents: false });
152             
153             var ts = new TokenStream(tr.tokenize(txs));
154         
155             Parser.parse(ts, srcFile);
156               
157             //var outstr = JSON.stringify(
158             //    Parser.filesSymbols[srcFile]._index
159             //);
160             //File.write(cacheFile, outstr);
161              
162                 
163     //          }
164         }
165         
166         
167         
168         Parser.finish();
169     },
170     
171      
172         
173     publish  : function() {
174         Options.LOG.inform("Publishing");
175          
176         // link!!!
177         
178         
179         Options.LOG.inform("Making directories");
180         if (!File.isDirectory(Options.target))
181             File.mkdir(Options.target);
182         if (!File.isDirectory(Options.target+"/symbols"))
183             File.mkdir(Options.target+"/symbols");
184         if (!File.isDirectory(Options.target+"/symbols/src"))
185             File.mkdir(Options.target+"/symbols/src");
186         
187         if (!File.isDirectory(Options.target +"/json")) {
188             File.mkdir(Options.target +"/json");
189         }
190         
191         Options.LOG.inform("Copying files from static: " +Options.templateDir);
192         // copy everything in 'static' into 
193         File.list(Options.templateDir + '/static').forEach(function (f) {
194             Options.LOG.inform("Copy " + Options.templateDir + '/static/' + f + ' to  ' + Options.target + '/' + f);
195             File.copyFile(Options.templateDir + '/static/' + f, Options.target + '/' + f,  Gio.FileCopyFlags.OVERWRITE);
196         });
197         
198         
199         Options.LOG.inform("Setting up templates");
200         // used to check the details of things being linked to
201         Link.symbolSet = this.symbolSet;
202         Link.base = "../";
203         
204         var classTemplate = new Template({
205              templateFile : Options.templateDir  + "/class.html",
206              Link : Link
207         });
208         var classesTemplate = new Template({
209             templateFile : Options.templateDir +"/allclasses.html",
210             Link : Link
211         });
212         var classesindexTemplate = new Template({
213             templateFile : Options.templateDir +"/index.html",
214             Link : Link
215         });
216         var fileindexTemplate = new Template({   
217             templateFile : Options.templateDir +"/allfiles.html",
218             Link: Link
219         });
220
221         
222         classTemplate.symbolSet = this.symbolSet;
223         
224         
225         function hasNoParent($) {
226             return ($.memberOf == "")
227         }
228         function isaFile($) {
229             return ($.is("FILE"))
230         }
231         function isaClass($) { 
232             return ($.is("CONSTRUCTOR") || $.isNamespace); 
233         }
234         
235         
236         
237         
238         
239         
240         
241         
242         
243         
244         var symbols = this.symbolSet.toArray();
245         
246         var files = Options.srcFiles;
247         
248         for (var i = 0, l = files.length; i < l; i++) {
249             var file = files[i];
250             var targetDir = Options.target + "/symbols/src/";
251             this.makeSrcFile(file, targetDir);
252         }
253         
254         var classes = symbols.filter(isaClass).sort(makeSortby("alias"));
255          
256          //Options.LOG.inform("classTemplate Process : all classes");
257             
258        // var classesIndex = classesTemplate.process(classes); // kept in memory
259         
260         Options.LOG.inform("iterate classes");
261         
262         for (var i = 0, l = classes.length; i < l; i++) {
263             var symbol = classes[i];
264             var output = "";
265             
266             Options.LOG.inform("classTemplate Process : " + symbol.alias);
267             
268             File.write(Options.target+"/symbols/" +symbol.alias+'.' + Options.publishExt ,
269                     classTemplate.process(symbol));
270             
271             
272             
273             // dump out a 
274             
275             this.publishJSON(Options.target+"/json/" + symbol.alias+'.json', symbol)
276             
277             
278             
279         }
280         
281         // regenrate the index with different relative links
282         Link.base = "";
283         //var classesIndex = classesTemplate.process(classes);
284         
285         Options.LOG.inform("build index");
286         
287         File.write(Options.target +  "/index."+ Options.publishExt, 
288             classesindexTemplate.process(classes)
289         );
290         
291         // blank everything???? classesindexTemplate = classesIndex = classes = null;
292         
293  
294         
295         var documentedFiles = symbols.filter(function ($) {
296             return ($.is("FILE"))
297         });
298         
299         var allFiles = [];
300         
301         for (var i = 0; i < files.length; i++) {
302             allFiles.push(new  Symbol(files[i], [], "FILE", new DocComment("/** */")));
303         }
304         
305         for (var i = 0; i < documentedFiles.length; i++) {
306             var offset = files.indexOf(documentedFiles[i].alias);
307             allFiles[offset] = documentedFiles[i];
308         }
309             
310         allFiles = allFiles.sort(makeSortby("name"));
311         Options.LOG.inform("write files index");
312         
313         File.write(Options.target + "/files."+Options.publishExt, 
314             fileindexTemplate.process(allFiles)
315         );
316         
317     },
318     /**
319      * JSON files are lookup files for the documentation
320      * - can be used by IDE's or AJAX based doc tools
321      * 
322      * 
323      */
324     publishJSON : function(file, data)
325     {
326         // what we need to output to be usefull...
327         // a) props..
328         var cfgProperties = [];
329         if (!data.comment.getTag('singleton').length) {
330             cfgProperties = data.configToArray();
331             cfgProperties = cfgProperties.sort(makeSortby("name"));
332             
333         }
334         var props = []; 
335         //println(cfgProperties.toSource());
336         var p ='';
337         for(var i =0; i < cfgProperties.length;i++) {
338             p = cfgProperties[i];
339             props.push( {
340                 name : p.name,
341                 type : p.type,
342                 desc : p.desc,
343                 memberOf : p.memberOf == data.alias ? '' : p.memberOf
344             });
345         }
346         
347          
348         var ownEvents = data.methods.filter( function(e){
349                 return e.isEvent && !e.comment.getTag('hide').length;
350             }).sort(makeSortby("name"));
351              
352         
353         var events = [];
354         var m;
355         for(var i =0; i < ownEvents.length;i++) {
356             m = ownEvents[i];
357             events.push( {
358                 name : m.name.substring(1),
359                 sig : this.makeFuncSkel(m.params),
360                 type : 'function',
361                 desc : m.desc
362             });
363         }
364         //println(props.toSource());
365         // we need to output:
366         //classname => {
367         //    propname => 
368         //        type=>
369         //        desc=>
370         //    }
371
372         var ret = {
373             props : props,
374             events: events
375         };
376         File.write(file, JSON.stringify(ret, null, 2 ));
377         
378         
379         // b) methods
380         // c) events
381         
382         
383     },
384     makeSrcFile: function(sourceFile) 
385     {
386         // this stuff works...
387      
388         
389         print("SF: " + sourceFile);
390         var name = sourceFile; //.substring(Options.baseDir.length+1);
391         //print(name);
392         name = name.replace(/\.\.?[\\\/]/g, "").replace(/[\\\/]/g, "_");
393         
394         name = name.replace(/\:/g, "_"); //??
395         
396         Options.LOG.inform("Write Source file : " + Options.target+"/symbols/src/" + name);
397         var pretty = imports.PrettyPrint.toPretty(File.read(Options.baseDir + '/' +  sourceFile));
398         File.write(Options.target+"/symbols/src/" + name, 
399             '<html><head>' +
400             '<title>' + sourceFile + '</title>' +
401             '<link rel="stylesheet" type="text/css" href="../../../highlight-js.css"/>' + 
402             '</head><body class="highlightpage">' +
403             pretty +
404             '</body></html>');
405     },
406     /**
407      * used by JSON output to generate a function skeleton
408      */
409     makeFuncSkel :function(params) {
410         if (!params) return "function ()\n{\n\n}";
411         return "function ("     +
412             params.filter(
413                 function($) {
414                     return $.name.indexOf(".") == -1; // don't show config params in signature
415                 }
416             ).map( function($) { return $.name == 'this' ? '_self' : $.name; } ).join(", ") +
417         ")\n{\n\n}";
418     }
419         
420  
421     
422 };
423   
424
425
426
427
428
429  
430
431
432
433