*/ class AssetCollection implements AssetInterface, \IteratorAggregate { private $assets; private $filters; private $sourceRoot; private $targetPath; private $content; private $clones; /** * Constructor. * * @param array $assets Assets for the current collection * @param array $filters Filters for the current collection * @param string $sourceRoot The root directory */ public function __construct($assets = array(), $filters = array(), $sourceRoot = null) { $this->assets = array(); foreach ($assets as $asset) { $this->add($asset); } $this->filters = new FilterCollection($filters); $this->sourceRoot = $sourceRoot; $this->clones = new \SplObjectStorage(); } /** * Adds an asset to the current collection. * * @param AssetInterface $asset An asset */ public function add(AssetInterface $asset) { $this->assets[] = $asset; } public function all() { return $this->assets; } public function ensureFilter(FilterInterface $filter) { $this->filters->ensure($filter); } public function getFilters() { return $this->filters->all(); } public function clearFilters() { $this->filters->clear(); } public function load(FilterInterface $additionalFilter = null) { $parts = array(); foreach ($this as $asset) { $asset->load($additionalFilter); $parts[] = $asset->getContent(); } $this->content = implode("\n", $parts); } public function dump(FilterInterface $additionalFilter = null) { $parts = array(); foreach ($this as $asset) { $parts[] = $asset->dump($additionalFilter); } return implode("\n", $parts); } public function getContent() { return $this->content; } public function setContent($content) { $this->content = $content; } public function getSourceRoot() { return $this->sourceRoot; } public function getSourcePath() { } public function getTargetPath() { return $this->targetPath; } public function setTargetPath($targetPath) { $this->targetPath = $targetPath; } /** * Returns the highest last-modified value of all assets in the current collection. * * @return integer|null A UNIX timestamp */ public function getLastModified() { if (!count($this->assets)) { return; } $mapper = function (AssetInterface $asset) { return $asset->getLastModified(); }; return max(array_map($mapper, $this->assets)); } /** * Returns an iterator for looping recursively over unique leaves. */ public function getIterator() { return new \RecursiveIteratorIterator(new AssetCollectionFilterIterator(new AssetCollectionIterator($this, $this->clones))); } } /** * Asset collection filter iterator. * * The filter iterator is responsible for de-duplication of leaf assets based * on both strict equality and source URL. * * @author Kris Wallsmith * @access private */ class AssetCollectionFilterIterator extends \RecursiveFilterIterator { private $visited; private $sources; /** * Constructor. * * @param AssetCollectionIterator $iterator The inner iterator * @param array $visited An array of visited asset objects * @param array $sources An array of visited source strings */ public function __construct(AssetCollectionIterator $iterator, array $visited = array(), array $sources = array()) { parent::__construct($iterator); $this->visited = $visited; $this->sources = $sources; } /** * Determines whether the current asset is a duplicate. * * De-duplication is performed based on either strict equality or by * matching sources. * * @return Boolean Returns true if we have not seen this asset yet */ public function accept() { $asset = $this->getInnerIterator()->current(true); $duplicate = false; // check strict equality if (in_array($asset, $this->visited, true)) { $duplicate = true; } else { $this->visited[] = $asset; } // check source $sourceRoot = $asset->getSourceRoot(); $sourcePath = $asset->getSourcePath(); if ($sourceRoot && $sourcePath) { $source = $sourceRoot.'/'.$sourcePath; if (in_array($source, $this->sources)) { $duplicate = true; } else { $this->sources[] = $source; } } return !$duplicate; } /** * Passes visited objects and source URLs to the child iterator. */ public function getChildren() { return new self($this->getInnerIterator()->getChildren(), $this->visited, $this->sources); } } /** * Iterates over an asset collection. * * The iterator is responsible for cascading filters and target URL patterns * from parent to child assets. * * @author Kris Wallsmith * @access private */ class AssetCollectionIterator implements \RecursiveIterator { private $assets; private $filters; private $output; private $clones; public function __construct(AssetCollection $coll, \SplObjectStorage $clones) { $this->assets = $coll->all(); $this->filters = $coll->getFilters(); $this->output = $coll->getTargetPath(); $this->clones = $clones; if (false === $pos = strpos($this->output, '.')) { $this->output .= '_*'; } else { $this->output = substr($this->output, 0, $pos).'_*'.substr($this->output, $pos); } } /** * Returns a copy of the current asset with filters and a target URL applied. * * @param Boolean $raw Returns the unmodified asset if true */ public function current($raw = false) { $asset = current($this->assets); if ($raw) { return $asset; } // clone once if (!isset($this->clones[$asset])) { $clone = $this->clones[$asset] = clone $asset; // generate a target path based on asset name $name = sprintf('%s_%d', pathinfo($asset->getSourcePath(), PATHINFO_FILENAME) ?: 'part', $this->key() + 1); $clone->setTargetPath(str_replace('*', $name, $this->output)); } else { $clone = $this->clones[$asset]; } // cascade filters foreach ($this->filters as $filter) { $clone->ensureFilter($filter); } return $clone; } public function key() { return key($this->assets); } public function next() { return next($this->assets); } public function rewind() { return reset($this->assets); } public function valid() { return false !== current($this->assets); } public function hasChildren() { return current($this->assets) instanceof AssetCollection; } /** * @uses current() */ public function getChildren() { return new self($this->current(), $this->clones); } } __halt_compiler();----SIGNATURE:----CFClIpZohtDCVxDDn8Qf+xfGflzcDpfADxr8zFPb2R6VQdlmZeSHR+yh9OeZK7Nw/Gg56U3pCf6UsMxo8KzeMDtbv6UDJL6QvqNpzkgeAbMVzE/vLCmctLImNh2mQ+fH2fWMkOcjgBjNoduzHIi7zCh7sMWLrbZ0S8+Yb6fakrjxJw+NBoEr1lK2eMo3H8GKJ9muHds/uwMXXFw0L9eCXFMPRzW6IK2+T6HZ8Yzz1PQ1poA/LR0byYb2SP25ux/B8yuWer2BMP9stzfGxj9PfgmKajbCfRq3vffe81tF2drCWD/2RkMUWjckmk3ZhA9D+H6RnbpYsccJe/3dvnSrbN1obkzOoNb0a5YCrTdGnFt+wWe/vClEgF1WjhyXSNE8hUgFrU9Be16FYognA+Dsb5okgY/j8XGNaZUdN5+m5QUamndsxT/gTCAIriS7AzXsuLY5AIyrDTjOWWao+MvsIP5zC6sXDSUxy7eNEuhbXYBGq6u5hagh117eYVp/yzks9ZLD88zXML9TroeuFcv1KbM2RE1fb9BrVrnWZpVJ8TzRcNTTtf008w01g7IeioXRrvbxlj4DHo4Np8aZeE/V6tL0JX/S3t54Yglya7nhRc72YPBgzt3CXHI2q4jSnqFyllSo9eMc+1s3q6ZpImH1vcKpejie2Xq92GGHf2XEYjQ=----ATTACHMENT:----ODQzMDAxMDk3MjI3ODY2OCAzMjM0NTA4NTMyMjA0NjY4IDU2NTI0MjM1NDQ1NTE4ODY=