-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rework the portability layer to act as a middleware
- Loading branch information
Showing
7 changed files
with
212 additions
and
140 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
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,90 @@ | ||
<?php | ||
|
||
namespace Doctrine\DBAL\Portability; | ||
|
||
use Doctrine\DBAL\ColumnCase; | ||
use Doctrine\DBAL\Connection as DBALConnection; | ||
use Doctrine\DBAL\Driver as DriverInterface; | ||
use Doctrine\DBAL\Driver\API\ExceptionConverter; | ||
use Doctrine\DBAL\Driver\PDO; | ||
use Doctrine\DBAL\Platforms\AbstractPlatform; | ||
|
||
use const CASE_LOWER; | ||
use const CASE_UPPER; | ||
|
||
final class Driver implements DriverInterface | ||
{ | ||
/** @var int */ | ||
private $mode; | ||
|
||
/** @var int */ | ||
private $case; | ||
|
||
public function __construct(DriverInterface $driver, int $mode, int $case) | ||
{ | ||
$this->driver = $driver; | ||
$this->mode = $mode; | ||
$this->case = $case; | ||
} | ||
|
||
/** @var DriverInterface */ | ||
private $driver; | ||
|
||
/** | ||
* {@inheritDoc} | ||
*/ | ||
public function connect(array $params) | ||
{ | ||
$connection = $this->driver->connect($params); | ||
|
||
$portability = (new OptimizeFlags())( | ||
$this->getDatabasePlatform(), | ||
$this->mode | ||
); | ||
|
||
$case = 0; | ||
|
||
if ($this->case !== 0 && ($portability & Connection::PORTABILITY_FIX_CASE) !== 0) { | ||
if ($connection instanceof PDO\Connection) { | ||
// make use of c-level support for case handling | ||
$portability &= ~Connection::PORTABILITY_FIX_CASE; | ||
$connection->getWrappedConnection()->setAttribute(\PDO::ATTR_CASE, $this->case); | ||
} else { | ||
$case = $this->case === ColumnCase::LOWER ? CASE_LOWER : CASE_UPPER; | ||
} | ||
} | ||
|
||
$convertEmptyStringToNull = ($portability & Connection::PORTABILITY_EMPTY_TO_NULL) !== 0; | ||
$rightTrimString = ($portability & Connection::PORTABILITY_RTRIM) !== 0; | ||
|
||
if (! $convertEmptyStringToNull && ! $rightTrimString && $case === 0) { | ||
return $connection; | ||
} | ||
|
||
return new Connection( | ||
$connection, | ||
new Converter($convertEmptyStringToNull, $rightTrimString, $case) | ||
); | ||
} | ||
|
||
/** | ||
* {@inheritDoc} | ||
*/ | ||
public function getDatabasePlatform() | ||
{ | ||
return $this->driver->getDatabasePlatform(); | ||
} | ||
|
||
/** | ||
* {@inheritDoc} | ||
*/ | ||
public function getSchemaManager(DBALConnection $conn, AbstractPlatform $platform) | ||
{ | ||
return $this->driver->getSchemaManager($conn, $platform); | ||
} | ||
|
||
public function getExceptionConverter(): ExceptionConverter | ||
{ | ||
return $this->driver->getExceptionConverter(); | ||
} | ||
} |
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,32 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Doctrine\DBAL\Portability; | ||
|
||
use Doctrine\DBAL\Driver as DriverInterface; | ||
use Doctrine\DBAL\Driver\Middleware as MiddlewareInterface; | ||
|
||
final class Middleware implements MiddlewareInterface | ||
{ | ||
/** @var int */ | ||
private $mode; | ||
|
||
/** @var int */ | ||
private $case; | ||
|
||
public function __construct(int $mode, int $case) | ||
{ | ||
$this->mode = $mode; | ||
$this->case = $case; | ||
} | ||
|
||
public function wrap(DriverInterface $driver): DriverInterface | ||
{ | ||
if ($this->mode !== 0) { | ||
return new Driver($driver, $this->mode, $this->case); | ||
} | ||
|
||
return $driver; | ||
} | ||
} |
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.