<?php
/*
*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
* Copyright:
*
* XMLNuke: A Web Development Framework based on XML.
*
* Main Specification: Joao Gilberto Magalhaes, joao at byjg dot com
* PHP Implementation: Joao Gilberto Magalhaes
*
* This file is part of XMLNuke project. Visit http://www.xmlnuke.com
* for more information.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
*/
class DBIterator implements IIterator
{
const RECORD_BUFFER = 50;
private $_rowBuffer;
/**
*@var PDOStatement
*/
private $_rs;
/**
*@var Context
*/
private $_context;
/**
*@access public
*@param PDOStatement $recordset
*@param Context $context
*@return void
*/
public function DBIterator($recordset, $context)
{
$this->_context = $context;
$this->_rs = $recordset;
$this->_rowBuffer = array();
}
/**
*@access public
*@return int
*/
public function Count()
{
return $this->_rs->rowCount();
}
/**
*@access public
*@return bool
*/
public function hasNext()
{
if (count($this->_rowBuffer) >= DBIterator::RECORD_BUFFER)
{
return true;
}
else if (is_null($this->_rs))
{
return (count($this->_rowBuffer) > 0);
}
else if ($row = $this->_rs->fetch(PDO::FETCH_ASSOC))
{
$any = new AnyDataSet();
$any->appendRow();
foreach ($row as $key=>$value)
{
$fieldName = strtolower($key);
if (is_null($value))
{
$any->addField($fieldName, "");
}
elseif (is_object($value))
{
$any->addField($fieldName, "[OBJECT]");
}
else
{
if (!FileUtil::is_utf8($value))
{
$value = utf8_encode($value);
}
$any->addField($fieldName, $value);
}
}
$it = $any->getIterator();
// Enfileira o registo
array_push($this->_rowBuffer, $it->moveNext());
// Traz novos até encher o Buffer
if (count($this->_rowBuffer) < DBIterator::RECORD_BUFFER)
{
$this->hasNext();
}
return true;
}
else
{
$this->_rs->closeCursor();
$this->_rs = null;
//if (this._db != null)
//{
// this._db.Close();
// this._db = null;
//}
return (count($this->_rowBuffer) > 0);
}
}
/**
*@access public
*@return SingleRow
*/
public function moveNext()
{
if (!$this->hasNext())
{
throw new Exception("No more records. Did you used hasNext() before moveNext()?");
}
else
{
$sr = array_shift($this->_rowBuffer);
return $sr;
}
}
}
?>