-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOptionDefinition.php
More file actions
116 lines (91 loc) · 2.6 KB
/
Copy pathOptionDefinition.php
File metadata and controls
116 lines (91 loc) · 2.6 KB
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
<?php
namespace Logikos\ClassOptions;
class OptionDefinition implements OptionDefinitionInterface {
private $name;
private $value;
private $isSet = false;
private $defaultValue = null;
private $valuePattern;
private $validationHook;
private $valueMustBeSet = false;
public function __construct($name) {
if (!$this->isValidName($name)) throw new InvalidOptionNameException;
$this->name = $name;
}
public function isValidName($name) {
if (is_integer($name)) return true;
if (is_string($name) && !empty($name)) return true;
return false;
}
public function getName() {
return $this->name;
}
public function setValue($value) {
if (!$this->isValidValue($value)) throw new InvalidOptionValueException;
$this->value = $value;
$this->isSet = true;
}
public function getValue() {
return $this->isValueSet() ? $this->value : $this->defaultValue;
}
public function isValueSet() {
return $this->isSet;
}
public function setDefault($default) {
$this->defaultValue = $default;
}
public function getDefault() {
return $this->defaultValue;
}
public function setValuePattern($pattern) {
if ($this->isSet) throw new CanNotCallMethodAfterValueSetException;
$this->valuePattern = $pattern;
}
public function getValuePattern() {
return $this->valuePattern;
}
public function isValidValue($value) {
if (!empty($this->valuePattern)) {
return $this->checkPattern($value);
}
if (!empty($this->validationHook)) {
return (bool) call_user_func($this->validationHook, $value);
}
return true;
}
public function setValidationHook(callable $function) {
if ($this->isSet) throw new CanNotCallMethodAfterValueSetException;
$this->validationHook = $function;
}
private function checkPattern($value) {
$match = preg_match($this->valuePattern, $value);
if ($match === false) throw new InvalidValuePatternException();
return $match !== 0;
}
public function makeRequired($bool = true) {
$this->valueMustBeSet = (bool) $bool;
}
public function isRequired() {
return $this->valueMustBeSet;
}
public function isValid() {
if ($this->isRequiredAndNotSet() || $this->isSetAndNotValid())
return false;
return true;
}
public function __toString() {
return (string) $this->getValue();
}
/**
* @return bool
*/
protected function isRequiredAndNotSet() {
return $this->isRequired() && !$this->isSet;
}
/**
* @return bool
*/
protected function isSetAndNotValid() {
return $this->isSet && !$this->isValidValue($this->value);
}
}