123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656 |
- <?php
- namespace Doctrine\DBAL\Driver\OCI8;
- use Doctrine\DBAL\Driver\FetchUtils;
- use Doctrine\DBAL\Driver\OCI8\Exception\NonTerminatedStringLiteral;
- use Doctrine\DBAL\Driver\OCI8\Exception\UnknownParameterIndex;
- use Doctrine\DBAL\Driver\Result;
- use Doctrine\DBAL\Driver\Statement as StatementInterface;
- use Doctrine\DBAL\Driver\StatementIterator;
- use Doctrine\DBAL\FetchMode;
- use Doctrine\DBAL\ParameterType;
- use InvalidArgumentException;
- use IteratorAggregate;
- use PDO;
- use function array_key_exists;
- use function assert;
- use function count;
- use function implode;
- use function is_int;
- use function is_resource;
- use function oci_bind_by_name;
- use function oci_cancel;
- use function oci_error;
- use function oci_execute;
- use function oci_fetch_all;
- use function oci_fetch_array;
- use function oci_fetch_object;
- use function oci_new_descriptor;
- use function oci_num_fields;
- use function oci_num_rows;
- use function oci_parse;
- use function preg_match;
- use function preg_quote;
- use function substr;
- use const OCI_ASSOC;
- use const OCI_B_BIN;
- use const OCI_B_BLOB;
- use const OCI_BOTH;
- use const OCI_D_LOB;
- use const OCI_FETCHSTATEMENT_BY_COLUMN;
- use const OCI_FETCHSTATEMENT_BY_ROW;
- use const OCI_NUM;
- use const OCI_RETURN_LOBS;
- use const OCI_RETURN_NULLS;
- use const OCI_TEMP_BLOB;
- use const PREG_OFFSET_CAPTURE;
- use const SQLT_CHR;
- /**
- * The OCI8 implementation of the Statement interface.
- *
- * @deprecated Use {@link Statement} instead
- */
- class OCI8Statement implements IteratorAggregate, StatementInterface, Result
- {
- /** @var resource */
- protected $_dbh;
- /** @var resource */
- protected $_sth;
- /** @var OCI8Connection */
- protected $_conn;
- /**
- * @deprecated
- *
- * @var string
- */
- protected static $_PARAM = ':param';
- /** @var int[] */
- protected static $fetchModeMap = [
- FetchMode::MIXED => OCI_BOTH,
- FetchMode::ASSOCIATIVE => OCI_ASSOC,
- FetchMode::NUMERIC => OCI_NUM,
- FetchMode::COLUMN => OCI_NUM,
- ];
- /** @var int */
- protected $_defaultFetchMode = FetchMode::MIXED;
- /** @var string[] */
- protected $_paramMap = [];
- /**
- * Holds references to bound parameter values.
- *
- * This is a new requirement for PHP7's oci8 extension that prevents bound values from being garbage collected.
- *
- * @var mixed[]
- */
- private $boundValues = [];
- /**
- * Indicates whether the statement is in the state when fetching results is possible
- *
- * @var bool
- */
- private $result = false;
- /**
- * Creates a new OCI8Statement that uses the given connection handle and SQL statement.
- *
- * @internal The statement can be only instantiated by its driver connection.
- *
- * @param resource $dbh The connection handle.
- * @param string $query The SQL query.
- */
- public function __construct($dbh, $query, OCI8Connection $conn)
- {
- [$query, $paramMap] = self::convertPositionalToNamedPlaceholders($query);
- $stmt = oci_parse($dbh, $query);
- assert(is_resource($stmt));
- $this->_sth = $stmt;
- $this->_dbh = $dbh;
- $this->_paramMap = $paramMap;
- $this->_conn = $conn;
- }
- /**
- * Converts positional (?) into named placeholders (:param<num>).
- *
- * Oracle does not support positional parameters, hence this method converts all
- * positional parameters into artificially named parameters. Note that this conversion
- * is not perfect. All question marks (?) in the original statement are treated as
- * placeholders and converted to a named parameter.
- *
- * The algorithm uses a state machine with two possible states: InLiteral and NotInLiteral.
- * Question marks inside literal strings are therefore handled correctly by this method.
- * This comes at a cost, the whole sql statement has to be looped over.
- *
- * @internal
- *
- * @param string $statement The SQL statement to convert.
- *
- * @return mixed[] [0] => the statement value (string), [1] => the paramMap value (array).
- *
- * @throws OCI8Exception
- *
- * @todo extract into utility class in Doctrine\DBAL\Util namespace
- * @todo review and test for lost spaces. we experienced missing spaces with oci8 in some sql statements.
- */
- public static function convertPositionalToNamedPlaceholders($statement)
- {
- $fragmentOffset = $tokenOffset = 0;
- $fragments = $paramMap = [];
- $currentLiteralDelimiter = null;
- do {
- if (! $currentLiteralDelimiter) {
- $result = self::findPlaceholderOrOpeningQuote(
- $statement,
- $tokenOffset,
- $fragmentOffset,
- $fragments,
- $currentLiteralDelimiter,
- $paramMap
- );
- } else {
- $result = self::findClosingQuote($statement, $tokenOffset, $currentLiteralDelimiter);
- }
- } while ($result);
- if ($currentLiteralDelimiter !== null) {
- throw NonTerminatedStringLiteral::new($tokenOffset - 1);
- }
- $fragments[] = substr($statement, $fragmentOffset);
- $statement = implode('', $fragments);
- return [$statement, $paramMap];
- }
- /**
- * Finds next placeholder or opening quote.
- *
- * @param string $statement The SQL statement to parse
- * @param int $tokenOffset The offset to start searching from
- * @param int $fragmentOffset The offset to build the next fragment from
- * @param string[] $fragments Fragments of the original statement
- * not containing placeholders
- * @param string|null $currentLiteralDelimiter The delimiter of the current string literal
- * or NULL if not currently in a literal
- * @param array<int, string> $paramMap Mapping of the original parameter positions
- * to their named replacements
- *
- * @return bool Whether the token was found
- */
- private static function findPlaceholderOrOpeningQuote(
- $statement,
- &$tokenOffset,
- &$fragmentOffset,
- &$fragments,
- &$currentLiteralDelimiter,
- &$paramMap
- ) {
- $token = self::findToken($statement, $tokenOffset, '/[?\'"]/');
- if (! $token) {
- return false;
- }
- if ($token === '?') {
- $position = count($paramMap) + 1;
- $param = ':param' . $position;
- $fragments[] = substr($statement, $fragmentOffset, $tokenOffset - $fragmentOffset);
- $fragments[] = $param;
- $paramMap[$position] = $param;
- $tokenOffset += 1;
- $fragmentOffset = $tokenOffset;
- return true;
- }
- $currentLiteralDelimiter = $token;
- ++$tokenOffset;
- return true;
- }
- /**
- * Finds closing quote
- *
- * @param string $statement The SQL statement to parse
- * @param int $tokenOffset The offset to start searching from
- * @param string $currentLiteralDelimiter The delimiter of the current string literal
- *
- * @return bool Whether the token was found
- *
- * @param-out string|null $currentLiteralDelimiter
- */
- private static function findClosingQuote(
- $statement,
- &$tokenOffset,
- &$currentLiteralDelimiter
- ) {
- $token = self::findToken(
- $statement,
- $tokenOffset,
- '/' . preg_quote($currentLiteralDelimiter, '/') . '/'
- );
- if (! $token) {
- return false;
- }
- $currentLiteralDelimiter = null;
- ++$tokenOffset;
- return true;
- }
- /**
- * Finds the token described by regex starting from the given offset. Updates the offset with the position
- * where the token was found.
- *
- * @param string $statement The SQL statement to parse
- * @param int $offset The offset to start searching from
- * @param string $regex The regex containing token pattern
- *
- * @return string|null Token or NULL if not found
- */
- private static function findToken($statement, &$offset, $regex)
- {
- if (preg_match($regex, $statement, $matches, PREG_OFFSET_CAPTURE, $offset)) {
- $offset = $matches[0][1];
- return $matches[0][0];
- }
- return null;
- }
- /**
- * {@inheritdoc}
- */
- public function bindValue($param, $value, $type = ParameterType::STRING)
- {
- return $this->bindParam($param, $value, $type, null);
- }
- /**
- * {@inheritdoc}
- */
- public function bindParam($param, &$variable, $type = ParameterType::STRING, $length = null)
- {
- if (is_int($param)) {
- if (! isset($this->_paramMap[$param])) {
- throw UnknownParameterIndex::new($param);
- }
- $param = $this->_paramMap[$param];
- }
- if ($type === ParameterType::LARGE_OBJECT) {
- $lob = oci_new_descriptor($this->_dbh, OCI_D_LOB);
- assert($lob !== false);
- $lob->writeTemporary($variable, OCI_TEMP_BLOB);
- $variable =& $lob;
- }
- $this->boundValues[$param] =& $variable;
- return oci_bind_by_name(
- $this->_sth,
- $param,
- $variable,
- $length ?? -1,
- $this->convertParameterType($type)
- );
- }
- /**
- * Converts DBAL parameter type to oci8 parameter type
- */
- private function convertParameterType(int $type): int
- {
- switch ($type) {
- case ParameterType::BINARY:
- return OCI_B_BIN;
- case ParameterType::LARGE_OBJECT:
- return OCI_B_BLOB;
- default:
- return SQLT_CHR;
- }
- }
- /**
- * {@inheritdoc}
- *
- * @deprecated Use free() instead.
- */
- public function closeCursor()
- {
- $this->free();
- return true;
- }
- /**
- * {@inheritdoc}
- */
- public function columnCount()
- {
- return oci_num_fields($this->_sth) ?: 0;
- }
- /**
- * {@inheritdoc}
- *
- * @deprecated The error information is available via exceptions.
- */
- public function errorCode()
- {
- $error = oci_error($this->_sth);
- if ($error !== false) {
- $error = $error['code'];
- }
- return $error;
- }
- /**
- * {@inheritdoc}
- *
- * @deprecated The error information is available via exceptions.
- */
- public function errorInfo()
- {
- $error = oci_error($this->_sth);
- if ($error === false) {
- return [];
- }
- return $error;
- }
- /**
- * {@inheritdoc}
- */
- public function execute($params = null)
- {
- if ($params) {
- $hasZeroIndex = array_key_exists(0, $params);
- foreach ($params as $key => $val) {
- if ($hasZeroIndex && is_int($key)) {
- $this->bindValue($key + 1, $val);
- } else {
- $this->bindValue($key, $val);
- }
- }
- }
- $ret = @oci_execute($this->_sth, $this->_conn->getExecuteMode());
- if (! $ret) {
- throw OCI8Exception::fromErrorInfo($this->errorInfo());
- }
- $this->result = true;
- return $ret;
- }
- /**
- * {@inheritdoc}
- *
- * @deprecated Use one of the fetch- or iterate-related methods.
- */
- public function setFetchMode($fetchMode, $arg2 = null, $arg3 = null)
- {
- $this->_defaultFetchMode = $fetchMode;
- return true;
- }
- /**
- * {@inheritdoc}
- *
- * @deprecated Use iterateNumeric(), iterateAssociative() or iterateColumn() instead.
- */
- public function getIterator()
- {
- return new StatementIterator($this);
- }
- /**
- * {@inheritdoc}
- *
- * @deprecated Use fetchNumeric(), fetchAssociative() or fetchOne() instead.
- */
- public function fetch($fetchMode = null, $cursorOrientation = PDO::FETCH_ORI_NEXT, $cursorOffset = 0)
- {
- // do not try fetching from the statement if it's not expected to contain result
- // in order to prevent exceptional situation
- if (! $this->result) {
- return false;
- }
- $fetchMode = $fetchMode ?: $this->_defaultFetchMode;
- if ($fetchMode === FetchMode::COLUMN) {
- return $this->fetchColumn();
- }
- if ($fetchMode === FetchMode::STANDARD_OBJECT) {
- return oci_fetch_object($this->_sth);
- }
- if (! isset(self::$fetchModeMap[$fetchMode])) {
- throw new InvalidArgumentException('Invalid fetch style: ' . $fetchMode);
- }
- return oci_fetch_array(
- $this->_sth,
- self::$fetchModeMap[$fetchMode] | OCI_RETURN_NULLS | OCI_RETURN_LOBS
- );
- }
- /**
- * {@inheritdoc}
- *
- * @deprecated Use fetchAllNumeric(), fetchAllAssociative() or fetchFirstColumn() instead.
- */
- public function fetchAll($fetchMode = null, $fetchArgument = null, $ctorArgs = null)
- {
- $fetchMode = $fetchMode ?: $this->_defaultFetchMode;
- $result = [];
- if ($fetchMode === FetchMode::STANDARD_OBJECT) {
- while ($row = $this->fetch($fetchMode)) {
- $result[] = $row;
- }
- return $result;
- }
- if (! isset(self::$fetchModeMap[$fetchMode])) {
- throw new InvalidArgumentException('Invalid fetch style: ' . $fetchMode);
- }
- if (self::$fetchModeMap[$fetchMode] === OCI_BOTH) {
- while ($row = $this->fetch($fetchMode)) {
- $result[] = $row;
- }
- } else {
- $fetchStructure = OCI_FETCHSTATEMENT_BY_ROW;
- if ($fetchMode === FetchMode::COLUMN) {
- $fetchStructure = OCI_FETCHSTATEMENT_BY_COLUMN;
- }
- // do not try fetching from the statement if it's not expected to contain result
- // in order to prevent exceptional situation
- if (! $this->result) {
- return [];
- }
- oci_fetch_all(
- $this->_sth,
- $result,
- 0,
- -1,
- self::$fetchModeMap[$fetchMode] | OCI_RETURN_NULLS | $fetchStructure | OCI_RETURN_LOBS
- );
- if ($fetchMode === FetchMode::COLUMN) {
- $result = $result[0];
- }
- }
- return $result;
- }
- /**
- * {@inheritdoc}
- *
- * @deprecated Use fetchOne() instead.
- */
- public function fetchColumn($columnIndex = 0)
- {
- // do not try fetching from the statement if it's not expected to contain result
- // in order to prevent exceptional situation
- if (! $this->result) {
- return false;
- }
- $row = oci_fetch_array($this->_sth, OCI_NUM | OCI_RETURN_NULLS | OCI_RETURN_LOBS);
- if ($row === false) {
- return false;
- }
- return $row[$columnIndex] ?? null;
- }
- /**
- * {@inheritdoc}
- */
- public function rowCount()
- {
- return oci_num_rows($this->_sth) ?: 0;
- }
- /**
- * {@inheritdoc}
- */
- public function fetchNumeric()
- {
- return $this->doFetch(OCI_NUM);
- }
- /**
- * {@inheritdoc}
- */
- public function fetchAssociative()
- {
- return $this->doFetch(OCI_ASSOC);
- }
- /**
- * {@inheritdoc}
- */
- public function fetchOne()
- {
- return FetchUtils::fetchOne($this);
- }
- /**
- * {@inheritdoc}
- */
- public function fetchAllNumeric(): array
- {
- return $this->doFetchAll(OCI_NUM, OCI_FETCHSTATEMENT_BY_ROW);
- }
- /**
- * {@inheritdoc}
- */
- public function fetchAllAssociative(): array
- {
- return $this->doFetchAll(OCI_ASSOC, OCI_FETCHSTATEMENT_BY_ROW);
- }
- /**
- * {@inheritdoc}
- */
- public function fetchFirstColumn(): array
- {
- return $this->doFetchAll(OCI_NUM, OCI_FETCHSTATEMENT_BY_COLUMN)[0];
- }
- public function free(): void
- {
- // not having the result means there's nothing to close
- if (! $this->result) {
- return;
- }
- oci_cancel($this->_sth);
- $this->result = false;
- }
- /**
- * @return mixed|false
- */
- private function doFetch(int $mode)
- {
- // do not try fetching from the statement if it's not expected to contain the result
- // in order to prevent exceptional situation
- if (! $this->result) {
- return false;
- }
- return oci_fetch_array(
- $this->_sth,
- $mode | OCI_RETURN_NULLS | OCI_RETURN_LOBS
- );
- }
- /**
- * @return array<mixed>
- */
- private function doFetchAll(int $mode, int $fetchStructure): array
- {
- // do not try fetching from the statement if it's not expected to contain the result
- // in order to prevent exceptional situation
- if (! $this->result) {
- return [];
- }
- oci_fetch_all(
- $this->_sth,
- $result,
- 0,
- -1,
- $mode | OCI_RETURN_NULLS | $fetchStructure | OCI_RETURN_LOBS
- );
- return $result;
- }
- }
|