1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
#!/usr/bin/env php
<?php
require_once dirname(dirname(__FILE__)).'/__init_script__.php';
$args = new PhutilArgumentParser($argv);
$args->setTagline(pht('crazy workflow delegation'));
$args->setSynopsis(<<<EOHELP
**subworkflow.php** do echo __args__ ...
Echo some stuff using a convoluted series of delegate workflows.
EOHELP
);
// This shows how to do manual parsing of raw arguments.
final class PhutilEchoExampleArgumentWorkflow extends PhutilArgumentWorkflow {
public function isExecutable() {
return true;
}
public function shouldParsePartial() {
return true;
}
public function execute(PhutilArgumentParser $args) {
$unconsumed = $args->getUnconsumedArgumentVector();
echo implode(' ', $unconsumed)."\n";
return 0;
}
}
// This shows how to delegate to sub-workflows.
final class PhutilDoExampleArgumentWorkflow extends PhutilArgumentWorkflow {
public function isExecutable() {
return true;
}
public function shouldParsePartial() {
return true;
}
public function execute(PhutilArgumentParser $args) {
$echo_workflow = id(new PhutilEchoExampleArgumentWorkflow())
->setName('echo')
->setExamples('**echo** __string__ ...')
->setSynopsis(pht('Echo __string__.'));
$args->parseWorkflows(
array(
$echo_workflow,
new PhutilHelpArgumentWorkflow(),
));
}
}
$do_workflow = id(new PhutilDoExampleArgumentWorkflow())
->setName('do')
->setExamples('**do** __thing__ ...')
->setSynopsis(pht('Do __thing__.'));
$args->parseWorkflows(
array(
$do_workflow,
new PhutilHelpArgumentWorkflow(),
));
|