123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 |
- <?php
- /*
- * This file is part of Composer.
- *
- * (c) Nils Adermann <naderman@naderman.de>
- * Jordi Boggiano <j.boggiano@seld.be>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace Composer\Repository;
- use Composer\Package\PackageInterface;
- /**
- * Composite repository.
- *
- * @author Beau Simensen <beau@dflydev.com>
- */
- class CompositeRepository implements RepositoryInterface
- {
- /**
- * List of repositories
- * @var array
- */
- private $repositories;
- /**
- * Constructor
- * @param array $repositories
- */
- public function __construct(array $repositories)
- {
- $this->repositories = $repositories;
- }
- /**
- * Returns all the wrapped repositories
- *
- * @return array
- */
- public function getRepositories()
- {
- return $this->repositories;
- }
- /**
- * {@inheritdoc}
- */
- public function hasPackage(PackageInterface $package)
- {
- foreach ($this->repositories as $repository) {
- /* @var $repository RepositoryInterface */
- if ($repository->hasPackage($package)) {
- return true;
- }
- }
- return false;
- }
- /**
- * {@inheritdoc}
- */
- public function findPackage($name, $version)
- {
- foreach ($this->repositories as $repository) {
- /* @var $repository RepositoryInterface */
- $package = $repository->findPackage($name, $version);
- if (null !== $package) {
- return $package;
- }
- }
- return null;
- }
- /**
- * {@inheritdoc}
- */
- public function findPackages($name, $version = null)
- {
- $packages = array();
- foreach ($this->repositories as $repository) {
- /* @var $repository RepositoryInterface */
- $packages[] = $repository->findPackages($name, $version);
- }
- return call_user_func_array('array_merge', $packages);
- }
- /**
- * {@inheritDoc}
- */
- public function filterPackages($callback, $class = 'Composer\Package\Package')
- {
- foreach ($this->repositories as $repository) {
- if (false === $repository->filterPackages($callback, $class)) {
- return false;
- }
- }
- return true;
- }
- /**
- * {@inheritdoc}
- */
- public function getPackages()
- {
- $packages = array();
- foreach ($this->repositories as $repository) {
- /* @var $repository RepositoryInterface */
- $packages[] = $repository->getPackages();
- }
- return call_user_func_array('array_merge', $packages);
- }
- /**
- * {@inheritdoc}
- */
- public function removePackage(PackageInterface $package)
- {
- foreach ($this->repositories as $repository) {
- /* @var $repository RepositoryInterface */
- $repository->removePackage($package);
- }
- }
- /**
- * {@inheritdoc}
- */
- public function count()
- {
- $total = 0;
- foreach ($this->repositories as $repository) {
- /* @var $repository RepositoryInterface */
- $total += $repository->count();
- }
- return $total;
- }
- /**
- * Add a repository.
- * @param RepositoryInterface $repository
- */
- public function addRepository(RepositoryInterface $repository)
- {
- $this->repositories[] = $repository;
- }
- }
|