• 移動先… +
    browser.coffee cake.coffee coffee-script.coffee command.coffee grammar.coffee helpers.coffee index.coffee lexer.coffee nodes.coffee optparse.coffee register.coffee repl.coffee rewriter.coffee scope.litcoffee sourcemap.litcoffee
  • command.coffee

  • ¶

    coffee ユーティリティ。CoffeeScript のコマンドラインコンパイルをさまざまな形式で処理します。.js ファイルに保存するか、stdout に印刷するか、ソースの保存時に再コンパイルするか、トークンストリームまたは構文ツリーとして印刷するか、対話式 REPL を開始します。

  • ¶

    外部依存関係。

    fs             = require 'fs'
    path           = require 'path'
    helpers        = require './helpers'
    optparse       = require './optparse'
    CoffeeScript   = require './coffee-script'
    {spawn, exec}  = require 'child_process'
    {EventEmitter} = require 'events'
    
    useWinPathSep  = path.sep is '\\'
  • ¶

    CoffeeScript による Node.js イベントの送信を許可します。

    helpers.extend CoffeeScript, new EventEmitter
    
    printLine = (line) -> process.stdout.write line + '\n'
    printWarn = (line) -> process.stderr.write line + '\n'
    
    hidden = (file) -> /^\.|~$/.test file
  • ¶

    -h/--help と一緒に印刷されるヘルプバナー。

    BANNER = '''
      Usage: coffee [options] path/to/script.coffee -- [args]
    
      If called without options, `coffee` will run your script.
    '''
  • ¶

    coffee が処理できる有効なオプションフラグのリスト。

    SWITCHES = [
      ['-b', '--bare',            'compile without a top-level function wrapper']
      ['-c', '--compile',         'compile to JavaScript and save as .js files']
      ['-e', '--eval',            'pass a string from the command line as input']
      ['-h', '--help',            'display this help message']
      ['-i', '--interactive',     'run an interactive CoffeeScript REPL']
      ['-j', '--join [FILE]',     'concatenate the source CoffeeScript before compiling']
      ['-m', '--map',             'generate source map and save as .js.map files']
      ['-M', '--inline-map',      'generate source map and include it directly in output']
      ['-n', '--nodes',           'print out the parse tree that the parser produces']
      [      '--nodejs [ARGS]',   'pass options directly to the "node" binary']
      [      '--no-header',       'suppress the "Generated by" header']
      ['-o', '--output [DIR]',    'set the output directory for compiled JavaScript']
      ['-p', '--print',           'print out the compiled JavaScript']
      ['-r', '--require [MODULE*]', 'require the given module before eval or REPL']
      ['-s', '--stdio',           'listen for and compile scripts over stdio']
      ['-l', '--literate',        'treat stdio as literate style coffee-script']
      ['-t', '--tokens',          'print out the tokens that the lexer/rewriter produce']
      ['-v', '--version',         'display the version number']
      ['-w', '--watch',           'watch scripts for changes and rerun commands']
    ]
  • ¶

    すべての関数によって共有される最上位オブジェクト。

    opts         = {}
    sources      = []
    sourceCode   = []
    notSources   = {}
    watchedDirs  = {}
    optionParser = null
  • ¶

    渡されたオプションを解析し、実行するアクションを決定することによって、coffee を実行します。多くのフラグは、コンパイルの前に迂回します。-- の後に渡されたフラグは、process.argv の引数としてスクリプトにそのまま渡されます。

    exports.run = ->
      parseOptions()
  • ¶

    REPL CLI にグローバルコンテキストを使用させます。その理由は (a) node REPL CLI と整合性を持たせるためであり、したがって (b) ネイティブプロトタイプ (「colors」や「sugar」など) を変更するパッケージを期待どおりに機能させるためです。

      replCliOpts = useGlobal: yes
      opts.prelude = makePrelude opts.require       if opts.require
      replCliOpts.prelude = opts.prelude
      return forkNode()                             if opts.nodejs
      return usage()                                if opts.help
      return version()                              if opts.version
      return require('./repl').start(replCliOpts)   if opts.interactive
      return compileStdio()                         if opts.stdio
      return compileScript null, opts.arguments[0]  if opts.eval
      return require('./repl').start(replCliOpts)   unless opts.arguments.length
      literals = if opts.run then opts.arguments.splice 1 else []
      process.argv = process.argv[0..1].concat literals
      process.argv[0] = 'coffee'
    
      opts.output = path.resolve opts.output  if opts.output
      if opts.join
        opts.join = path.resolve opts.join
        console.error '''
    
        The --join option is deprecated and will be removed in a future version.
    
        If for some reason it's necessary to share local variables between files,
        replace...
    
            $ coffee --compile --join bundle.js -- a.coffee b.coffee c.coffee
    
        with...
    
            $ cat a.coffee b.coffee c.coffee | coffee --compile --stdio > bundle.js
    
        '''
      for source in opts.arguments
        source = path.resolve source
        compilePath source, yes, source
    
    makePrelude = (requires) ->
      requires.map (module) ->
        [_, name, module] = match if match = module.match(/^(.*)=(.*)$/)
        name ||= helpers.baseFileName module, yes, useWinPathSep
        "#{name} = require('#{module}')"
      .join ';'
  • ¶

    パスをコンパイルします。スクリプトまたはディレクトリになります。ディレクトリが渡された場合は、そのディレクトリとすべてのサブディレクトリ内のすべての「.coffee」、「.litcoffee」、「.coffee.md」拡張子のソースファイルを再帰的にコンパイルします。

    compilePath = (source, topLevel, base) ->
      return if source in sources   or
                watchedDirs[source] or
                not topLevel and (notSources[source] or hidden source)
      try
        stats = fs.statSync source
      catch err
        if err.code is 'ENOENT'
          console.error "File not found: #{source}"
          process.exit 1
        throw err
      if stats.isDirectory()
        if path.basename(source) is 'node_modules'
          notSources[source] = yes
          return
        if opts.run
          compilePath findDirectoryIndex(source), topLevel, base
          return
        watchDir source, base if opts.watch
        try
          files = fs.readdirSync source
        catch err
          if err.code is 'ENOENT' then return else throw err
        for file in files
          compilePath (path.join source, file), no, base
      else if topLevel or helpers.isCoffee source
        sources.push source
        sourceCode.push null
        delete notSources[source]
        watch source, base if opts.watch
        try
          code = fs.readFileSync source
        catch err
          if err.code is 'ENOENT' then return else throw err
        compileScript(source, code.toString(), base)
      else
        notSources[source] = yes
    
    findDirectoryIndex = (source) ->
      for ext in CoffeeScript.FILE_EXTENSIONS
        index = path.join source, "index#{ext}"
        try
          return index if (fs.statSync index).isFile()
        catch err
          throw err unless err.code is 'ENOENT'
      console.error "Missing index.coffee or index.litcoffee in #{source}"
      process.exit 1
  • ¶

    要求されたオプションに従って、指定されたコードを含む単一のソーススクリプトをコンパイルします。スクリプトを直接評価すると、スクリプトのパスに対して正しく __filename、__dirname、および module.filename が設定されます。

    compileScript = (file, input, base = null) ->
      o = opts
      options = compileOptions file, base
      try
        t = task = {file, input, options}
        CoffeeScript.emit 'compile', task
        if o.tokens
          printTokens CoffeeScript.tokens t.input, t.options
        else if o.nodes
          printLine CoffeeScript.nodes(t.input, t.options).toString().trim()
        else if o.run
          CoffeeScript.register()
          CoffeeScript.eval opts.prelude, t.options if opts.prelude
          CoffeeScript.run t.input, t.options
        else if o.join and t.file isnt o.join
          t.input = helpers.invertLiterate t.input if helpers.isLiterate file
          sourceCode[sources.indexOf(t.file)] = t.input
          compileJoin()
        else
          compiled = CoffeeScript.compile t.input, t.options
          t.output = compiled
          if o.map
            t.output = compiled.js
            t.sourceMap = compiled.v3SourceMap
    
          CoffeeScript.emit 'success', task
          if o.print
            printLine t.output.trim()
          else if o.compile or o.map
            writeJs base, t.file, t.output, options.jsPath, t.sourceMap
      catch err
        CoffeeScript.emit 'failure', err, task
        return if CoffeeScript.listeners('failure').length
        message = err?.stack or "#{err}"
        if o.watch
          printLine message + '\x07'
        else
          printWarn message
          process.exit 1
  • ¶

    stdin を介して受信されたスクリプトをコンパイルするための適切なリスナーを付加し、それらを stdout に書き戻します。

    compileStdio = ->
      buffers = []
      stdin = process.openStdin()
      stdin.on 'data', (buffer) ->
        buffers.push buffer if buffer
      stdin.on 'end', ->
        compileScript null, Buffer.concat(buffers).toString()
  • ¶

    すべてのソースファイルの読み取りが完了したら、それらを連結してコンパイルします。

    joinTimeout = null
    compileJoin = ->
      return unless opts.join
      unless sourceCode.some((code) -> code is null)
        clearTimeout joinTimeout
        joinTimeout = wait 100, ->
          compileScript opts.join, sourceCode.join('\n'), opts.join
  • ¶

    fs.watch を使用してソース CoffeeScript ファイルを監視し、ファイルが更新されるたびに再コンパイルします。--print などの他のオプションと組み合わせて使用できます。

    watch = (source, base) ->
      watcher        = null
      prevStats      = null
      compileTimeout = null
    
      watchErr = (err) ->
        throw err unless err.code is 'ENOENT'
        return unless source in sources
        try
          rewatch()
          compile()
        catch
          removeSource source, base
          compileJoin()
    
      compile = ->
        clearTimeout compileTimeout
        compileTimeout = wait 25, ->
          fs.stat source, (err, stats) ->
            return watchErr err if err
            return rewatch() if prevStats and
                                stats.size is prevStats.size and
                                stats.mtime.getTime() is prevStats.mtime.getTime()
            prevStats = stats
            fs.readFile source, (err, code) ->
              return watchErr err if err
              compileScript(source, code.toString(), base)
              rewatch()
    
      startWatcher = ->
        watcher = fs.watch source
        .on 'change', compile
        .on 'error', (err) ->
          throw err unless err.code is 'EPERM'
          removeSource source, base
    
      rewatch = ->
        watcher?.close()
        startWatcher()
    
      try
        startWatcher()
      catch err
        watchErr err
  • ¶

    新しい追加がないかディレクトリ内のファイルを監視します。

    watchDir = (source, base) ->
      watcher        = null
      readdirTimeout = null
    
      startWatcher = ->
        watcher = fs.watch source
        .on 'error', (err) ->
          throw err unless err.code is 'EPERM'
          stopWatcher()
        .on 'change', ->
          clearTimeout readdirTimeout
          readdirTimeout = wait 25, ->
            try
              files = fs.readdirSync source
            catch err
              throw err unless err.code is 'ENOENT'
              return stopWatcher()
            for file in files
              compilePath (path.join source, file), no, base
    
      stopWatcher = ->
        watcher.close()
        removeSourceDir source, base
    
      watchedDirs[source] = yes
      try
        startWatcher()
      catch err
        throw err unless err.code is 'ENOENT'
    
    removeSourceDir = (source, base) ->
      delete watchedDirs[source]
      sourcesChanged = no
      for file in sources when source is path.dirname file
        removeSource file, base
        sourcesChanged = yes
      compileJoin() if sourcesChanged
  • ¶

    ファイルとそのソースコードキャッシュをソースリストから削除します。オプションで、コンパイルされた JS バージョンも削除します。

    removeSource = (source, base) ->
      index = sources.indexOf source
      sources.splice index, 1
      sourceCode.splice index, 1
      unless opts.join
        silentUnlink outputPath source, base
        silentUnlink outputPath source, base, '.js.map'
        timeLog "removed #{source}"
    
    silentUnlink = (path) ->
      try
        fs.unlinkSync path
      catch err
        throw err unless err.code in ['ENOENT', 'EPERM']
  • ¶

    ソースファイルに対応する出力 JavaScript パスを取得します。

    outputPath = (source, base, extension=".js") ->
      basename  = helpers.baseFileName source, yes, useWinPathSep
      srcDir    = path.dirname source
      if not opts.output
        dir = srcDir
      else if source is base
        dir = opts.output
      else
        dir = path.join opts.output, path.relative base, srcDir
      path.join dir, basename + extension
  • ¶

    mkdir -p のように、再帰的に mkdir を実行します。

    mkdirp = (dir, fn) ->
      mode = 0o777 & ~process.umask()
    
      do mkdirs = (p = dir, fn) ->
        fs.exists p, (exists) ->
          if exists
            fn()
          else
            mkdirs path.dirname(p), ->
              fs.mkdir p, mode, (err) ->
                return fn err if err
                fn()
  • ¶

    コンパイルされたコードを使用して JavaScript ソースファイルを書き出します。デフォルトでは、ファイルは cwd 内に同じ名前の .js ファイルとして書き出されますが、出力ディレクトリは --output でカスタマイズできます。

    generatedSourceMap が提供されている場合、.js ファイルと同じディレクトリに .js.map ファイルが書き込まれます。

    writeJs = (base, sourcePath, js, jsPath, generatedSourceMap = null) ->
      sourceMapPath = outputPath sourcePath, base, ".js.map"
      jsDir  = path.dirname jsPath
      compile = ->
        if opts.compile
          js = ' ' if js.length <= 0
          if generatedSourceMap then js = "#{js}\n//# sourceMappingURL=#{helpers.baseFileName sourceMapPath, no, useWinPathSep}\n"
          fs.writeFile jsPath, js, (err) ->
            if err
              printLine err.message
              process.exit 1
            else if opts.compile and opts.watch
              timeLog "compiled #{sourcePath}"
        if generatedSourceMap
          fs.writeFile sourceMapPath, generatedSourceMap, (err) ->
            if err
              printLine "Could not write source map: #{err.message}"
              process.exit 1
      fs.exists jsDir, (itExists) ->
        if itExists then compile() else mkdirp jsDir, compile
  • ¶

    よりクリーンなタイムアウトのための利便性。

    wait = (milliseconds, func) -> setTimeout func, milliseconds
  • ¶

    スクリプトを監視するときは、タイムスタンプを使用して変更を記録すると便利です。

    timeLog = (message) ->
      console.log "#{(new Date).toLocaleTimeString()} - #{message}"
  • ¶

    位置データのないトークンのストリームをきれいに印刷します。

    printTokens = (tokens) ->
      strings = for token in tokens
        tag = token[0]
        value = token[1].toString().replace(/\n/, '\\n')
        "[#{tag} #{value}]"
      printLine strings.join(' ')
  • ¶

    OptionParser モジュール を使用して、process.argv から SWITCHES で指定されたすべてのオプションを抽出します。

    parseOptions = ->
      optionParser  = new optparse.OptionParser SWITCHES, BANNER
      o = opts      = optionParser.parse process.argv[2..]
      o.compile     or=  !!o.output
      o.run         = not (o.compile or o.print or o.map)
      o.print       = !!  (o.print or (o.eval or o.stdio and o.compile))
  • ¶

    CoffeeScriptコンパイラに渡されるコンパイル時オプション。

    compileOptions = (filename, base) ->
      answer = {
        filename
        literate: opts.literate or helpers.isLiterate(filename)
        bare: opts.bare
        header: opts.compile and not opts['no-header']
        sourceMap: opts.map
        inlineMap: opts['inline-map']
      }
      if filename
        if base
          cwd = process.cwd()
          jsPath = outputPath filename, base
          jsDir = path.dirname jsPath
          answer = helpers.merge answer, {
            jsPath
            sourceRoot: path.relative jsDir, cwd
            sourceFiles: [path.relative cwd, filename]
            generatedFile: helpers.baseFileName(jsPath, no, useWinPathSep)
          }
        else
          answer = helpers.merge answer,
            sourceRoot: ""
            sourceFiles: [helpers.baseFileName filename, no, useWinPathSep]
            generatedFile: helpers.baseFileName(filename, yes, useWinPathSep) + ".js"
      answer
  • ¶

    --nodejsの引数をnodeバイナリに渡して、新しいNode.jsインスタンスを開始し、他のオプションは保持します。

    forkNode = ->
      nodeArgs = opts.nodejs.split /\s+/
      args     = process.argv[1..]
      args.splice args.indexOf('--nodejs'), 2
      p = spawn process.execPath, nodeArgs.concat(args),
        cwd:        process.cwd()
        env:        process.env
        stdio:      [0, 1, 2]
      p.on 'exit', (code) -> process.exit code
  • ¶

    --helpの使用メッセージを印刷して終了します。推奨されないスイッチは表示されません。

    usage = ->
      printLine (new optparse.OptionParser SWITCHES, BANNER).help()
  • ¶

    --versionメッセージを印刷して終了します。

    version = ->
      printLine "CoffeeScript version #{CoffeeScript.VERSION}"