/********************************************************************** * * * **********************************************************************/ ((typeof define)[0]=='u'?function(f){module.exports=f(require)}:define) (function(require){ var module={} // make module AMD/node compatible... /*********************************************************************/ var util = require('lib/util') var actions = require('lib/actions') var features = require('lib/features') var data = require('imagegrid/data') var images = require('imagegrid/images') var core = require('features/core') var base = require('features/base') if(typeof(process) != 'undefined'){ var pathlib = requirejs('path') } /*********************************************************************/ // XXX what we need here is: // - base introspection // - list features // - list actions // - list action scripts / commands // - call action // - call action script (a-la git commands) // // XXX the main functionality: // - make previews // - make index // - merge // - clone // // XXX a different approach to this would be an "external" cli controller // script that would contain only cli code and load the ImageGrid // only in the handler... // + would be allot faster to load. // + more flexible as we can load more than one instance... // This could still be done via features, just load the cli feature // alone at first and then either create new instances or setup // additional features as needed... var CLIActions = actions.Actions({ makeIndex: ['- System/', function(path){ var that = this // XXX is this correct??? path = path || this.location.path path = util.normalizePath(path) return this.loadImages(path) // save base index... .then(function(){ return that.saveIndex(path) }) // make the previews... .then(function(){ return that.makePreviews('all') }) .then(function(){ //that.readAllMetadata() return that .sortImages() // XXX for some reason this is not running from cli .saveIndex(path) }) }], }) var CLI = module.CLI = core.ImageGridFeatures.Feature({ title: '', doc: '', tag: 'commandline', depends: [ 'lifecycle' ], // XXX should this be ONLY node??? isApplicable: function(){ return this.runtime.node && !this.runtime.browser }, actions: CLIActions, handlers: [ ['start', function(){ var that = this // get the arguments... if(this.runtime.nw){ var argv = nw.App.argv // XXX appears to have a stray '--help' lodged in // all the time... // ...need to test this with a packed exec... console.log('>>>>', argv) } else if(this.runtime.node){ var argv = process.argv } // XXX this is not portable... //var package = requirejs('fs-extra').readJSONSync('./package.json') var cli = requirejs('commander') cli // XXX get the version from package.json... //.version(package.version) //.usage('[command] [options] ..') .option('-v, --verbose', 'verbose mode', function(){ // XXX use a standard logger... that.logger = { root: true, push: function(){ var o = Object.create(this) o.root = false o.__prefix = (this.__prefix || []).concat([].slice.call(arguments)) return o }, pop: function(){ return this.root ? this : this.__proto__ }, emit: function(){ console.log.apply(console, (this.__prefix || []).concat([].slice.call(arguments))) }, } }) // list features... // XXX make this a core action... (???) .option('lf, --list-features', 'list loaded features', function(){ // excluded... that.features.excluded.length > 0 && console.warn('Features excluded (%d):\n ', that.features.excluded.length, that.features.excluded.join('\n ')) // not applicable... that.features.unapplicable.length > 0 && console.log('Features not applicable (%d):\n ', that.features.unapplicable.length, that.features.unapplicable.join('\n ')) // loaded... console.log('Features loaded (%d):\n ', that.features.features.length, that.features.features.join('\n ')) }) // XXX make this applicable features... .option('laf, --list-available-features', 'list available features', function(){ // XXX bug, this hangs.... //console.log(core.ImageGridFeatures.buildFeatureList()) var f = core.ImageGridFeatures.features console.log('Features available (%d):\n ', f.length, f.join('\n ')) }) // list actions... // XXX this is a bit pointless as single actions are // meaningless when no state is stored... .option('la, --list-actions', 'list loaded actions', function(){ console.log('Actions loaded (%d):\n ', that.length, Object.keys(that.getDoc()).join('\n ')) }) // XXX experimental.... // to see this in action use: // ig lf sm lf // ...this will print the list of features before // and after setup... .option('sm, --setup-minimal', 'setup minimal features', function(){ // load features we might need... var all = require('features/all') // extend the current instance to a minimal non-ui // state... core.ImageGridFeatures .setup(that, ['imagegrid-minimal']) }) .option('repl, --repl', 'start an ImageGrid REPL', function(){ // XXX this is broken in node for some reason... var repl = requirejs('repl') // setup the global ns... global.ig = global.ImageGrid = that require('features/all') global.ImageGridFeatures = core.ImageGridFeatures //var ig = core.ImageGridFeatures repl.start({ prompt: 'ig> ', input: process.stdin, output: process.stdout, //ignoreUndefined: true, }) }) // XXX this needs both a local/linked nwjs installed and an // appropriate nw version under it... // npm install -g nwjs // npm link nwjs // nw install 0.14.5-sdk .option('gui, --gui', 'start ImageGrid.Viewer', function(){ var path = requirejs('path') requirejs('child_process') .spawn(requirejs('nwjs'), [ path.dirname(process.argv[1]).replace(/\\/g, '/') + '/']) }) // XXX the problem with this is that it still tires // to find and run 'ig-index'... /* .command('index [path]', 'build an index of path', function(path){ console.log('!!!!!! INDEX', path) }) */ // XXX might be a good idea to make the action call // syntax like this: // -- [args] .arguments(' [args]') .action(function(action, args){ // XXX //console.log('>>>>', action, args, !!that[action]) that[action](args) }) .parse(argv) }] ], }) /********************************************************************** * vim:set ts=4 sw=4 : */ return module })