mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-13 18:32:41 +01:00
ef85f49adc
Summary: This commit doesn't change license of any file. It just makes the license implicit (inherited from LICENSE file in the root directory). We are removing the headers for these reasons: - It wastes space in editors, less code is visible in editor upon opening a file. - It brings noise to diff of the first change of any file every year. - It confuses Git file copy detection when creating small files. - We don't have an explicit license header in other files (JS, CSS, images, documentation). - Using license header in every file is not obligatory: http://www.apache.org/dev/apply-license.html#new. This change is approved by Alma Chao (Lead Open Source and IP Counsel at Facebook). Test Plan: Verified that the license survived only in LICENSE file and that it didn't modify externals. Reviewers: epriestley, davidrecordon Reviewed By: epriestley CC: aran, Korvin Maniphest Tasks: T2035 Differential Revision: https://secure.phabricator.com/D3886
123 lines
3.2 KiB
PHP
123 lines
3.2 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Interface to the static resource map, which is a graph of available
|
|
* resources, resource dependencies, and packaging information. You generally do
|
|
* not need to invoke it directly; instead, you call higher-level Celerity APIs
|
|
* and it uses the resource map to satisfy your requests.
|
|
*
|
|
* @group celerity
|
|
*/
|
|
final class CelerityResourceMap {
|
|
|
|
private static $instance;
|
|
private $resourceMap;
|
|
private $packageMap;
|
|
private $reverseMap;
|
|
|
|
public static function getInstance() {
|
|
if (empty(self::$instance)) {
|
|
self::$instance = new CelerityResourceMap();
|
|
$root = phutil_get_library_root('phabricator');
|
|
|
|
$path = PhabricatorEnv::getEnvConfig('celerity.resource-path');
|
|
$ok = include_once $root.'/'.$path;
|
|
if (!$ok) {
|
|
throw new Exception(
|
|
"Failed to load Celerity resource map! Check the ".
|
|
"'celerity.resource-path' setting in your configuration.");
|
|
}
|
|
}
|
|
return self::$instance;
|
|
}
|
|
|
|
public function setResourceMap($resource_map) {
|
|
$this->resourceMap = $resource_map;
|
|
return $this;
|
|
}
|
|
|
|
public function resolveResources(array $symbols) {
|
|
$map = array();
|
|
foreach ($symbols as $symbol) {
|
|
if (!empty($map[$symbol])) {
|
|
continue;
|
|
}
|
|
$this->resolveResource($map, $symbol);
|
|
}
|
|
|
|
return $map;
|
|
}
|
|
|
|
private function resolveResource(array &$map, $symbol) {
|
|
if (empty($this->resourceMap[$symbol])) {
|
|
throw new Exception(
|
|
"Attempting to resolve unknown Celerity resource, '{$symbol}'.");
|
|
}
|
|
|
|
$info = $this->resourceMap[$symbol];
|
|
foreach ($info['requires'] as $requires) {
|
|
if (!empty($map[$requires])) {
|
|
continue;
|
|
}
|
|
$this->resolveResource($map, $requires);
|
|
}
|
|
|
|
$map[$symbol] = $info;
|
|
}
|
|
|
|
public function setPackageMap($package_map) {
|
|
$this->packageMap = $package_map;
|
|
return $this;
|
|
}
|
|
|
|
public function packageResources(array $resolved_map) {
|
|
$packaged = array();
|
|
$handled = array();
|
|
foreach ($resolved_map as $symbol => $info) {
|
|
if (isset($handled[$symbol])) {
|
|
continue;
|
|
}
|
|
if (empty($this->packageMap['reverse'][$symbol])) {
|
|
$packaged[$symbol] = $info;
|
|
} else {
|
|
$package = $this->packageMap['reverse'][$symbol];
|
|
$package_info = $this->packageMap['packages'][$package];
|
|
$packaged[$package_info['name']] = $package_info;
|
|
foreach ($package_info['symbols'] as $packaged_symbol) {
|
|
$handled[$packaged_symbol] = true;
|
|
}
|
|
}
|
|
}
|
|
return $packaged;
|
|
}
|
|
|
|
public function resolvePackage($package_hash) {
|
|
$package = idx($this->packageMap['packages'], $package_hash);
|
|
if (!$package) {
|
|
return null;
|
|
}
|
|
|
|
$paths = array();
|
|
foreach ($package['symbols'] as $symbol) {
|
|
$paths[] = $this->resourceMap[$symbol]['disk'];
|
|
}
|
|
|
|
return $paths;
|
|
}
|
|
|
|
public function lookupSymbolInformation($symbol) {
|
|
return idx($this->resourceMap, $symbol);
|
|
}
|
|
|
|
public function lookupFileInformation($path) {
|
|
if (empty($this->reverseMap)) {
|
|
$this->reverseMap = array();
|
|
foreach ($this->resourceMap as $symbol => $data) {
|
|
$data['provides'] = $symbol;
|
|
$this->reverseMap[$data['disk']] = $data;
|
|
}
|
|
}
|
|
return idx($this->reverseMap, $path);
|
|
}
|
|
|
|
}
|