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 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682
|
/*
* Automatically generated on "/tmp/add2.mb" by DX Module Builder
*/
#include "dx/dx.h"
static Error traverse(Object *, Object *);
static Error doLeaf(Object *, Object *);
/*
* Declare the interface routine.
*/
int
Add2_worker(
int, float *,
int, float *,
int, float *);
Error
m_Add2(Object *in, Object *out)
{
int i;
/*
* Initialize all outputs to NULL
*/
out[0] = NULL;
/*
* Error checks: required inputs are verified.
*/
/* Parameter "field1" is required. */
if (in[0] == NULL)
{
DXSetError(ERROR_MISSING_DATA, "\"field1\" must be specified");
return ERROR;
}
/* Parameter "field2" is required. */
if (in[1] == NULL)
{
DXSetError(ERROR_MISSING_DATA, "\"field2\" must be specified");
return ERROR;
}
/*
* Since output "result" is structure Field/Group, it initially
* is a copy of input "field1".
*/
out[0] = DXCopy(in[0], COPY_STRUCTURE);
if (! out[0])
goto error;
/*
* If in[0] was an array, then no copy is actually made - Copy
* returns a pointer to the input object. Since this can't be written to
* we postpone explicitly copying it until the leaf level, when we'll need
* to be creating writable arrays anyway.
*/
if (out[0] == in[0])
out[0] = NULL;
/*
* Call the hierarchical object traversal routine
*/
if (!traverse(in, out))
goto error;
return OK;
error:
/*
* On error, any successfully-created outputs are deleted.
*/
for (i = 0; i < 1; i++)
{
if (in[i] != out[i])
DXDelete(out[i]);
out[i] = NULL;
}
return ERROR;
}
static Error
traverse(Object *in, Object *out)
{
switch(DXGetObjectClass(in[0]))
{
case CLASS_FIELD:
case CLASS_ARRAY:
/*
* If we have made it to the leaf level, call the leaf handler.
*/
if (! doLeaf(in, out))
return ERROR;
return OK;
case CLASS_GROUP:
{
int i, j;
int memknt;
Class groupClass = DXGetGroupClass((Group)in[0]);
DXGetMemberCount((Group)in[0], &memknt);
/*
* All inputs that are not NULL and are type Field/Group must
* match the structure of input[0]. Verify that this is so.
*/
if (in[1] &&
(DXGetObjectClass(in[1]) != CLASS_GROUP ||
DXGetGroupClass((Group)in[1]) != groupClass ||
!DXGetMemberCount((Group)in[1], &i) || i != memknt))
{
DXSetError(ERROR_DATA_INVALID,
"structure of \"field2\" doesn't match that of \"field1\"");
return ERROR;
}
/*
* Create new in and out lists for each child
* of the first input.
*/
for (i = 0; i < memknt; i++)
{
Object new_in[2], new_out[1];
/*
* For all inputs that are Values, pass them to
* child object list. For all that are Field/Group, get
* the appropriate decendent and place it into the
* child input object list.
*/
/* input "field1" is Field/Group */
if (in[0])
new_in[0] = DXGetEnumeratedMember((Group)in[0], i, NULL);
else
new_in[0] = NULL;
/* input "field2" is Field/Group */
if (in[1])
new_in[1] = DXGetEnumeratedMember((Group)in[1], i, NULL);
else
new_in[1] = NULL;
/*
* For all outputs that are Values, pass them to
* child object list. For all that are Field/Group, get
* the appropriate decendent and place it into the
* child output object list. Note that none should
* be NULL (unlike inputs, which can default).
*/
/* output "result" is Field/Group */
new_out[0] = DXGetEnumeratedMember((Group)out[0], i, NULL);
if (! traverse(new_in, new_out))
return ERROR;
/*
* Now for each output that is not a Value, replace
* the updated child into the object in the parent.
*/
/* output "result" is Field/Group */
DXSetEnumeratedMember((Group)out[0], i, new_out[0]);
}
return OK;
}
case CLASS_XFORM:
{
int i, j;
Object new_in[2], new_out[1];
/*
* All inputs that are not NULL and are type Field/Group must
* match the structure of input[0]. Verify that this is so.
*/
if (in[1] && DXGetObjectClass(in[1]) != CLASS_XFORM)
{
DXSetError(ERROR_DATA_INVALID,
"structure of \"field2\" doesn't match that of \"field1\"");
return ERROR;
}
/*
* Create new in and out lists for the decendent of the
* first input. For inputs and outputs that are Values
* copy them into the new in and out lists. Otherwise
* get the corresponding decendents.
*/
/* input "field1" is Field/Group */
if (in[0])
DXGetXformInfo((Xform)in[0], &new_in[0], NULL);
else
new_in[0] = NULL;
/* input "field2" is Field/Group */
if (in[1])
DXGetXformInfo((Xform)in[1], &new_in[1], NULL);
else
new_in[1] = NULL;
/*
* For all outputs that are Values, copy them to
* child object list. For all that are Field/Group, get
* the appropriate decendent and place it into the
* child output object list. Note that none should
* be NULL (unlike inputs, which can default).
*/
/* output "result" is Field/Group */
DXGetXformInfo((Xform)out[0], &new_out[0], NULL);
if (! traverse(new_in, new_out))
return ERROR;
/*
* Now for each output that is not a Value replace
* the updated child into the object in the parent.
*/
/* output "result" is Field/Group */
DXSetXformObject((Xform)out[0], new_out[0]);
return OK;
}
case CLASS_SCREEN:
{
int i, j;
Object new_in[2], new_out[1];
/*
* All inputs that are not NULL and are type Field/Group must
* match the structure of input[0]. Verify that this is so.
*/
if (in[1] && DXGetObjectClass(in[1]) != CLASS_SCREEN)
{
DXSetError(ERROR_DATA_INVALID,
"structure of \"field2\" doesn't match that of \"field1\"");
return ERROR;
}
/*
* Create new in and out lists for the decendent of the
* first input. For inputs and outputs that are Values
* copy them into the new in and out lists. Otherwise
* get the corresponding decendents.
*/
/* input "field1" is Field/Group */
if (in[0])
DXGetScreenInfo((Screen)in[0], &new_in[0], NULL, NULL);
else
new_in[0] = NULL;
/* input "field2" is Field/Group */
if (in[1])
DXGetScreenInfo((Screen)in[1], &new_in[1], NULL, NULL);
else
new_in[1] = NULL;
/*
* For all outputs that are Values, copy them to
* child object list. For all that are Field/Group, get
* the appropriate decendent and place it into the
* child output object list. Note that none should
* be NULL (unlike inputs, which can default).
*/
/* output "result" is Field/Group */
DXGetScreenInfo((Screen)out[0], &new_out[0], NULL, NULL);
if (! traverse(new_in, new_out))
return ERROR;
/*
* Now for each output that is not a Value, replace
* the updated child into the object in the parent.
*/
/* output "result" is Field/Group */
DXSetScreenObject((Screen)out[0], new_out[0]);
return OK;
}
case CLASS_CLIPPED:
{
int i, j;
Object new_in[2], new_out[1];
/*
* All inputs that are not NULL and are type Field/Group must
* match the structure of input[0]. Verify that this is so.
*/
if (in[1] && DXGetObjectClass(in[1]) != CLASS_CLIPPED)
{
DXSetError(ERROR_DATA_INVALID,
"mismatching Field/Group objects");
return ERROR;
}
/* input "field1" is Field/Group */
if (in[0])
DXGetClippedInfo((Clipped)in[0], &new_in[0], NULL);
else
new_in[0] = NULL;
/* input "field2" is Field/Group */
if (in[1])
DXGetClippedInfo((Clipped)in[1], &new_in[1], NULL);
else
new_in[1] = NULL;
/*
* For all outputs that are Values, copy them to
* child object list. For all that are Field/Group, get
* the appropriate decendent and place it into the
* child output object list. Note that none should
* be NULL (unlike inputs, which can default).
*/
/* output "result" is Field/Group */
DXGetClippedInfo((Clipped)out[0], &new_out[0], NULL);
if (! traverse(new_in, new_out))
return ERROR;
/*
* Now for each output that is not a Value, replace
* the updated child into the object in the parent.
*/
/* output "result" is Field/Group */
DXSetClippedObjects((Clipped)out[0], new_out[0], NULL);
return OK;
}
default:
{
DXSetError(ERROR_BAD_CLASS, "encountered in object traversal");
return ERROR;
}
}
}
static int
doLeaf(Object *in, Object *out)
{
int i, result=0;
Array array;
Field field;
Pointer *in_data[2], *out_data[1];
int in_knt[2], out_knt[1];
Type type;
Category category;
int rank, shape;
Object attr, src_dependency_attr = NULL;
char *src_dependency = NULL;
int p_knt = -1;
int c_knt = -1;
if (DXGetObjectClass(in[0]) == CLASS_FIELD)
{
field = (Field)in[0];
if (DXEmptyField(field))
return OK;
/*
* Determine the dependency of the source object's data
* component.
*/
src_dependency_attr = DXGetComponentAttribute(field, "data", "dep");
if (! src_dependency_attr)
{
DXSetError(ERROR_MISSING_DATA, "\"field1\" data component is missing a dependency attribute");
goto error;
}
if (DXGetObjectClass(src_dependency_attr) != CLASS_STRING)
{
DXSetError(ERROR_BAD_CLASS, "\"field1\" dependency attribute");
goto error;
}
src_dependency = DXGetString((String)src_dependency_attr);
array = (Array)DXGetComponentValue(field, "positions");
if (! array)
{
DXSetError(ERROR_BAD_CLASS, "\"field1\" contains no positions component");
goto error;
}
DXGetArrayInfo(array, &p_knt, NULL, NULL, NULL, NULL);
}
/*
* If the input argument is not NULL then we get the
* data array: either the object itself, if its an
* array, or the data component if the argument is a field
*/
if (! in[0])
{
array = NULL;
in_data[0] = NULL;
in_knt[0] = 0;
}
else
{
if (DXGetObjectClass(in[0]) == CLASS_ARRAY)
{
array = (Array)in[0];
}
else
{
if (DXGetObjectClass(in[0]) != CLASS_FIELD)
{
DXSetError(ERROR_BAD_CLASS, "\"field1\" should be a field");
goto error;
}
array = (Array)DXGetComponentValue((Field)in[0], "data");
if (! array)
{
DXSetError(ERROR_MISSING_DATA, "\"field1\" has no data component");
goto error;
}
if (DXGetObjectClass((Object)array) != CLASS_ARRAY)
{
DXSetError(ERROR_BAD_CLASS, "data component of \"field1\" should be an array");
goto error;
}
}
/*
* get the dependency of the data component
*/
attr = DXGetAttribute((Object)array, "dep");
if (! attr)
{
DXSetError(ERROR_MISSING_DATA, "data component of \"field1\" has no dependency");
goto error;
}
if (DXGetObjectClass(attr) != CLASS_STRING)
{
DXSetError(ERROR_BAD_CLASS, "dependency attribute of data component of \"field1\"");
goto error;
}
DXGetArrayInfo(array, &in_knt[0], &type, &category, &rank, &shape);
if (type != TYPE_FLOAT || category != CATEGORY_REAL ||
rank != 0)
{
DXSetError(ERROR_DATA_INVALID, "input \"field1\"");
goto error;
}
in_data[0] = DXGetArrayData(array);
if (! in_data[0])
goto error;
}
/*
* If the input argument is not NULL then we get the
* data array: either the object itself, if its an
* array, or the data component if the argument is a field
*/
if (! in[1])
{
array = NULL;
in_data[1] = NULL;
in_knt[1] = 0;
}
else
{
if (DXGetObjectClass(in[1]) == CLASS_ARRAY)
{
array = (Array)in[1];
}
else
{
if (DXGetObjectClass(in[1]) != CLASS_FIELD)
{
DXSetError(ERROR_BAD_CLASS, "\"field2\" should be a field");
goto error;
}
array = (Array)DXGetComponentValue((Field)in[1], "data");
if (! array)
{
DXSetError(ERROR_MISSING_DATA, "\"field2\" has no data component");
goto error;
}
if (DXGetObjectClass((Object)array) != CLASS_ARRAY)
{
DXSetError(ERROR_BAD_CLASS, "data component of \"field2\" should be an array");
goto error;
}
}
/*
* get the dependency of the data component
*/
attr = DXGetAttribute((Object)array, "dep");
if (! attr)
{
DXSetError(ERROR_MISSING_DATA, "data component of \"field2\" has no dependency");
goto error;
}
if (DXGetObjectClass(attr) != CLASS_STRING)
{
DXSetError(ERROR_BAD_CLASS, "dependency attribute of data component of \"field2\"");
goto error;
}
/*
* The dependency of this arg should match input[0].
*/
if (strcmp(src_dependency, DXGetString((String)attr)))
{
DXSetError(ERROR_DATA_INVALID, "data dependency of \"field2\" must match \"field1\"");
goto error;
}
DXGetArrayInfo(array, &in_knt[1], &type, &category, &rank, &shape);
if (type != TYPE_FLOAT || category != CATEGORY_REAL ||
rank != 0)
{
DXSetError(ERROR_DATA_INVALID, "input \"field2\"");
goto error;
}
in_data[1] = DXGetArrayData(array);
if (! in_data[1])
goto error;
}
/*
* Create an output data array typed according to the
* specification given
*/
array = DXNewArray(TYPE_FLOAT, CATEGORY_REAL, 0, 0);
if (! array)
goto error;
/*
* Set the dependency of the array to the same as the first input
*/
if (src_dependency_attr != NULL)
if (! DXSetAttribute((Object)array, "dep", src_dependency_attr))
goto error;
/*
* The size and dependency of this output data array will
* match that of input[0]
*/
out_knt[0] = in_knt[0];
/*
* Actually allocate the array data space
*/
if (! DXAddArrayData(array, 0, out_knt[0], NULL))
goto error;
/*
* If the output vector slot is not NULL, then it better be a field, and
* we'll add the new array to it as its data component (delete any prior
* data component so that its attributes won't overwrite the new component's)
* Otherwise, place the new array into the out vector.
*/
if (out[0])
{
if (DXGetObjectClass(out[0]) != CLASS_FIELD)
{
DXSetError(ERROR_INTERNAL, "non-field object found in output vector");
goto error;
}
if (DXGetComponentValue((Field)out[0], "data"))
DXDeleteComponent((Field)out[0], "data");
if (! DXSetComponentValue((Field)out[0], "data", (Object)array))
goto error;
}
else
out[0] = (Object)array;
/*
* Now get the pointer to the contents of the array
*/
out_data[0] = DXGetArrayData(array);
if (! out_data[0])
goto error;
/*
* Call the user's routine. Check the return code.
*/
result = Add2_worker(
in_knt[0], (float *)in_data[0],
in_knt[1], (float *)in_data[1],
out_knt[0], (float *)out_data[0]);
if (! result)
if (DXGetError()==ERROR_NONE)
DXSetError(ERROR_INTERNAL, "error return from user routine");
/*
* In either event, clean up allocated memory
*/
error:
return result;
}
int
Add2_worker(
int field1_knt, float *field1_data,
int field2_knt, float *field2_data,
int result_knt, float *result_data)
{
/*
* The arguments to this routine are:
*
*
* The following are inputs and therefore are read-only. The default
* values are given and should be used if the knt is 0.
*
* field1_knt, field1_data: count and pointer for input "field1"
* no default value given.
* field2_knt, field2_data: count and pointer for input "field2"
* no default value given.
*
* The output data buffer(s) are writable.
* The output buffer(s) are preallocated based on
* the dependency (positions or connections),
* the size of the corresponding positions or
* connections component in the first input, and
* the data type.
*
* result_knt, result_data: count and pointer for output "result"
*/
/*
* User's code goes here
*/
int i;
/* check that number of data items is the same in field1 and
* field2
*/
if (field1_knt != field2_knt) {
DXSetError(ERROR_DATA_INVALID,
"number of items in field1 and field2 do not match");
return ERROR;
}
for (i=0; i<result_knt; i++)
result_data[i] = field1_data[i] + field2_data[i];
}
|