Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
doctrine-dbal
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Tomáš Trávníček
doctrine-dbal
Commits
ca213ac6
Commit
ca213ac6
authored
Oct 01, 2006
by
zYne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Refactored Doctrine_Hydrate
parent
cded682e
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
74 additions
and
54 deletions
+74
-54
Hydrate.php
lib/Doctrine/Hydrate.php
+74
-54
No files found.
lib/Doctrine/Hydrate.php
View file @
ca213ac6
...
...
@@ -277,6 +277,7 @@ abstract class Doctrine_Hydrate extends Doctrine_Access {
case
0
:
throw
new
Doctrine_Exception
(
"No tables selected"
);
break
;
case
1
:
$keys
=
array_keys
(
$this
->
tables
);
...
...
@@ -301,7 +302,9 @@ abstract class Doctrine_Hydrate extends Doctrine_Access {
return
$this
->
getCollection
(
$keys
[
0
]);
break
;
default
:
$keys
=
array_keys
(
$this
->
tables
);
$root
=
$keys
[
0
];
...
...
@@ -335,28 +338,7 @@ abstract class Doctrine_Hydrate extends Doctrine_Access {
if
(
$this
->
isIdentifiable
(
$row
,
$ids
))
{
$pointer
=
$this
->
joins
[
$name
];
$path
=
array_search
(
$name
,
$this
->
tableAliases
);
$tmp
=
explode
(
"."
,
$path
);
$alias
=
end
(
$tmp
);
unset
(
$tmp
);
$fk
=
$this
->
tables
[
$pointer
]
->
getRelation
(
$alias
);
if
(
!
isset
(
$prev
[
$pointer
])
)
continue
;
$last
=
$prev
[
$pointer
]
->
getLast
();
if
(
!
$fk
->
isOneToOne
())
{
if
(
$last
instanceof
Doctrine_Record
)
{
if
(
!
$last
->
hasReference
(
$alias
))
{
$prev
[
$name
]
=
$this
->
getCollection
(
$name
);
$last
->
initReference
(
$prev
[
$name
],
$fk
);
}
}
}
$prev
=
$this
->
initRelated
(
$prev
,
$name
);
continue
;
}
...
...
@@ -380,51 +362,89 @@ abstract class Doctrine_Hydrate extends Doctrine_Access {
unset
(
$previd
);
}
else
{
$prev
=
$this
->
addRelated
(
$prev
,
$name
,
$record
);
}
// following statement is needed to ensure that mappings
// are being done properly when the result set doesn't
// contain the rows in 'right order'
if
(
$prev
[
$name
]
!==
$record
)
$prev
[
$name
]
=
$record
;
}
$previd
[
$name
]
=
$row
;
}
}
return
$coll
;
endswitch
;
}
/**
* initRelation
*
* @param array $prev
* @param string $name
* @return array
*/
public
function
initRelated
(
array
$prev
,
$name
)
{
$pointer
=
$this
->
joins
[
$name
];
$path
=
array_search
(
$name
,
$this
->
tableAliases
);
$tmp
=
explode
(
"."
,
$path
);
$alias
=
end
(
$tmp
);
$fk
=
$this
->
tables
[
$pointer
]
->
getRelation
(
$alias
);
if
(
!
isset
(
$prev
[
$pointer
])
)
return
$prev
;
if
(
!
$fk
->
isOneToOne
())
{
if
(
$prev
[
$pointer
]
->
getLast
()
instanceof
Doctrine_Record
)
{
if
(
!
$prev
[
$pointer
]
->
getLast
()
->
hasReference
(
$alias
))
{
$prev
[
$name
]
=
$this
->
getCollection
(
$name
);
$prev
[
$pointer
]
->
getLast
()
->
initReference
(
$prev
[
$name
],
$fk
);
}
}
}
return
$prev
;
}
/**
* addRelated
*
* @param array $prev
* @param string $name
* @return array
*/
public
function
addRelated
(
array
$prev
,
$name
,
Doctrine_Record
$record
)
{
$pointer
=
$this
->
joins
[
$name
];
$path
=
array_search
(
$name
,
$this
->
tableAliases
);
$tmp
=
explode
(
"."
,
$path
);
$alias
=
end
(
$tmp
);
unset
(
$tmp
);
$fk
=
$this
->
tables
[
$pointer
]
->
getRelation
(
$alias
);
$last
=
$prev
[
$pointer
]
->
getLast
();
if
(
$fk
->
isOneToOne
())
{
$last
->
set
(
$fk
->
getAlias
(),
$record
);
$prev
[
$pointer
]
->
getLast
()
->
set
(
$fk
->
getAlias
(),
$record
);
$prev
[
$name
]
=
$record
;
}
else
{
// one-to-many relation or many-to-many relation
if
(
!
$last
->
hasReference
(
$alias
))
{
if
(
!
$prev
[
$pointer
]
->
getLast
()
->
hasReference
(
$alias
))
{
$prev
[
$name
]
=
$this
->
getCollection
(
$name
);
$last
->
initReference
(
$prev
[
$name
],
$fk
);
$prev
[
$pointer
]
->
getLast
()
->
initReference
(
$prev
[
$name
],
$fk
);
}
else
{
// previous entry found from memory
$prev
[
$name
]
=
$last
->
get
(
$alias
);
}
$last
->
addReference
(
$record
,
$fk
);
}
}
// following statement is needed to ensure that mappings are being done properly when
// the result set doesn't contain the rows in 'right order' the
if
(
$prev
[
$name
]
!==
$record
)
$prev
[
$name
]
=
$record
;
$prev
[
$name
]
=
$prev
[
$pointer
]
->
getLast
()
->
get
(
$alias
);
}
$previd
[
$name
]
=
$row
;
$prev
[
$pointer
]
->
getLast
()
->
addReference
(
$record
,
$fk
)
;
}
return
$prev
;
}
return
$coll
;
endswitch
;
}
/**
* isIdentifiable
* returns whether or not a given data row is identifiable (it contains
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment