This repository has been archived by the owner on Feb 1, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
xqr.php
executable file
·441 lines (380 loc) · 12.5 KB
/
xqr.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
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
#!/usr/bin/php
<?php
#XQR:xblanc01
/**
* předmět: IPP
* projekt: proj1
* varianta: XML Query
* @author: Roman Blanco, [email protected]
*/
error_reporting(E_ERROR | E_PARSE);
// načtení parametrů
$param = loadParams($argv);
if (isset($param["inputFile"])) {
$xmlData = loadFile($param["inputFile"]);
} else {
$xmlData = file_get_contents("php://stdin");
}
// načtení XML dat
try {
$xmlData = new SimpleXMLElement($xmlData);
} catch (Exception $e) {
report("Not valid XML format\n", 4);
}
// zpracování, vyhodnocení dotazu a získání konečného XML kódu
if (isset($param["query"])) {
$query = splitQuery($param["query"]);
if (!empty($query['FROM'][0]) || !empty($query['FROM'][1])) {
$result = applyQuery($xmlData, $query);
} else {
$result = array();
}
$xml = (string) NULL;
if (!empty($result)) {
foreach ($result as $xmlPart) {
$xml = $xml . $xmlPart->asXML();
}
}
// vypsaní kořenu, pokud je nastaven
if (isset($param['root'])) {
$xml = (
"<{$param['root']}>\n"
. "$xml" .
"\n</{$param['root']}>"
);
}
// vypsaní hlavičky
if (!isset($param['noXmlHead'])) {
$xml = "<?xml version=\"1.0\" encoding=\"utf-8\"?>" . "$xml";
}
// vypsaní XML kódu
if (isset($param["outputFile"])) {
writeToFile($param["outputFile"], $xml);
} else {
file_put_contents("php://stdout", $xml);
}
}
/**
* Ověření a načtení parametrů skriptu
* @param array
* @return array
*/
function loadParams($argv)
{
// ověření správnosti parametrů (getopt chybně čte -input jako -n apod.)
// prepinace
$paramsSet[0] = "/^(--help)$/";
$paramsSet[1] = "/^(-n)$/";
// adresy souboru
$paramsSet[2] = "/^--input=(.*)$/";
$paramsSet[3] = "/^--output=(.*)$/";
$paramsSet[4] = "/^--qf=(.*)$/";
// retezce
$paramsSet[5] = "/^--query=(.*)$/";
$paramsSet[6] = "/^--root=(.*)$/";
// spoustec
$paramsSet[7] = "/^.*\.php$/";
foreach ($argv as $testedArg) {
for ($i = 0; ($i <= count($paramsSet) and empty($result)); $i++) {
preg_match($paramsSet[$i], $testedArg, $result);
}
if (empty($result[0])) {
report("Bad params. Try --help\n", 1);
} else {
unset($result);
}
}
$shortopts = "n";
$longopts = array(
"help",
"input:",
"output:",
"query:",
"qf:",
"root::",
);
$opts = getopt($shortopts, $longopts);
// kontrola, zda byly parametry zadány správně
if ((count($argv)-1 != count($opts))
or (array_key_exists("help", $opts) and (count($argv) != 2))
or (isset($opts["query"]) and isset($opts["qf"])))
report("Bad params. Try --help\n", 1);
// vypsaní nápovědy
if (array_key_exists("help", $opts))
printHelp();
$param = array();
// načtení parametrů
if (array_key_exists("n", $opts))
$param["noXmlHead"] = TRUE;
if (isset($opts["input"]))
$param["inputFile"] = $opts["input"];
if (isset($opts["output"]))
$param["outputFile"] = $opts["output"];
if (isset($opts["root"]))
$param["root"] = $opts["root"];
if (isset($opts["query"]))
$param["query"] = $opts["query"];
if (isset($opts["qf"]))
// podle zprávý na fóru při neexistujícím souboru s dotazem vracet 80
// podle zadani vracet 80 při syn. nebo sem. chybě v dotazu
// -> ?
if (file_exists($opts["qf"]))
$param["query"] = loadFile($opts["qf"]);
else
report("File '{$opts['qf']}' does not exist\n", 80);
return $param;
}
/**
* Vypsaní nápovědy a úspěsné ukončení skriptu
*/
function printHelp()
{
echo (
"Usage:".
"xqr.php [options]\n\n".
"Options:\n".
"--input=<file> Load XML file that will be processed\n".
"--output=<file> Choose file, where should be result saved\n".
"--qf=<file> Task saved in external file,\n".
" can't be combinated with --query=<\"task>\"\n".
"--query=\"<task>\" Task that will be executed on xml file\n".
"--root=element Name of xml root\n".
"-n Do not generate xml head on script output\n".
"--help Print this help\n\n".
"Example:\n".
"./xqr.php --input=plants.xml --output=result.xml --qf=query\n".
"./xqr.php --input=plants.xml -n --query=\"SELECT price ".
"FROM cars WHERE (year > 2010)\"\n"
);
exit(0);
}
/**
* Načtení obsahu souboru
* @param string
* @return string
*/
function loadFile($file)
{
if (file_exists($file)) {
if (is_readable($file)) {
$openedFile = fopen($file, "r");
$content = fread($openedFile, filesize($file));
fclose($openedFile);
return $content;
} else { report("Cannot open file '{$file}'\n", 2); }
} else { report("File '{$file}' does not exist\n", 2); }
}
/**
* Zápis obsahu do souboru
* @param string
* @param string
* @return void
*/
function writeToFile($file, $content)
{
if (is_writable($file)) {
if (!$openedFile = fopen($file, "w")) {
report("Cannot write to file '{$file}'\n", 3);
}
} else {
$openedFile = fopen($file, "x");
}
fwrite($openedFile, $content);
fclose($openedFile);
return;
}
/**
* Informování o chybě, ukončení s příslušnou návratovou hodnotou
* @param string
* @param integer
*/
function report($message, $exitValue)
{
file_put_contents("php://stderr", $message);
exit($exitValue);
}
/**
* Načtení částí XML dotazu do slovníku regulerními výrazy
* @param string
* @return array
*/
function splitQuery($query)
{
$queryOrder = "/(SELECT.*(LIMIT)?.*FROM.*(WHERE)?.*(ORDER BY)?.*)/";
preg_match($queryOrder, $query, $queryOrderTest);
if (empty($queryOrderTest))
report("Semantic error in query\n", 80);
$parsSet[0]['STRING'] = "SELECT";
$parsSet[0]['REGEX'] = "/(?<=SELECT\s)\w+/";
$parsSet[1]['STRING'] = "LIMIT";
$parsSet[1]['REGEX'] = "/(?<=LIMIT\s)\d+/";
$parsSet[2]['STRING'] = "FROM";
$parsSet[2]['REGEX'] = "/(?<=FROM\s)(\w+)?(?:\.?(\w+)?)/";
$parsSet[3]['STRING'] = "WHERE";
$parsSet[3]['REGEX'] = "/(?<=WHERE\s).*(?=\sORDER BY)?/";
$parsSet[4]['STRING'] = "ORDER BY";
$parsSet[4]['REGEX'] = "/(?<=ORDER BY\s)\w+(?:\.\w+)?/";
$parsSet[5]['STRING'] = "ORDER BY";
$parsSet[5]['REGEX'] = "/(?:ASC|DESC)$/";
// načtení výrazů
for ($i = 0; $i < count($parsSet); $i++) {
if (strpos($query, $parsSet[$i]['STRING']) !== false) {
preg_match($parsSet[$i]['REGEX'], $query,
$queryPartsArr[$parsSet[$i]['STRING']]);
}
}
// ověření správnosti zadaných výrazů (části se matchnuly)
foreach ($queryPartsArr as $queryPart => $partName) {
if (empty($queryPart) and (key($partName) != "FROM"))
report("Semantic error in query\n", 80);
}
// rozdělení FROM z dotazu
if (isset($queryPartsArr['FROM'])) {
$queryPartsArr['FROM'] = preg_split("/[.]/",
$queryPartsArr['FROM'][0]);
}
// rozdělení ORDER BY z dotazu
if (isset($queryPartsArr['ORDER BY'])) {
$queryPartsArr['ORDER BY'] = preg_split("/[.]/",
$queryPartsArr['ORDER BY'][0]);
}
// rozdělení WHERE z dotazu
if (isset($queryPartsArr['WHERE'])) {
$splitWhereExpr = "/^((?:NOT\s)*)(\w+)?(?:\.(\w+)?)?\s+"
. "(CONTAINS|=|>|<)\s+"
. "(\\\"(?:\w|\s)*\\\"|-?\d+(?:\\.\d+)?\b|\\\"\\\")/";
preg_match($splitWhereExpr, $queryPartsArr['WHERE'][0],
$queryPartsArr['WHERE']);
// abych se zbavil celého matchnutého výrazu
array_shift($queryPartsArr['WHERE']);
// může být zanořená negace (NOT NOT) -> vyhodnocení:
$negCount = substr_count($queryPartsArr['WHERE'][0], "NOT");
if (($negCount % 2) == 0) {
$queryPartsArr['WHERE'][0] = (string) NULL;
} else {
$queryPartsArr['WHERE'][0] = "NOT";
}
// ověření správnosti query WHERE části dotazu
// pokud se výraz správně matchnul, má 5 položek
if ((count($queryPartsArr['WHERE']) != 5)
// CONTAINS nepovoluje jako parametr číslo
or ($queryPartsArr['WHERE'][3] == "CONTAINS")
and (is_numeric($queryPartsArr['WHERE'][4]))
// element nesmí začínat číslem
or (isset($queryPartsArr['WHERE'][1][0]))
and (is_numeric($queryPartsArr['WHERE'][1][0]))) {
report("Semantic error in WHERE condition\n", 80);
}
}
return $queryPartsArr;
}
/**
* Vybere vyhovujici polozky z XML dat na zaklade dotazu
* @param SimpleXmlElement
* @param array
* @return SimpleXmlElement
*/
// TODO zrušit XPath a vyhledávat ručně
function applyQuery($data, $query)
{
$xpathCmdFrom = (string) NULL;
$xpathCmdSelect = (string) NULL;
$xpathCmdWhere = (string) NULL;
// FROM
// element: $query['FROM'][0]
// attribute: $query['FROM'][1]
if (!isset($query['FROM'])) {
return (string) NULL;
} else {
if ($query['FROM'][0] == "") {
$xpathCmdFrom = $xpathCmdFrom . "//*";
} else if ($query['FROM'][0] == "ROOT") {
$xpathCmdFrom = $xpathCmdFrom . "//*";
} else {
$xpathCmdFrom = $xpathCmdFrom . "//{$query['FROM'][0]}";
}
if (isset($query['FROM'][1]) and $query['FROM'][1] != "") {
$xpathCmdFrom = $xpathCmdFrom . "[@{$query['FROM'][1]}]";
}
}
// vyhodnocení části FROM
$data = $data->xpath($xpathCmdFrom);
// je hledán první výskyt (+ kontrola zda neni mezivysledek prazdky)
$tmpResult = array_filter($data);
if (!empty($tmpResult)) {
$data = $data[0];
} else {
return (string) NULL;
}
// SELECT
// element: $query['SELECT'][0]
if (!isset($query['SELECT'])) {
return (string) NULL;
} else {
$xpathCmdSelect = $xpathCmdSelect . ".//{$query['SELECT'][0]}";
}
// vyhodnocení části SELECT
$data = $data->xpath($xpathCmdSelect);
// WHERE (rozšiřuje příkaz pro SELECT)
// NOT: $query['WHERE'][0]
// element: $query['WHERE'][1]
// attribute: $query['WHERE'][2]
// relation-operator: $query['WHERE'][3]
// literal: $query['WHERE'][4]
if (isset($query['WHERE'])) {
// pokud je operátorem CONTAINS
if ($query['WHERE'][3] == "CONTAINS") {
if (isset($query['WHERE']['2'])) {
$xpathCmdWhere = $xpathCmdWhere
. "contains(@{$query['WHERE'][2]}, {$query['WHERE'][4]})";
} else {
$xpathCmdWhere = $xpathCmdWhere
. "contains(., {$query['WHERE'][4]})";
}
// pokud je operátorem porovnání = < >
} else {
if ($query['WHERE'][1] == "") {
$xpathCmdWhere = $xpathCmdWhere . "*";
}
$xpathCmdWhere = $xpathCmdWhere . "{$query['WHERE'][1]}";
if ($query['WHERE'][2] != "") {
$xpathCmdWhere = $xpathCmdWhere . "[@{$query['WHERE'][2]}]";
}
switch ($query['WHERE'][3]) {
case "=":
$xpathCmdWhere = $xpathCmdWhere
. "={$query['WHERE'][4]}";
break;
case "<":
$xpathCmdWhere = $xpathCmdWhere
. "<{$query['WHERE'][4]}";
break;
case ">":
$xpathCmdWhere = $xpathCmdWhere
. ">{$query['WHERE'][4]}";
break;
}
}
if ($query['WHERE'][0] == "NOT") {
$xpathCmdWhere = "[not({$xpathCmdWhere})]";
} else {
$xpathCmdWhere = "[{$xpathCmdWhere}]";
}
if ($query['SELECT'][0] != "") {
$xpathCmdWhere = "//{$query['SELECT'][0]}{$xpathCmdWhere}";
} else {
$xpathCmdWhere = "//*{$xpathCmdWhere}";
}
// vyhodnocení části WHERE
foreach($data as $item) {
$data = $item->xpath($xpathCmdWhere);
}
}
// LIMIT
// number: $query['LIMIT'][0]
if (isset($query['LIMIT'])) {
$data = array_slice($data, 0, $query['LIMIT'][0]);
}
return $data;
}
?>