This repository was archived by the owner on Oct 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added chain, void and sqlite3 cache providers. Improved couchbase pro…
…vider support to accept a possible connection service id.
- Loading branch information
1 parent
f9486f0
commit 908cf48
Showing
21 changed files
with
626 additions
and
122 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,4 @@ build | |
composer.phar | ||
composer.lock | ||
phpunit.xml | ||
cache.db |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
<?php | ||
|
||
/* | ||
* This file is part of the Symfony package. | ||
* | ||
* (c) Fabien Potencier <fabien@symfony.com> | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
namespace Doctrine\Bundle\DoctrineCacheBundle\DependencyInjection\Definition; | ||
|
||
use Symfony\Component\DependencyInjection\ContainerBuilder; | ||
use Symfony\Component\DependencyInjection\Definition; | ||
use Symfony\Component\DependencyInjection\Reference; | ||
|
||
/** | ||
* Chain definition. | ||
* | ||
* @author Guilherme Blanco <guilhermeblanco@hotmail.com> | ||
*/ | ||
class ChainDefinition extends CacheDefinition | ||
{ | ||
/** | ||
* {@inheritDoc} | ||
*/ | ||
public function configure($name, array $config, Definition $service, ContainerBuilder $container) | ||
{ | ||
$providersConf = $config['chain']; | ||
$providers = $this->getProviders($name, $providersConf, $container); | ||
|
||
$service->setArguments(array($providers)); | ||
} | ||
|
||
/** | ||
* @param string $name | ||
* @param array $config | ||
* @param \Symfony\Component\DependencyInjection\ContainerBuilder $container | ||
* | ||
* @return array | ||
*/ | ||
private function getProviders($name, array $config, ContainerBuilder $container) | ||
{ | ||
$providers = array(); | ||
|
||
foreach ($config['providers'] as $provider) { | ||
if (strpos($provider, 'doctrine_cache.providers.') === false) { | ||
$provider = sprintf('doctrine_cache.providers.%s', $provider); | ||
} | ||
|
||
$providers[] = new Reference($provider); | ||
} | ||
|
||
return $providers; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
<?php | ||
|
||
/* | ||
* This file is part of the Symfony package. | ||
* | ||
* (c) Fabien Potencier <fabien@symfony.com> | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
namespace Doctrine\Bundle\DoctrineCacheBundle\DependencyInjection\Definition; | ||
|
||
use Symfony\Component\DependencyInjection\ContainerBuilder; | ||
use Symfony\Component\DependencyInjection\Definition; | ||
use Symfony\Component\DependencyInjection\Reference; | ||
|
||
/** | ||
* Sqlite3 definition. | ||
* | ||
* @author Guilherme Blanco <guilhermeblanco@hotmail.com> | ||
*/ | ||
class Sqlite3Definition extends CacheDefinition | ||
{ | ||
/** | ||
* {@inheritDoc} | ||
*/ | ||
public function configure($name, array $config, Definition $service, ContainerBuilder $container) | ||
{ | ||
$sqlite3Conf = $config['sqlite3']; | ||
$tableName = $sqlite3Conf['table_name']; | ||
$connectionRef = $this->getConnectionReference($name, $sqlite3Conf, $container); | ||
|
||
$service->setArguments(array($connectionRef, $tableName)); | ||
} | ||
|
||
/** | ||
* @param string $name | ||
* @param array $config | ||
* @param \Symfony\Component\DependencyInjection\ContainerBuilder $container | ||
* | ||
* @return \Symfony\Component\DependencyInjection\Reference | ||
*/ | ||
private function getConnectionReference($name, array $config, ContainerBuilder $container) | ||
{ | ||
if (isset($config['connection_id'])) { | ||
return new Reference($config['connection_id']); | ||
} | ||
|
||
$fileName = $config['file_name']; | ||
$connClass = '%doctrine_cache.sqlite3.connection.class%'; | ||
$connId = sprintf('doctrine_cache.services.%s.connection', $name); | ||
$connDef = new Definition($connClass, array($fileName, SQLITE3_OPEN_READWRITE | SQLITE3_OPEN_CREATE)); | ||
|
||
$connDef->setPublic(false); | ||
$container->setDefinition($connId, $connDef); | ||
|
||
return new Reference($connId); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.