Alex A. Naanou 5f47d6da7b restructured the repo moving the legacy out of the way...
Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
2020-08-28 17:32:02 +03:00

378 lines
10 KiB
JavaScript
Executable File

/**********************************************************************
*
*
*
**********************************************************************/
((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)
// - repl (debug/testing)
//
// 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({
get cli_commands(){
return this.actions
.filter(function(action){
return this.getActionAttr(action, 'cli') }.bind(this)) },
// XXX should this be here???
// ...move this to progress...
__progress: null,
showProgress: ['- System/',
function(text, value, max){
var msg = text instanceof Array ? text.slice(1).join(': ') : null
text = text instanceof Array ? text[0] : text
var state = this.__progress = this.__progress || {}
state = state[text] = state[text] || {}
// normalize max and value...
max = state.max = max != null ?
(typeof(max) == typeof('str') && /[+-][0-9]+/.test(max) ?
(state.max || 0) + parseInt(max)
: max)
: state.max
value = state.value = value != null ?
(typeof(value) == typeof('str') && /[+-][0-9]+/.test(value) ?
(state.value || 0) + parseInt(value)
: value)
: state.value
// format the message...
msg = msg ? ': '+msg : ''
msg = ' '+ msg
//+ (value && value >= (max || 0) ? ' ('+value+' done)'
+ (value && value >= (max || 0) ? ' (done)'
: value && max && value != max ? ' ('+ value +' of '+ max +')'
: '...')
msg != state.msg
&& console.log(msg)
state.msg = msg
}],
makeIndex: ['- System/',
{cli: true},
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(){
if(that.makePreviews){
return that.makePreviews('all')
}
})
.then(function(){
//that.readAllMetadata()
return that
.sortImages()
// XXX for some reason this is not running from cli
.saveIndex(path)
})
}],
})
// XXX revise architecture....
// XXX move this to the argv parser used in object.js
var CLI =
module.CLI = core.ImageGridFeatures.Feature({
title: '',
doc: '',
tag: 'commandline',
depends: [
'lifecycle',
'logger',
],
// XXX should this be ONLY node???
isApplicable: function(){
return this.runtime.node && !this.runtime.browser },
actions: CLIActions,
handlers: [
// XXX should some of the flag handlers be actions???
['ready',
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
}
var keep_running = false
// 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(that.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([...arguments])
return o
},
pop: function(){
return this.root ? this : this.__proto__
},
emit: function(){
console.log.apply(console,
(this.__prefix || []).concat([...arguments]))
},
}
})
.option('l, --list-commands', 'list commands', function(){
console.log('Commands:\n ', that.cli_commands.join('\n\t'))
})
// 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(){
var repl = nodeRequire('repl')
keep_running = true
// setup the global ns...
global.ig =
global.ImageGrid =
that
require('features/all')
global.ImageGridFeatures = core.ImageGridFeatures
//var ig = core.ImageGridFeatures
repl
.start({
prompt: 'ig> ',
useGlobal: true,
input: process.stdin,
output: process.stdout,
//ignoreUndefined: true,
})
.on('exit', function(){
ig.stop()
})
})
// 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('nw, --nw', 'start ImageGrid.Viewer (nw)', function(){
throw new Error('ig: GUI startup not implemented.')
var path = requirejs('path')
requirejs('child_process')
.spawn(requirejs('nwjs'), [
path.dirname(process.argv[1]).replace(/\\/g, '/') + '/'])
keep_running = true
})
.option('electron, --electron', 'start ImageGrid.Viewer (electron)', function(){
var path = requirejs('path')
requirejs('child_process')
.spawn(requirejs('electron'), [
path.join(
path.dirname(nodeRequire.main.filename),
'e.js')])
// XXX need to stop the process iff nothing
// else is running, like repl...
// XXX feels hackish...
.on('exit', function(){
(!global.ig
|| global.ig.isStopped())
&& process.exit()
})
keep_running = true
})
/* // XXX the problem with this is that it still tires
// to find and run 'ig-index'...
.command('index [path]', 'build an index of path')
.action(function(path){
console.log('!!!!!! INDEX', path)
//this.makeIndex(path)
})
//*/
// XXX might be a good idea to make the action call
// syntax like this:
// --<action-name> [args]
.arguments('<action> [args]')
.action(function(action, args){
// XXX
//console.log('>>>>', action, args, !!that[action])
if(!that[action]){
console.error('No such action:', action)
return
}
var res = that[action](args)
if(res instanceof Promise){
keep_running = true
res.then(function(){
process.exit()
})
}
})
.parse(argv)
// XXX is this the right way to trigger state change
// from within a state action...
!keep_running
&& this.afterAction(function(){ process.exit() })
}],
],
})
/**********************************************************************
* vim:set ts=4 sw=4 : */
return module })