2011-08-10 20:29:08 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
final class DifferentialAuxiliaryField extends DifferentialDAO {
|
|
|
|
|
|
|
|
protected $revisionPHID;
|
|
|
|
protected $name;
|
|
|
|
protected $value;
|
|
|
|
|
|
|
|
public function setName($name) {
|
|
|
|
if (strlen($name) > 32) {
|
|
|
|
throw new Exception(
|
|
|
|
"Tried to set name '{$name}' for a Differential auxiliary field; ".
|
|
|
|
"auxiliary field names must be no longer than 32 characters.");
|
|
|
|
}
|
|
|
|
$this->name = $name;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2011-08-10 22:46:01 +02:00
|
|
|
public static function loadFromStorage(
|
|
|
|
DifferentialRevision $revision,
|
|
|
|
array $aux_fields) {
|
2012-04-04 22:13:08 +02:00
|
|
|
assert_instances_of($aux_fields, 'DifferentialFieldSpecification');
|
2011-08-10 22:46:01 +02:00
|
|
|
|
|
|
|
$storage_keys = array_filter(mpull($aux_fields, 'getStorageKey'));
|
|
|
|
$field_data = array();
|
|
|
|
if ($storage_keys) {
|
|
|
|
$field_data = id(new DifferentialAuxiliaryField())->loadAllWhere(
|
|
|
|
'revisionPHID = %s AND name IN (%Ls)',
|
|
|
|
$revision->getPHID(),
|
|
|
|
$storage_keys);
|
|
|
|
$field_data = mpull($field_data, 'getValue', 'getName');
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($aux_fields as $aux_field) {
|
2011-08-14 20:29:56 +02:00
|
|
|
$aux_field->setRevision($revision);
|
2011-08-10 22:46:01 +02:00
|
|
|
$key = $aux_field->getStorageKey();
|
|
|
|
if ($key) {
|
|
|
|
$aux_field->setValueFromStorage(idx($field_data, $key));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $aux_fields;
|
|
|
|
}
|
|
|
|
|
2011-08-10 20:29:08 +02:00
|
|
|
}
|