123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507 |
- <?php
- class DatabaseStatementPrefetch implements Iterator, DatabaseStatementInterface {
-
- protected $queryString;
-
- protected $driverOptions;
-
- public $dbh;
-
- protected $data = array();
-
- protected $currentRow = NULL;
-
- protected $currentKey = NULL;
-
- protected $columnNames = NULL;
-
- protected $rowCount = NULL;
-
- protected $resultRowCount = 0;
-
- protected $fetchStyle = PDO::FETCH_OBJ;
-
- protected $fetchOptions = array(
- 'class' => 'stdClass',
- 'constructor_args' => array(),
- 'object' => NULL,
- 'column' => 0,
- );
-
- protected $defaultFetchStyle = PDO::FETCH_OBJ;
-
- protected $defaultFetchOptions = array(
- 'class' => 'stdClass',
- 'constructor_args' => array(),
- 'object' => NULL,
- 'column' => 0,
- );
- public function __construct(DatabaseConnection $connection, $query, array $driver_options = array()) {
- $this->dbh = $connection;
- $this->queryString = $query;
- $this->driverOptions = $driver_options;
- }
-
- public function execute($args = array(), $options = array()) {
- if (isset($options['fetch'])) {
- if (is_string($options['fetch'])) {
-
-
-
- $this->setFetchMode(PDO::FETCH_CLASS, $options['fetch']);
- }
- else {
- $this->setFetchMode($options['fetch']);
- }
- }
- $logger = $this->dbh->getLogger();
- if (!empty($logger)) {
- $query_start = microtime(TRUE);
- }
-
- $statement = $this->getStatement($this->queryString, $args);
- if (!$statement) {
- $this->throwPDOException();
- }
- $return = $statement->execute($args);
- if (!$return) {
- $this->throwPDOException();
- }
-
-
- $this->rowCount = $statement->rowCount();
- $this->data = $statement->fetchAll(PDO::FETCH_ASSOC);
-
-
- unset($statement);
- $this->resultRowCount = count($this->data);
- if ($this->resultRowCount) {
- $this->columnNames = array_keys($this->data[0]);
- }
- else {
- $this->columnNames = array();
- }
- if (!empty($logger)) {
- $query_end = microtime(TRUE);
- $logger->log($this, $args, $query_end - $query_start);
- }
-
- $this->next();
- return $return;
- }
-
- protected function throwPDOException() {
- $error_info = $this->dbh->errorInfo();
-
- $exception = new PDOException("SQLSTATE[" . $error_info[0] . "]: General error " . $error_info[1] . ": " . $error_info[2]);
- $exception->errorInfo = $error_info;
- throw $exception;
- }
-
- protected function getStatement($query, &$args = array()) {
- return $this->dbh->prepare($query);
- }
-
- public function getQueryString() {
- return $this->queryString;
- }
-
- public function setFetchMode($fetchStyle, $a2 = NULL, $a3 = NULL) {
- $this->defaultFetchStyle = $fetchStyle;
- switch ($fetchStyle) {
- case PDO::FETCH_CLASS:
- $this->defaultFetchOptions['class'] = $a2;
- if ($a3) {
- $this->defaultFetchOptions['constructor_args'] = $a3;
- }
- break;
- case PDO::FETCH_COLUMN:
- $this->defaultFetchOptions['column'] = $a2;
- break;
- case PDO::FETCH_INTO:
- $this->defaultFetchOptions['object'] = $a2;
- break;
- }
-
- $this->fetchStyle = $this->defaultFetchStyle;
- $this->fetchOptions = $this->defaultFetchOptions;
- }
-
- public function current() {
- if (isset($this->currentRow)) {
- switch ($this->fetchStyle) {
- case PDO::FETCH_ASSOC:
- return $this->currentRow;
- case PDO::FETCH_BOTH:
-
-
- return $this->currentRow + array_values($this->currentRow);
- case PDO::FETCH_NUM:
- return array_values($this->currentRow);
- case PDO::FETCH_LAZY:
-
-
- case PDO::FETCH_OBJ:
- return (object) $this->currentRow;
- case PDO::FETCH_CLASS | PDO::FETCH_CLASSTYPE:
- $class_name = array_unshift($this->currentRow);
-
- case PDO::FETCH_CLASS:
- if (!isset($class_name)) {
- $class_name = $this->fetchOptions['class'];
- }
- if (count($this->fetchOptions['constructor_args'])) {
- $reflector = new ReflectionClass($class_name);
- $result = $reflector->newInstanceArgs($this->fetchOptions['constructor_args']);
- }
- else {
- $result = new $class_name();
- }
- foreach ($this->currentRow as $k => $v) {
- $result->$k = $v;
- }
- return $result;
- case PDO::FETCH_INTO:
- foreach ($this->currentRow as $k => $v) {
- $this->fetchOptions['object']->$k = $v;
- }
- return $this->fetchOptions['object'];
- case PDO::FETCH_COLUMN:
- if (isset($this->columnNames[$this->fetchOptions['column']])) {
- return $this->currentRow[$k][$this->columnNames[$this->fetchOptions['column']]];
- }
- else {
- return;
- }
- }
- }
- }
-
- public function key() {
- return $this->currentKey;
- }
- public function rewind() {
-
- }
- public function next() {
- if (!empty($this->data)) {
- $this->currentRow = reset($this->data);
- $this->currentKey = key($this->data);
- unset($this->data[$this->currentKey]);
- }
- else {
- $this->currentRow = NULL;
- }
- }
- public function valid() {
- return isset($this->currentRow);
- }
-
- public function rowCount() {
- return $this->rowCount;
- }
- public function fetch($fetch_style = NULL, $cursor_orientation = PDO::FETCH_ORI_NEXT, $cursor_offset = NULL) {
- if (isset($this->currentRow)) {
-
- $this->fetchStyle = isset($fetch_style) ? $fetch_style : $this->defaultFetchStyle;
- $this->fetchOptions = $this->defaultFetchOptions;
-
- $return = $this->current();
-
- $this->next();
-
- $this->fetchStyle = $this->defaultFetchStyle;
- $this->fetchOptions = $this->defaultFetchOptions;
- return $return;
- }
- else {
- return FALSE;
- }
- }
- public function fetchColumn($index = 0) {
- if (isset($this->currentRow) && isset($this->columnNames[$index])) {
-
- $return = $this->currentRow[$this->columnNames[$index]];
- $this->next();
- return $return;
- }
- else {
- return FALSE;
- }
- }
- public function fetchField($index = 0) {
- return $this->fetchColumn($index);
- }
- public function fetchObject($class_name = NULL, $constructor_args = array()) {
- if (isset($this->currentRow)) {
- if (!isset($class_name)) {
-
- $result = (object) $this->currentRow;
- }
- else {
- $this->fetchStyle = PDO::FETCH_CLASS;
- $this->fetchOptions = array('constructor_args' => $constructor_args);
-
- $result = $this->current();
-
- $this->fetchStyle = $this->defaultFetchStyle;
- $this->fetchOptions = $this->defaultFetchOptions;
- }
- $this->next();
- return $result;
- }
- else {
- return FALSE;
- }
- }
- public function fetchAssoc() {
- if (isset($this->currentRow)) {
- $result = $this->currentRow;
- $this->next();
- return $result;
- }
- else {
- return FALSE;
- }
- }
- public function fetchAll($fetch_style = NULL, $fetch_column = NULL, $constructor_args = NULL) {
- $this->fetchStyle = isset($fetch_style) ? $fetch_style : $this->defaultFetchStyle;
- $this->fetchOptions = $this->defaultFetchOptions;
- if (isset($fetch_column)) {
- $this->fetchOptions['column'] = $fetch_column;
- }
- if (isset($constructor_args)) {
- $this->fetchOptions['constructor_args'] = $constructor_args;
- }
- $result = array();
-
- while (isset($this->currentRow)) {
-
- $result[] = $this->current();
- $this->next();
- }
-
- $this->fetchStyle = $this->defaultFetchStyle;
- $this->fetchOptions = $this->defaultFetchOptions;
- return $result;
- }
- public function fetchCol($index = 0) {
- if (isset($this->columnNames[$index])) {
- $column = $this->columnNames[$index];
- $result = array();
-
- while (isset($this->currentRow)) {
- $result[] = $this->currentRow[$this->columnNames[$index]];
- $this->next();
- }
- return $result;
- }
- else {
- return array();
- }
- }
- public function fetchAllKeyed($key_index = 0, $value_index = 1) {
- if (!isset($this->columnNames[$key_index]) || !isset($this->columnNames[$value_index]))
- return array();
- $key = $this->columnNames[$key_index];
- $value = $this->columnNames[$value_index];
- $result = array();
-
- while (isset($this->currentRow)) {
- $result[$this->currentRow[$key]] = $this->currentRow[$value];
- $this->next();
- }
- return $result;
- }
- public function fetchAllAssoc($key, $fetch_style = NULL) {
- $this->fetchStyle = isset($fetch_style) ? $fetch_style : $this->defaultFetchStyle;
- $this->fetchOptions = $this->defaultFetchOptions;
- $result = array();
-
- while (isset($this->currentRow)) {
-
- $row = $this->currentRow;
-
- $result_row = $this->current();
- $result[$this->currentRow[$key]] = $result_row;
- $this->next();
- }
-
- $this->fetchStyle = $this->defaultFetchStyle;
- $this->fetchOptions = $this->defaultFetchOptions;
- return $result;
- }
- }
|