|
| 1 | +<?php |
| 2 | + |
| 3 | +/* |
| 4 | + * Copyright 2012 Facebook, Inc. |
| 5 | + * |
| 6 | + * Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | + * you may not use this file except in compliance with the License. |
| 8 | + * You may obtain a copy of the License at |
| 9 | + * |
| 10 | + * http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | + * |
| 12 | + * Unless required by applicable law or agreed to in writing, software |
| 13 | + * distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | + * See the License for the specific language governing permissions and |
| 16 | + * limitations under the License. |
| 17 | + */ |
| 18 | + |
| 19 | +final class PhabricatorFactDaemon extends PhabricatorDaemon { |
| 20 | + |
| 21 | + private $engines; |
| 22 | + |
| 23 | + const RAW_FACT_BUFFER_LIMIT = 128; |
| 24 | + |
| 25 | + public function run() { |
| 26 | + throw new Exception("This daemon doesn't do anything yet!"); |
| 27 | + } |
| 28 | + |
| 29 | + public function setEngines(array $engines) { |
| 30 | + assert_instances_of($engines, 'PhabricatorFactEngine'); |
| 31 | + |
| 32 | + $this->engines = $engines; |
| 33 | + return $this; |
| 34 | + } |
| 35 | + |
| 36 | + public function processIterator($iterator) { |
| 37 | + $result = null; |
| 38 | + |
| 39 | + $raw_facts = array(); |
| 40 | + foreach ($iterator as $key => $object) { |
| 41 | + $raw_facts[$object->getPHID()] = $this->computeRawFacts($object); |
| 42 | + if (count($raw_facts) > self::RAW_FACT_BUFFER_LIMIT) { |
| 43 | + $this->updateRawFacts($raw_facts); |
| 44 | + $raw_facts = array(); |
| 45 | + } |
| 46 | + $result = $key; |
| 47 | + } |
| 48 | + |
| 49 | + if ($raw_facts) { |
| 50 | + $this->updateRawFacts($raw_facts); |
| 51 | + $raw_facts = array(); |
| 52 | + } |
| 53 | + |
| 54 | + return $result; |
| 55 | + } |
| 56 | + |
| 57 | + private function computeRawFacts(PhabricatorLiskDAO $object) { |
| 58 | + $facts = array(); |
| 59 | + foreach ($this->engines as $engine) { |
| 60 | + if (!$engine->shouldComputeRawFactsForObject($object)) { |
| 61 | + continue; |
| 62 | + } |
| 63 | + $facts[] = $engine->computeRawFactsForObject($object); |
| 64 | + } |
| 65 | + |
| 66 | + return array_mergev($facts); |
| 67 | + } |
| 68 | + |
| 69 | + private function updateRawFacts(array $map) { |
| 70 | + foreach ($map as $phid => $facts) { |
| 71 | + assert_instances_of($facts, 'PhabricatorFactRaw'); |
| 72 | + } |
| 73 | + |
| 74 | + $phids = array_keys($map); |
| 75 | + if (!$phids) { |
| 76 | + return; |
| 77 | + } |
| 78 | + |
| 79 | + $table = new PhabricatorFactRaw(); |
| 80 | + $conn = $table->establishConnection('w'); |
| 81 | + $table_name = $table->getTableName(); |
| 82 | + |
| 83 | + $sql = array(); |
| 84 | + foreach ($map as $phid => $facts) { |
| 85 | + foreach ($facts as $fact) { |
| 86 | + $sql[] = qsprintf( |
| 87 | + $conn, |
| 88 | + '(%s, %s, %s, %d, %d, %d)', |
| 89 | + $fact->getFactType(), |
| 90 | + $fact->getObjectPHID(), |
| 91 | + $fact->getObjectA(), |
| 92 | + $fact->getValueX(), |
| 93 | + $fact->getValueY(), |
| 94 | + $fact->getEpoch()); |
| 95 | + } |
| 96 | + } |
| 97 | + |
| 98 | + $table->openTransaction(); |
| 99 | + |
| 100 | + queryfx( |
| 101 | + $conn, |
| 102 | + 'DELETE FROM %T WHERE objectPHID IN (%Ls)', |
| 103 | + $table_name, |
| 104 | + $phids); |
| 105 | + |
| 106 | + if ($sql) { |
| 107 | + foreach (array_chunk($sql, 256) as $chunk) { |
| 108 | + queryfx( |
| 109 | + $conn, |
| 110 | + 'INSERT INTO %T |
| 111 | + (factType, objectPHID, objectA, valueX, valueY, epoch) |
| 112 | + VALUES %Q', |
| 113 | + $table_name, |
| 114 | + implode(', ', $chunk)); |
| 115 | + } |
| 116 | + } |
| 117 | + |
| 118 | + $table->saveTransaction(); |
| 119 | + } |
| 120 | + |
| 121 | +} |
0 commit comments