task = NULL; $this->shedulerPID = NULL; $this->addArgument('task_id', InputArgument::REQUIRED, 'The task_id to run'); $this->addOption( 'runner' , 'r' , InputOption::VALUE_REQUIRED , 'The name of the runner (manual, scheduler...)' , task_abstract::RUNNER_MANUAL ); $this->addOption( 'nolog' , NULL , 1 | InputOption::VALUE_NONE , 'do not log to logfile' , NULL ); $this->setDescription('Run task'); return $this; } function sig_handler($signo) { if ($this->task) { $this->task->log(sprintf("signal %s received", $signo)); if ($signo == SIGTERM) $this->task->set_running(false); } } public function execute(InputInterface $input, OutputInterface $output) { if (!setup::is_installed()) { $output->writeln('Phraseanet is not set up'); return 1; } $task_id = (int) $input->getArgument('task_id'); if ($task_id <= 0 || strlen($task_id) !== strlen($input->getArgument('task_id'))) throw new \RuntimeException('Argument must be an Id.'); $appbox = \appbox::get_instance(\bootstrap::getCore()); $task_manager = new task_manager($appbox); $this->task = $task_manager->get_task($task_id); if ($input->getOption('runner') === task_abstract::RUNNER_MANUAL) { $runner = task_abstract::RUNNER_MANUAL; } else { $runner = task_abstract::RUNNER_SCHEDULER; $registry = $appbox->get_registry(); $schedFile = $registry->get('GV_RootPath') . 'tmp/locks/scheduler.lock'; if (file_exists($schedFile)) $this->shedulerPID = (int) (trim(file_get_contents($schedFile))); } register_tick_function(array($this, 'tick_handler'), true); declare(ticks = 1); pcntl_signal(SIGTERM, array($this, 'sig_handler')); $this->task->run($runner, $input, $output); $this->task->log(sprintf("%s [%d] taskrun : returned from 'run()', get_status()=%s \n", __FILE__, __LINE__, $this->task->get_status())); if ($input->getOption('runner') === task_abstract::RUNNER_MANUAL) { $runner = task_abstract::RUNNER_MANUAL; } } public function tick_handler() { static $start = FALSE; if ($start === FALSE) { $start = time(); } if (time() - $start > 0) { if ($this->shedulerPID) { if (!posix_kill($this->shedulerPID, 0)) { if (method_exists($this->task, 'signal')) $this->task->signal('SIGNAL_SCHEDULER_DIED'); else $this->task->set_status(task_abstract::STATUS_TOSTOP); } } $start = time(); } } }