1
0
Fork 0
mirror of synced 2025-04-03 13:23:37 +03:00
This commit is contained in:
zYne 2007-05-11 18:58:50 +00:00
parent 1879b8ea58
commit 2fdc29a368
2 changed files with 55 additions and 108 deletions

View file

@ -158,9 +158,7 @@ class Doctrine_Hydrate2
*/ */
public function copyAliases(Doctrine_Hydrate $query) public function copyAliases(Doctrine_Hydrate $query)
{ {
$this->compAliases = $query->getComponentAliases();
$this->tableAliases = $query->getTableAliases(); $this->tableAliases = $query->getTableAliases();
$this->tableIndexes = $query->getTableIndexes();
$this->aliasHandler = $query->aliasHandler; $this->aliasHandler = $query->aliasHandler;
return $this; return $this;
@ -230,8 +228,6 @@ class Doctrine_Hydrate2
"offset" => false, "offset" => false,
); );
$this->inheritanceApplied = false; $this->inheritanceApplied = false;
$this->joins = array();
$this->tableIndexes = array();
$this->tableAliases = array(); $this->tableAliases = array();
$this->aliasHandler->clear(); $this->aliasHandler->clear();
} }
@ -341,15 +337,6 @@ class Doctrine_Hydrate2
} }
} }
return $record; return $record;
}
/**
* mapRelated
*
* @return
*/
public function mapRelated()
{
} }
/** /**
* execute * execute
@ -402,8 +389,14 @@ class Doctrine_Hydrate2
// set internal data // set internal data
$map['table']->setData($row); $map['table']->setData($row);
// initialize a new record $identifiable = $this->isIdentifiable($row, $map['table']->getIdentifier());
$record = $map['table']->getRecord();
// only initialize record if the current data row is identifiable
if ($identifiable) {
// initialize a new record
$record = $map['table']->getRecord();
}
// map aggregate values (if any) // map aggregate values (if any)
$this->mapAggregateValues($record, $row); $this->mapAggregateValues($record, $row);
@ -412,8 +405,10 @@ class Doctrine_Hydrate2
if ($alias == $rootAlias) { if ($alias == $rootAlias) {
// add record into root collection // add record into root collection
$coll->add($record); if ($identifiable) {
unset($prevRow); $coll->add($record);
unset($prevRow);
}
} else { } else {
$relation = $map['relation']; $relation = $map['relation'];
@ -423,6 +418,9 @@ class Doctrine_Hydrate2
// check the type of the relation // check the type of the relation
if ($relation->isOneToOne()) { if ($relation->isOneToOne()) {
if ( ! $identifiable) {
continue;
}
$prev[$alias] = $record; $prev[$alias] = $record;
} else { } else {
// one-to-many relation or many-to-many relation // one-to-many relation or many-to-many relation
@ -435,7 +433,9 @@ class Doctrine_Hydrate2
$prev[$alias] = $prev[$parentAlias]->getLast()->get($relation->getAlias()); $prev[$alias] = $prev[$parentAlias]->getLast()->get($relation->getAlias());
} }
// add record to the current collection // add record to the current collection
$prev[$alias]->add($record); if ($identifiable) {
$prev[$alias]->add($record);
}
} }
// initialize the relation from parent to the current collection/record // initialize the relation from parent to the current collection/record
$parent->set($relation->getAlias(), $prev[$alias]); $parent->set($relation->getAlias(), $prev[$alias]);
@ -454,105 +454,29 @@ class Doctrine_Hydrate2
} }
return $coll; return $coll;
} }
/**
* execute
* executes the dql query and populates all collections
*
* @param string $params
* @return Doctrine_Collection the root collection
*/
public function execute2($params = array(), $return = Doctrine::FETCH_RECORD) {
/**
* iterate over the fetched data
* here $data is a two dimensional array
*/
foreach ($array as $data) {
/**
* remove duplicated data rows and map data into objects
*/
foreach ($data as $key => $row) {
if (empty($row)) {
continue;
}
//$key = array_search($key, $this->shortAliases);
foreach ($this->tables as $k => $t) {
if ( ! strcasecmp($key, $k)) {
$key = $k;
}
}
if ( !isset($this->tables[$key]) ) {
throw new Doctrine_Exception('No table named ' . $key . ' found.');
}
$ids = $this->tables[$key]->getIdentifier();
$name = $key;
if ($this->isIdentifiable($row, $ids)) {
if ($name !== $root) {
$prev = $this->initRelated($prev, $name);
}
// aggregate values have numeric keys
if (isset($row[0])) {
$component = $this->tables[$name]->getComponentName();
// if the collection already has objects, get the last object
// otherwise create a new one where the aggregate values are being mapped
if ($prev[$name]->count() > 0) {
$record = $prev[$name]->getLast();
} else {
$record = new $component();
$prev[$name]->add($record);
}
$path = array_search($name, $this->tableAliases);
$alias = $this->getPathAlias($path);
// map each aggregate value
foreach ($row as $index => $value) {
$agg = false;
if (isset($this->pendingAggregates[$alias][$index])) {
$agg = $this->pendingAggregates[$alias][$index][3];
} elseif (isset($this->subqueryAggregates[$alias][$index])) {
$agg = $this->subqueryAggregates[$alias][$index];
}
$record->mapValue($agg, $value);
}
}
continue;
}
}
}
return $coll;
}
/** /**
* isIdentifiable * isIdentifiable
* returns whether or not a given data row is identifiable (it contains * returns whether or not a given data row is identifiable (it contains
* all id fields specified in the second argument) * all primary key fields specified in the second argument)
* *
* @param array $row * @param array $row
* @param mixed $ids * @param mixed $primaryKeys
* @return boolean * @return boolean
*/ */
public function isIdentifiable(array $row, $ids) public function isIdentifiable(array $row, $primaryKeys)
{ {
if (is_array($ids)) { if (is_array($primaryKeys)) {
foreach ($ids as $id) { foreach ($primaryKeys as $id) {
if ($row[$id] == null) if ($row[$id] == null) {
return true; return false;
}
} }
} else { } else {
if ( ! isset($row[$ids])) { if ( ! isset($row[$primaryKeys])) {
return true; return false;
} }
} }
return false; return true;
} }
/** /**
* getType * getType

View file

@ -49,9 +49,17 @@ class Doctrine_NewCore_TestCase extends Doctrine_UnitTestCase
'e' => array('id' => 2, 'name' => 'John'), 'e' => array('id' => 2, 'name' => 'John'),
'p' => array('id' => 2, 'phonenumber' => '222 222', 'user_id' => 2) 'p' => array('id' => 2, 'phonenumber' => '222 222', 'user_id' => 2)
), ),
array(
'e' => array('id' => 2, 'name' => 'John'),
'p' => array('id' => 3, 'phonenumber' => '343 343', 'user_id' => 2)
),
array( array(
'e' => array('id' => 3, 'name' => 'Arnold'), 'e' => array('id' => 3, 'name' => 'Arnold'),
'p' => array('id' => 3, 'phonenumber' => '333 333', 'user_id' => 3) 'p' => array('id' => 4, 'phonenumber' => '333 333', 'user_id' => 3)
),
array(
'e' => array('id' => 4, 'name' => 'Arnold'),
'p' => array('id' => null, 'phonenumber' => null, 'user_id' => null)
) )
); );
@ -82,8 +90,23 @@ class Doctrine_NewCore_TestCase extends Doctrine_UnitTestCase
{ {
$h = new Doctrine_Hydrate_Mock(); $h = new Doctrine_Hydrate_Mock();
$h->setData($this->testData1); $h->setData($this->testData1);
$h->setAliasMap(array('u' => array('table' => $this->conn->getTable('User')))); $h->setAliasMap(array('u' => array('table' => $this->conn->getTable('User')),
$h->setTableAliases(array('e' => 'u')); 'p' => array('table' => $this->conn->getTable('Phonenumber'),
'parent' => 'u',
'relation' => $this->conn->getTable('User')->getRelation('Phonenumber')))
);
$h->setTableAliases(array('e' => 'u', 'p' => 'p'));
$coll = $h->execute();
$this->assertTrue($coll instanceof Doctrine_Collection2, 'instance of Doctrine_Collection expected');
$this->assertEqual($coll->count(), 4);
$count = count($this->dbh);
$this->assertEqual($coll[0]->Phonenumber->count(), 1);
$this->assertEqual($coll[1]->Phonenumber->count(), 2);
$this->assertEqual($coll[2]->Phonenumber->count(), 1);
$this->assertEqual($coll[3]->Phonenumber->count(), 0);
$this->assertEqual(count($this->dbh), $count);
} }
} }
class Doctrine_Hydrate_Mock extends Doctrine_Hydrate2 class Doctrine_Hydrate_Mock extends Doctrine_Hydrate2