docs.js
[gnome.introspection-doc-generator] / docs.js
1 //<Script type="text/javascript">
2
3 Gtk = imports.gi.Gtk;
4 Gio = imports.gi.Gio;
5 Gdk = imports.gi.Gdk;
6 XObject = imports.XObject.XObject;
7
8
9
10 File        = imports.File.File; 
11 console     = imports.console.console; 
12 Introspect  = imports['JSDOC/Introspect.js'].Introspect; 
13 Template    = imports['JSDOC/Template.js'].Template; 
14
15
16 var outputdir = Seed.argv[2];
17
18 if (!outputdir) {
19     throw {
20         name: "ArgumentError", 
21         message: "No output directory specified on the command line\n" +
22           "Usage seed docs.js /var/www/seed  [Gtk] \n"
23     };
24 }
25
26
27 if (!File.isDirectory(outputdir)) {
28     console.log("Creating directory " + outputdir);
29     File.mkdir(outputdir);
30 };
31
32  
33 // Which libraries to build.
34
35 var ns_list = Introspect.namespaces();
36 if (typeof(Seed.argv[3]) == 'string') {
37     console.log(Seed.argv.length);
38     ns_list = Seed.argv[3].split(',');
39 }
40
41 ns_list = ns_list.sort();
42
43
44 // which languages do we want to output for.
45 langs=[];
46 File.list(__script_path__ + '/templates/').forEach(function(f) {
47     if (!File.isDirectory(__script_path__ + '/templates/' + f)) {
48         continue;
49     }
50     if (f == 'resources') {
51         continue;
52     }
53     langs.push({
54          cls_template       : new Template(__script_path__ + '/templates/' + f + '/class.html'),
55          cls_ix_template    : new Template(__script_path__ + '/templates/' + f + '/class_ix.html'),
56          reference_template : new Template(__script_path__ + '/templates/' + f + '/references.html'),
57     });
58 });
59
60
61 /*
62 var cls_template = new Template(__script_path__ + '/templates/class.html');
63 var cls_ix_template = new Template(__script_path__ + '/templates/class_ix.html');
64 var reference_template = new Template(__script_path__ + '/templates/references.html');
65 */
66
67
68 var ns_idx = [];
69 ns_list.forEach(function(ns_name) 
70 {
71     
72     //if (ns_idx.length) {         return ;/* do one - for testing */ } 
73     
74     var  core = imports.gi[ns_name];
75     var idx = { name: ns_name}; 
76     console.log("START:" + ns_name);
77    
78     var ns = Introspect.ns(ns_name);
79     
80     if (File.exists(ns.gir_file)) {
81         File.copyFile(ns.gir_file, outputdir + '/'+ ns.gir_filename, Gio.FileCopyFlags.OVERWRITE);
82     }
83     
84     
85     ns['left_bar'] = cls_ix_template.process(ns);
86
87     langs.forEach(function(lang) {
88         // namespace template
89         Gio.simple_write(outputdir + '/'+ ns_name +  '.html', lang.cls_template.process(ns));
90         
91         // left bar index of elements in namespace...
92         Gio.simple_write(outputdir + '/_ix_'+ ns_name +  '.shtml', lang.cls_ix_template.process(ns));
93             
94     });
95      
96     
97     var actions = {
98         'objects' : 'Class',
99         'interfaces' : 'Interface',
100         'structs' : 'Struct',
101         'unions' : 'Union',
102         'enums' : 'Enum'
103         
104     };
105     for (var i in actions) {
106         // we flag GLib as a GObject lib...
107         idx[i]= ns_name == 'GLib' ? 1 : ns[i].length ;
108         ns[i].forEach( function(n) {
109             
110             
111             Gio.simple_write(outputdir + '/'+ ns_name + '.' + n + '.html', 
112                 cls_template.process(
113                     XObject.extend(
114                         Introspect.factory(actions[i], ns_name, n),
115                         { 'left_bar' :ns['left_bar'] }
116                     )
117                 )
118             )
119                        
120             console.log(ns_name + '.' +n);
121         }); 
122     }
123     ns_idx.push(idx);
124     
125 });
126
127 var refs = '';
128 var html_file_path = '';
129 var html = ''
130
131
132 for (var i in Introspect.references) {
133     html_file_path = File.join(outputdir, i + '.html');
134   
135     if (i == 'undefined') {
136       console.log("Undefined name space - ignored");
137       continue;
138     }
139     if (!File.isFile(html_file_path)) {
140       console.log("No HTML file " + html_file_path + " to insert references into - ignored");
141       continue;
142     }
143     
144     refs = reference_template.process(Introspect.references[i]);
145
146       // HTML to put refs into
147     html =  File.read(html_file_path);
148
149       // do the replacement
150     html = html.replace(/\<!--references--\>/, refs);
151
152       // write back to file
153     Gio.simple_write(html_file_path, html);
154
155 }
156
157 var ix_template = new Template(__script_path__ + '/templates/index.html');
158 Gio.simple_write(outputdir + '/index.html', ix_template.process(ns_idx));
159 File.silentRecursiveCopy(__script_path__ + '/templates/resources/', outputdir, Gio.FileCopyFlags.OVERWRITE);