Allow worker instances of multiple projects in parallel
[phinde.git] / bin / phinde-worker.php
index e8253ff945c9e83f07686a50f84db0d4f9bef939..939db1f9a37691dbbd016072ce1608e23415860c 100755 (executable)
@@ -4,26 +4,53 @@ namespace phinde;
 
 chdir(dirname($argv[0]));
 
+require_once __DIR__ . '/../src/init.php';
+
+$cc = new \Console_CommandLine();
+$cc->description = 'phinde queue worker';
+$cc->version = '0.0.1';
+$cc->addArgument(
+    'queues',
+    array(
+        'description' => 'Queue(s) to process',
+        'multiple'    => true,
+        'default'     => array('crawl', 'index'),
+        'choices'     => array('crawl', 'index'),
+        'optional'    => true,
+    )
+);
+try {
+    $res = $cc->parse();
+} catch (\Exception $e) {
+    $cc->displayError($e->getMessage());
+}
+
+$queues = array_flip(array_unique($res->args['queues']));
+
 $gmworker = new \GearmanWorker();
 $gmworker->addServer('127.0.0.1');
 
-$gmworker->addFunction(
-    'phinde_crawl',
-    function(\GearmanJob $job) {
-        $data = unserialize($job->workload());
-        echo "-- Crawling " . $data['url'] . "\n";
-        passthru('./crawl.php ' . escapeshellarg($data['url']));
-    }
-);
-$gmworker->addFunction(
-    'phinde_index',
-    function(\GearmanJob $job) {
-        $data = unserialize($job->workload());
-        echo "-- Indexing " . $data['url'] . "\n";
-        passthru('./index.php ' . escapeshellarg($data['url']));
-        //exit();
-    }
-);
+if (isset($queues['crawl'])) {
+    $gmworker->addFunction(
+        $GLOBALS['phinde']['queuePrefix'] . 'phinde_crawl',
+        function(\GearmanJob $job) {
+            $data = unserialize($job->workload());
+            echo "-- Crawling " . $data['url'] . "\n";
+            passthru('./crawl.php ' . escapeshellarg($data['url']));
+        }
+    );
+}
+if (isset($queues['index'])) {
+    $gmworker->addFunction(
+        $GLOBALS['phinde']['queuePrefix'] . 'phinde_index',
+        function(\GearmanJob $job) {
+            $data = unserialize($job->workload());
+            echo "-- Indexing " . $data['url'] . "\n";
+            passthru('./index.php ' . escapeshellarg($data['url']));
+            //exit();
+        }
+    );
+}
 
 while ($gmworker->work()) {
     if ($gmworker->returnCode() != GEARMAN_SUCCESS) {