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 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659
|
/*
* COPYRIGHT
*
* pcb-rnd, interactive printed circuit board design
* Copyright (C) 2016,2019,2020 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 - actions */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "config.h"
#include "conf_core.h"
#include <librnd/core/actions.h>
#include "query.h"
#include "query_y.h"
#include "query_exec.h"
#include "query_access.h"
#include "draw.h"
#include "select.h"
#include "board.h"
#include "idpath.h"
#include "view.h"
#include "actions_pcb.h"
#include "net_len.h"
#include "dlg_search.h"
#include <librnd/core/compat_misc.h>
static const char pcb_acts_query[] =
"query(dump, expr) - dry run: compile and dump an expression\n"
"query(eval|evalidp, expr, [scope]) - compile and evaluate an expression and print a list of results on stdout\n"
"query(count, expr, [scope]) - compile and evaluate an expression and return the number of matched objects (-1 on error)\n"
"query(select|unselect|view, expr, [scope]) - select or unselect or build a view of objects matching an expression\n"
"query(setflag:flag|unsetflag:flag, expr, [scope]) - set or unset a named flag on objects matching an expression\n"
"query(append, idplist, expr, [scope]) - compile and run expr and append the idpath of resulting objects on idplist\n"
;
static const char pcb_acth_query[] = "Perform various queries on PCB data.";
typedef struct {
int trues, falses;
unsigned print_idpath:1;
} eval_stat_t;
static void count_cb(void *user_ctx, pcb_qry_val_t *res, pcb_any_obj_t *current)
{
eval_stat_t *st = (eval_stat_t *)user_ctx;
int t;
t = pcb_qry_is_true(res);
if (t)
st->trues++;
}
static void eval_cb(void *user_ctx, pcb_qry_val_t *res, pcb_any_obj_t *current)
{
char *resv;
eval_stat_t *st = (eval_stat_t *)user_ctx;
int t;
if (res->type == PCBQ_VT_VOID) {
printf(" <void>\n");
st->falses++;
return;
}
if (st->print_idpath && (res->type == PCBQ_VT_OBJ)) {
pcb_idpath_t *idp = pcb_obj2idpath(res->data.obj);
char *idps = pcb_idpath2str(idp, 0);
st->trues++;
printf(" <obj %s>\n", idps);
free(idps);
pcb_idpath_destroy(idp);
return;
}
if ((res->type != PCBQ_VT_COORD) && (res->type != PCBQ_VT_LONG)) {
st->trues++;
resv = pcb_query_sprint_val(res);
printf(" %s\n", resv);
free(resv);
return;
}
t = pcb_qry_is_true(res);
printf(" %s", t ? "true" : "false");
if (t) {
resv = pcb_query_sprint_val(res);
printf(" (%s)\n", resv);
free(resv);
st->trues++;
}
else {
printf("\n");
st->falses++;
}
}
typedef struct {
rnd_cardinal_t cnt;
pcb_change_flag_t how;
pcb_flag_values_t what;
} flagop_t;
static void flagop_cb(void *user_ctx, pcb_qry_val_t *res, pcb_any_obj_t *current)
{
flagop_t *sel = (flagop_t *)user_ctx;
if (!pcb_qry_is_true(res))
return;
if (PCB_OBJ_IS_CLASS(current->type, PCB_OBJ_CLASS_OBJ)) {
int state_wanted = (sel->how == PCB_CHGFLG_SET);
int state_is = PCB_FLAG_TEST(sel->what, current);
if (state_wanted != state_is) {
PCB_FLAG_CHANGE(sel->how, sel->what, current);
sel->cnt++;
}
}
}
static void append_cb(void *user_ctx, pcb_qry_val_t *res, pcb_any_obj_t *current)
{
pcb_idpath_list_t *list = user_ctx;
pcb_idpath_t *idp;
if (!pcb_qry_is_true(res))
return;
if (!PCB_OBJ_IS_CLASS(current->type, PCB_OBJ_CLASS_OBJ))
return;
idp = pcb_obj2idpath(current);
pcb_idpath_list_append(list, idp);
}
static void view_cb(void *user_ctx, pcb_qry_val_t *res, pcb_any_obj_t *current)
{
pcb_view_list_t *view = user_ctx;
pcb_view_t *v;
if (!pcb_qry_is_true(res))
return;
if (!PCB_OBJ_IS_CLASS(current->type, PCB_OBJ_CLASS_OBJ))
return;
v = pcb_view_new(&PCB->hidlib, "search result", NULL, NULL);
pcb_view_append_obj(v, 0, current);
pcb_view_set_bbox_by_objs(PCB->Data, v);
pcb_view_list_append(view, v);
}
pcb_qry_node_t *pcb_query_compile(const char *script)
{
pcb_qry_node_t *prg = NULL;
pcb_qry_set_input(script);
qry_parse(&prg);
return prg;
}
int pcb_qry_run_script(pcb_qry_exec_t *ec, pcb_board_t *pcb, const char *script, const char *scope, void (*cb)(void *user_ctx, pcb_qry_val_t *res, pcb_any_obj_t *current), void *user_ctx)
{
pcb_qry_node_t *prg = NULL;
int res, bufno = -1; /* empty scope means board */
if (script == NULL) {
rnd_message(RND_MSG_ERROR, "Compilation error: no script specified.\n");
return -1;
}
pcb_qry_set_input(script);
qry_parse(&prg);
if (prg == NULL) {
rnd_message(RND_MSG_ERROR, "Compilation error.\n");
return -1;
}
/* decode scope and set bufno */
if ((scope != NULL) && (*scope != '\0')) {
if (strcmp(scope, "board") == 0) bufno = -1;
else if (strncmp(scope, "buffer", 6) == 0) {
scope += 6;
if (*scope != '\0') {
char *end;
bufno = strtol(scope, &end, 10);
if (*end != '\0') {
rnd_message(RND_MSG_ERROR, "Invalid buffer number: '%s': not an integer\n", scope);
pcb_qry_n_free(prg);
return -1;
}
bufno--;
if ((bufno < 0) || (bufno >= PCB_MAX_BUFFER)) {
rnd_message(RND_MSG_ERROR, "Invalid buffer number: '%d' out of range 1..%d\n", bufno+1, PCB_MAX_BUFFER);
pcb_qry_n_free(prg);
return -1;
}
}
else
bufno = conf_core.editor.buffer_number;
}
else {
rnd_message(RND_MSG_ERROR, "Invalid scope: '%s': must be board or buffer or bufferN\n", scope);
pcb_qry_n_free(prg);
return -1;
}
}
res = pcb_qry_run(ec, pcb, prg, bufno, cb, user_ctx);
pcb_qry_n_free(prg);
return res;
}
extern int pcb_qry_fnc_getconf(pcb_qry_exec_t *ectx, int argc, pcb_qry_val_t *argv, pcb_qry_val_t *res);
static void pcb_qry_extract_defs_(htsi_t *dst, pcb_qry_node_t *nd, int *total)
{
if (nd->type == PCBQ_FCALL) {
pcb_qry_node_t *fname = nd->data.children;
if ((fname->type == PCBQ_FNAME) && (fname->precomp.fnc.bui == pcb_qry_fnc_getconf) && (fname->next->type == PCBQ_DATA_STRING)) {
const char *name = fname->next->data.str;
htsi_entry_t *e;
if (strncmp(name, "design/drc/", 11) == 0) {
name += 11;
e = htsi_getentry(dst, name);
if (e == NULL) {
htsi_set(dst, rnd_strdup(name), 0);
e = htsi_getentry(dst, name);
}
e->value++;
(*total)++;
}
}
}
/* RULE needs special recursion */
if (nd->type == PCBQ_RULE) {
for(nd = nd->data.children->next->next; nd != NULL; nd = nd->next)
pcb_qry_extract_defs_(dst, nd, total);
return;
}
/* recurse */
if (pcb_qry_nodetype_has_children(nd->type))
for(nd = nd->data.children; nd != NULL; nd = nd->next)
pcb_qry_extract_defs_(dst, nd, total);
}
int pcb_qry_extract_defs(htsi_t *dst, const char *script)
{
pcb_qry_node_t *prg = NULL;
int total = 0;
pcb_qry_set_input(script);
qry_parse(&prg);
if (prg == NULL)
return -1;
pcb_qry_extract_defs_(dst, prg, &total);
pcb_qry_n_free(prg);
return total;
}
static fgw_error_t pcb_act_query(fgw_arg_t *res, int argc, fgw_arg_t *argv)
{
const char *cmd, *arg = NULL, *scope = NULL;
flagop_t sel;
sel.cnt = 0;
RND_ACT_CONVARG(1, FGW_STR, query, cmd = argv[1].val.str);
RND_ACT_MAY_CONVARG(2, FGW_STR, query, arg = argv[2].val.str);
if (strcmp(cmd, "version") == 0) {
RND_ACT_IRES(0100); /* 1.0 */
return 0;
}
if (strcmp(cmd, "dump") == 0) {
pcb_qry_node_t *prg = NULL;
RND_ACT_MAY_CONVARG(2, FGW_STR, query, arg = argv[2].val.str);
printf("Script dump: '%s'\n", arg);
pcb_qry_set_input(arg);
qry_parse(&prg);
if (prg != NULL) {
pcb_qry_dump_tree(" ", prg);
pcb_qry_n_free(prg);
RND_ACT_IRES(0);
}
else
RND_ACT_IRES(1);
return 0;
}
if ((strcmp(cmd, "eval") == 0) || (strcmp(cmd, "evalidp") == 0)) {
int errs;
eval_stat_t st;
RND_ACT_MAY_CONVARG(2, FGW_STR, query, arg = argv[2].val.str);
RND_ACT_MAY_CONVARG(3, FGW_STR, query, scope = argv[3].val.str);
memset(&st, 0, sizeof(st));
st.print_idpath = (cmd[4] != '\0');
printf("Script eval: '%s' scope='%s'\n", arg, scope == NULL ? "" : scope);
errs = pcb_qry_run_script(NULL, PCB_ACT_BOARD, arg, scope, eval_cb, &st);
if (errs < 0)
printf("Failed to run the query\n");
else
printf("eval statistics: true=%d false=%d errors=%d\n", st.trues, st.falses, errs);
RND_ACT_IRES(0);
return 0;
}
if ((strcmp(cmd, "count") == 0)) {
int errs;
eval_stat_t st;
RND_ACT_MAY_CONVARG(2, FGW_STR, query, arg = argv[2].val.str);
RND_ACT_MAY_CONVARG(3, FGW_STR, query, scope = argv[3].val.str);
memset(&st, 0, sizeof(st));
st.print_idpath = (cmd[4] != '\0');
errs = pcb_qry_run_script(NULL, PCB_ACT_BOARD, arg, scope, count_cb, &st);
if (errs == 0)
RND_ACT_IRES(st.trues);
else
RND_ACT_IRES(-1);
return 0;
}
if ((strcmp(cmd, "select") == 0) || (strncmp(cmd, "setflag:", 8) == 0)) {
sel.how = PCB_CHGFLG_SET;
sel.what = PCB_FLAG_SELECTED;
if (cmd[3] == 'f') {
pcb_flag_t flg = pcb_strflg_s2f(cmd + 8, NULL, NULL, 0);
sel.what = flg.f;
if (sel.what == 0) {
rnd_message(RND_MSG_ERROR, "Invalid flag '%s'\n", cmd+8);
RND_ACT_IRES(0);
return 0;
}
}
RND_ACT_MAY_CONVARG(2, FGW_STR, query, arg = argv[2].val.str);
RND_ACT_MAY_CONVARG(3, FGW_STR, query, scope = argv[3].val.str);
if (pcb_qry_run_script(NULL, PCB_ACT_BOARD, arg, scope, flagop_cb, &sel) < 0)
printf("Failed to run the query\n");
if (sel.cnt > 0) {
pcb_board_set_changed_flag(PCB_ACT_BOARD, rnd_true);
if (RND_HAVE_GUI_ATTR_DLG)
rnd_hid_redraw(&PCB->hidlib);
}
RND_ACT_IRES(0);
return 0;
}
if ((strcmp(cmd, "unselect") == 0) || (strncmp(cmd, "unsetflag:", 10) == 0)) {
sel.how = PCB_CHGFLG_CLEAR;
sel.what = PCB_FLAG_SELECTED;
if (cmd[5] == 'f') {
pcb_flag_t flg = pcb_strflg_s2f(cmd + 10, NULL, NULL, 0);
sel.what = flg.f;
if (sel.what == 0) {
rnd_message(RND_MSG_ERROR, "Invalid flag '%s'\n", cmd+8);
RND_ACT_IRES(0);
return 0;
}
}
RND_ACT_MAY_CONVARG(2, FGW_STR, query, arg = argv[2].val.str);
RND_ACT_MAY_CONVARG(3, FGW_STR, query, scope = argv[3].val.str);
if (pcb_qry_run_script(NULL, PCB_ACT_BOARD, arg, scope, flagop_cb, &sel) < 0)
printf("Failed to run the query\n");
if (sel.cnt > 0) {
pcb_board_set_changed_flag(PCB_ACT_BOARD, rnd_true);
if (RND_HAVE_GUI_ATTR_DLG)
rnd_hid_redraw(&PCB->hidlib);
}
RND_ACT_IRES(0);
return 0;
}
if (strcmp(cmd, "append") == 0) {
pcb_idpath_list_t *list;
RND_ACT_CONVARG(2, FGW_IDPATH_LIST, query, list = fgw_idpath_list(&argv[2]));
RND_ACT_MAY_CONVARG(3, FGW_STR, query, arg = argv[3].val.str);
RND_ACT_MAY_CONVARG(4, FGW_STR, query, scope = argv[4].val.str);
if (!fgw_ptr_in_domain(&rnd_fgw, &argv[2], RND_PTR_DOMAIN_IDPATH_LIST))
return FGW_ERR_PTR_DOMAIN;
if (pcb_qry_run_script(NULL, PCB_ACT_BOARD, arg, scope, append_cb, list) < 0)
RND_ACT_IRES(1);
else
RND_ACT_IRES(0);
return 0;
}
if (strcmp(cmd, "view") == 0) {
fgw_arg_t args[4], ares;
pcb_view_list_t *view = calloc(sizeof(pcb_view_list_t), 1);
RND_ACT_MAY_CONVARG(2, FGW_STR, query, arg = argv[2].val.str);
if (pcb_qry_run_script(NULL, PCB_ACT_BOARD, arg, scope, view_cb, view) >= 0) {
args[1].type = FGW_STR; args[1].val.str = "advanced search results";
args[2].type = FGW_STR; args[2].val.str = "search_res";
fgw_ptr_reg(&rnd_fgw, &args[3], PCB_PTR_DOMAIN_VIEWLIST, FGW_PTR | FGW_STRUCT, view);
rnd_actionv_bin(RND_ACT_DESIGN, "viewlist", &ares, 4, args);
RND_ACT_IRES(0);
}
else {
free(view);
RND_ACT_IRES(1);
}
return 0;
}
RND_ACT_FAIL(query);
}
static const char *PTR_DOMAIN_PCFIELD = "ptr_domain_query_precompiled_field";
static pcb_qry_node_t *field_comp(const char *fields)
{
char fname[64], *fno;
const char *s;
int len = 1, flen = 0, idx = 0, quote = 0;
pcb_qry_node_t *res;
if (*fields == '.') fields++;
if (*fields == '\0')
return NULL;
for(s = fields; *s != '\0'; s++) {
if (*s == '.') {
len++;
if (len > 16)
return NULL; /* too many fields chained */
if (flen >= sizeof(fname))
return NULL; /* field name segment too long */
flen = 0;
}
else
flen++;
}
res = calloc(sizeof(pcb_qry_node_t), len);
fno = fname;
for(s = fields;; s++) {
if ((quote == 0) && ((*s == '.') || (*s == '\0'))) {
*fno = '\0';
if (idx > 0)
res[idx-1].next = &res[idx];
res[idx].type = PCBQ_FIELD;
res[idx].precomp.fld = query_fields_sphash(fname);
/*rnd_trace("[%d/%d] '%s' -> %d\n", idx, len, fname, res[idx].precomp.fld);*/
if (res[idx].precomp.fld < 0) /* if compilation failed, this will need to be evaluated run-time, save as string */
res[idx].data.str = rnd_strdup(fname);
fno = fname;
if (*s == '\0')
break;
idx++;
if (s[1] == '\"') {
quote = s[1];
s++;
}
}
else {
if (*s == quote)
quote = 0;
else
*fno++ = *s;
}
}
return res;
}
static void field_free(pcb_qry_node_t *fld)
{
pcb_qry_node_t *f;
for(f = fld; f != NULL; f = f->next)
if (f->data.str != NULL)
free((char *)f->data.str);
free(fld);
}
static void val2fgw(fgw_arg_t *dst, pcb_qry_val_t *src)
{
switch(src->type) {
case PCBQ_VT_COORD:
dst->type = FGW_COORD_;
fgw_coord(dst) = src->data.crd;
break;
case PCBQ_VT_LONG:
dst->type = FGW_LONG;
dst->val.nat_long = src->data.lng;
break;
case PCBQ_VT_DOUBLE:
dst->type = FGW_DOUBLE;
dst->val.nat_double = src->data.dbl;
break;
case PCBQ_VT_STRING:
if (src->data.str != NULL) {
dst->type = FGW_STR | FGW_DYN;
dst->val.str = rnd_strdup(src->data.str);
}
else {
dst->type = FGW_PTR;
dst->val.ptr_void = NULL;
}
break;
case PCBQ_VT_VOID:
case PCBQ_VT_OBJ:
case PCBQ_VT_LST:
default:;
break;
}
}
static const char pcb_acts_QueryObj[] = "QueryObj(idpath, [.fieldname|fieldID])";
static const char pcb_acth_QueryObj[] = "Return the value of a field of an object, addressed by the object's idpath and the field's name or precompiled ID. Returns NIL on error.";
static fgw_error_t pcb_act_QueryObj(fgw_arg_t *res, int argc, fgw_arg_t *argv)
{
pcb_idpath_t *idp;
pcb_qry_node_t *fld = NULL;
pcb_qry_val_t obj;
pcb_qry_val_t val;
int free_fld = 0;
RND_ACT_CONVARG(1, FGW_IDPATH, QueryObj, idp = fgw_idpath(&argv[1]));
if ((argv[2].type & FGW_STR) == FGW_STR) {
const char *field;
RND_ACT_CONVARG(2, FGW_STR, QueryObj, field = argv[2].val.str);
if (field == NULL)
goto err;
if (*field != '.')
goto id;
fld = field_comp(field);
free_fld = 1;
}
else if ((argv[2].type & FGW_PTR) == FGW_PTR) {
id:;
RND_ACT_CONVARG(2, FGW_PTR, QueryObj, fld = argv[2].val.ptr_void);
if (!fgw_ptr_in_domain(&rnd_fgw, &argv[2], PTR_DOMAIN_PCFIELD))
return FGW_ERR_PTR_DOMAIN;
}
if ((fld == NULL) || (!fgw_ptr_in_domain(&rnd_fgw, &argv[1], RND_PTR_DOMAIN_IDPATH))) {
if (free_fld)
field_free(fld);
return FGW_ERR_PTR_DOMAIN;
}
obj.type = PCBQ_VT_OBJ;
obj.data.obj = pcb_idpath2obj_in(PCB->Data, idp);
if (obj.data.obj == NULL)
goto err;
{
int ret;
pcb_qry_exec_t ec;
pcb_qry_init(&ec, PCB, NULL, -1);
ret = pcb_qry_obj_field(NULL, &obj, fld, &val);
pcb_qry_uninit(&ec);
if (ret != 0)
goto err;
}
if (free_fld)
field_free(fld);
val2fgw(res, &val);
return 0;
err:;
if (free_fld)
field_free(fld);
res->type = FGW_PTR;
res->val.ptr_void = NULL;
return 0;
}
static const char pcb_acts_QueryCompileField[] =
"QueryCompileField(compile, fieldname)\n"
"QueryCompileField(free, fieldID)";
static const char pcb_acth_QueryCompileField[] = "With \"compile\": precompiles textual field name to field ID; with \"free\": frees the memory allocated for a previously precompiled fieldID.";
static fgw_error_t pcb_act_QueryCompileField(fgw_arg_t *res, int argc, fgw_arg_t *argv)
{
const char *cmd, *fname;
pcb_qry_node_t *fld;
RND_ACT_CONVARG(1, FGW_STR, QueryCompileField, cmd = argv[1].val.str);
switch(*cmd) {
case 'c': /* compile */
RND_ACT_CONVARG(2, FGW_STR, QueryCompileField, fname = argv[2].val.str);
fld = field_comp(fname);
fgw_ptr_reg(&rnd_fgw, res, PTR_DOMAIN_PCFIELD, FGW_PTR | FGW_STRUCT, fld);
return 0;
case 'f': /* free */
if (!fgw_ptr_in_domain(&rnd_fgw, &argv[2], PTR_DOMAIN_PCFIELD))
return FGW_ERR_PTR_DOMAIN;
RND_ACT_CONVARG(2, FGW_PTR, QueryCompileField, fld = argv[2].val.ptr_void);
fgw_ptr_unreg(&rnd_fgw, &argv[2], PTR_DOMAIN_PCFIELD);
field_free(fld);
break;
default:
return FGW_ERR_ARG_CONV;
}
return 0;
}
/* in net_len.c */
extern const char pcb_acts_QueryCalcNetLen[];
extern const char pcb_acth_QueryCalcNetLen[];
extern fgw_error_t pcb_act_QueryCalcNetLen(fgw_arg_t *res, int argc, fgw_arg_t *argv);
rnd_action_t query_action_list[] = {
{"query", pcb_act_query, pcb_acth_query, pcb_acts_query},
{"QueryObj", pcb_act_QueryObj, pcb_acth_QueryObj, pcb_acts_QueryObj},
{"QueryCompileField", pcb_act_QueryCompileField, pcb_acth_QueryCompileField, pcb_acts_QueryCompileField},
{"QueryCalcNetLen", pcb_act_QueryCalcNetLen, pcb_acth_QueryCalcNetLen, pcb_acts_QueryCalcNetLen},
{"SearchDialog", pcb_act_SearchDialog, pcb_acth_SearchDialog, pcb_acts_SearchDialog}
};
void query_action_reg(const char *cookie)
{
RND_REGISTER_ACTIONS(query_action_list, cookie)
}
|