Skip to content
This repository has been archived by the owner on Nov 26, 2017. It is now read-only.

Commit

Permalink
Implementing database iterator
Browse files Browse the repository at this point in the history
  • Loading branch information
chdemko committed Mar 29, 2012
1 parent 86b76c2 commit f9da1f8
Show file tree
Hide file tree
Showing 12 changed files with 779 additions and 1 deletion.
3 changes: 3 additions & 0 deletions docs/manual/en-US/chapters/packages.xml
Expand Up @@ -14,4 +14,7 @@
<xi:include href="packages/input.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />

<xi:include href="packages/log.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />

<xi:include href="packages/database.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
</chapter>

33 changes: 33 additions & 0 deletions docs/manual/en-US/chapters/packages/database.xml
@@ -0,0 +1,33 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
"http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
<!ENTITY % BOOK_ENTITIES SYSTEM "../../Developer_Manual.ent">
%BOOK_ENTITIES;
]>
<section id="chap-Joomla_Platform_Manual-Database">
<title>Database</title>

<section>
<title>Introduction</title>

<para>The <emphasis>Database</emphasis> package is designed to manage the operations of data management through the use of a generic database engine.</para>

</section>

<section>
<title>Iterating on results</title>

<para>The <code language="PHP (HTML)">JDatabaseIterator</code> class allows iteration over database results
<programlisting language="PHP (HTML)"><![CDATA[$dbo = JFactory::getDbo();
$iterator = $dbo->getIterator($dbo->getQuery(true)->select('*')->from('#__content')->execute());
foreach ($iterator as $row)
{
// Deal with $row
}]]></programlisting>
</para>
<para>It allows also to count the results.
<programlisting language="PHP (HTML)"><![CDATA[$count = count($iterator);]]></programlisting>
</para>
</section>
</section>

31 changes: 30 additions & 1 deletion libraries/joomla/database/driver.php
Expand Up @@ -201,7 +201,7 @@ public static function getConnectors()
continue;
}

// Sweet! Our class exists, so now we just need to know if it passes its test method.
// Sweet! Our class exists, so now we just need to know if it passes it's test method.
// @deprecated 12.3 Stop checking with test()
if ($class::isSupported() || $class::test())
{
Expand Down Expand Up @@ -674,6 +674,33 @@ public function getQuery($new = false)
}
}

/**
* Get a new iterator on the current query.
*
* @param string $column An option column to use as the iterator key.
* @param string $class The class of object that is returned.
*
* @return JDatabaseIterator A new database iterator.
*
* @since 12.1
* @throws RuntimeException
*/
public function getIterator($column = null, $class = 'stdClass')
{
// Derive the class name from the driver.
$iteratorClass = 'JDatabaseIterator' . ucfirst($this->name);

// Make sure we have an iterator class for this driver.
if (!class_exists($iteratorClass))
{
// If it doesn't exist we are at an impasse so throw an exception.
throw new RuntimeException(sprintf('class *%s* is not defined', $iteratorClass));
}

// Return a new iterator
return new $iteratorClass($this->execute(), $column, $class);
}

