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 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521
|
/*
* COPYRIGHT
*
* pcb-rnd, interactive printed circuit board design
* Copyright (C) 2016 Tibor 'Igor2' Palinkas
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Contact:
* Project page: http://repo.hu/projects/pcb-rnd
* lead developer: http://repo.hu/projects/pcb-rnd/contact.html
* mailing list: pcb-rnd (at) list.repo.hu (send "subscribe")
*/
/* Query language - execution */
#include <stdio.h>
#include "config.h"
#include "data.h"
#include "query.h"
#include "query_exec.h"
#include "query_access.h"
#include "pcb-printf.h"
void pcb_qry_init(pcb_qry_exec_t *ctx, pcb_qry_node_t *root)
{
memset(ctx, 0, sizeof(pcb_qry_exec_t));
ctx->all.type = PCBQ_VT_LST;
pcb_qry_list_all(&ctx->all, PCB_OBJ_ANY & (~PCB_OBJ_LAYER));
ctx->root = root;
ctx->iter = NULL;
}
void pcb_qry_uninit(pcb_qry_exec_t *ctx)
{
pcb_qry_list_free(&ctx->all);
TODO(": free the iterator")
}
int pcb_qry_run(pcb_qry_node_t *prg, void (*cb)(void *user_ctx, pcb_qry_val_t *res, pcb_any_obj_t *current), void *user_ctx)
{
pcb_qry_exec_t ec;
pcb_qry_val_t res;
int errs = 0;
pcb_qry_init(&ec, prg);
if (pcb_qry_it_reset(&ec, prg) != 0)
return -1;
do {
if (pcb_qry_eval(&ec, prg, &res) == 0) {
pcb_any_obj_t **tmp, *current = NULL;
if (ec.iter->all_idx >= 0) {
tmp = (pcb_any_obj_t **)vtp0_get(ec.iter->vects[ec.iter->all_idx], ec.iter->idx[ec.iter->all_idx], 0);
if (tmp != NULL)
current = *tmp;
else
current = NULL;
}
if (current != NULL)
cb(user_ctx, &res, current);
}
else
errs++;
} while(pcb_qry_it_next(&ec));
pcb_qry_uninit(&ec);
return errs;
}
/* load unary operand to o1 */
#define UNOP() \
do { \
if ((node->data.children == NULL) || (node->data.children->next != NULL)) \
return -1; \
if (pcb_qry_eval(ctx, node->data.children, &o1) < 0) \
return -1; \
} while(0)
/* load 1st binary operand to o1 */
#define BINOPS1() \
do { \
if ((node->data.children == NULL) || (node->data.children->next == NULL) || (node->data.children->next->next != NULL)) \
return -1; \
if (pcb_qry_eval(ctx, node->data.children, &o1) < 0) \
return -1; \
} while(0)
/* load 2nd binary operand to o2 */
#define BINOPS2() \
do { \
if (pcb_qry_eval(ctx, node->data.children->next, &o2) < 0) \
return -1; \
} while(0)
/* load binary operands to o1 and o2 */
#define BINOPS() \
do { \
BINOPS1(); \
BINOPS2(); \
} while(0)
static int promote(pcb_qry_val_t *a, pcb_qry_val_t *b)
{
if ((a->type == PCBQ_VT_VOID) || (b->type == PCBQ_VT_VOID)) {
a->type = b->type = PCBQ_VT_VOID;
return 0;
}
if (a->type == b->type)
return 0;
switch(a->type) {
case PCBQ_VT_OBJ: return -1;
case PCBQ_VT_LST: return -1;
case PCBQ_VT_COORD:
if (b->type == PCBQ_VT_DOUBLE) PCB_QRY_RET_DBL(a, a->data.crd);
return -1;
case PCBQ_VT_DOUBLE:
if (b->type == PCBQ_VT_COORD) PCB_QRY_RET_DBL(b, b->data.crd);
return -1;
case PCBQ_VT_STRING:
case PCBQ_VT_VOID:
return -1;
}
return -1;
}
static const char *op2str(char *buff, int buff_size, pcb_qry_val_t *val)
{
switch(val->type) {
case PCBQ_VT_COORD:
pcb_snprintf(buff, buff_size, "%mI", val->data.crd);
return buff;
case PCBQ_VT_DOUBLE:
pcb_snprintf(buff, buff_size, "%f", val->data.crd);
return buff;
case PCBQ_VT_STRING:
return val->data.str;
case PCBQ_VT_VOID:
case PCBQ_VT_OBJ:
case PCBQ_VT_LST: return NULL;
}
return NULL;
}
int pcb_qry_is_true(pcb_qry_val_t *val)
{
switch(val->type) {
case PCBQ_VT_VOID: return 0;
case PCBQ_VT_OBJ: return val->data.obj->type != PCB_OBJ_VOID;
case PCBQ_VT_LST: return vtp0_len(&val->data.lst) > 0;
case PCBQ_VT_COORD: return val->data.crd;
case PCBQ_VT_DOUBLE: return val->data.dbl;
case PCBQ_VT_STRING: return (val->data.str != NULL) && (*val->data.str != '\0');
}
return 0;
}
static void setup_iter_list(pcb_qry_exec_t *ctx, int var_id, pcb_qry_val_t *listval)
{
ctx->iter->lst[var_id] = *listval;
assert(listval->type == PCBQ_VT_LST);
ctx->iter->vects[var_id] = &listval->data.lst;
ctx->iter->idx[var_id] = 0;
}
int pcb_qry_it_reset(pcb_qry_exec_t *ctx, pcb_qry_node_t *node)
{
int n;
ctx->iter = pcb_qry_find_iter(node);
if (ctx->iter == NULL)
return -1;
pcb_qry_iter_init(ctx->iter);
for(n = 0; n < ctx->iter->num_vars; n++) {
if (strcmp(ctx->iter->vn[n], "@") == 0) {
setup_iter_list(ctx, n, &ctx->all);
ctx->iter->all_idx = n;
break;
}
}
return 0;
}
int pcb_qry_it_next(pcb_qry_exec_t *ctx)
{
int i;
for(i = 0; i < ctx->iter->num_vars; i++) {
if (ctx->iter->vects[i] != NULL) {
ctx->iter->idx[i]++;
if (ctx->iter->idx[i] < vtp0_len(ctx->iter->vects[i]))
return 1;
}
ctx->iter->idx[i] = 0;
}
return 0;
}
/* load s1 and s2 from o1 and o2, convert empty string to NULL */
#define load_strings_null() \
do { \
s1 = o1.data.str; \
s2 = o2.data.str; \
if ((s1 != NULL) && (*s1 == '\0')) s1 = NULL; \
if ((s2 != NULL) && (*s2 == '\0')) s2 = NULL; \
} while(0)
static char *pcb_qry_empty = "";
/* load s1 and s2 from o1 and o2, convert NULL to empty string */
#define load_strings_empty() \
do { \
s1 = o1.data.str; \
s2 = o2.data.str; \
if (s1 == NULL) s1 = pcb_qry_empty; \
if (s2 == NULL) s2 = pcb_qry_empty; \
} while(0)
int pcb_qry_eval(pcb_qry_exec_t *ctx, pcb_qry_node_t *node, pcb_qry_val_t *res)
{
pcb_qry_val_t o1, o2;
pcb_any_obj_t **tmp;
const char *s1, *s2;
switch(node->type) {
case PCBQ_EXPR:
return pcb_qry_eval(ctx, node->data.children, res);
case PCBQ_EXPR_PROG: {
pcb_qry_node_t *itn, *exprn;
itn = node->data.children;
if (itn == NULL)
return -1;
exprn = itn->next;
if (exprn == NULL)
return -1;
if (itn->type != PCBQ_ITER_CTX)
return -1;
if (ctx->iter != itn->data.iter_ctx)
return -1;
return pcb_qry_eval(ctx, exprn, res);
}
case PCBQ_OP_AND: /* lazy */
BINOPS1();
if (!pcb_qry_is_true(&o1))
PCB_QRY_RET_INT(res, 0);
BINOPS2();
if (!pcb_qry_is_true(&o2))
PCB_QRY_RET_INT(res, 0);
PCB_QRY_RET_INT(res, 1);
case PCBQ_OP_OR: /* lazy */
BINOPS1();
if (pcb_qry_is_true(&o1))
PCB_QRY_RET_INT(res, 1);
BINOPS2();
if (pcb_qry_is_true(&o2))
PCB_QRY_RET_INT(res, 1);
PCB_QRY_RET_INT(res, 0);
case PCBQ_OP_EQ:
BINOPS();
if (promote(&o1, &o2) != 0)
return -1;
switch(o1.type) {
case PCBQ_VT_VOID: PCB_QRY_RET_INV(res);
case PCBQ_VT_OBJ: PCB_QRY_RET_INT(res, ((o1.data.obj) == (o2.data.obj)));
case PCBQ_VT_LST: PCB_QRY_RET_INT(res, pcb_qry_list_cmp(&o1, &o2));
case PCBQ_VT_COORD: PCB_QRY_RET_INT(res, o1.data.crd == o2.data.crd);
case PCBQ_VT_DOUBLE: PCB_QRY_RET_INT(res, o1.data.dbl == o2.data.dbl);
case PCBQ_VT_STRING:
load_strings_null();
if (s1 == s2)
PCB_QRY_RET_INT(res, 1);
if ((s1 == NULL) || (s2 == NULL))
PCB_QRY_RET_INT(res, 0);
PCB_QRY_RET_INT(res, strcmp(s1, s2) == 0);
}
return -1;
case PCBQ_OP_NEQ:
BINOPS();
if (promote(&o1, &o2) != 0)
return -1;
switch(o1.type) {
case PCBQ_VT_VOID: PCB_QRY_RET_INV(res);
case PCBQ_VT_OBJ: PCB_QRY_RET_INT(res, ((o1.data.obj) != (o2.data.obj)));
case PCBQ_VT_LST: PCB_QRY_RET_INT(res, !pcb_qry_list_cmp(&o1, &o2));
case PCBQ_VT_COORD: PCB_QRY_RET_INT(res, o1.data.crd != o2.data.crd);
case PCBQ_VT_DOUBLE: PCB_QRY_RET_INT(res, o1.data.dbl != o2.data.dbl);
case PCBQ_VT_STRING:
load_strings_null();
if (s1 == s2)
PCB_QRY_RET_INT(res, 0);
if ((s1 == NULL) || (s2 == NULL))
PCB_QRY_RET_INT(res, 1);
PCB_QRY_RET_INT(res, strcmp(s1, s2) != 0);
}
return -1;
case PCBQ_OP_GTEQ:
BINOPS();
if (promote(&o1, &o2) != 0)
return -1;
switch(o1.type) {
case PCBQ_VT_VOID: PCB_QRY_RET_INV(res);
case PCBQ_VT_COORD: PCB_QRY_RET_INT(res, o1.data.crd >= o2.data.crd);
case PCBQ_VT_DOUBLE: PCB_QRY_RET_INT(res, o1.data.dbl >= o2.data.dbl);
case PCBQ_VT_STRING:
load_strings_empty();
PCB_QRY_RET_INT(res, strcmp(s1, s2) >= 0);
default: return -1;
}
return -1;
case PCBQ_OP_LTEQ:
BINOPS();
if (promote(&o1, &o2) != 0)
return -1;
switch(o1.type) {
case PCBQ_VT_VOID: PCB_QRY_RET_INV(res);
case PCBQ_VT_COORD: PCB_QRY_RET_INT(res, o1.data.crd <= o2.data.crd);
case PCBQ_VT_DOUBLE: PCB_QRY_RET_INT(res, o1.data.dbl <= o2.data.dbl);
case PCBQ_VT_STRING:
load_strings_empty();
PCB_QRY_RET_INT(res, strcmp(s1, s2) <= 0);
default: return -1;
}
return -1;
case PCBQ_OP_GT:
BINOPS();
if (promote(&o1, &o2) != 0)
return -1;
switch(o1.type) {
case PCBQ_VT_VOID: PCB_QRY_RET_INV(res);
case PCBQ_VT_COORD: PCB_QRY_RET_INT(res, o1.data.crd > o2.data.crd);
case PCBQ_VT_DOUBLE: PCB_QRY_RET_INT(res, o1.data.dbl > o2.data.dbl);
case PCBQ_VT_STRING:
load_strings_empty();
PCB_QRY_RET_INT(res, strcmp(s1, s2) > 0);
default: return -1;
}
return -1;
case PCBQ_OP_LT:
BINOPS();
if (promote(&o1, &o2) != 0)
return -1;
switch(o1.type) {
case PCBQ_VT_VOID: PCB_QRY_RET_INV(res);
case PCBQ_VT_COORD: PCB_QRY_RET_INT(res, o1.data.crd < o2.data.crd);
case PCBQ_VT_DOUBLE: PCB_QRY_RET_INT(res, o1.data.dbl < o2.data.dbl);
case PCBQ_VT_STRING:
load_strings_empty();
PCB_QRY_RET_INT(res, strcmp(s1, s2) < 0);
default: return -1;
}
return -1;
case PCBQ_OP_ADD:
BINOPS();
if (promote(&o1, &o2) != 0)
return -1;
switch(o1.type) {
case PCBQ_VT_VOID: PCB_QRY_RET_INV(res);
case PCBQ_VT_COORD: PCB_QRY_RET_INT(res, o1.data.crd + o2.data.crd);
case PCBQ_VT_DOUBLE: PCB_QRY_RET_DBL(res, o1.data.dbl + o2.data.dbl);
default: return -1;
}
return -1;
case PCBQ_OP_SUB:
BINOPS();
if (promote(&o1, &o2) != 0)
return -1;
switch(o1.type) {
case PCBQ_VT_VOID: PCB_QRY_RET_INV(res);
case PCBQ_VT_COORD: PCB_QRY_RET_INT(res, o1.data.crd - o2.data.crd);
case PCBQ_VT_DOUBLE: PCB_QRY_RET_DBL(res, o1.data.dbl - o2.data.dbl);
default: return -1;
}
return -1;
case PCBQ_OP_MUL:
BINOPS();
if (promote(&o1, &o2) != 0)
return -1;
switch(o1.type) {
case PCBQ_VT_VOID: PCB_QRY_RET_INV(res);
case PCBQ_VT_COORD: PCB_QRY_RET_INT(res, o1.data.crd * o2.data.crd);
case PCBQ_VT_DOUBLE: PCB_QRY_RET_DBL(res, o1.data.dbl * o2.data.dbl);
default: return -1;
}
return -1;
case PCBQ_OP_DIV:
BINOPS();
if (promote(&o1, &o2) != 0)
return -1;
switch(o1.type) {
case PCBQ_VT_VOID: PCB_QRY_RET_INV(res);
case PCBQ_VT_COORD: PCB_QRY_RET_INT(res, o1.data.crd / o2.data.crd);
case PCBQ_VT_DOUBLE: PCB_QRY_RET_DBL(res, o1.data.dbl / o2.data.dbl);
default: return -1;
}
return -1;
case PCBQ_OP_MATCH:
BINOPS1();
{
pcb_qry_node_t *o2n =node->data.children->next;
char buff[128];
const char *s;
if (o2n->type != PCBQ_DATA_REGEX)
return -1;
s = op2str(buff, sizeof(buff), &o1);
if (s != NULL)
PCB_QRY_RET_INT(res, re_se_exec(o2n->precomp.regex, s));
}
PCB_QRY_RET_INV(res);
case PCBQ_OP_NOT:
UNOP();
PCB_QRY_RET_INT(res, !pcb_qry_is_true(&o1));
case PCBQ_FIELD_OF:
if ((node->data.children == NULL) || (node->data.children->next == NULL))
return -1;
if (pcb_qry_eval(ctx, node->data.children, &o1) < 0)
return -1;
return pcb_qry_obj_field(&o1, node->data.children->next, res);
case PCBQ_VAR:
assert((node->data.crd >= 0) && (node->data.crd < ctx->iter->num_vars));
res->type = PCBQ_VT_VOID;
if (ctx->iter->vects[node->data.crd] == NULL)
return -1;
tmp = (pcb_any_obj_t **)vtp0_get(ctx->iter->vects[node->data.crd], ctx->iter->idx[node->data.crd], 0);
if ((tmp == NULL) || (*tmp == NULL))
return -1;
res->type = PCBQ_VT_OBJ;
res->data.obj = *tmp;
return 0;
case PCBQ_LISTVAR: {
int vi = pcb_qry_iter_var(ctx->iter, node->data.str, 0);
if ((vi < 0) && (strcmp(node->data.str, "@") == 0)) {
res->type = PCBQ_VT_LST;
res->data.lst = ctx->all.data.lst;
return 0;
}
if (vi >= 0) {
res->type = PCBQ_VT_LST;
res->data.lst = ctx->iter->lst[vi].data.lst;
return 0;
}
}
return -1;
case PCBQ_FNAME:
return -1; /* shall not eval such a node */
case PCBQ_FCALL: {
pcb_qry_val_t args[64];
int n;
pcb_qry_node_t *farg, *fname = node->data.children;
if (fname == NULL)
return -1;
farg = fname->next;
if ((fname->type != PCBQ_FNAME) || (fname->data.fnc == NULL))
return -1;
memset(args, 0, sizeof(args));
for(n = 0; (n < 64) && (farg != NULL); n++, farg = farg->next)
if (pcb_qry_eval(ctx, farg, &args[n]) < 0)
return -1;
if (farg != NULL) {
pcb_message(PCB_MSG_ERROR, "too many function arguments\n");
return -1;
}
printf("CALL n=%d\n", n);
return fname->data.fnc(n, args, res);
}
case PCBQ_DATA_COORD: PCB_QRY_RET_INT(res, node->data.crd);
case PCBQ_DATA_DOUBLE: PCB_QRY_RET_DBL(res, node->data.dbl);
case PCBQ_DATA_STRING: PCB_QRY_RET_STR(res, node->data.str);
case PCBQ_DATA_CONST: PCB_QRY_RET_INT(res, node->precomp.cnst);
case PCBQ_DATA_INVALID: PCB_QRY_RET_INV(res);
/* not yet implemented: */
case PCBQ_RULE:
/* must not meet these while executing a node */
case PCBQ_FLAG:
case PCBQ_DATA_REGEX:
case PCBQ_nodetype_max:
case PCBQ_FIELD:
case PCBQ_RNAME:
case PCBQ_DATA_LYTC:
case PCBQ_ITER_CTX:
return -1;
}
return -1;
}
|