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
20858236
Commit
20858236
authored
Jul 17, 2009
by
jwage
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[2.0] A few fixes and clean up to the Optimistic Locking implementation.
parent
cc3ea569
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
92 additions
and
15 deletions
+92
-15
JoinedSubclassPersister.php
lib/Doctrine/ORM/Persisters/JoinedSubclassPersister.php
+37
-8
StandardEntityPersister.php
lib/Doctrine/ORM/Persisters/StandardEntityPersister.php
+20
-2
OptimisticTest.php
tests/Doctrine/Tests/ORM/Locking/OptimisticTest.php
+35
-5
No files found.
lib/Doctrine/ORM/Persisters/JoinedSubclassPersister.php
View file @
20858236
...
@@ -58,6 +58,26 @@ class JoinedSubclassPersister extends StandardEntityPersister
...
@@ -58,6 +58,26 @@ class JoinedSubclassPersister extends StandardEntityPersister
}
}
}
}
/**
* This function finds the ClassMetadata instance in a inheritance hierarchy
* that is responsible for enabling versioning.
*
* @return mixed $versionedClass ClassMetadata instance or false if versioning is not enabled
*/
private
function
_getVersionedClassMetadata
()
{
if
(
$isVersioned
=
$this
->
_class
->
isVersioned
)
{
if
(
isset
(
$this
->
_class
->
fieldMappings
[
$this
->
_class
->
versionField
][
'inherited'
]))
{
$definingClassName
=
$this
->
_class
->
fieldMappings
[
$this
->
_class
->
versionField
][
'inherited'
];
$versionedClass
=
$this
->
_em
->
getClassMetadata
(
$definingClassName
);
}
else
{
$versionedClass
=
$this
->
_class
;
}
return
$versionedClass
;
}
return
false
;
}
/**
/**
* {@inheritdoc}
* {@inheritdoc}
*
*
...
@@ -95,12 +115,7 @@ class JoinedSubclassPersister extends StandardEntityPersister
...
@@ -95,12 +115,7 @@ class JoinedSubclassPersister extends StandardEntityPersister
}
}
if
(
$isVersioned
=
$this
->
_class
->
isVersioned
)
{
if
(
$isVersioned
=
$this
->
_class
->
isVersioned
)
{
if
(
isset
(
$this
->
_class
->
fieldMappings
[
$this
->
_class
->
versionField
][
'inherited'
]))
{
$versionedClass
=
$this
->
_getVersionedClassMetadata
();
$definingClassName
=
$this
->
_class
->
fieldMappings
[
$this
->
_class
->
versionField
][
'inherited'
];
$versionedClass
=
$this
->
_em
->
getClassMetadata
(
$definingClassName
);
}
else
{
$versionedClass
=
$this
->
_class
;
}
}
}
$postInsertIds
=
array
();
$postInsertIds
=
array
();
...
@@ -204,8 +219,22 @@ class JoinedSubclassPersister extends StandardEntityPersister
...
@@ -204,8 +219,22 @@ class JoinedSubclassPersister extends StandardEntityPersister
$this
->
_em
->
getUnitOfWork
()
->
getEntityIdentifier
(
$entity
)
$this
->
_em
->
getUnitOfWork
()
->
getEntityIdentifier
(
$entity
)
);
);
if
(
$isVersioned
=
$this
->
_class
->
isVersioned
)
{
$versionedClass
=
$this
->
_getVersionedClassMetadata
();
$versionedTable
=
$versionedClass
->
primaryTable
[
'name'
];
}
if
(
$updateData
)
{
foreach
(
$updateData
as
$tableName
=>
$data
)
{
foreach
(
$updateData
as
$tableName
=>
$data
)
{
$this
->
_doUpdate
(
$entity
,
$tableName
,
$updateData
[
$tableName
],
$id
);
if
(
$isVersioned
&&
$versionedTable
==
$tableName
)
{
$this
->
_doUpdate
(
$entity
,
$tableName
,
$data
,
$id
);
}
else
{
$this
->
_conn
->
update
(
$tableName
,
$data
,
$id
);
}
}
if
(
$isVersioned
&&
!
isset
(
$updateData
[
$versionedTable
]))
{
$this
->
_doUpdate
(
$entity
,
$versionedTable
,
array
(),
$id
);
}
}
}
}
}
...
...
lib/Doctrine/ORM/Persisters/StandardEntityPersister.php
View file @
20858236
...
@@ -182,6 +182,13 @@ class StandardEntityPersister
...
@@ -182,6 +182,13 @@ class StandardEntityPersister
return
$postInsertIds
;
return
$postInsertIds
;
}
}
/**
* This function retrieves the default version value which was created
* by the DBMS INSERT statement. The value is assigned back in to the
* $entity versionField property.
*
* @return void
*/
protected
function
_assignDefaultVersionValue
(
$class
,
$entity
,
$id
)
protected
function
_assignDefaultVersionValue
(
$class
,
$entity
,
$id
)
{
{
$versionField
=
$this
->
_class
->
getVersionField
();
$versionField
=
$this
->
_class
->
getVersionField
();
...
@@ -222,6 +229,16 @@ class StandardEntityPersister
...
@@ -222,6 +229,16 @@ class StandardEntityPersister
}
}
}
}
/**
* Perform UPDATE statement for an entity. This function has support for
* optimistic locking if the entities ClassMetadata has versioning enabled.
*
* @param object $entity The entity object being updated
* @param string $tableName The name of the table being updated
* @param array $data The array of data to set
* @param array $where The condition used to update
* @return void
*/
protected
function
_doUpdate
(
$entity
,
$tableName
,
$data
,
$where
)
protected
function
_doUpdate
(
$entity
,
$tableName
,
$data
,
$where
)
{
{
$set
=
array
();
$set
=
array
();
...
@@ -229,7 +246,7 @@ class StandardEntityPersister
...
@@ -229,7 +246,7 @@ class StandardEntityPersister
$set
[]
=
$this
->
_conn
->
quoteIdentifier
(
$columnName
)
.
' = ?'
;
$set
[]
=
$this
->
_conn
->
quoteIdentifier
(
$columnName
)
.
' = ?'
;
}
}
if
(
$
v
ersioned
=
$this
->
_class
->
isVersioned
())
{
if
(
$
isV
ersioned
=
$this
->
_class
->
isVersioned
())
{
$versionField
=
$this
->
_class
->
getVersionField
();
$versionField
=
$this
->
_class
->
getVersionField
();
$identifier
=
$this
->
_class
->
getIdentifier
();
$identifier
=
$this
->
_class
->
getIdentifier
();
$versionFieldColumnName
=
$this
->
_class
->
getColumnName
(
$versionField
);
$versionFieldColumnName
=
$this
->
_class
->
getColumnName
(
$versionField
);
...
@@ -237,6 +254,7 @@ class StandardEntityPersister
...
@@ -237,6 +254,7 @@ class StandardEntityPersister
$set
[]
=
$this
->
_conn
->
quoteIdentifier
(
$versionFieldColumnName
)
.
' = '
.
$set
[]
=
$this
->
_conn
->
quoteIdentifier
(
$versionFieldColumnName
)
.
' = '
.
$this
->
_conn
->
quoteIdentifier
(
$versionFieldColumnName
)
.
' + 1'
;
$this
->
_conn
->
quoteIdentifier
(
$versionFieldColumnName
)
.
' + 1'
;
}
}
$params
=
array_merge
(
array_values
(
$data
),
array_values
(
$where
));
$params
=
array_merge
(
array_values
(
$data
),
array_values
(
$where
));
$sql
=
'UPDATE '
.
$this
->
_conn
->
quoteIdentifier
(
$tableName
)
$sql
=
'UPDATE '
.
$this
->
_conn
->
quoteIdentifier
(
$tableName
)
...
@@ -246,7 +264,7 @@ class StandardEntityPersister
...
@@ -246,7 +264,7 @@ class StandardEntityPersister
$result
=
$this
->
_conn
->
exec
(
$sql
,
$params
);
$result
=
$this
->
_conn
->
exec
(
$sql
,
$params
);
if
(
$
v
ersioned
&&
!
$result
)
{
if
(
$
isV
ersioned
&&
!
$result
)
{
throw
\Doctrine\ORM\OptimisticLockException
::
optimisticLockFailed
();
throw
\Doctrine\ORM\OptimisticLockException
::
optimisticLockFailed
();
}
}
}
}
...
...
tests/Doctrine/Tests/ORM/Locking/OptimisticTest.php
View file @
20858236
...
@@ -34,10 +34,40 @@ class OptimisticTest extends \Doctrine\Tests\OrmFunctionalTestCase
...
@@ -34,10 +34,40 @@ class OptimisticTest extends \Doctrine\Tests\OrmFunctionalTestCase
$this
->
_conn
=
$this
->
_em
->
getConnection
();
$this
->
_conn
=
$this
->
_em
->
getConnection
();
}
}
public
function
testJoinedInsertSetsInitialVersionValue
()
public
function
testJoinedChildInsertSetsInitialVersionValue
()
{
$test
=
new
OptimisticJoinedChild
();
$test
->
name
=
'child'
;
$test
->
whatever
=
'whatever'
;
$this
->
_em
->
save
(
$test
);
$this
->
_em
->
flush
();
$this
->
assertEquals
(
1
,
$test
->
version
);
}
/**
* @expectedException Doctrine\ORM\OptimisticLockException
*/
public
function
testJoinedChildFailureThrowsException
()
{
$q
=
$this
->
_em
->
createQuery
(
'SELECT t FROM Doctrine\Tests\ORM\Locking\OptimisticJoinedChild t WHERE t.name = :name'
);
$q
->
setParameter
(
'name'
,
'child'
);
$test
=
$q
->
getSingleResult
();
// Manually update/increment the version so we can try and save the same
// $test and make sure the exception is thrown saying the record was
// changed or updated since you read it
$this
->
_conn
->
execute
(
'UPDATE optimistic_joined_parent SET version = ? WHERE id = ?'
,
array
(
2
,
$test
->
id
));
// Now lets change a property and try and save it again
$test
->
whatever
=
'ok'
;
$this
->
_em
->
flush
();
}
public
function
testJoinedParentInsertSetsInitialVersionValue
()
{
{
$test
=
new
OptimisticJoinedParent
();
$test
=
new
OptimisticJoinedParent
();
$test
->
name
=
'
tes
t'
;
$test
->
name
=
'
paren
t'
;
$this
->
_em
->
save
(
$test
);
$this
->
_em
->
save
(
$test
);
$this
->
_em
->
flush
();
$this
->
_em
->
flush
();
...
@@ -47,10 +77,10 @@ class OptimisticTest extends \Doctrine\Tests\OrmFunctionalTestCase
...
@@ -47,10 +77,10 @@ class OptimisticTest extends \Doctrine\Tests\OrmFunctionalTestCase
/**
/**
* @expectedException Doctrine\ORM\OptimisticLockException
* @expectedException Doctrine\ORM\OptimisticLockException
*/
*/
public
function
testJoinedFailureThrowsException
()
public
function
testJoined
Parent
FailureThrowsException
()
{
{
$q
=
$this
->
_em
->
createQuery
(
'SELECT t FROM Doctrine\Tests\ORM\Locking\OptimisticJoinedParent t WHERE t.name = :name'
);
$q
=
$this
->
_em
->
createQuery
(
'SELECT t FROM Doctrine\Tests\ORM\Locking\OptimisticJoinedParent t WHERE t.name = :name'
);
$q
->
setParameter
(
'name'
,
'
tes
t'
);
$q
->
setParameter
(
'name'
,
'
paren
t'
);
$test
=
$q
->
getSingleResult
();
$test
=
$q
->
getSingleResult
();
// Manually update/increment the version so we can try and save the same
// Manually update/increment the version so we can try and save the same
...
@@ -130,7 +160,7 @@ class OptimisticJoinedChild extends OptimisticJoinedParent
...
@@ -130,7 +160,7 @@ class OptimisticJoinedChild extends OptimisticJoinedParent
/**
/**
* @Column(type="string", length=255)
* @Column(type="string", length=255)
*/
*/
public
$
name
;
public
$
whatever
;
}
}
/**
/**
...
...
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