-
-
Notifications
You must be signed in to change notification settings - Fork 388
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor the getConnection into a chainloader
- Loading branch information
1 parent
12da9b8
commit 7de41d0
Showing
6 changed files
with
287 additions
and
22 deletions.
There are no files selected for viewing
33 changes: 33 additions & 0 deletions
33
lib/Doctrine/DBAL/Migrations/Configuration/Connection/ConnectionLoaderInterface.php
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,33 @@ | ||
<?php | ||
/* | ||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | ||
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | ||
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | ||
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | ||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | ||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
* | ||
* This software consists of voluntary contributions made by many individuals | ||
* and is licensed under the LGPL. For more information, see | ||
* <http://www.doctrine-project.org>. | ||
*/ | ||
|
||
namespace Doctrine\DBAL\Migrations\Configuration\Connection; | ||
|
||
|
||
use Doctrine\DBAL\Connection; | ||
|
||
interface ConnectionLoaderInterface | ||
{ | ||
/** | ||
* read the input and return a Configuration, returns `false` if the config | ||
* is not supported | ||
* @return Connection|null | ||
*/ | ||
public function chosen(); | ||
} |
58 changes: 58 additions & 0 deletions
58
...ne/DBAL/Migrations/Configuration/Connection/Loader/ArrayConnectionConfigurationLoader.php
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,58 @@ | ||
<?php | ||
/* | ||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | ||
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | ||
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | ||
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | ||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | ||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
* | ||
* This software consists of voluntary contributions made by many individuals | ||
* and is licensed under the LGPL. For more information, see | ||
* <http://www.doctrine-project.org>. | ||
*/ | ||
|
||
namespace Doctrine\DBAL\Migrations\Configuration\Connection\Loader; | ||
|
||
|
||
use Doctrine\DBAL\Connection; | ||
use Doctrine\DBAL\DriverManager; | ||
use Doctrine\DBAL\Migrations\Configuration\Connection\ConnectionLoaderInterface; | ||
|
||
class ArrayConnectionConfigurationLoader implements ConnectionLoaderInterface | ||
{ | ||
private $filename; | ||
|
||
public function __construct($filename) | ||
{ | ||
$this->filename = $filename; | ||
} | ||
|
||
/** | ||
* read the input and return a Configuration, returns `false` if the config | ||
* is not supported | ||
* @return Connection|null | ||
*/ | ||
public function chosen() | ||
{ | ||
if (empty($this->filename)) { | ||
return null; | ||
} | ||
|
||
if (!file_exists($this->filename)) { | ||
return null; | ||
} | ||
|
||
$params = include $this->filename; | ||
if (!is_array($params)) { | ||
throw new \InvalidArgumentException('The connection file has to return an array with database configuration parameters.'); | ||
} | ||
|
||
return DriverManager::getConnection($params); | ||
} | ||
} |
52 changes: 52 additions & 0 deletions
52
...ne/DBAL/Migrations/Configuration/Connection/Loader/ConnectionConfigurationChainLoader.php
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,52 @@ | ||
<?php | ||
/* | ||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | ||
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | ||
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | ||
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | ||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | ||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
* | ||
* This software consists of voluntary contributions made by many individuals | ||
* and is licensed under the LGPL. For more information, see | ||
* <http://www.doctrine-project.org>. | ||
*/ | ||
|
||
namespace Doctrine\DBAL\Migrations\Configuration\Connection\Loader; | ||
|
||
|
||
use Doctrine\DBAL\Connection; | ||
use Doctrine\DBAL\Migrations\Configuration\Connection\ConnectionLoaderInterface; | ||
|
||
final class ConnectionConfigurationChainLoader implements ConnectionLoaderInterface | ||
{ | ||
/** @var ConnectionLoaderInterface[] */ | ||
private $loaders; | ||
|
||
|
||
public function __construct(array $loaders) | ||
{ | ||
$this->loaders = $loaders; | ||
} | ||
|
||
/** | ||
* read the input and return a Configuration, returns `false` if the config | ||
* is not supported | ||
* @return Connection|null | ||
*/ | ||
public function chosen() | ||
{ | ||
foreach($this->loaders as $loader) { | ||
if (null !== $confObj = $loader->chosen()) { | ||
return $confObj; | ||
} | ||
} | ||
|
||
return null; | ||
} | ||
} |
54 changes: 54 additions & 0 deletions
54
...octrine/DBAL/Migrations/Configuration/Connection/Loader/ConnectionConfigurationLoader.php
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,54 @@ | ||
<?php | ||
/* | ||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | ||
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | ||
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | ||
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | ||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | ||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
* | ||
* This software consists of voluntary contributions made by many individuals | ||
* and is licensed under the LGPL. For more information, see | ||
* <http://www.doctrine-project.org>. | ||
*/ | ||
|
||
namespace Doctrine\DBAL\Migrations\Configuration\Connection\Loader; | ||
|
||
|
||
use Doctrine\DBAL\Connection; | ||
use Doctrine\DBAL\DriverManager; | ||
use Doctrine\DBAL\Migrations\Configuration\Configuration; | ||
use Doctrine\DBAL\Migrations\Configuration\Connection\ConnectionLoaderInterface; | ||
|
||
class ConnectionConfigurationLoader implements ConnectionLoaderInterface | ||
{ | ||
/** @var Configuration */ | ||
private $configuration; | ||
|
||
public function __construct(Configuration $configuration=null) | ||
{ | ||
if ($configuration !== null) { | ||
$this->configuration = $configuration; | ||
} | ||
} | ||
|
||
/** | ||
* read the input and return a Configuration, returns `false` if the config | ||
* is not supported | ||
* @return Connection|null | ||
*/ | ||
public function chosen() | ||
{ | ||
if ($this->configuration) { | ||
|
||
return $this->configuration->getConnection(); | ||
} | ||
|
||
return null; | ||
} | ||
} |
70 changes: 70 additions & 0 deletions
70
lib/Doctrine/DBAL/Migrations/Configuration/Connection/Loader/ConnectionHelperLoader.php
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,70 @@ | ||
<?php | ||
/* | ||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | ||
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | ||
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | ||
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | ||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | ||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
* | ||
* This software consists of voluntary contributions made by many individuals | ||
* and is licensed under the LGPL. For more information, see | ||
* <http://www.doctrine-project.org>. | ||
*/ | ||
|
||
namespace Doctrine\DBAL\Migrations\Configuration\Connection\Loader; | ||
|
||
|
||
use Doctrine\DBAL\Connection; | ||
use Doctrine\DBAL\Migrations\Configuration\Connection\ConnectionLoaderInterface; | ||
use Doctrine\DBAL\Tools\Console\Helper\ConnectionHelper; | ||
use Symfony\Component\Console\Helper\HelperSet; | ||
|
||
class ConnectionHelperLoader implements ConnectionLoaderInterface | ||
{ | ||
/** | ||
* @var string | ||
*/ | ||
private $helperName; | ||
|
||
/** @var HelperSet */ | ||
private $helperSet; | ||
|
||
|
||
/** | ||
* ConnectionHelperLoader constructor. | ||
* @param HelperSet $helperSet | ||
* @param string $helperName | ||
*/ | ||
public function __construct(HelperSet $helperSet = null, $helperName) | ||
{ | ||
$this->helperName = $helperName; | ||
if ($helperSet === null) { | ||
$helperSet = new HelperSet(); | ||
} | ||
$this->helperSet = $helperSet; | ||
} | ||
|
||
/** | ||
* read the input and return a Configuration, returns `false` if the config | ||
* is not supported | ||
* @return Connection|null | ||
*/ | ||
public function chosen() | ||
{ | ||
if ($this->helperSet->has($this->helperName)) { | ||
$connectionHelper = $this->helperSet->get($this->helperName); | ||
if ($connectionHelper instanceof ConnectionHelper) { | ||
|
||
return $connectionHelper->getConnection(); | ||
} | ||
} | ||
|
||
return null; | ||
} | ||
} |
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