-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPositionOrRange.php
executable file
·363 lines (333 loc) · 8.81 KB
/
PositionOrRange.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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
<?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;
/**
* class for index or character position or range spec
*/
class PositionOrRange implements PositionOrRangeInterface
{
/**
* {@inheritdoc}
*/
public function setIndexStartEnd($start,$end = null)
{
list($this->indexStart,$this->indexEnd) = $this->validateStartEnd($start,$end);
}
/**
* {@inheritdoc}
*/
public function setIndexStartLength($start,$length)
{
list($this->indexStart,$this->indexEnd) = $this->validateStartLength($start,$length);
}
/**
* {@inheritdoc}
*/
public function getIndexStart()
{
return $this->getStartEnd($this->indexStart);
}
/**
* {@inheritdoc}
*/
public function getIndexEnd()
{
return $this->getStartEnd($this->indexEnd);
}
/**
* {@inheritdoc}
*/
public function setCharStartEnd($start,$end = null)
{
list($this->charStart,$this->charEnd) = $this->validateStartEnd($start,$end);
}
/**
* {@inheritdoc}
*/
public function setCharStartLength($start,$length)
{
list($this->charStart,$this->charEnd) = $this->validateStartLength($start,$length);
}
/**
* {@inheritdoc}
*/
public function getCharStart()
{
return $this->getStartEnd($this->charStart);
}
/**
* {@inheritdoc}
*/
public function getCharEnd()
{
return $this->getStartEnd($this->charEnd);
}
/**
* {@inheritdoc}
*/
public function getCharLength()
{
if( is_null($this->getCharStart()) && is_null($this->getCharEnd()) )
{
return null;
}
if( !is_null($this->getCharStart()) && is_null($this->getCharEnd()) )
{
return 1;
}
// both defined
if($this->charStart === $this->charEnd)
{
return 1;
}
if('#' === $this->charStart && '#' !== $this->charEnd)
{
return $this->charEnd + 1;
}
if('#' !== $this->charStart && '#' === $this->charEnd)
{
return null;
}
else
{
$length = $this->charEnd - $this->charStart + 1;
if(1 > $length)
{
throw new InvalidMARCspecException(
InvalidMARCspecException::PR.
InvalidMARCspecException::NEGATIVE
);
}
return $length;
}
}
/**
* {@inheritdoc}
*/
protected function getStartEnd($arg)
{
return (isset($arg)) ? $arg : null;
}
/**
* validate a position or range
*
* @access protected
*
* @param string $pos The position or range
*
* @throws InvalidMARCspecException
*
* @return array $_pos[string] An numeric array of character or index positions.
* $_pos[1] might be empty.
*/
protected function validatePos($pos)
{
$posLength = strlen($pos);
if(1 > $posLength)
{
throw new InvalidMARCspecException(
InvalidMARCspecException::PR.
InvalidMARCspecException::PR1,
$pos
);
}
for($x = 0; $x < $posLength; $x++)
{
if(!preg_match('/[0-9-#]/', $pos[$x])) // alphabetic characters etc. are not valid
{
throw new InvalidMARCspecException(
InvalidMARCspecException::PR.
InvalidMARCspecException::PR2,
$pos
);
}
}
if(strpos($pos,'-') === $posLength-1) // something like 123- is not valid
{
throw new InvalidMARCspecException(
InvalidMARCspecException::PR.
InvalidMARCspecException::PR3,
$pos
);
}
if(0 === strpos($pos,'-')) // something like -123 ist not valid
{
throw new InvalidMARCspecException(
InvalidMARCspecException::PR.
InvalidMARCspecException::PR4,
$pos
);
}
if(strpos($pos,'-') !== strrpos($pos,'-')) // only one - is allowed
{
throw new InvalidMARCspecException(
InvalidMARCspecException::PR.
InvalidMARCspecException::PR5,
$pos
);
}
$_pos = explode('-',$pos);
if(2 < count($_pos))
{
throw new InvalidMARCspecException(
InvalidMARCspecException::PR.
InvalidMARCspecException::PR6,
$pos
);
}
if(1 == count($_pos))
{
$_pos[1] = null;
}
return $_pos;
}
/**
*
* Validate starting and ending position
*
* @internal
*
* @access private
*
* @param int|string $start The starting position
* @param int|string $end The ending position
*
* @return null|array $_startEnd index 0 => start, index 1 => end
*
* @throws \UnexpectedValueException
*/
private function validateStartEnd($start,$end)
{
$_startEnd = array();
if(preg_match('/[0-9]/', $start))
{
$_startEnd[0] = (int)$start;
}
elseif('#' === $start)
{
$_startEnd[0] = '#';
}
else
{
throw new InvalidMARCspecException(
InvalidMARCspecException::PR.
InvalidMARCspecException::PR7,
$start
);
}
if(preg_match('/[0-9#]/', $end))
{
if('#' === $end)
{
$_startEnd[1] = '#';
}
elseif(preg_match('/[0-9]/', $end))
{
$_startEnd[1] = (int)$end;
if($_startEnd[1] < $_startEnd[0])
{
throw new InvalidMARCspecException(
InvalidMARCspecException::PR.
InvalidMARCspecException::PR8,
$start.'-'.$end
);
}
}
else
{
throw new InvalidMARCspecException(
InvalidMARCspecException::PR.
InvalidMARCspecException::PR8,
$start.'-'.$end
);
}
}
else
{
$_startEnd[1] = null;
}
return $_startEnd;
}
/**
*
* Validate starting position and length
*
* @internal
*
* @access private
*
* @param string $start The starting position
* @param string $length $length The length count
*
* @return array $_startEnd index 0 => start, index 1 => end
*
* @throws \UnexpectedValueException
*/
private function validateStartLength($start,$length)
{
$_startEnd = array();
if(preg_match('/[0-9]/', $start))
{
$_startEnd[0] = (int)$start;
}
elseif('#' === $start)
{
$_startEnd[0] = '#';
}
else
{
throw new \UnexpectedValueException(
'First argument must be positive int, 0 or character #.',
$start
);
}
if(preg_match('/^[1-9]\d*/', $length)) // only positive int without 0
{
if('#' !== $_startEnd[0])
{
$_startEnd[1] = (int)$length;
}
else
{
$_startEnd[1] = $_startEnd[0] + (int)$length -1;
}
}
else
{
throw new \UnexpectedValueException(
'Second argument must be positive int without 0.',
$length
);
}
return $_startEnd;
}
/**
* checks if argument is a string
*
* @internal
*
* @access private
*
* @param string $arg The argument to check
*
* @throws \InvalidArgumentException if the argument is not a string
*/
protected function checkIfString($arg)
{
if(!is_string($arg))
{
throw new \InvalidArgumentException("Method only accepts string as argument. "
.gettype($arg)." given."
);
}
}
} // EOC