mirror of
https://github.com/jashkenas/coffeescript.git
synced 2022-11-09 12:23:24 -05:00
217 lines
6.7 KiB
Ruby
217 lines
6.7 KiB
Ruby
require 'optparse'
|
|
require 'fileutils'
|
|
require 'open3'
|
|
require File.expand_path(File.dirname(__FILE__) + '/../coffee-script')
|
|
|
|
module CoffeeScript
|
|
|
|
# The CommandLine handles all of the functionality of the `coffee`
|
|
# utility.
|
|
class CommandLine
|
|
|
|
BANNER = <<-EOS
|
|
coffee compiles CoffeeScript source files into JavaScript.
|
|
|
|
Usage:
|
|
coffee path/to/script.coffee
|
|
EOS
|
|
|
|
# Seconds to pause between checks for changed source files.
|
|
WATCH_INTERVAL = 0.5
|
|
|
|
# Command to execute in Narwhal
|
|
PACKAGE = File.expand_path(File.dirname(__FILE__) + '/../..')
|
|
LAUNCHER = "narwhal -p #{PACKAGE} -e 'require(\"coffee-script\").run(system.args);'"
|
|
|
|
# Run the CommandLine off the contents of ARGV.
|
|
def initialize
|
|
@mtimes = {}
|
|
parse_options
|
|
return launch_repl if @options[:interactive]
|
|
return eval_scriptlet if @options[:eval]
|
|
check_sources
|
|
return run_scripts if @options[:run]
|
|
@sources.each {|source| compile_javascript(source) }
|
|
watch_coffee_scripts if @options[:watch]
|
|
end
|
|
|
|
# The "--help" usage message.
|
|
def usage
|
|
puts "\n#{@option_parser}\n"
|
|
exit
|
|
end
|
|
|
|
|
|
private
|
|
|
|
# Compiles (or partially compiles) the source CoffeeScript file, returning
|
|
# the desired JS, tokens, or lint results.
|
|
def compile_javascript(source)
|
|
script = File.read(source)
|
|
return tokens(script) if @options[:tokens]
|
|
js = compile(script, source)
|
|
return unless js
|
|
return puts(js) if @options[:print]
|
|
return lint(js) if @options[:lint]
|
|
File.open(path_for(source), 'w+') {|f| f.write(js) }
|
|
end
|
|
|
|
# Spins up a watcher thread to keep track of the modification times of the
|
|
# source files, recompiling them whenever they're saved.
|
|
def watch_coffee_scripts
|
|
watch_thread = Thread.start do
|
|
loop do
|
|
@sources.each do |source|
|
|
mtime = File.stat(source).mtime
|
|
@mtimes[source] ||= mtime
|
|
if mtime > @mtimes[source]
|
|
@mtimes[source] = mtime
|
|
compile_javascript(source)
|
|
end
|
|
end
|
|
sleep WATCH_INTERVAL
|
|
end
|
|
end
|
|
Signal.trap("INT") { watch_thread.kill }
|
|
watch_thread.join
|
|
end
|
|
|
|
# Ensure that all of the source files exist.
|
|
def check_sources
|
|
usage if @sources.empty?
|
|
missing = @sources.detect {|s| !File.exists?(s) }
|
|
if missing
|
|
STDERR.puts("File not found: '#{missing}'")
|
|
exit(1)
|
|
end
|
|
end
|
|
|
|
# Pipe compiled JS through JSLint (requires a working 'jsl' command).
|
|
def lint(js)
|
|
stdin, stdout, stderr = Open3.popen3('jsl -nologo -stdin')
|
|
stdin.write(js)
|
|
stdin.close
|
|
puts stdout.read.tr("\n", '')
|
|
errs = stderr.read.chomp
|
|
puts errs unless errs.empty?
|
|
stdout.close and stderr.close
|
|
end
|
|
|
|
# Eval a little piece of CoffeeScript directly from the command line.
|
|
def eval_scriptlet
|
|
script = STDIN.tty? ? @sources.join(' ') : STDIN.read
|
|
return tokens(script) if @options[:tokens]
|
|
js = compile(script)
|
|
return lint(js) if @options[:lint]
|
|
puts js
|
|
end
|
|
|
|
# Use Narwhal to run an interactive CoffeeScript session.
|
|
def launch_repl
|
|
exec "#{LAUNCHER}"
|
|
rescue Errno::ENOENT
|
|
puts "Error: Narwhal must be installed to use the interactive REPL."
|
|
exit(1)
|
|
end
|
|
|
|
# Use Narwhal to compile and execute CoffeeScripts.
|
|
def run_scripts
|
|
sources = @sources.join(' ')
|
|
exec "#{LAUNCHER} #{sources}"
|
|
rescue Errno::ENOENT
|
|
puts "Error: Narwhal must be installed in order to execute CoffeeScripts."
|
|
exit(1)
|
|
end
|
|
|
|
# Print the tokens that the lexer generates from a source script.
|
|
def tokens(script)
|
|
puts Lexer.new.tokenize(script).inspect
|
|
end
|
|
|
|
# Compile a single source file to JavaScript.
|
|
def compile(script, source='error')
|
|
begin
|
|
options = {}
|
|
options[:no_wrap] = true if @options[:no_wrap]
|
|
CoffeeScript.compile(script, options)
|
|
rescue CoffeeScript::ParseError, SyntaxError => e
|
|
STDERR.puts "#{source}: #{e.message}"
|
|
exit(1) unless @options[:watch]
|
|
nil
|
|
end
|
|
end
|
|
|
|
# Write out JavaScript alongside CoffeeScript unless an output directory
|
|
# is specified.
|
|
def path_for(source)
|
|
filename = File.basename(source, File.extname(source)) + '.js'
|
|
dir = @options[:output] || File.dirname(source)
|
|
File.join(dir, filename)
|
|
end
|
|
|
|
# Install the CoffeeScript TextMate bundle to ~/Library.
|
|
def install_bundle
|
|
bundle_dir = File.expand_path('~/Library/Application Support/TextMate/Bundles/')
|
|
FileUtils.cp_r(File.dirname(__FILE__) + '/CoffeeScript.tmbundle', bundle_dir)
|
|
end
|
|
|
|
# Use OptionParser for all the options.
|
|
def parse_options
|
|
@options = {}
|
|
@option_parser = OptionParser.new do |opts|
|
|
opts.on('-i', '--interactive', 'run a CoffeeScript REPL (requires Narwhal)') do |i|
|
|
@options[:interactive] = true
|
|
end
|
|
opts.on('-r', '--run', 'compile and run a script (requires Narwhal)') do |r|
|
|
@options[:run] = true
|
|
end
|
|
opts.on('-o', '--output [DIR]', 'set the directory for compiled JavaScript') do |d|
|
|
@options[:output] = d
|
|
FileUtils.mkdir_p(d) unless File.exists?(d)
|
|
end
|
|
opts.on('-w', '--watch', 'watch scripts for changes, and recompile') do |w|
|
|
@options[:watch] = true
|
|
end
|
|
opts.on('-p', '--print', 'print the compiled JavaScript to stdout') do |d|
|
|
@options[:print] = true
|
|
end
|
|
opts.on('-l', '--lint', 'pipe the compiled JavaScript through JSLint') do |l|
|
|
@options[:lint] = true
|
|
end
|
|
opts.on('-e', '--eval', 'compile a cli scriptlet or read from stdin') do |e|
|
|
@options[:eval] = true
|
|
end
|
|
opts.on('-t', '--tokens', 'print the tokens that the lexer produces') do |t|
|
|
@options[:tokens] = true
|
|
end
|
|
opts.on('-v', '--verbose', 'print at every step of code generation') do |v|
|
|
ENV['VERBOSE'] = 'true'
|
|
end
|
|
opts.on('-n', '--no-wrap', 'raw output, no safety wrapper or vars') do |n|
|
|
@options[:no_wrap] = true
|
|
end
|
|
opts.on_tail('--install-bundle', 'install the CoffeeScript TextMate bundle') do |i|
|
|
install_bundle
|
|
exit
|
|
end
|
|
opts.on_tail('--version', 'display CoffeeScript version') do
|
|
puts "CoffeeScript version #{CoffeeScript::VERSION}"
|
|
exit
|
|
end
|
|
opts.on_tail('-h', '--help', 'display this help message') do
|
|
usage
|
|
end
|
|
end
|
|
@option_parser.banner = BANNER
|
|
begin
|
|
@option_parser.parse!(ARGV)
|
|
rescue OptionParser::InvalidOption => e
|
|
puts e.message
|
|
exit(1)
|
|
end
|
|
@sources = ARGV
|
|
end
|
|
|
|
end
|
|
|
|
end
|