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
|
/*
* COPYRIGHT
*
* pcb-rnd, interactive printed circuit board design
* Copyright (C) 2016,2019 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 - common code for the compiled tree and plugin administration */
#include "config.h"
#include <genht/hash.h>
#include <genht/htsi.h>
#include <librnd/core/conf.h>
#include "data.h"
#include "change.h"
#include <librnd/core/error.h>
#include "undo.h"
#include <librnd/core/plugins.h>
#include <librnd/hid/hid_init.h>
#include <librnd/core/actions.h>
#include <librnd/core/compat_misc.h>
#include "query.h"
#include "query_l.h"
#include <librnd/core/fptr_cast.h>
#define PCB dontuse
/******** tree helper ********/
pcb_any_obj_t pcb_qry_drc_ctrl[PCB_QRY_DRC_invalid];
typedef struct {
const char *name;
int has_children;
} pcb_qry_type_tab_t;
const pcb_qry_type_tab_t type_tab[PCBQ_nodetype_max] = {
{"PCBQ_RULE", 1},
{"PCBQ_RNAME", 0},
{"PCBQ_EXPR_PROG", 1},
{"PCBQ_EXPR", 1},
{"PCBQ_ASSERT", 1},
{"PCBQ_ITER_CTX", 0},
{"PCBQ_OP_THUS", 1},
{"PCBQ_OP_AND", 1},
{"PCBQ_OP_OR", 1},
{"PCBQ_OP_EQ", 1},
{"PCBQ_OP_NEQ", 1},
{"PCBQ_OP_GTEQ", 1},
{"PCBQ_OP_LTEQ", 1},
{"PCBQ_OP_GT", 1},
{"PCBQ_OP_LT", 1},
{"PCBQ_OP_ADD", 1},
{"PCBQ_OP_SUB", 1},
{"PCBQ_OP_MUL", 1},
{"PCBQ_OP_DIV", 1},
{"PCBQ_OP_MATCH", 1},
{"PCBQ_OP_NOT", 1},
{"PCBQ_FIELD", 0},
{"PCBQ_FIELD_OF", 1},
{"PCBQ_LISTVAR", 0},
{"PCBQ_LET", 1},
{"PCBQ_VAR", 0},
{"PCBQ_FNAME", 0},
{"PCBQ_FCALL", 1},
{"PCBQ_FUNCTION", 1},
{"PCBQ_RETURN", 1},
{"PCBQ_ARG", 0},
{"PCBQ_FLAG", 0},
{"PCBQ_DATA_COORD", 0},
{"PCBQ_DATA_DOUBLE", 0},
{"PCBQ_DATA_STRING", 0},
{"PCBQ_DATA_REGEX", 0},
{"PCBQ_DATA_CONST", 0},
{"PCBQ_DATA_OBJ", 0},
{"PCBQ_DATA_INVALID", 0},
{"PCBQ_DATA_LYTC", 0}
};
char *pcb_query_sprint_val(pcb_qry_val_t *val)
{
switch(val->type) {
case PCBQ_VT_VOID: return rnd_strdup("<void>");
case PCBQ_VT_COORD: return rnd_strdup_printf("%mI=%$mH", val->data.crd, val->data.crd);
case PCBQ_VT_LONG: return rnd_strdup_printf("%ld", val->data.lng, val->data.lng);
case PCBQ_VT_DOUBLE: return rnd_strdup_printf("%f", val->data.dbl);
case PCBQ_VT_STRING: return rnd_strdup_printf("\"%s\"", val->data.str);
case PCBQ_VT_OBJ: return rnd_strdup_printf("<obj ID=%ld>", val->data.obj->ID);
case PCBQ_VT_LST: return rnd_strdup("<lst>");
}
return rnd_strdup("<invalid>");
}
const char *pcb_qry_nodetype_name(pcb_qry_nodetype_t ntype)
{
int type = ntype;
if ((type < 0) || (type >= PCBQ_nodetype_max))
return "<invalid>";
return type_tab[type].name;
}
int pcb_qry_nodetype_has_children(pcb_qry_nodetype_t ntype)
{
int type = ntype;
if ((type < 0) || (type >= PCBQ_nodetype_max))
return 0;
return type_tab[type].has_children;
}
pcb_qry_node_t *pcb_qry_n_alloc(pcb_qry_nodetype_t ntype)
{
pcb_qry_node_t *nd = calloc(sizeof(pcb_qry_node_t), 1);
nd->type = ntype;
return nd;
}
void pcb_qry_n_free(pcb_qry_node_t *nd)
{
pcb_qry_node_t *ch, *chn;
switch(nd->type) {
case PCBQ_RNAME:
case PCBQ_FIELD:
case PCBQ_LISTVAR:
case PCBQ_DATA_STRING:
case PCBQ_DATA_CONST:
case PCBQ_DATA_OBJ:
case PCBQ_FNAME:
free((char *)nd->data.str);
break;
case PCBQ_DATA_REGEX:
free((char *)nd->data.str);
re_se_free(nd->precomp.regex);
break;
case PCBQ_ITER_CTX:
pcb_qry_iter_free(nd->data.iter_ctx);
break;
case PCBQ_FLAG:
case PCBQ_DATA_COORD:
case PCBQ_DATA_DOUBLE:
case PCBQ_DATA_INVALID:
case PCBQ_DATA_LYTC:
case PCBQ_VAR:
case PCBQ_ARG:
/* no allocated field */
break;
case PCBQ_LET:
case PCBQ_ASSERT:
case PCBQ_RETURN:
case PCBQ_FUNCTION:
if (nd->precomp.it_active != NULL) {
vti0_uninit(nd->precomp.it_active);
free(nd->precomp.it_active);
}
goto free_children;
case PCBQ_OP_NOT:
case PCBQ_FIELD_OF:
case PCBQ_FCALL:
case PCBQ_OP_THUS:
case PCBQ_OP_AND:
case PCBQ_OP_OR:
case PCBQ_OP_EQ:
case PCBQ_OP_NEQ:
case PCBQ_OP_GTEQ:
case PCBQ_OP_LTEQ:
case PCBQ_OP_GT:
case PCBQ_OP_LT:
case PCBQ_OP_ADD:
case PCBQ_OP_SUB:
case PCBQ_OP_MUL:
case PCBQ_OP_DIV:
case PCBQ_OP_MATCH:
case PCBQ_RULE:
case PCBQ_EXPR_PROG:
case PCBQ_EXPR:
free_children:;
for(ch = nd->data.children; ch != NULL; ch = chn) {
chn = ch->next;
pcb_qry_n_free(ch);
}
break;
case PCBQ_nodetype_max: break;
}
free(nd);
}
pcb_qry_node_t *pcb_qry_n_insert(pcb_qry_node_t *parent, pcb_qry_node_t *ch)
{
ch->next = parent->data.children;
parent->data.children = ch;
ch->parent = parent;
return parent;
}
pcb_qry_node_t *pcb_qry_n_append(pcb_qry_node_t *parent, pcb_qry_node_t *ch)
{
pcb_qry_node_t *n;
if (parent->data.children != NULL) {
for(n = parent->data.children; n->next != NULL; n = n->next) ;
n->next = ch;
}
else
parent->data.children = ch;
/* set parent of all nodes */
for(n = ch; n != NULL; n = n->next)
n->parent = parent;
return parent;
}
static char ind[] = " ";
void pcb_qry_dump_tree_(const char *prefix, int level, pcb_qry_node_t *nd, pcb_query_iter_t *it_ctx)
{
pcb_qry_node_t *n;
if (level < sizeof(ind)) ind[level] = '\0';
printf("%s%s%s ", prefix, ind, pcb_qry_nodetype_name(nd->type));
switch(nd->type) {
case PCBQ_DATA_INVALID:rnd_printf("%s%s invalid (literal)\n", prefix, ind); break;
case PCBQ_DATA_COORD: rnd_printf("%s%s %mI (%$mm)\n", prefix, ind, nd->data.crd, nd->data.crd); break;
case PCBQ_DATA_DOUBLE: rnd_printf("%s%s %f\n", prefix, ind, nd->data.dbl); break;
case PCBQ_DATA_CONST: rnd_printf("%s%s %s\n", prefix, ind, nd->data.str); break;
case PCBQ_DATA_OBJ: rnd_printf("%s%s %s\n", prefix, ind, nd->data.str); break;
case PCBQ_ITER_CTX: rnd_printf("%s%s vars=%d\n", prefix, ind, nd->data.iter_ctx->num_vars); break;
case PCBQ_FLAG: rnd_printf("%s%s %s\n", prefix, ind, nd->precomp.flg->name); break;
case PCBQ_VAR:
rnd_printf("%s%s ", prefix, ind);
if ((it_ctx != NULL) && (nd->data.crd < it_ctx->num_vars)) {
if (it_ctx->vects == NULL)
pcb_qry_iter_init(it_ctx);
printf("%s\n", it_ctx->vn[nd->data.crd]);
}
else
printf("<invalid:%d>\n", nd->data.crd);
break;
case PCBQ_FNAME:
if (nd->precomp.fnc.bui != NULL) {
const char *name = pcb_qry_fnc_name(nd->precomp.fnc.bui);
if (name == NULL)
rnd_printf("%s%s <unknown>\n", prefix, ind);
else
rnd_printf("%s%s builtin %s()\n", prefix, ind, name);
}
else
rnd_printf("%s%s user %s()%s\n", prefix, ind, nd->data.str, (nd->precomp.fnc.uf == NULL ? " ERROR: not found" : ""));
break;
case PCBQ_RULE:
rnd_printf("%s%s%s\n", prefix, ind, nd->data.children->next->data.str);
n = nd->data.children->next->next;
if (n != NULL) {
for(; n != NULL; n = n->next)
pcb_qry_dump_tree_(prefix, level+1, n, it_ctx);
}
else
rnd_printf("%s%s<empty>\n", prefix, ind);
break;
case PCBQ_FIELD:
case PCBQ_LISTVAR:
case PCBQ_DATA_REGEX:
case PCBQ_DATA_STRING: rnd_printf("%s%s '%s'\n", prefix, ind, nd->data.str); break;
default:
printf("\n");
if (level < sizeof(ind)) ind[level] = ' ';
for(n = nd->data.children; n != NULL; n = n->next) {
if (n->parent != nd)
printf("#parent# ");
pcb_qry_dump_tree_(prefix, level+1, n, it_ctx);
}
return;
}
if (level < sizeof(ind)) ind[level] = ' ';
}
pcb_query_iter_t *pcb_qry_find_iter(pcb_qry_node_t *node)
{
for(; node != NULL;node = node->parent) {
if ((node->type == PCBQ_EXPR_PROG) || (node->type == PCBQ_RULE) || (node->type == PCBQ_FUNCTION)) {
if (node->data.children->type == PCBQ_ITER_CTX)
return node->data.children->data.iter_ctx;
}
}
return NULL;
}
void pcb_qry_dump_tree(const char *prefix, pcb_qry_node_t *top)
{
pcb_query_iter_t *iter_ctx = pcb_qry_find_iter(top);
if (iter_ctx == NULL)
printf("<can't find iter context>\n");
for(; top != NULL; top = top->next)
pcb_qry_dump_tree_(prefix, 0, top, iter_ctx);
}
/******** iter admin ********/
pcb_query_iter_t *pcb_qry_iter_alloc(void)
{
pcb_query_iter_t *it = calloc(1, sizeof(pcb_query_iter_t));
htsi_init(&it->names, strhash, strkeyeq);
return it;
}
void pcb_qry_iter_free_fields(pcb_query_iter_t *it)
{
htsi_entry_t *e;
for(e = htsi_first(&it->names); e != NULL; e = htsi_next(&it->names, e))
free(e->key);
htsi_uninit(&it->names);
free(it->vects);
free(it->idx);
free(it->lst);
free(it->vn);
}
void pcb_qry_iter_free(pcb_query_iter_t *it)
{
pcb_qry_iter_free_fields(it);
free(it);
}
int pcb_qry_iter_var(pcb_query_iter_t *it, const char *varname, int alloc)
{
htsi_entry_t *e = htsi_getentry(&it->names, varname);
if (e != NULL)
return e->value;
if (!alloc)
return -1;
htsi_set(&it->names, rnd_strdup(varname), it->num_vars);
return it->num_vars++;
}
void pcb_qry_iter_init(pcb_query_iter_t *it)
{
htsi_entry_t *e;
if (it->vn != NULL)
return;
it->vects = calloc(sizeof(vtp0_t *), it->num_vars);
it->idx = calloc(sizeof(rnd_cardinal_t), it->num_vars);
it->lst = calloc(sizeof(pcb_qry_val_t), it->num_vars);
it->vn = malloc(sizeof(char *) * it->num_vars);
for (e = htsi_first(&it->names); e; e = htsi_next(&it->names, e))
it->vn[e->value] = e->key;
it->last_obj = NULL;
}
/******** functions ********/
static htsp_t *qfnc = NULL;
static void pcb_qry_fnc_destroy(void)
{
htsp_entry_t *e;
for(e = htsp_first(qfnc); e != NULL; e = htsp_next(qfnc, e))
free(e->key);
htsp_free(qfnc);
qfnc = NULL;
}
int pcb_qry_fnc_reg(const char *name, pcb_qry_fnc_t fnc)
{
if (qfnc == NULL)
qfnc = htsp_alloc(strhash, strkeyeq);
if (htsp_get(qfnc, name) != NULL)
return -1;
htsp_set(qfnc, rnd_strdup(name), rnd_cast_f2d((rnd_fptr_t)fnc));
return 0;
}
pcb_qry_fnc_t pcb_qry_fnc_lookup(const char *name)
{
if (qfnc == NULL)
return NULL;
return (pcb_qry_fnc_t)rnd_cast_d2f(htsp_get(qfnc, name));
}
/* slow linear search: it's only for the dump */
const char *pcb_qry_fnc_name(pcb_qry_fnc_t fnc)
{
htsp_entry_t *e;
void *target = rnd_cast_f2d((rnd_fptr_t)fnc);
if (qfnc == NULL)
return NULL;
for(e = htsp_first(qfnc); e != NULL; e = htsp_next(qfnc, e))
if (e->value == target)
return e->key;
return NULL;
}
/******** parser helper ********/
extern long pcb_qry_lex_lineno;
void qry_error(void *prog, const char *err)
{
rnd_message(RND_MSG_ERROR, "query: %s (in line %ld)\n", err, pcb_qry_lex_lineno);
}
int qry_wrap()
{
return 1;
}
/******** plugin helper ********/
void query_action_reg(const char *cookie);
static const char *query_cookie = "query plugin";
int pplg_check_ver_query(int ver_needed) { return 0; }
void pplg_uninit_query(void)
{
rnd_remove_actions_by_cookie(query_cookie);
pcb_qry_fnc_destroy();
qry_lex_destroy();
}
void pcb_qry_basic_fnc_init(void);
int pplg_init_query(void)
{
RND_API_CHK_VER;
pcb_qry_basic_fnc_init();
query_action_reg(query_cookie);
return 0;
}
|