amberc 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. #!/usr/bin/env node
  2. var path = require('path');
  3. var amberc = require('./amberc.js');
  4. // get parameters passed to the command line script
  5. // discard the first two parameters which are the node binary and the script name
  6. var parameters = process.argv.slice(2);
  7. // check if at least one parameter was passed to the script
  8. if (1 > parameters.length) {
  9. print_usage();
  10. process.exit();
  11. }
  12. // Get Amber root directory from the location of this script so that
  13. // we can find the st and js directories etc.
  14. var amber_dir = path.normalize(path.join(path.dirname(process.argv[1]), '..'));
  15. // Get default location of compiler.jar
  16. var closure_jar = path.resolve(path.join(process.env['HOME'], 'compiler.jar'));
  17. var compiler = new amberc.Compiler(amber_dir, closure_jar);
  18. var configuration = handle_options(parameters, amber_dir);
  19. compiler.main(configuration);
  20. /**
  21. * Process given program options and update defaults values.
  22. * Followed by check_for_closure_compiler() and then collect_files().
  23. */
  24. function handle_options(optionsArray, amber_dir) {
  25. var programName = [];
  26. var currentItem = optionsArray.shift();
  27. var defaults = amberc.createDefaults(amber_dir);
  28. while(undefined !== currentItem) {
  29. switch(currentItem) {
  30. case '-l':
  31. defaults.load.push.apply(defaults.load, optionsArray.shift().split(','));
  32. break;
  33. case '-g':
  34. defaults.jsGlobals.push.apply(defaults.jsGlobals, optionsArray.shift().split(','));
  35. break;
  36. case '-m':
  37. defaults.main = optionsArray.shift();
  38. break;
  39. case '-M':
  40. defaults.mainfile = optionsArray.shift();
  41. break;
  42. case '-n':
  43. defaults.amd_namespace = optionsArray.shift();
  44. break;
  45. case '-o':
  46. // leave this for compatibility
  47. case '-O':
  48. defaults.closure = true;
  49. break;
  50. case '-A':
  51. defaults.closure = true;
  52. defaults.closure_options = defaults.closure_options + ' --compilation_level ADVANCED_OPTIMIZATIONS';
  53. break;
  54. case '-D':
  55. defaults.output_dir = optionsArray.shift();
  56. break;
  57. case '-s':
  58. defaults.suffix = optionsArray.shift();
  59. defaults.suffix_used = defaults.suffix;
  60. break;
  61. case '-S':
  62. defaults.loadsuffix = optionsArray.shift();
  63. defaults.suffix_used = defaults.suffix;
  64. break;
  65. case '-v':
  66. defaults.verbose = true;
  67. break;
  68. case '-h':
  69. case '--help':
  70. case '?':
  71. print_usage();
  72. break;
  73. default:
  74. var fileSuffix = path.extname(currentItem);
  75. switch (fileSuffix) {
  76. case '.st':
  77. defaults.stFiles.push(currentItem);
  78. break;
  79. case '.js':
  80. defaults.jsFiles.push(currentItem);
  81. break;
  82. default:
  83. // Will end up being the last non js/st argument
  84. programName.push(currentItem);
  85. break;
  86. };
  87. };
  88. currentItem = optionsArray.shift();
  89. }
  90. if(1 < programName.length) {
  91. throw new Error('More than one name for ProgramName given: ' + programName);
  92. } else {
  93. defaults.program = programName[0];
  94. }
  95. return defaults;
  96. };
  97. // print available flags
  98. function print_usage() {
  99. console.log('Usage: amberc [-l lib1,lib2...] [-i init_file] [-m main_class] [-M main_file]');
  100. console.log(' [-o] [-O|-A] [-d] [-s suffix] [-S suffix] [file1 [file2 ...]] [Program]');
  101. console.log('');
  102. console.log(' amberc compiles Amber files - either separately or into a complete runnable');
  103. console.log(' program. If no .st files are listed only a linking stage is performed.');
  104. console.log(' Files listed will be handled using the following rules:');
  105. console.log('');
  106. console.log(' *.js');
  107. console.log(' Files are linked (concatenated) in listed order.');
  108. console.log(' If not found we look in $AMBER/js/');
  109. console.log('');
  110. console.log(' *.st');
  111. console.log(' Files are compiled into .js files before concatenation.');
  112. console.log(' If not found we look in $AMBER/st/.');
  113. console.log('');
  114. console.log(' NOTE: Each .st file is currently considered to be a fileout of a single class');
  115. console.log(' category of the same name as the file!');
  116. console.log('');
  117. console.log(' If no <Program> is specified each given .st file will be compiled into');
  118. console.log(' a matching .js file. Otherwise a <Program>.js file is linked together based on');
  119. console.log(' the given options:');
  120. console.log(' -l library1,library2');
  121. console.log(' Add listed JavaScript libraries in listed order.');
  122. console.log(' Libraries are not separated by spaces or end with .js.');
  123. console.log('');
  124. console.log(' -g jsGlobal1,jsGlobal2');
  125. console.log(' Comma separated list of JS global variable names.');
  126. console.log(' The names are added to a list containing "window", "document" and others.');
  127. console.log('');
  128. console.log(' -m main_class');
  129. console.log(' Add a call to the class method main_class>>main at the end of <Program>.');
  130. console.log('');
  131. console.log(' -M main_file');
  132. console.log(' Add <main_file> at the end of <Program.js> acting as #main.');
  133. console.log('');
  134. console.log(' -n amd_namespace');
  135. console.log(' Export packages with <amd_namespace> as the require.js namespace.');
  136. console.log(' Default value is "amber_core".');
  137. console.log('');
  138. console.log(' -O');
  139. console.log(' Optimize final <Program>.js using the Google closure compiler.');
  140. console.log(' Using Closure compiler found at ~/compiler.jar');
  141. console.log('');
  142. console.log(' -A Same as -O but use --compilation_level ADVANCED_OPTIMIZATIONS');
  143. console.log('');
  144. console.log(' -D');
  145. console.log(' Specifies the output directory for all generated .js files.');
  146. console.log(' The hierarchy of the input files is not maintaned.');
  147. console.log(' If this option is omitted all generated .js files are placed next to their input files');
  148. console.log('');
  149. console.log(' -s suffix');
  150. console.log(' Add <suffix> to compiled .js files. File.st is then compiled into');
  151. console.log(' File.<suffix>.js.');
  152. console.log('');
  153. console.log(' -S suffix');
  154. console.log(' Use <suffix> for all libraries accessed using -l. This makes it possible');
  155. console.log(' to have multiple flavors of Amber and libraries in the same place.');
  156. console.log('');
  157. console.log('');
  158. console.log(' Example invocations:');
  159. console.log('');
  160. console.log(' Just compile Kernel-Objects.st to Kernel-Objects.js:');
  161. console.log('');
  162. console.log(' amberc Kernel-Objects.st');
  163. console.log('');
  164. console.log(' Compile Hello.st to Hello.js and create complete program called Program.js.');
  165. console.log(' Additionally add a call to the class method Hello>>main:');
  166. console.log('');
  167. console.log(' amberc -m Hello Hello.st Program');
  168. console.log('');
  169. console.log(' Compile Cat1.st and Cat2.st files into corresponding .js files.');
  170. console.log(' Link them with myboot.js and myKernel.js and add myinit.js as custom');
  171. console.log(' initializer file. Add main.js last which contains the startup code');
  172. console.log(' and merge everything into a complete program named Program.js:');
  173. console.log('');
  174. console.log(' amberc -M main.js -i myinit.js myboot.js myKernel.js Cat1.st Cat2.st Program');
  175. };