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(f);
54 });
55
56
57
58 var cls_template = new Template(__script_path__ + '/templates/class.html');
59 var cls_ix_template = new Template(__script_path__ + '/templates/class_ix.html');
60 var reference_template = new Template(__script_path__ + '/templates/references.html');
61
62
63
64 var ns_idx = [];
65 ns_list.forEach(function(ns_name) 
66 {
67     
68     //if (ns_idx.length) {         return ;/* do one - for testing */ } 
69     
70     var  core = imports.gi[ns_name];
71     var idx = { name: ns_name}; 
72     console.log("START:" + ns_name);
73    
74     var ns = Introspect.ns(ns_name);
75     
76     if (File.exists(ns.gir_file)) {
77         File.copyFile(ns.gir_file, outputdir + '/'+ ns.gir_filename, Gio.FileCopyFlags.OVERWRITE);
78     }
79     
80     
81     ns['left_bar'] = cls_ix_template.process(ns);
82
83     // namespace template
84     Gio.simple_write(outputdir + '/'+ ns_name +  '.html', cls_template.process(ns));
85     
86     // left bar index of elements in namespace...
87     Gio.simple_write(outputdir + '/_ix_'+ ns_name +  '.shtml', cls_ix_template.process(ns));
88      
89     
90     var actions = {
91         'objects' : 'Class',
92         'interfaces' : 'Interface',
93         'structs' : 'Struct',
94         'unions' : 'Union',
95         'enums' : 'Enum'
96         
97     };
98     for (var i in actions) {
99         // we flag GLib as a GObject lib...
100         idx[i]= ns_name == 'GLib' ? 1 : ns[i].length ;
101         ns[i].forEach( function(n) {
102             
103             
104             Gio.simple_write(outputdir + '/'+ ns_name + '.' + n + '.html', 
105                 cls_template.process(
106                     XObject.extend(
107                         Introspect.factory(actions[i], ns_name, n),
108                         { 'left_bar' :ns['left_bar'] }
109                     )
110                 )
111             )
112                        
113             console.log(ns_name + '.' +n);
114         }); 
115     }
116     ns_idx.push(idx);
117     
118 });
119
120 var refs = '';
121 var html_file_path = '';
122 var html = ''
123
124
125 for (var i in Introspect.references) {
126     html_file_path = File.join(outputdir, i + '.html');
127   
128     if (i == 'undefined') {
129       console.log("Undefined name space - ignored");
130       continue;
131     }
132     if (!File.isFile(html_file_path)) {
133       console.log("No HTML file " + html_file_path + " to insert references into - ignored");
134       continue;
135     }
136     
137     refs = reference_template.process(Introspect.references[i]);
138
139       // HTML to put refs into
140     html =  File.read(html_file_path);
141
142       // do the replacement
143     html = html.replace(/\<!--references--\>/, refs);
144
145       // write back to file
146     Gio.simple_write(html_file_path, html);
147
148 }
149
150 var ix_template = new Template(__script_path__ + '/templates/index.html');
151 Gio.simple_write(outputdir + '/index.html', ix_template.process(ns_idx));
152 File.silentRecursiveCopy(__script_path__ + '/templates/resources/', outputdir, Gio.FileCopyFlags.OVERWRITE);