/**
* Retrieves field information about the given tables.
*
Expand Down Expand Up @@ -967,6 +994,7 @@ public function loadColumn($offset = 0)
*/
public function loadNextObject($class = 'stdClass')
{
JLog::add(__METHOD__ . '() is deprecated. Use JDatabase::getIterator() instead.', JLog::WARNING, 'deprecated');
$this->connect();

static $cursor = null;
Expand Down Expand Up @@ -1003,6 +1031,7 @@ public function loadNextObject($class = 'stdClass')
*/
public function loadNextRow()
{
JLog::add('JDatabase::loadNextRow() is deprecated. Use JDatabase::getIterator() instead.', JLog::WARNING, 'deprecated');
$this->connect();

static $cursor = null;
Expand Down
215 changes: 215 additions & 0 deletions libraries/joomla/database/iterator.php
@@ -0,0 +1,215 @@
<?php
/**
* @package Joomla.Platform
* @subpackage Database
*
* @copyright Copyright (C) 2005 - 2012 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE
*/

defined('JPATH_PLATFORM') or die;

/**
* Joomla Platform Database Driver Class
*
* @package Joomla.Platform
* @subpackage Database
* @since 12.1
*/
abstract class JDatabaseIterator implements Countable, Iterator
{
/**
* The database cursor.
*
* @var mixed
* @since 12.1
*/
protected $cursor;

/**
* The class of object to create.
*
* @var string
* @since 12.1
*/
protected $class;

/**
* The name of the column to use for the key of the database record.
*
* @var mixed
* @since 12.1
*/
private $_column;

/**
* The current database record.
*
* @var mixed
* @since 12.1
*/
private $_current;

/**
* A numeric or string key for the current database record.
*
* @var scalar
* @since 12.1
*/
private $_key;

/**
* The number of fetched records.
*
* @var integer
* @since 12.1
*/
private $_fetched = 0;

/**
* Database iterator constructor.
*
* @param mixed $cursor The database cursor.
* @param string $column An option column to use as the iterator key.
* @param string $class The class of object that is returned.
*
* @throws InvalidArgumentException
*/
public function __construct($cursor, $column = null, $class = 'stdClass')
{
if (!class_exists($class))
{
throw new InvalidArgumentException(sprintf('new %s(*%s*, cursor)', get_class($this), gettype($class)));
}

$this->cursor = $cursor;
$this->class = $class;
$this->_column = $column;
$this->_fetched = 0;
$this->next();
}

/**
* Database iterator destructor.
*
* @since 12.1
*/
public function __destruct()
{
if ($this->cursor)
{
$this->freeResult($this->cursor);
}
}

/**
* Get the number of rows in the result set for the executed SQL given by the cursor.
*
* @return integer The number of rows in the result set.
*
* @since 12.1
* @see Countable::count()
*/
abstract public function count();

/**
* The current element in the iterator.
*
* @return object
*
* @see Iterator::current()
* @since 12.1
*/
public function current()
{
return $this->_current;
}

/**
* The key of the current element in the iterator.
*
* @return scalar
*
* @see Iterator::key()
* @since 12.1
*/
public function key()
{
return $this->_key;
}

/**
* Moves forward to the next result from the SQL query.
*
* @return void
*
* @see Iterator::next()
* @since 12.1
*/
public function next()
{
// Set the default key as being the number of fetched object
$this->_key = $this->_fetched;

// Try to get an object
$this->_current = $this->fetchObject($this->cursor, $this->class);

// If an object has been found
if ($this->_current)
{
// Set the key as being the indexed column (if it exists)
if (isset($this->_current->{$this->_column}))
{
$this->_key = $this->_current->{$this->_column};
}

// Update the number of fetched object
$this->_fetched++;
}
}

/**
* Rewinds the iterator.
*
* This iterator cannot be rewound.
*
* @return void
*
* @see Iterator::rewind()
* @since 12.1
*/
public function rewind()
{
}

/**
* Checks if the current position of the iterator is valid.
*
* @return boolean
*
* @see Iterator::valid()
* @since 12.1
*/
public function valid()
{
return (boolean) $this->_current;
}

/**
* Method to fetch a row from the result set cursor as an object.
*
* @return mixed Either the next row from the result set or false if there are no more rows.
*
* @since 12.1
*/
abstract protected function fetchObject();

/**
* Method to free up the memory used for the result set.
*
* @return void
*
* @since 12.1
*/
abstract protected function freeResult();
}
21 changes: 21 additions & 0 deletions libraries/joomla/database/iterator/azure.php
@@ -0,0 +1,21 @@
<?php
/**
* @package Joomla.Platform
* @subpackage Database
*
* @copyright Copyright (C) 2005 - 2012 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE
*/

defined('JPATH_PLATFORM') or die;

/**
* SQL azure database iterator.
*
* @package Joomla.Platform
* @subpackage Database
* @since 12.1
*/
class JDatabaseIteratorAzure extends JDatabaseIteratorSqlsrv
{
}
58 changes: 58 additions & 0 deletions libraries/joomla/database/iterator/mysql.php
@@ -0,0 +1,58 @@
<?php
/**
* @package Joomla.Platform
* @subpackage Database
*
* @copyright Copyright (C) 2005 - 2012 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE
*/

defined('JPATH_PLATFORM') or die;

/**
* MySQL database iterator.
*
* @package Joomla.Platform
* @subpackage Database
* @see http://dev.mysql.com/doc/
* @since 12.1
*/
class JDatabaseIteratorMysql extends JDatabaseIterator
{
/**
* Get the number of rows in the result set for the executed SQL given by the cursor.
*
* @return integer The number of rows in the result set.
*
* @since 12.1
* @see Countable::count()
*/
public function count()
{
return mysql_num_rows($this->cursor);
}

/**
* Method to fetch a row from the result set cursor as an object.
*
* @return mixed Either the next row from the result set or false if there are no more rows.
*
* @since 12.1
*/
protected function fetchObject()
{
return mysql_fetch_object($this->cursor, $this->class);
}

/**
* Method to free up the memory used for the result set.
*
* @return void
*
* @since 12.1
*/
protected function freeResult()
{
mysql_free_result($this->cursor);
}
}

0 comments on commit f9da1f8

Please sign in to comment.