mirror of
https://github.com/fazo96/pbs.git
synced 2025-01-30 14:54:20 +01:00
41 lines
1.3 KiB
CoffeeScript
41 lines
1.3 KiB
CoffeeScript
|
#!/usr/bin/env coffee
|
||
|
chalk = require 'chalk'
|
||
|
cli = require 'commander'
|
||
|
fs = require 'fs'
|
||
|
pert = require '../lib/pert.js'
|
||
|
|
||
|
ex = [{id: 0, depends: [], duration: 2}, { id: 1, depends: [0], duration: 3},{id: 2, depends: [0,1], duration: 4}]
|
||
|
|
||
|
cli
|
||
|
.version '0.1'
|
||
|
.usage 'loads activity data from JSON and computes the possible activity delays'
|
||
|
.option '--verbose', 'be verbose (for debugging)'
|
||
|
|
||
|
didSomething = no
|
||
|
|
||
|
cli
|
||
|
.command 'example'
|
||
|
.description 'show an example of the JSON data format'
|
||
|
.action ->
|
||
|
didSomething = yes
|
||
|
console.log chalk.bold.green('Before:'), ex
|
||
|
console.log chalk.bold.green('After calculations:'), pert.calculate ex
|
||
|
console.log chalk.green 'Tip:',chalk.bold 'optional fields can be freely included in the input data'
|
||
|
|
||
|
cli
|
||
|
.command 'calculate <file>'
|
||
|
.description 'calculate data on given JSON document'
|
||
|
.alias 'c'
|
||
|
.option '-j, --json', 'output json data'
|
||
|
.action (file,options) ->
|
||
|
didSomething = yes
|
||
|
fs.readFile file, (error,content) ->
|
||
|
if error then err error
|
||
|
else
|
||
|
if options.json then console.log JSON.stringify (pert.calculate JSON.parse(content))
|
||
|
else console.log pert.calculate JSON.parse(content)
|
||
|
|
||
|
cli.parse process.argv
|
||
|
|
||
|
if !didSomething then console.log chalk.green('Tip:'), 'see', chalk.bold(cli.name()+' --help')
|