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
7
8 XObject = imports.XObject.XObject;
9 File = imports.File.File;
10
11 Options = imports.Options.Options;
12 Parser   = imports.Parser.Parser;
13
14 TokenReader = imports.TokenReader.TokenReader;
15 TokenStream = imports.TokenStream.TokenStream;
16 Symbol = imports.Symbol.Symbol;
17 /******************    INCLUDES ARE ALL AT THE BOTTOM OF THIS FILE!!!!! *******************/
18
19 // should not realy be here -- or anywhere...??
20
21
22
23
24
25 BuildDocs = {
26     
27     VERSION : "2.0.0",
28     
29     
30     srcFiles : [],
31     
32     build : function (opts)
33     {
34         
35         XObject.extend(Options, opts);
36          
37         Options.init();
38         
39     
40          
41         
42         Options.LOG.inform("JsDoc Toolkit main() running at "+new Date()+".");
43         Options.LOG.inform("With options: ");
44         
45         if (!File.isDirectory(Options.cacheDirectory)) {   
46             File.mkdir(Options.cacheDirectory)
47         }
48         
49         Options.srcFiles = this._getSrcFiles();
50         this._parseSrcFiles();
51         this.symbolSet = Parser.symbols;
52         
53         // this now uses the concept of publish.js...
54              
55         
56          
57         
58         
59     },
60     
61     
62     _getSrcFiles : function() 
63     {
64         this.srcFiles = [];
65         
66         var ext = ["js"];
67         if (Options.ext) {
68             ext = Options.ext.split(",").map(function($) {return $.toLowerCase()});
69         }
70         
71         for (var i = 0; i < Options.src.length; i++) {
72             this.srcFiles = this.srcFiles.concat(
73             
74                 File.list(Options.src[i] ).filter(
75                     function($) {
76                         var thisExt = $.split(".").pop().toLowerCase();
77                         return (ext.indexOf(thisExt) > -1); // || thisExt in JSDOC.handlers);
78                             // we're only interested in files with certain extensions
79                     }
80                 )
81             );
82         }
83         
84         return this.srcFiles;
85     },
86
87     _parseSrcFiles : function() 
88     {
89         Parser.init();
90         
91         for (var i = 0, l = this.srcFiles.length; i < l; i++) {
92             
93             var srcFile = this.srcFiles[i];
94             
95             
96             var cacheFile = Options.cacheDirectory + srcFile.replace(/\//g, '_') + ".cache";
97             
98             //println(cacheFile);
99             // disabled at present!@!!
100             
101             if (false && !Options.disablecache  && File.exists(cacheFile)) {
102                 // check filetime?
103                 
104                 var c_mt = File.getTimes(cacheFile);
105                 var o_mt = File.getTimes(srcFile);
106                 //println(c_mt.toSource());
107                // println(o_mt.toSource());
108                
109                 // this check does not appear to work according to the doc's - need to check it out.
110                
111                 if (c_mt[0] > o_mt[0]) { // cached time  > original time!
112                     // use the cached mtimes..
113                     var syms =  JSON.parse(File.read(cacheFile));
114                     
115                     throw "Conversion of cache not done yet!";
116                     
117                     for (var sy in syms) {
118                         //println("ADD:" + sy );
119                        Parser.symbols.addSymbol(syms[sy]);
120                     }
121                     continue;
122                 }
123             }
124             
125             var src = ''
126             try {
127                 src = File.read(srcFile);
128             }
129             catch(e) {
130                 LOG.warn("Can't read source file '"+srcFile+"': "+e.message);
131                 continue;
132             }
133
134              
135             var tr = new TokenReader();
136             var ts = new TokenStream(tr.tokenize(src));
137         
138             Parser.parse(ts, srcFile);
139               
140             //var outstr = JSON.stringify(
141             //    Parser.filesSymbols[srcFile]._index
142             //);
143             //File.write(cacheFile, outstr);
144              
145                 
146     //          }
147         }
148         
149         
150         
151         Parser.finish();
152     }
153     
154      
155         
156      
157      
158     
159 };
160   
161
162
163
164
165
166  
167
168
169
170