-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSubSpec.php
executable file
·216 lines (191 loc) · 5.2 KB
/
SubSpec.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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
<?php
/**
* MARCspec is the specification of a reference, encoded as string, to a set of data
* from within a MARC record.
*
* @author Carsten Klee <[email protected]>
* @package CK\MARCspec
* @copyright For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace CK\MARCspec;
use CK\MARCspec\Exception\InvalidMARCspecException;
/**
* A MARCspec subspec class
*/
class SubSpec implements SubSpecInterface, \JsonSerializable, \ArrayAccess, \IteratorAggregate
{
/**
* @var string Operator
*/
private $operator;
/**
* @var MARCspecInterface|ComparisonStringInterface The left hand subterm
*/
private $leftSubTerm;
/**
* @var MARCspecInterface|ComparisonStringInterface The right hand subterm
*/
private $rightSubTerm;
/**
* {@inheritdoc}
*
* @throws \InvalidArgumentException
* @throws InvalidMARCspecException
*/
public function __construct($leftSubTerm, $operator, $rightSubTerm)
{
if($leftSubTerm instanceOf MARCspecInterface
|| $leftSubTerm instanceOf ComparisonStringInterface)
{
$this->leftSubTerm = $leftSubTerm;
}
else
{
throw new \InvalidArgumentException(
'Argument 1 must be instance of CK\MARCspec\MARCspecInterface or
CK\MARCspec\ComparisonStringInterface'
);
}
if($rightSubTerm instanceOf MARCspecInterface
|| $rightSubTerm instanceOf ComparisonStringInterface)
{
$this->rightSubTerm = $rightSubTerm;
}
else
{
throw new \InvalidArgumentException(
'Argument 3 must be instance of CK\MARCspec\MARCspecInterface or
CK\MARCspec\ComparisonStringInterface. Got '
.gettype($rightSubTerm)
);
}
$this->setOperator($operator);
}
/**
* Set operator
*
* @throws InvalidMARCspecException
*/
private function setOperator($operator)
{
if(!in_array($operator,["=", "!=", "~", "!~", "!", "?"],true))
{
throw new InvalidMARCspecException(
InvalidMARCspecException::SS.
InvalidMARCspecException::OPERATOR,
$operator
);
}
$this->operator = $operator;
}
/**
* {@inheritdoc}
*/
public function getOperator()
{
return $this->operator;
}
/**
* {@inheritdoc}
*/
public function getLeftSubTerm()
{
return (isset($this->leftSubTerm)) ? $this->leftSubTerm : null;
}
/**
* {@inheritdoc}
*/
public function getRightSubTerm()
{
return $this->rightSubTerm;
}
/**
* {@inheritdoc}
*/
public function __toString()
{
return "$this->leftSubTerm".$this->operator."$this->rightSubTerm";
}
/**
* {@inheritdoc}
*/
public function jsonSerialize()
{
if(!is_null($this->leftSubTerm))
{
$_subSpec['leftSubTerm'] = $this->leftSubTerm->jsonSerialize();
}
$_subSpec['operator'] = $this->operator;
$_subSpec['rightSubTerm'] = $this->rightSubTerm->jsonSerialize();
return $_subSpec;
}
/**
* Access object like an associative array
*
* @api
*
* @param string $offset Key operator|leftSubTerm|rightSubTerm
*/
public function offsetExists($offset)
{
switch($offset)
{
case 'operator':
case 'leftSubTerm':
case 'rightSubTerm': return true;
break;
default: return false;
}
}
/**
* Access object like an associative array
*
* @api
*
* @param string $offset Key operator|leftSubTerm|rightSubTerm
*/
public function offsetGet($offset)
{
switch($offset)
{
case 'operator': return $this->getOperator();
break;
case 'leftSubTerm': return $this->getLeftSubTerm();
break;
case 'rightSubTerm': return $this->getRightSubTerm();
break;
default: throw new \UnexpectedValueException("Offset $offset does not exist.");
}
}
/**
* Access object like an associative array
*
* @api
*
* @param string $offset
*/
public function offsetSet($offset,$value)
{
throw new \UnexpectedValueException("Offset $offset cannot be set.");
}
/**
* Access object like an associative array
*
* @param string $offset
*/
public function offsetUnset($offset)
{
throw new \BadMethodCallException("Offset $offset can not be unset.");
}
public function getIterator()
{
return new SpecIterator(
[
"leftSubTerm" => $this->leftSubTerm,
"operator" => $this->operator,
"rightSubTerm" => $this->rightSubTerm
]
);
}
} // EOC