-
-
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.
Deprecated platform-specific portability mode constants
- Loading branch information
Showing
4 changed files
with
94 additions
and
19 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Doctrine\DBAL\Portability; | ||
|
||
use Doctrine\DBAL\Platforms\AbstractPlatform; | ||
use Doctrine\DBAL\Platforms\DB2Platform; | ||
use Doctrine\DBAL\Platforms\OraclePlatform; | ||
use Doctrine\DBAL\Platforms\PostgreSQL94Platform; | ||
use Doctrine\DBAL\Platforms\SQLAnywhere16Platform; | ||
use Doctrine\DBAL\Platforms\SqlitePlatform; | ||
use Doctrine\DBAL\Platforms\SQLServer2012Platform; | ||
|
||
final class OptimizeFlags | ||
{ | ||
/** | ||
* Platform-specific portability flags that need to be excluded from the user-provided mode | ||
* since the platform already operates in this mode to avoid unnecessary conversion overhead. | ||
* | ||
* @var array<string,int> | ||
*/ | ||
private static $platforms = [ | ||
DB2Platform::class => 0, | ||
OraclePlatform::class => Connection::PORTABILITY_EMPTY_TO_NULL, | ||
PostgreSQL94Platform::class => 0, | ||
SQLAnywhere16Platform::class => 0, | ||
SqlitePlatform::class => 0, | ||
SQLServer2012Platform::class => 0, | ||
]; | ||
|
||
public function __invoke(AbstractPlatform $platform, int $flags): int | ||
{ | ||
foreach (self::$platforms as $class => $mask) { | ||
if ($platform instanceof $class) { | ||
$flags &= ~$mask; | ||
|
||
break; | ||
} | ||
} | ||
|
||
return $flags; | ||
} | ||
} |
36 changes: 36 additions & 0 deletions
36
tests/Doctrine/Tests/DBAL/Portability/OptimizeFlagsTest.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,36 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Doctrine\Tests\DBAL\Portability; | ||
|
||
use Doctrine\DBAL\Platforms\OraclePlatform; | ||
use Doctrine\DBAL\Platforms\SqlitePlatform; | ||
use Doctrine\DBAL\Portability\Connection; | ||
use Doctrine\DBAL\Portability\OptimizeFlags; | ||
use PHPUnit\Framework\TestCase; | ||
|
||
class OptimizeFlagsTest extends TestCase | ||
{ | ||
/** @var OptimizeFlags */ | ||
private $optimizeFlags; | ||
|
||
protected function setUp(): void | ||
{ | ||
$this->optimizeFlags = new OptimizeFlags(); | ||
} | ||
|
||
public function testOracle(): void | ||
{ | ||
$flags = ($this->optimizeFlags)(new OraclePlatform(), Connection::PORTABILITY_ALL); | ||
|
||
self::assertSame(0, $flags & Connection::PORTABILITY_EMPTY_TO_NULL); | ||
} | ||
|
||
public function testAnotherPlatform(): void | ||
{ | ||
$flags = ($this->optimizeFlags)(new SqlitePlatform(), Connection::PORTABILITY_ALL); | ||
|
||
self::assertSame(Connection::PORTABILITY_ALL, $flags); | ||
} | ||
} |