Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
85.71% |
6 / 7 |
|
75.00% |
3 / 4 |
CRAP | |
0.00% |
0 / 1 |
KvToolsStateStorage | |
85.71% |
6 / 7 |
|
75.00% |
3 / 4 |
5.07 | |
0.00% |
0 / 1 |
getPersistence | |
75.00% |
3 / 4 |
|
0.00% |
0 / 1 |
2.06 | |||
storeStates | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
getStates | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
deleteStates | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 |
1 | <?php |
2 | |
3 | /** |
4 | * This program is free software; you can redistribute it and/or |
5 | * modify it under the terms of the GNU General Public License |
6 | * as published by the Free Software Foundation; under version 2 |
7 | * of the License (non-upgradable). |
8 | * |
9 | * This program is distributed in the hope that it will be useful, |
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
12 | * GNU General Public License for more details. |
13 | * |
14 | * You should have received a copy of the GNU General Public License |
15 | * along with this program; if not, write to the Free Software |
16 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
17 | * |
18 | * Copyright (c) 2014 (original work) Open Assessment Technologies SA (under the project TAO-PRODUCT); |
19 | * |
20 | */ |
21 | |
22 | namespace oat\taoQtiTest\models\runner\toolsStates; |
23 | |
24 | /** |
25 | * Key-value implementation of tools state storage |
26 | * |
27 | * Class KvToolsStateStorage |
28 | * @package oat\taoQtiTest\models\runner\toolsStates |
29 | */ |
30 | class KvToolsStateStorage extends ToolsStateStorage |
31 | { |
32 | /** |
33 | * Key prefix for states in the global key-value storage |
34 | */ |
35 | public const PREFIX_STATES = 'ToolsStateStorage:states'; |
36 | |
37 | /** |
38 | * @return \common_persistence_AdvKeyValuePersistence |
39 | * @throws \common_exception_Error |
40 | */ |
41 | protected function getPersistence() |
42 | { |
43 | $persistence = parent::getPersistence(); |
44 | if (!$persistence instanceof \common_persistence_AdvKeyValuePersistence) { |
45 | throw new \common_exception_Error('Given persistence should be of key-value type'); |
46 | } |
47 | return $persistence; |
48 | } |
49 | |
50 | /** |
51 | * @inheritdoc |
52 | * |
53 | * @throws \common_exception_Error |
54 | */ |
55 | public function storeStates($deliveryExecutionId, $states) |
56 | { |
57 | $this->getPersistence()->hmSet(self::PREFIX_STATES . $deliveryExecutionId, $states); |
58 | } |
59 | |
60 | /** |
61 | * @inheritdoc |
62 | * |
63 | * @throws \common_exception_Error |
64 | */ |
65 | public function getStates($deliveryExecutionId) |
66 | { |
67 | return $this->getPersistence()->hGetAll(self::PREFIX_STATES . $deliveryExecutionId); |
68 | } |
69 | |
70 | /** |
71 | * @inheritdoc |
72 | * |
73 | * @throws \common_exception_Error |
74 | */ |
75 | public function deleteStates($deliveryExecutionId) |
76 | { |
77 | return $this->getPersistence()->del(self::PREFIX_STATES . $deliveryExecutionId); |
78 | } |
79 | } |