Completed
Push — master ( 3c9b12...422c80 )
by Morris
19:07
created
lib/private/Lock/MemcacheLockingProvider.php 1 patch
Indentation   +107 added lines, -107 removed lines patch added patch discarded remove patch
@@ -28,119 +28,119 @@
 block discarded – undo
28 28
 use OCP\IMemcache;
29 29
 
30 30
 class MemcacheLockingProvider extends AbstractLockingProvider {
31
-	/**
32
-	 * @var \OCP\IMemcache
33
-	 */
34
-	private $memcache;
31
+    /**
32
+     * @var \OCP\IMemcache
33
+     */
34
+    private $memcache;
35 35
 
36
-	/**
37
-	 * @param \OCP\IMemcache $memcache
38
-	 * @param int $ttl
39
-	 */
40
-	public function __construct(IMemcache $memcache, int $ttl = 3600) {
41
-		$this->memcache = $memcache;
42
-		$this->ttl = $ttl;
43
-	}
36
+    /**
37
+     * @param \OCP\IMemcache $memcache
38
+     * @param int $ttl
39
+     */
40
+    public function __construct(IMemcache $memcache, int $ttl = 3600) {
41
+        $this->memcache = $memcache;
42
+        $this->ttl = $ttl;
43
+    }
44 44
 
45
-	private function setTTL(string $path) {
46
-		if ($this->memcache instanceof IMemcacheTTL) {
47
-			$this->memcache->setTTL($path, $this->ttl);
48
-		}
49
-	}
45
+    private function setTTL(string $path) {
46
+        if ($this->memcache instanceof IMemcacheTTL) {
47
+            $this->memcache->setTTL($path, $this->ttl);
48
+        }
49
+    }
50 50
 
51
-	/**
52
-	 * @param string $path
53
-	 * @param int $type self::LOCK_SHARED or self::LOCK_EXCLUSIVE
54
-	 * @return bool
55
-	 */
56
-	public function isLocked(string $path, int $type): bool {
57
-		$lockValue = $this->memcache->get($path);
58
-		if ($type === self::LOCK_SHARED) {
59
-			return $lockValue > 0;
60
-		} else if ($type === self::LOCK_EXCLUSIVE) {
61
-			return $lockValue === 'exclusive';
62
-		} else {
63
-			return false;
64
-		}
65
-	}
51
+    /**
52
+     * @param string $path
53
+     * @param int $type self::LOCK_SHARED or self::LOCK_EXCLUSIVE
54
+     * @return bool
55
+     */
56
+    public function isLocked(string $path, int $type): bool {
57
+        $lockValue = $this->memcache->get($path);
58
+        if ($type === self::LOCK_SHARED) {
59
+            return $lockValue > 0;
60
+        } else if ($type === self::LOCK_EXCLUSIVE) {
61
+            return $lockValue === 'exclusive';
62
+        } else {
63
+            return false;
64
+        }
65
+    }
66 66
 
67
-	/**
68
-	 * @param string $path
69
-	 * @param int $type self::LOCK_SHARED or self::LOCK_EXCLUSIVE
70
-	 * @throws \OCP\Lock\LockedException
71
-	 */
72
-	public function acquireLock(string $path, int $type) {
73
-		if ($type === self::LOCK_SHARED) {
74
-			if (!$this->memcache->inc($path)) {
75
-				throw new LockedException($path, null, $this->getExistingLockForException($path));
76
-			}
77
-		} else {
78
-			$this->memcache->add($path, 0);
79
-			if (!$this->memcache->cas($path, 0, 'exclusive')) {
80
-				throw new LockedException($path, null, $this->getExistingLockForException($path));
81
-			}
82
-		}
83
-		$this->setTTL($path);
84
-		$this->markAcquire($path, $type);
85
-	}
67
+    /**
68
+     * @param string $path
69
+     * @param int $type self::LOCK_SHARED or self::LOCK_EXCLUSIVE
70
+     * @throws \OCP\Lock\LockedException
71
+     */
72
+    public function acquireLock(string $path, int $type) {
73
+        if ($type === self::LOCK_SHARED) {
74
+            if (!$this->memcache->inc($path)) {
75
+                throw new LockedException($path, null, $this->getExistingLockForException($path));
76
+            }
77
+        } else {
78
+            $this->memcache->add($path, 0);
79
+            if (!$this->memcache->cas($path, 0, 'exclusive')) {
80
+                throw new LockedException($path, null, $this->getExistingLockForException($path));
81
+            }
82
+        }
83
+        $this->setTTL($path);
84
+        $this->markAcquire($path, $type);
85
+    }
86 86
 
87
-	/**
88
-	 * @param string $path
89
-	 * @param int $type self::LOCK_SHARED or self::LOCK_EXCLUSIVE
90
-	 */
91
-	public function releaseLock(string $path, int $type) {
92
-		if ($type === self::LOCK_SHARED) {
93
-			$newValue = 0;
94
-			if ($this->getOwnSharedLockCount($path) === 1) {
95
-				$removed = $this->memcache->cad($path, 1); // if we're the only one having a shared lock we can remove it in one go
96
-				if (!$removed) { //someone else also has a shared lock, decrease only
97
-					$newValue = $this->memcache->dec($path);
98
-				}
99
-			} else {
100
-				// if we own more than one lock ourselves just decrease
101
-				$newValue = $this->memcache->dec($path);
102
-			}
87
+    /**
88
+     * @param string $path
89
+     * @param int $type self::LOCK_SHARED or self::LOCK_EXCLUSIVE
90
+     */
91
+    public function releaseLock(string $path, int $type) {
92
+        if ($type === self::LOCK_SHARED) {
93
+            $newValue = 0;
94
+            if ($this->getOwnSharedLockCount($path) === 1) {
95
+                $removed = $this->memcache->cad($path, 1); // if we're the only one having a shared lock we can remove it in one go
96
+                if (!$removed) { //someone else also has a shared lock, decrease only
97
+                    $newValue = $this->memcache->dec($path);
98
+                }
99
+            } else {
100
+                // if we own more than one lock ourselves just decrease
101
+                $newValue = $this->memcache->dec($path);
102
+            }
103 103
 
104
-			// if we somehow release more locks then exists, reset the lock
105
-			if ($newValue < 0) {
106
-				$this->memcache->cad($path, $newValue);
107
-			}
108
-		} else if ($type === self::LOCK_EXCLUSIVE) {
109
-			$this->memcache->cad($path, 'exclusive');
110
-		}
111
-		$this->markRelease($path, $type);
112
-	}
104
+            // if we somehow release more locks then exists, reset the lock
105
+            if ($newValue < 0) {
106
+                $this->memcache->cad($path, $newValue);
107
+            }
108
+        } else if ($type === self::LOCK_EXCLUSIVE) {
109
+            $this->memcache->cad($path, 'exclusive');
110
+        }
111
+        $this->markRelease($path, $type);
112
+    }
113 113
 
114
-	/**
115
-	 * Change the type of an existing lock
116
-	 *
117
-	 * @param string $path
118
-	 * @param int $targetType self::LOCK_SHARED or self::LOCK_EXCLUSIVE
119
-	 * @throws \OCP\Lock\LockedException
120
-	 */
121
-	public function changeLock(string $path, int $targetType) {
122
-		if ($targetType === self::LOCK_SHARED) {
123
-			if (!$this->memcache->cas($path, 'exclusive', 1)) {
124
-				throw new LockedException($path, null, $this->getExistingLockForException($path));
125
-			}
126
-		} else if ($targetType === self::LOCK_EXCLUSIVE) {
127
-			// we can only change a shared lock to an exclusive if there's only a single owner of the shared lock
128
-			if (!$this->memcache->cas($path, 1, 'exclusive')) {
129
-				throw new LockedException($path, null, $this->getExistingLockForException($path));
130
-			}
131
-		}
132
-		$this->setTTL($path);
133
-		$this->markChange($path, $targetType);
134
-	}
114
+    /**
115
+     * Change the type of an existing lock
116
+     *
117
+     * @param string $path
118
+     * @param int $targetType self::LOCK_SHARED or self::LOCK_EXCLUSIVE
119
+     * @throws \OCP\Lock\LockedException
120
+     */
121
+    public function changeLock(string $path, int $targetType) {
122
+        if ($targetType === self::LOCK_SHARED) {
123
+            if (!$this->memcache->cas($path, 'exclusive', 1)) {
124
+                throw new LockedException($path, null, $this->getExistingLockForException($path));
125
+            }
126
+        } else if ($targetType === self::LOCK_EXCLUSIVE) {
127
+            // we can only change a shared lock to an exclusive if there's only a single owner of the shared lock
128
+            if (!$this->memcache->cas($path, 1, 'exclusive')) {
129
+                throw new LockedException($path, null, $this->getExistingLockForException($path));
130
+            }
131
+        }
132
+        $this->setTTL($path);
133
+        $this->markChange($path, $targetType);
134
+    }
135 135
 
136
-	private function getExistingLockForException($path) {
137
-		$existing = $this->memcache->get($path);
138
-		if (!$existing) {
139
-			return 'none';
140
-		} else if ($existing === 'exclusive') {
141
-			return $existing;
142
-		} else {
143
-			return $existing . ' shared locks';
144
-		}
145
-	}
136
+    private function getExistingLockForException($path) {
137
+        $existing = $this->memcache->get($path);
138
+        if (!$existing) {
139
+            return 'none';
140
+        } else if ($existing === 'exclusive') {
141
+            return $existing;
142
+        } else {
143
+            return $existing . ' shared locks';
144
+        }
145
+    }
146 146
 }
Please login to merge, or discard this patch.