pack.js
[gnome.introspection-doc-generator] / pack.js
1 #!/usr/bin/seed
2 //<script type="text/javascript">
3 /**
4  * packer command line
5  * 
6  * -o Output
7  * -O Output debug file here.
8  * -t Translate json file.
9  * -w Cache / working dir.
10  * -f File to read with a list of source paths / or class names.
11  * -C no cleanup (use with -w if you need are using a cache directory.)
12  * -p prefix for translation md5 generator (directory that files are in, and is removed 
13  *    from path when generating an md5 for the translated name.
14  * -a autoBuild - puts target in INPUTDIR/compiled/Core-TIMESTAMP.js and enabled translastion
15  * -m module name used with autoBuild to force a module name.
16  * compresses files listed as arguments and outputs result
17  */
18  
19 File            = imports.File.File;
20 Packer          = imports.JSDOC.Packer.Packer;
21
22
23  
24   
25
26 var args = Array.prototype.slice.call(Seed.argv);
27 args.shift(); //seed
28 args.shift(); // pack.js
29 var cfg = {
30     files : [],
31     target : false,
32     srcfiles : [],
33     autoBuild : false
34 }
35
36
37 for(var i =0; i < args.length;i++) {
38     if (args[i] == '-o') {
39         cfg.target = args[i+1];
40         i++;
41         continue;
42     }
43     if (args[i] == '-O') {
44         cfg.debugTarget = args[i+1];
45         i++;
46         continue;
47     }
48     if (args[i] == '-t') {
49         cfg.translateJSON = args[i+1];
50         i++;
51         continue;
52     }
53     if (args[i] == '-w') {
54         cfg.tmpDir = args[i+1];
55         i++;
56         continue;
57     }
58     if (args[i] == '-p') {
59         cfg.prefix = args[i+1];
60         i++;
61         continue;
62     }
63  
64     if (args[i] == '-C') {
65         cfg.cleanup = false;
66         continue;
67     }
68     if (args[i] == '-f') {
69         cfg.srcfiles.push(args[i+1]);
70         i++;
71         continue;
72     }
73     if (args[i] == '-m') {
74         cfg.module = args[i+1];
75         continue;
76     }
77     if (args[i] == '-a') {
78         cfg.autoBuild = true
79         continue;
80     }
81     if (cfg.files.indexOf(args[i]) > -1) {
82         continue; // remove dupes.
83     }
84     cfg.files.push(args[i]);
85 }
86 var pack;
87 try {
88     pack = new Packer(cfg)
89 } catch (e) {
90     print("ERROR " + e.toString());
91     throw e;
92 }
93 if (!pack.target) {
94     print(pack.out);
95 }
96
97