Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Nextcloud
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TeDomum
Nextcloud
Commits
132a564a
Commit
132a564a
authored
9 years ago
by
Robin Appelman
Browse files
Options
Downloads
Patches
Plain Diff
rename path field to key
parent
c39ded21
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
db_structure.xml
+5
-4
5 additions, 4 deletions
db_structure.xml
lib/private/lock/dblockingprovider.php
+13
-8
13 additions, 8 deletions
lib/private/lock/dblockingprovider.php
with
18 additions
and
12 deletions
db_structure.xml
+
5
−
4
View file @
132a564a
...
...
@@ -1183,7 +1183,7 @@
<table>
<!--
Table for storing
high-level
locking
Table for storing
transactional file
locking
-->
<name>
*dbprefix*file_locks
</name>
...
...
@@ -1208,7 +1208,7 @@
</field>
<field>
<name>
path
</name>
<name>
key
</name>
<type>
text
</type>
<notnull>
true
</notnull>
<length>
64
</length>
...
...
@@ -1217,6 +1217,7 @@
<field>
<name>
ttl
</name>
<type>
integer
</type>
<default>
-1
</default>
<notnull>
true
</notnull>
<length>
4
</length>
</field>
...
...
@@ -1233,9 +1234,9 @@
<index>
<unique>
true
</unique>
<name>
lock_
path
_index
</name>
<name>
lock_
key
_index
</name>
<field>
<name>
path
</name>
<name>
key
</name>
<sorting>
ascending
</sorting>
</field>
</index>
...
...
This diff is collapsed.
Click to expand it.
lib/private/lock/dblockingprovider.php
+
13
−
8
View file @
132a564a
...
...
@@ -24,6 +24,9 @@ namespace OC\Lock;
use
OCP\IDBConnection
;
use
OCP\Lock\LockedException
;
/**
* Locking provider that stores the locks in the database
*/
class
DBLockingProvider
extends
AbstractLockingProvider
{
/**
* @var \OCP\IDBConnection
...
...
@@ -38,7 +41,7 @@ class DBLockingProvider extends AbstractLockingProvider {
}
protected
function
initLockField
(
$path
)
{
$this
->
connection
->
insertIfNotExist
(
'*PREFIX*file_locks'
,
[
'
path
'
=>
$path
,
'lock'
=>
0
,
'ttl'
=>
0
],
[
'
path
'
]);
$this
->
connection
->
insertIfNotExist
(
'*PREFIX*file_locks'
,
[
'
key
'
=>
$path
,
'lock'
=>
0
,
'ttl'
=>
0
],
[
'
key
'
]);
}
/**
...
...
@@ -47,7 +50,7 @@ class DBLockingProvider extends AbstractLockingProvider {
* @return bool
*/
public
function
isLocked
(
$path
,
$type
)
{
$query
=
$this
->
connection
->
prepare
(
'SELECT `lock` from `*PREFIX*file_locks` WHERE `
path
` = ?'
);
$query
=
$this
->
connection
->
prepare
(
'SELECT `lock` from `*PREFIX*file_locks` WHERE `
key
` = ?'
);
$query
->
execute
([
$path
]);
$lockValue
=
(
int
)
$query
->
fetchColumn
();
if
(
$type
===
self
::
LOCK_SHARED
)
{
...
...
@@ -65,18 +68,20 @@ class DBLockingProvider extends AbstractLockingProvider {
* @throws \OCP\Lock\LockedException
*/
public
function
acquireLock
(
$path
,
$type
)
{
$this
->
connection
->
beginTransaction
();
$this
->
initLockField
(
$path
);
if
(
$type
===
self
::
LOCK_SHARED
)
{
$result
=
$this
->
connection
->
executeUpdate
(
'UPDATE `*PREFIX*file_locks` SET `lock` = `lock` + 1 WHERE `
path
` = ? AND `lock` >= 0'
,
'UPDATE `*PREFIX*file_locks` SET `lock` = `lock` + 1 WHERE `
key
` = ? AND `lock` >= 0'
,
[
$path
]
);
}
else
{
$result
=
$this
->
connection
->
executeUpdate
(
'UPDATE `*PREFIX*file_locks` SET `lock` = -1 WHERE `
path
` = ? AND `lock` = 0'
,
'UPDATE `*PREFIX*file_locks` SET `lock` = -1 WHERE `
key
` = ? AND `lock` = 0'
,
[
$path
]
);
}
$this
->
connection
->
commit
();
if
(
$result
!==
1
)
{
throw
new
LockedException
(
$path
);
}
...
...
@@ -91,12 +96,12 @@ class DBLockingProvider extends AbstractLockingProvider {
$this
->
initLockField
(
$path
);
if
(
$type
===
self
::
LOCK_SHARED
)
{
$this
->
connection
->
executeUpdate
(
'UPDATE `*PREFIX*file_locks` SET `lock` = `lock` - 1 WHERE `
path
` = ? AND `lock` > 0'
,
'UPDATE `*PREFIX*file_locks` SET `lock` = `lock` - 1 WHERE `
key
` = ? AND `lock` > 0'
,
[
$path
]
);
}
else
{
$this
->
connection
->
executeUpdate
(
'UPDATE `*PREFIX*file_locks` SET `lock` = 0 WHERE `
path
` = ? AND `lock` = -1'
,
'UPDATE `*PREFIX*file_locks` SET `lock` = 0 WHERE `
key
` = ? AND `lock` = -1'
,
[
$path
]
);
}
...
...
@@ -114,12 +119,12 @@ class DBLockingProvider extends AbstractLockingProvider {
$this
->
initLockField
(
$path
);
if
(
$targetType
===
self
::
LOCK_SHARED
)
{
$result
=
$this
->
connection
->
executeUpdate
(
'UPDATE `*PREFIX*file_locks` SET `lock` = 1 WHERE `
path
` = ? AND `lock` = -1'
,
'UPDATE `*PREFIX*file_locks` SET `lock` = 1 WHERE `
key
` = ? AND `lock` = -1'
,
[
$path
]
);
}
else
{
$result
=
$this
->
connection
->
executeUpdate
(
'UPDATE `*PREFIX*file_locks` SET `lock` = -1 WHERE `
path
` = ? AND `lock` = 1'
,
'UPDATE `*PREFIX*file_locks` SET `lock` = -1 WHERE `
key
` = ? AND `lock` = 1'
,
[
$path
]
);
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment