AbstractPostgreSQLDriver.php 4.68 KB
Newer Older
1 2
<?php

Michael Moravec's avatar
Michael Moravec committed
3 4
declare(strict_types=1);

5 6
namespace Doctrine\DBAL\Driver;

7
use Doctrine\DBAL\Connection;
8
use Doctrine\DBAL\Driver;
9
use Doctrine\DBAL\Driver\DriverException as DriverExceptionInterface;
10
use Doctrine\DBAL\Exception;
11 12
use Doctrine\DBAL\Exception\DriverException;
use Doctrine\DBAL\Platforms\AbstractPlatform;
13
use Doctrine\DBAL\Platforms\Exception\InvalidPlatformVersion;
14
use Doctrine\DBAL\Platforms\PostgreSQL100Platform;
15
use Doctrine\DBAL\Platforms\PostgreSQL94Platform;
16
use Doctrine\DBAL\Platforms\PostgreSqlPlatform;
17
use Doctrine\DBAL\Schema\AbstractSchemaManager;
18 19
use Doctrine\DBAL\Schema\PostgreSqlSchemaManager;
use Doctrine\DBAL\VersionAwarePlatformDriver;
20 21 22
use function preg_match;
use function strpos;
use function version_compare;
23 24 25 26 27 28 29 30 31 32 33

/**
 * Abstract base implementation of the {@link Doctrine\DBAL\Driver} interface for PostgreSQL based drivers.
 */
abstract class AbstractPostgreSQLDriver implements Driver, ExceptionConverterDriver, VersionAwarePlatformDriver
{
    /**
     * {@inheritdoc}
     *
     * @link http://www.postgresql.org/docs/9.3/static/errcodes-appendix.html
     */
34
    public function convertException(string $message, DriverExceptionInterface $exception) : DriverException
35 36
    {
        switch ($exception->getSQLState()) {
37 38 39
            case '40001':
            case '40P01':
                return new Exception\DeadlockException($message, $exception);
40 41 42 43 44 45 46 47
            case '0A000':
                // Foreign key constraint violations during a TRUNCATE operation
                // are considered "feature not supported" in PostgreSQL.
                if (strpos($exception->getMessage(), 'truncate') !== false) {
                    return new Exception\ForeignKeyConstraintViolationException($message, $exception);
                }

                break;
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
            case '23502':
                return new Exception\NotNullConstraintViolationException($message, $exception);

            case '23503':
                return new Exception\ForeignKeyConstraintViolationException($message, $exception);

            case '23505':
                return new Exception\UniqueConstraintViolationException($message, $exception);

            case '42601':
                return new Exception\SyntaxErrorException($message, $exception);

            case '42702':
                return new Exception\NonUniqueFieldNameException($message, $exception);

            case '42703':
                return new Exception\InvalidFieldNameException($message, $exception);

            case '42P01':
                return new Exception\TableNotFoundException($message, $exception);

            case '42P07':
                return new Exception\TableExistsException($message, $exception);
71
        }
72

73 74 75 76 77
        // In some case (mainly connection errors) the PDO exception does not provide a SQLSTATE via its code.
        // The exception code is always set to 7 here.
        // We have to match against the SQLSTATE in the error message in these cases.
        if ($exception->getCode() === 7 && strpos($exception->getMessage(), 'SQLSTATE[08006]') !== false) {
            return new Exception\ConnectionException($message, $exception);
78 79
        }

80
        return new DriverException($message, $exception);
81 82 83 84 85
    }

    /**
     * {@inheritdoc}
     */
86
    public function createDatabasePlatformForVersion(string $version) : AbstractPlatform
87
    {
88
        if (! preg_match('/^(?P<major>\d+)(?:\.(?P<minor>\d+)(?:\.(?P<patch>\d+))?)?/', $version, $versionParts)) {
89
            throw InvalidPlatformVersion::new(
90 91 92 93 94 95
                $version,
                '<major_version>.<minor_version>.<patch_version>'
            );
        }

        $majorVersion = $versionParts['major'];
96 97
        $minorVersion = $versionParts['minor'] ?? 0;
        $patchVersion = $versionParts['patch'] ?? 0;
98 99
        $version      = $majorVersion . '.' . $minorVersion . '.' . $patchVersion;

100
        switch (true) {
101 102
            case version_compare($version, '10.0', '>='):
                return new PostgreSQL100Platform();
103 104
            case version_compare($version, '9.4', '>='):
                return new PostgreSQL94Platform();
105 106
            default:
                return new PostgreSqlPlatform();
107 108 109 110 111 112
        }
    }

    /**
     * {@inheritdoc}
     */
113
    public function getDatabase(Connection $conn) : ?string
114 115 116
    {
        $params = $conn->getParams();

117
        return $params['dbname'] ?? $conn->query('SELECT CURRENT_DATABASE()')->fetchColumn();
118 119 120 121 122
    }

    /**
     * {@inheritdoc}
     */
123
    public function getDatabasePlatform() : AbstractPlatform
124 125 126 127 128 129 130
    {
        return new PostgreSqlPlatform();
    }

    /**
     * {@inheritdoc}
     */
131
    public function getSchemaManager(Connection $conn) : AbstractSchemaManager
132 133 134 135
    {
        return new PostgreSqlSchemaManager($conn);
    }
}