#!/usr/bin/env node var path = require('path'); var amberc = require('./amberc.js'); // get parameters passed to the command line script // discard the first two parameters which are the node binary and the script name var parameters = process.argv.slice(2); // check if at least one parameter was passed to the script if (1 > parameters.length) { print_usage(); process.exit(); } // Get Amber root directory from the location of this script so that // we can find the st and js directories etc. var amber_dir = path.normalize(path.join(path.dirname(process.argv[1]), '..')); // Get default location of compiler.jar var closure_jar = path.resolve(path.join(process.env['HOME'], 'compiler.jar')); var compiler = new amberc.Compiler(amber_dir, closure_jar); compiler.main(parameters); // print available flags var print_usage = function() { console.log('Usage: amberc [-l lib1,lib2...] [-i init_file] [-m main_class] [-M main_file]'); console.log(' [-o] [-O|-A] [-d] [-s suffix] [-S suffix] [file1 [file2 ...]] [Program]'); console.log(''); console.log(' amberc compiles Amber files - either separately or into a complete runnable'); console.log(' program. If no .st files are listed only a linking stage is performed.'); console.log(' Files listed will be handled using the following rules:'); console.log(''); console.log(' *.js'); console.log(' Files are linked (concatenated) in listed order.'); console.log(' If not found we look in $AMBER/js/'); console.log(''); console.log(' *.st'); console.log(' Files are compiled into .js files before concatenation.'); console.log(' If not found we look in $AMBER/st/.'); console.log(''); console.log(' NOTE: Each .st file is currently considered to be a fileout of a single class'); console.log(' category of the same name as the file!'); console.log(''); console.log(' If no is specified each given .st file will be compiled into'); console.log(' a matching .js file. Otherwise a .js file is linked together based on'); console.log(' the given options:'); console.log(' -l library1,library2'); console.log(' Add listed JavaScript libraries in listed order.'); console.log(' Libraries are not separated by spaces or end with .js.'); console.log(''); console.log(' -i init_file'); console.log(' Add library initializer instead of default $AMBER/js/init.js '); console.log(''); console.log(' -m main_class'); console.log(' Add a call to the class method main_class>>main at the end of .'); console.log(''); console.log(' -M main_file'); console.log(' Add at the end of acting as #main.'); console.log(''); console.log(' -o'); console.log(' Optimize each .js file using the Google closure compiler.'); console.log(' Using Closure compiler found at ~/compiler.jar'); console.log(''); console.log(' -O'); console.log(' Optimize final .js using the Google closure compiler.'); console.log(' Using Closure compiler found at ~/compiler.jar'); console.log(''); console.log(' -A Same as -O but use --compilation_level ADVANCED_OPTIMIZATIONS'); console.log(''); console.log(' -d'); console.log(' Additionally export code for deploy - stripped from source etc.'); console.log(' Uses suffix ".deploy.js" in addition to any explicit suffic set by -s.'); console.log(''); console.log(' -s suffix'); console.log(' Add to compiled .js files. File.st is then compiled into'); console.log(' File..js.'); console.log(''); console.log(' -S suffix'); console.log(' Use for all libraries accessed using -l. This makes it possible'); console.log(' to have multiple flavors of Amber and libraries in the same place.'); console.log(''); console.log(''); console.log(' Example invocations:'); console.log(''); console.log(' Just compile Kernel-Objects.st to Kernel-Objects.js:'); console.log(''); console.log(' amberc Kernel-Objects.st'); console.log(''); console.log(' Compile Hello.st to Hello.js and create complete program called Program.js.'); console.log(' Additionally add a call to the class method Hello>>main:'); console.log(''); console.log(' amberc -m Hello Hello.st Program'); console.log(''); console.log(' Compile Cat1.st and Cat2.st files into corresponding .js files.'); console.log(' Link them with myboot.js and myKernel.js and add myinit.js as custom'); console.log(' initializer file. Add main.js last which contains the startup code'); console.log(' and merge everything into a complete program named Program.js:'); console.log(''); console.log(' amberc -M main.js -i myinit.js myboot.js myKernel.js Cat1.st Cat2.st Program'); };