-
Notifications
You must be signed in to change notification settings - Fork 0
/
State.php
202 lines (188 loc) · 4.46 KB
/
State.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
<?php
namespace SCC;
class State {
private string $fileName;
private ?array $storage;
const FILE_SUFFIX = "state";
public function __construct(string $name, $parent = "") {
if (is_array($parent)) {
$parent = implode("/",$parent);
} elseif (!is_string($parent)) {
throw new \InvalidArgumentException('$parent must be array or string');
}
$this->fileName = (strlen($parent)>0?$parent."/":"").$name;
$this->storage = null;
}
/**
* Получить относительный путь к файлу
* @return string
*/
public function getFileName(): string {
return $this->fileName;
}
/**
* Получить путь к файлу без суфикса
* @return string
*/
public function getDirPath(): string {
return ROOT."/".CONFIGS."/".$this->getFileName();
}
/**
* Получить путь к файлу
* @return string
*/
public function getFilePath(): string {
return $this->getDirPath().".".static::FILE_SUFFIX;
}
/**
* Прочитать данные
* @return $this
*/
public function read(): State {
$filePath = $this->getFilePath();
if (file_exists($filePath)) {
$this->storage = unserialize(file_get_contents($filePath));
if (!is_array($this->storage))
$this->storage = [];
} else {
$this->storage = [];
}
return $this;
}
/**
* Существуют ли сохраненные данные
* @return bool
*/
public function exists(): bool {
$filePath = $this->getFilePath();
return file_exists($filePath) && !is_dir($filePath);
}
/**
* Существует ли пакет
*
* @return bool
*/
public function existsPackage(): bool {
$path = $this->getDirPath();
return file_exists($path) && is_dir($path);
}
/**
* Сохранить данные
* @return $this
*/
public function save(): State {
$filePath = $this->getFilePath();
$dir = dirname($filePath);
if (!file_exists($dir))
mkdir(dirname($filePath),0777,true);
file_put_contents($filePath,serialize($this->storage));
return $this;
}
/**
* Удалить данные
*/
public function delete(): void {
if ($this->exists()) {
unlink($this->getFilePath());
}
}
/**
* Получить данные как массив
* @return array
*/
public function asArray(): array {
if ($this->storage === null)
$this->read();
return $this->storage;
}
/**
* Получить значение
* @param $alias - Псевданим значения
* @param $default - Значение по умолчанию
* @return ???
*/
public function get(string $alias, $default = null) {
if ($this->storage === null)
$this->read();
$aliases = explode(".",$alias);
$index = &$this->storage;
$maxDepth = count($aliases);
$curDepth = 0;
foreach ($aliases as $i) {
if (!isset($index[$i])) {
return $default;
}
if ($curDepth === $maxDepth-1) {
return $index[$i];
} elseif (is_array($index[$i])) {
$index = &$index[$i];
} else {
return $default;
}
$curDepth++;
}
return $default;
}
/**
* Установить значение
* @param $alias - Псевданим значения
* @param $data - Данные значения
* @return $this
*/
public function set(string $alias, $data): State {
if ($this->storage === null)
$this->read();
$aliases = explode(".",$alias);
$index = &$this->storage;
$maxDepth = count($aliases);
$curDepth = 0;
foreach ($aliases as $i) {
if ($curDepth === ($maxDepth-1)) {
$index[$i] = $data;
} else {
$index = &$index[$i];
}
$curDepth++;
}
return $this;
}
/**
* Удалить значение
* @param $alias - Псевданим значения
* @return $this
*/
public function unset(string $alias): State {
if ($this->storage === null)
$this->read();
$aliases = explode(".",$alias);
$index = &$this->storage;
$maxDepth = count($aliases);
$curDepth = 0;
foreach ($aliases as $i) {
if ($curDepth === ($maxDepth-1)) {
unset($index[$i]);
} else {
$index = &$index[$i];
}
$curDepth++;
}
return $this;
}
/**
* Установить данные
* @param $data
* @return $this
*/
public function setData(array $data): State {
$this->storage = $data;
return $this;
}
/**
* Создать дочерний экземпляр
* @param $name - псевданим для дочернего элемента
* @return State
*/
public function createChild(string $name): State {
return new State($name,$this->getFileName());
}
}