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 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628
|
/*
FALCON - The Falcon Programming Language.
FILE: array_ext.cpp
Array specialized operation
-------------------------------------------------------------------
Author: Giancarlo Niccolai
Begin: dom nov 7 2004
-------------------------------------------------------------------
(C) Copyright 2004: the FALCON developers (see list in AUTHORS file)
See LICENSE file for licensing details.
*/
/*#
@funset core_array_funcs Array support
@brief Array related functions.
@beginset core_array_funcs
@inmodule core
Functions in this set are meant to provide functional
support to arrays. Some of them replicate operator or
@a Array class methods.
*/
#include <falcon/setup.h>
#include <falcon/module.h>
#include <falcon/item.h>
#include <falcon/carray.h>
#include <falcon/coretable.h>
#include <falcon/vm.h>
#include <falcon/eng_messages.h>
#include <string.h>
namespace Falcon {
namespace core {
/*#
@method comp Array
@brief Appends elements to this array through a filter.
@param source A sequence, a range or a callable generating items.
@optparam filter A filtering function receiving one item at a time.
@return This array.
Please, see the description of @a Sequence.comp.
@see Sequence.comp
*/
FALCON_FUNC Array_comp ( ::Falcon::VMachine *vm )
{
if ( vm->param(0) == 0 )
{
throw new ParamError( ErrorParam( e_inv_params, __LINE__ )
.extra( "R|A|C|Sequence, [C]" ) );
}
// Save the parameters as the stack may change greatly.
CoreArray* arr = vm->self().asArray();
Item i_gen = *vm->param(0);
Item i_check = vm->param(1) == 0 ? Item(): *vm->param(1);
arr->items().comprehension_start( vm, vm->self(), i_check );
vm->pushParam( i_gen );
}
/*#
@method mcomp Array
@brief Appends multiple elements to this array.
@param ... One or more sequences or item generators.
@return This array.
Please, see the description of @a Sequence.mcomp.
@see Sequence.mcomp
*/
FALCON_FUNC Array_mcomp ( ::Falcon::VMachine *vm )
{
CoreArray* arr = vm->self().asArray();
StackFrame* current = vm->currentFrame();
arr->items().comprehension_start( vm, vm->self(), Item() );
for( uint32 i = 0; i < current->m_param_count; ++i )
{
vm->pushParam( current->m_params[i] );
}
}
/*#
@method mfcomp Array
@brief Appends multiple elements to this array through a filter.
@param filter A filter function receiving each element before its insertion, or nil.
@param ... One or more sequences or item generators.
@return This array.
Please, see the description of @a Sequence.mfcomp.
@see Sequence.mfcomp
*/
FALCON_FUNC Array_mfcomp ( ::Falcon::VMachine *vm )
{
if ( vm->param(0) == 0 )
{
throw new ParamError( ErrorParam( e_inv_params, __LINE__ )
.extra( "C, ..." ) );
}
CoreArray* arr = vm->self().asArray();
Item i_check = *vm->param(0);
StackFrame* current = vm->currentFrame();
arr->items().comprehension_start( vm, vm->self(), i_check );
for( uint32 i = 1; i < current->m_param_count; ++i )
{
vm->pushParam( current->m_params[i] );
}
}
/*#
@method concat Array
@brief Concatenate all the elements of an array in a string.
@optparam sep Separator to be put between the elements.
@return A single string.
*/
FALCON_FUNC Array_concat ( ::Falcon::VMachine *vm )
{
Item* i_sep = vm->param(0);
if ( i_sep != 0 && ! i_sep->isString() )
{
throw new ParamError( ErrorParam( e_inv_params, __LINE__ )
.extra( "[S]" ) );
}
CoreArray* arr = vm->self().asArray();
CoreString *str = new CoreString;
uint32 len = arr->length();
for( uint32 i = 0; i < len ; ++i )
{
const Item& item = arr->at(i);
if ( item.isString() )
{
str->append( *item.asString() );
}
else
{
String temp;
vm->itemToString( temp, &item );
str->append( temp );
}
if( (i + 1)< len && i_sep )
str->append( *i_sep->asString() );
}
vm->retval( str );
}
/*#
@method front Array
@brief Returns and eventually extracts the first element in the array.
@optparam remove true to remove the front item.
@return The extracted item.
@raise AccessError if the array is empty.
*/
FALCON_FUNC Array_front ( ::Falcon::VMachine *vm )
{
CoreArray *array = vm->self().asArray();
if ( array->length() == 0 )
{
throw new AccessError( ErrorParam( e_inv_params, __LINE__ )
.origin( e_orig_runtime )
.extra( vm->moduleString( rtl_emptyarr ) ) );
return;
}
vm->retval( array->at(0) );
if ( vm->param(0) != 0 && vm->param(0)->isTrue() )
array->remove(0);
}
/*#
@method back Array
@brief Returns and eventually extracts the last element in the array.
@optparam remove true to remove the front item.
@return The extracted item.
@raise AccessError if the array is empty.
*/
FALCON_FUNC Array_back ( ::Falcon::VMachine *vm )
{
CoreArray *array = vm->self().asArray();
if ( array->length() == 0 )
{
throw new AccessError( ErrorParam( e_inv_params, __LINE__ ).
origin( e_orig_runtime ).extra( vm->moduleString( rtl_emptyarr ) ) );
}
vm->retval( array->at( array->length() - 1 ) );
if ( vm->param(0) != 0 && vm->param(0)->isTrue() )
array->remove( array->length() - 1 );
}
/*#
@method table Array
@brief Returns the table related with this array.
@raise AccessError if the item is not an array.
@return The table of which this item is a row.
This array method retrieves the table that is related with the
item, provided the item is an array being part of a table.
In case the item is an array, but it doesn't belong to any
table, nil is returned.
*/
FALCON_FUNC Array_table( VMachine *vm )
{
CoreArray *array = vm->self().asArray();
if ( array->table() != 0 )
{
vm->retval( array->table() );
return;
}
vm->retnil();
}
/*#
@method tabField Array
@brief Returns one of the items in the array, given the field name.
@param field The field name or position to be retrieved.
@raise AccessError if the item is not an array.
@return An item in the array or the default column value.
If this item is an array and is part of a table, the field with
the given name or ID (number) is searched in the table definition,
and if found, it is returned. If the corresponding item in the array
is nil, then the table column data (default data) is returned instead,
unless the item is also an OOB item. In that case, nil is returned
and the default column value is ignored.
*/
FALCON_FUNC Array_tabField( VMachine *vm )
{
Item *i_field = vm->param( 0 );
if ( i_field == 0 ||
! ( i_field->isString() || i_field->isOrdinal() ))
{
throw new ParamError( ErrorParam( e_inv_params ).
extra( "(N)" ) );
return;
}
CoreArray *array = vm->self().asArray();
if ( array->table() != 0 )
{
// if a field parameter is given, return its value
uint32 num = (uint32) CoreTable::noitem;
CoreTable *table = reinterpret_cast<CoreTable*>(array->table()->getFalconData());
if ( i_field->isString() )
{
num = table->getHeaderPos( *i_field->asString() );
}
else {
// we already checked, must be a field
num = (uint32) i_field->forceInteger();
}
if ( num < array->length() )
{
Item &data = (*array)[num];
if ( ! data.isNil() )
{
vm->retval( data );
}
else {
if ( data.isOob() )
vm->retnil();
else
vm->retval( table->columnData( num ) );
}
return;
}
throw new AccessError( ErrorParam( e_param_range ) );
return;
}
vm->retnil();
}
/*#
@method tabRow Array
@brief Returns the row ID of this element.
@raise AccessError if the item is not a table row (array).
@return A number indicating the position of this row in the table, or
nil if this item is an array, but it's not stored in a table.
This method returns the position of this element in a table.
This number gets valorized only after a @a Table.get or @a Table.find
method call, so that it is possible to know what index had this element
in the owning table. If the table is changed by inserting or removing
a row, the number returned by this function becomes meaningless.
*/
FALCON_FUNC Array_tabRow( VMachine *vm )
{
CoreArray *array = vm->self().asArray();
if ( array->table() != 0 )
vm->retval( (int64) array->tablePos() );
else
vm->retnil();
}
/*#
@method first Array
@brief Returns an iterator to the head of this array.
@return An iterator.
*/
FALCON_FUNC Array_first( VMachine *vm )
{
Item *itclass = vm->findWKI( "Iterator" );
fassert( itclass != 0 );
CoreObject *iterator = itclass->asClass()->createInstance();
// we need to set the FalconData flag
iterator->setUserData( new Iterator( &vm->self().asArray()->items() ) );
vm->retval( iterator );
}
/*#
@method last Array
@brief Returns an iterator to the last element in this array.
@return An iterator.
*/
FALCON_FUNC Array_last( VMachine *vm )
{
Item *itclass = vm->findWKI( "Iterator" );
fassert( itclass != 0 );
CoreObject *iterator = itclass->asClass()->createInstance();
// we need to set the FalconData flag
iterator->setUserData( new Iterator( &vm->self().asArray()->items(), true ) );
vm->retval( iterator );
}
/*#
@function arrayIns
@brief Inserts an item into an array.
@param array The array where the item should be placed.
@param itempos The position where the item should be placed.
@param item The item to be inserted.
The item is inserted before the given position. If pos is 0, the item is
inserted in the very first position, while if it's equal to the array length, it
is appended at the array tail.
*/
/*#
@method ins Array
@brief Inserts an item into this array array.
@param itempos The position where the item should be placed.
@param item The item to be inserted.
The item is inserted before the given position. If pos is 0, the item is
inserted in the very first position, while if it's equal to the array length, it
is appended at the array tail.
*/
FALCON_FUNC mth_arrayIns ( ::Falcon::VMachine *vm )
{
Item *array_x;
Item *item_pos;
Item *item;
if ( vm->self().isMethodic() )
{
array_x = &vm->self();
item_pos = vm->param(0);
item = vm->param(1);
}
else
{
array_x = vm->param(0);
item_pos = vm->param(1);
item = vm->param(2);
}
if ( array_x == 0 || ! array_x->isArray() ||
item_pos == 0 || ! item_pos->isOrdinal() ||
item == 0 )
{
throw new ParamError( ErrorParam( e_inv_params, __LINE__ ).
origin( e_orig_runtime ).
extra( vm->self().isMethodic() ? "N,X" : "A,N,X" ) );
}
CoreArray *array = array_x->asArray();
int32 pos = (int32) item_pos->forceInteger();
if ( ! array->insert( *item, pos ) ) {
// array access error
throw new AccessError( ErrorParam( e_arracc, __LINE__ )
.origin( e_orig_runtime ) );
}
}
/*#
@function arrayDel
@brief Deletes the first element matching a given item.
@param array The array that is to be changed.
@param item The item that must be deleted.
@return true if at least one item has been removed, false otherwise.
The function scans the array searching for an item that is considered
equal to the given one. If such an item can be found, it is removed and
the function returns true. If the item cannot be found, false is returned.
Only the first item matching the given one will be deleted.
*/
/*#
@method del Array
@brief Deletes the first element matching a given item.
@param item The item that must be deleted.
@return true if at least one item has been removed, false otherwise.
The function scans the array searching for an item that is considered
equal to the given one. If such an item can be found, it is removed and
the function returns true. If the item cannot be found, false is returned.
Only the first item matching the given one will be deleted.
*/
FALCON_FUNC mth_arrayDel ( ::Falcon::VMachine *vm )
{
Item *array_x;
Item *item_rem;
if ( vm->self().isMethodic() )
{
array_x = &vm->self();
item_rem = vm->param(0);
}
else
{
array_x = vm->param(0);
item_rem = vm->param(1);
}
if ( array_x == 0 || ! array_x->isArray()
|| item_rem == 0 )
{
throw new ParamError( ErrorParam( e_inv_params, __LINE__ )
.origin( e_orig_runtime )
.extra( vm->self().isMethodic() ? "X" : "A,X" ) );
}
// find the element
CoreArray *array = array_x->asArray();
const ItemArray& elements = array->items();
for( uint32 i = 0; i < array->length(); i++ ) {
if ( elements[i] == *item_rem ) {
array->remove( i );
vm->regA().setBoolean(true);
return;
}
}
vm->regA().setBoolean(false);
}
/*#
@function arrayDelAll
@brief Deletes all the occurrences of a given item in an array.
@param array The array that is to be changed.
@param item The item that must be deleted.
@return true if at least one item has been removed, false otherwise.
This function removes all the elements of the given array that are
considered equivalent to the given item. If one or more elements have
been found and deleted, the function will return true, else it will
return false.
*/
/*#
@method delAll Array
@brief Deletes all the occurrences of a given item in this array.
@param item The item that must be deleted.
@return true if at least one item has been removed, false otherwise.
This function removes all the elements in this array that are
considered equivalent to the given item. If one or more elements have
been found and deleted, the function will return true, else it will
return false.
@see filter
*/
FALCON_FUNC mth_arrayDelAll ( ::Falcon::VMachine *vm )
{
Item *array_x;
Item *item_rem;
if ( vm->self().isMethodic() )
{
array_x = &vm->self();
item_rem = vm->param(0);
}
else
{
array_x = vm->param(0);
item_rem = vm->param(1);
}
if ( array_x == 0 || ! array_x->isArray()
|| item_rem == 0 )
{
throw new ParamError( ErrorParam( e_inv_params, __LINE__ )
.origin( e_orig_runtime )
.extra( vm->self().isMethodic() ? "X" : "A,X" ) );
}
// find the element
bool done = false;
CoreArray *array = array_x->asArray();
const ItemArray& elements = array->items();
uint32 i = 0;
while( i < array->length() )
{
if ( elements[i] == *item_rem ) {
array->remove( i );
done = true;
}
else
i++;
}
vm->regA().setBoolean( done );
}
/*#
@function arrayAdd
@brief Adds an element to an array.
@param array The array where to add the new item.
@param item The item to be added.
The element will be added at the end of the array,
and its size will be increased by one.
*/
/*#
@method add Array
@brief Adds an element to this array.
@param item The item to be added.
The element will be added at the end of this array,
and its size will be increased by one.
*/
FALCON_FUNC mth_arrayAdd ( ::Falcon::VMachine *vm )
{
Item *array_x;
Item *item;
if ( vm->self().isMethodic() )
{
array_x = &vm->self();
item = vm->param(0);
}
else
{
array_x = vm->param(0);
item = vm->param(1);
}
if ( array_x == 0 || ! array_x->isArray()
|| item == 0 )
{
throw new ParamError( ErrorParam( e_inv_params, __LINE__ )
.origin( e_orig_runtime )
.extra( vm->self().isMethodic() ? "X" : "A,X" ) );
}
CoreArray *array = array_x->asArray();
array->append( *item );
}
/*#
@function arrayFill
@brief Fills the array with the given element.
@param array The array where to add the new item.
@param item The item to be replicated.
@return The same @b array passed as parameter.
This method allows to clear a whole array, resetting all the elements
to a default value.
*/
/*#
@method fill Array
@brief Fills the array with the given element.
@param item The item to be replicated.
@return This array.
This method allows to clear a whole array, resetting all the elements
to a default value.
*/
FALCON_FUNC mth_arrayFill ( ::Falcon::VMachine *vm )
{
Item *i_array;
Item *i_item;
if ( vm->self().isMethodic() )
{
i_array = &vm->self();
i_item = vm->param(0);
}
else
{
i_array = vm->param(0);
i_item = vm->param(1);
}
if ( i_array == 0 || ! i_array->isArray()
|| i_item == 0 )
{
throw new ParamError( ErrorParam( e_inv_params, __LINE__ )
.origin( e_orig_runtime )
.extra( vm->self().isMethodic() ? "X" : "A,X" ) );
}
CoreArray *array = i_array->asArray();
for ( uint32 i = 0; i < array->length(); i ++ )
{
if ( i_item->isString() )
(*array)[i] = new CoreString( *i_item->asString() );
else
(*array)[i] = *i_item;
}
vm->retval( array );
}
/*#
@function arrayResize
@brief Changes the size of the array.
@param array The array that will be resize.
@param newSize The new size for the array.
If the given size is smaller than the current size, the array is
shortened. If it's larger, the array is grown up to the desired size,
and the missing elements are filled by adding nil values.
*/
FALCON_FUNC mth_arrayResize ( ::Falcon::VMachine *vm )
{
Item *array_x;
Item *item_size;
if ( vm->self().isMethodic() )
{
array_x = &vm->self();
item_size = vm->param(0);
}
else
{
array_x = vm->param(0);
item_size = vm->param(1);
}
if ( array_x == 0 || array_x->type() != FLC_ITEM_ARRAY ||
item_size == 0 || !item_size->isOrdinal() )
{
throw new ParamError( ErrorParam( e_inv_params, __LINE__ )
.origin( e_orig_runtime )
.extra( vm->self().isMethodic() ? "N" : "A,N" ) );
}
CoreArray *array = array_x->asArray();
int64 size = item_size->forceInteger();
if ( size < 0 )
size = 0;
array->resize( (uint32) size );
}
/*#
@function arrayRemove
@brief Removes one or more elements in the array.
@param array The array from which items must be removed.
@param itemPos The position of the item to be removed, or the first of the items to be removed.
@optparam lastItemPos The last item to be removed, in range semantic.
Remove one item or a range of items. The size of the array is shortened accordingly.
The semantic of @b lastItemPos is the same as ranged access to the array.
*/
/*#
@method remove Array
@brief Removes one or more elements in the array.
@param itemPos The position of the item to be removed, or the first of the items to be removed.
@optparam lastItemPos The last item to be removed, in range semantic.
Remove one item or a range of items. The size of the array is shortened accordingly.
The semantic of @b lastItemPos is the same as ranged access to the array.
*/
FALCON_FUNC mth_arrayRemove( ::Falcon::VMachine *vm )
{
Item *array_x;
Item *item_start;
Item *item_end;
if ( vm->self().isMethodic() )
{
array_x = &vm->self();
item_start = vm->param(0);
item_end = vm->param(1);
}
else
{
array_x = vm->param(0);
item_start = vm->param(1);
item_end = vm->param(2);
}
if ( array_x == 0 || !array_x->isArray() ||
item_start == 0 || !item_start->isOrdinal() ||
(item_end != 0 && !item_end->isOrdinal() ) )
{
throw new ParamError( ErrorParam( e_inv_params, __LINE__ )
.origin( e_orig_runtime )
.extra( vm->self().isMethodic() ? "N,[N]" : "A,N,[N]" ) );
}
CoreArray *array = array_x->asArray();
int32 pos = (int32) item_start->forceInteger();
bool res;
if ( item_end != 0 ) {
int32 posLast = (int32) item_end->forceInteger();
res = array->remove( pos, posLast );
}
else
res = array->remove( pos );
if ( ! res ) {
throw new AccessError( ErrorParam( e_arracc, __LINE__ ).
origin( e_orig_runtime ) );
}
}
/*#
@function arrayBuffer
@brief Creates an array filled with nil items.
@param size The length of the returned array.
@optparam defItem The default item to be that will fill the array.
@return An array filled with @b size nil elements.
This function is useful when the caller knows the number of needed items. In
this way, it is just necessary to set the various elements to their values,
rather than adding them to the array. This will result in faster operations.
If @b defItem is not given, the elements in the returned array will be set to
nil, otherwise each element will be a flat copy of @b item.
*/
FALCON_FUNC arrayBuffer ( ::Falcon::VMachine *vm )
{
Item *item_size = vm->param(0);
Item *i_item = vm->param(1);
if ( item_size == 0 || ! item_size->isOrdinal() )
{
throw new ParamError( ErrorParam( e_inv_params, __LINE__ )
.origin( e_orig_runtime )
.extra( "N,[X]" ) );
}
uint32 nsize = (uint32) item_size->forceInteger();
CoreArray *array = new CoreArray;
array->resize( nsize );
if( i_item != 0 )
{
for ( uint32 i = 0; i < nsize; i++ ) {
array->items()[i] = *i_item;
}
}
vm->retval( array );
}
/*#
@function arrayCompact
@brief Reduces the memory used by an array.
@param array The array itself.
@return Itself
Normally, array operations, as insertions, additions and so on
cause the array to grow to accommodate items that may come in the future.
Also, reducing the size of an array doesn't automatically dispose of the
memory held by the array to store its elements.
This function grants that the memory used by the array is strictly the
memory needed to store its data.
*/
/*#
@method compact Array
@brief Reduces the memory used by an array.
@return Itself
Normally, array operations, as insertions, additions and so on
cause the array to grow to accommodate items that may come in the future.
Also, reducing the size of an array doesn't automatically dispose of the
memory held by the array to store its elements.
This method grants that the memory used by the array is strictly the
memory needed to store its data.
*/
FALCON_FUNC mth_arrayCompact ( ::Falcon::VMachine *vm )
{
Item *array_x;
if ( vm->self().isMethodic() )
{
array_x = &vm->self();
}
else
{
array_x = vm->param(0);
if ( array_x == 0 || !array_x->isArray() )
{
throw new ParamError( ErrorParam( e_inv_params, __LINE__ )
.origin( e_orig_runtime )
.extra( "A" ) );
}
}
array_x->asArray()->items().compact();
vm->retval( *array_x );
}
/*#
@function arrayCopy
@brief Copies an array into another array.
@param dest The destination array.
@param from Starting position in the destination array.
@param src The source array.
@param first Starting position in the source array.
@optparam amount Optional The number of items to be copied.
@raise AccessError @b from is greater than the length of the destination array
or @b first is greater than the length of the source array.
Copies the source array, starting from the specified position, to the specified
position of the destination array.
*/
/*#
@method copyFrom Array
@brief Copies an array into another array.
@param from Starting position in the array.
@param src The source array.
@param first Starting position in the source array.
@optparam amount Optional The number of items to be copied.
@raise AccessError @b from is greater than the length of the array or
@b first is greater than the length of the source array.
Copies the source array, starting from the specified position, to the specified
position of the array.
*/
FALCON_FUNC mth_arrayCopy( ::Falcon::VMachine *vm )
{
Item *dest_i;
Item *from_i;
Item *src_i;
Item *first_i;
Item *amount_i;
if( vm->self().isMethodic() )
{
dest_i = &vm->self();
from_i = vm->param( 0 );
src_i = vm->param( 1 );
first_i = vm->param( 2 );
amount_i = vm->param( 3 );
}
else
{
dest_i = vm->param( 0 );
from_i = vm->param( 1 );
src_i = vm->param( 2 );
first_i = vm->param( 3 );
amount_i = vm->param( 4 );
}
if ( dest_i == 0 || !dest_i->isArray()
|| from_i == 0 || !from_i->isOrdinal()
|| src_i == 0 || !src_i->isArray()
|| first_i == 0 || !first_i->isOrdinal()
|| ( amount_i != 0 && !amount_i->isOrdinal() ) )
{
throw new ParamError( ErrorParam( e_inv_params, __LINE__ )
.origin( e_orig_runtime )
.extra( vm->self().isMethodic() ? "N,A,N,[N]" : "A,N,A,N,[N]" ) );
}
CoreArray *src = src_i->asArray();
if ( src->length() == 0 ) return;
CoreArray *dest = dest_i->asArray();
int32 from = (int32) ( from_i->asInteger() );
int32 first = (int32) ( first_i->asInteger() );
int32 amount = (int32) ( amount_i == 0 ? src->length() : amount_i->asInteger() );
if ( ! dest->items().copyOnto( from, src->items(), first, amount ) ) {
throw new AccessError( ErrorParam( e_arracc, __LINE__ )
.origin( e_orig_runtime ) );
}
}
/*#
@function arrayHead
@brief Extracts the first element of an array and returns it.
@param array The array that will be modified.
@return The extracted item.
@raise AccessError if the array is empty.
This function removes the first item of the array and returns it.
If the original array is empty, AccessError is raised.
@see Array.front
@see Array.head
*/
/*#
@method head Array
@brief Extracts the first element from this array and returns it.
@return The extracted item.
@raise AccessError if the array is empty.
This function removes the first item from the array and returns it.
If the original array is empty, AccessError is raised.
@see Array.front
*/
FALCON_FUNC mth_arrayHead ( ::Falcon::VMachine *vm )
{
Item *array_x;
if( vm->self().isMethodic() )
{
array_x = &vm->self();
}
else
{
array_x = vm->param(0);
if ( array_x == 0 || ! array_x->isArray() ) {
throw new ParamError( ErrorParam( e_inv_params, __LINE__ ).
origin( e_orig_runtime ).extra( "A" ) );
}
}
CoreArray *array = array_x->asArray();
if ( array->length() == 0 )
{
throw new AccessError( ErrorParam( e_inv_params, __LINE__ ).
origin( e_orig_runtime ).extra( vm->moduleString( rtl_emptyarr ) ) );
return;
}
vm->retval( array->at(0) );
array->remove(0);
}
/*#
@function arrayTail
@brief Extracts the last element of an array and returns it.
@param array The array that will be modified.
@return The extracted item.
This function removes the last item of the array and returns it.
If the original array is empty, AccessError is raised.
*/
/*#
@method tail Array
@brief Extracts the last element of an array and returns it.
@return The extracted item.
This function removes the last item of the array and returns it.
If the original array is empty, AccessError is raised.
*/
FALCON_FUNC mth_arrayTail ( ::Falcon::VMachine *vm )
{
Item *array_x;
if( vm->self().isMethodic() )
{
array_x = &vm->self();
}
else
{
array_x = vm->param(0);
if ( array_x == 0 || ! array_x->isArray() ) {
throw new ParamError( ErrorParam( e_inv_params, __LINE__ ).
origin( e_orig_runtime ).extra( "A" ) );
}
}
CoreArray *array = array_x->asArray();
if ( array->length() == 0 )
{
throw new AccessError( ErrorParam( e_inv_params, __LINE__ ).
origin( e_orig_runtime ).extra( vm->moduleString( rtl_emptyarr ) ) );
return;
}
vm->retval( array->at(array->length()-1) );
array->remove(array->length()-1);
}
/*#
@function arrayFind
@brief Searches for a given item in an array.
@param array The array that will be searched.
@param item The array that will be searched.
@optparam start Optional first element to be searched.
@optparam end Optional last element +1 to be searched.
@return The position of the searched item in the array, or -1 if not found.
This function searches the array for a given item (or for an item considered
equivalent to the given one). If that item is found, the item position is
returned, else -1 is returned.
An optional range may be specified to limit the search in the interval start
included, end excluded.
*/
/*#
@method find Array
@brief Searches for a given item in an array.
@param item The array that will be searched.
@optparam start Optional first element to be searched.
@optparam end Optional last element +1 to be searched.
@return The position of the searched item in the array, or -1 if not found.
This function searches the array for a given item (or for an item considered
equivalent to the given one). If that item is found, the item position is
returned, else -1 is returned.
An optional range may be specified to limit the search in the interval start
included, end excluded.
*/
FALCON_FUNC mth_arrayFind ( ::Falcon::VMachine *vm )
{
Item *array_x;
Item *item;
Item *start;
Item *end;
if ( vm->self().isMethodic() )
{
array_x = &vm->self();
item = vm->param(0);
start = vm->param(1);
end = vm->param(2);
}
else
{
array_x = vm->param(0);
item = vm->param(1);
start = vm->param(2);
end = vm->param(3);
}
if ( array_x == 0 || ! array_x->isArray()
|| item == 0
|| (start != 0 && ! start->isOrdinal())
|| ( end != 0 && ! end->isOrdinal() )
)
{
throw new ParamError( ErrorParam( e_inv_params, __LINE__ )
.origin( e_orig_runtime )
.extra( vm->self().isMethodic() ? "X,[N],[N]" : "A,X,[N],[N]" ) );
}
CoreArray *array = array_x->asArray();
// can find nothing in an empty array
if ( array->length() == 0 ) {
vm->retval( -1 );
return;
}
int32 pos_start = (int32) (start == 0 ? 0 : start->asInteger());
int32 pos_end = (int32) (end == 0 ? array->length() : end->asInteger());
if ( pos_start > pos_end )
{
int32 temp = pos_start;
pos_start = pos_end;
pos_end = temp;
}
if ( pos_start < 0 || pos_start >= (int32) array->length() || pos_end > (int32) array->length()) {
throw new AccessError( ErrorParam( e_arracc, __LINE__ ).
origin( e_orig_runtime ) );
return;
}
const ItemArray& elements = array->items();
for( int32 i = pos_start; i < pos_end; i++ )
{
if ( elements[i] == *item )
{
vm->retval(i);
return;
}
}
vm->retval(-1);
}
/*#
@function arrayScan
@brief Searches an array for an item satisfying arbitrary criteria.
@param array The array that will be searched.
@param func Function that verifies the criterion.
@optparam start Optional first element to be searched.
@optparam end Optional upper end of the range..
@return The position of the searched item in the array, or -1 if not found.
With this function, it is possible to specify an arbitrary search criterion.
The items in the array are fed one after another as the single parameter to the
provided scanFunc, which may be any Falcon callable item, including a method. If
the scanFunc returns true, the scan is interrupted and the index of the item is
returned. If the search is unsuccessful, -1 is returned.
An optional start parameter may be provided to begin searching from a certain
point on. If also an end parameter is given, the search is taken between start
included and end excluded (that is, the search terminates when at the element
before the position indicated by end).
Scan function is called in atomic mode. The called function cannot be
interrupted by external kind requests, and it cannot sleep or yield the
execution to other coroutines.
*/
/*#
@method scan Array
@brief Searches an array for an item satisfying arbitrary criteria.
@param func Function that verifies the criterion.
@optparam start Optional first element to be searched.
@optparam end Optional upper end of the range.
@return The position of the searched item in the array, or -1 if not found.
@see arrayScan
*/
FALCON_FUNC mth_arrayScan ( ::Falcon::VMachine *vm )
{
Item *array_x;
Item *func_x;
Item *start;
Item *end;
if ( vm->self().isMethodic() )
{
array_x = &vm->self();
func_x = vm->param(0);
start = vm->param(1);
end = vm->param(2);
}
else
{
array_x = vm->param(0);
func_x = vm->param(1);
start = vm->param(2);
end = vm->param(3);
}
if ( array_x == 0 || ! array_x->isArray()
|| func_x == 0 || ! func_x->isCallable()
|| (start != 0 && ! start->isOrdinal())
|| ( end != 0 && ! end->isOrdinal() )
)
{
throw new ParamError( ErrorParam( e_inv_params, __LINE__ )
.origin( e_orig_runtime )
.extra( vm->self().isMethodic() ? "C,[N],[N]" : "A,C,[N],[N]" ) );
}
CoreArray *array = array_x->asArray();
// can find nothing in an empty array
if ( array->length() == 0 ) {
vm->retval( -1 );
return;
}
int32 pos_start = (int32) (start == 0 ? 0 : start->asInteger());
int32 pos_end = (int32) (end == 0 ? array->length() : end->asInteger());
if ( pos_start > pos_end )
{
int32 temp = pos_start;
pos_start = pos_end;
pos_end = temp;
}
if ( pos_start < 0 || pos_start >= (int32) array->length() ||
pos_end > (int32) array->length()) {
throw new AccessError( ErrorParam( e_arracc, __LINE__ ).
origin( e_orig_runtime ) );
}
const ItemArray& elements = array->items();
// fetching as we're going to change the stack
Item func = *func_x;
for( int32 i = pos_start; i < pos_end; i++ )
{
vm->pushParam( elements[i] );
vm->callItemAtomic( func, 1 );
if ( vm->regA().isTrue() ) {
vm->retval( i );
return;
}
}
vm->retval(-1);
}
#define MINMAL_QUICKSORT_THRESHOLD 4
inline void arraySort_swap( Item *a, int i, int j)
{
Item T = a[i];
a[i] = a[j];
a[j] = T;
}
static void arraySort_quickSort( Item *array, int32 l, int32 r )
{
int32 i;
int32 j;
Item v;
if ( ( r-l ) > MINMAL_QUICKSORT_THRESHOLD )
{
i = ( r + l ) / 2;
if ( array[l] > array[i] ) arraySort_swap( array, l , i );
if ( array[l] > array[r] ) arraySort_swap( array , l, r );
if ( array[i] > array[r] ) arraySort_swap( array, i, r );
j = r - 1;
arraySort_swap( array , i, j );
i = l;
v = array[j];
for(;;)
{
while( array[++i] < v );
while( array[--j] > v );
if ( j < i ) break;
arraySort_swap ( array , i , j );
}
arraySort_swap( array , i, r - 1 );
arraySort_quickSort( array, l , j );
arraySort_quickSort( array, i + 1 , r );
}
}
static void arraySort_insertionSort( VMachine *vm, Item *array, int lo0, int hi0)
{
int32 i;
int32 j;
Item v;
for ( i = lo0 + 1 ; i <= hi0 ; i++ )
{
v = array[i];
j = i;
while ( ( j > lo0 ) && ( array[j-1] > v ) )
{
array[j] = array[j-1];
j--;
}
array[j] = v;
}
}
static void arraySort_quickSort_flex( VMachine *vm, Item *comparer, Item *array, int32 l, int32 r )
{
int32 i;
int32 j;
Item v;
if ( ( r-l ) > MINMAL_QUICKSORT_THRESHOLD )
{
i = ( r + l ) / 2;
vm->pushParam( array[l] );
vm->pushParam( array[i] );
vm->callItemAtomic( *comparer, 2 );
if ( vm->regA().asInteger() > 0 ) arraySort_swap( array, l , i );
vm->pushParam( array[l] );
vm->pushParam( array[r] );
vm->callItemAtomic( *comparer, 2 );
if ( vm->regA().asInteger() > 0 ) arraySort_swap( array , l, r );
vm->pushParam( array[i] );
vm->pushParam( array[r] );
vm->callItemAtomic( *comparer, 2 );
if ( vm->regA().asInteger() > 0 ) arraySort_swap( array, i, r );
j = r - 1;
arraySort_swap( array, i, j );
i = l;
v = array[j];
for(;;)
{
do {
vm->pushParam( array[++i] );
vm->pushParam( v );
vm->callItemAtomic( *comparer, 2 );
}
while( vm->regA().asInteger() < 0 );
do {
vm->pushParam( array[--j] );
vm->pushParam( v );
vm->callItemAtomic( *comparer, 2 );
}
while( vm->regA().asInteger() > 0 );
if ( j < i ) break;
arraySort_swap ( array , i , j );
}
arraySort_swap( array , i, r - 1 );
arraySort_quickSort( array, l , j );
arraySort_quickSort( array, i + 1 , r );
}
}
static void arraySort_insertionSort_flex( VMachine *vm, Item *comparer, Item *array, int lo0, int hi0)
{
int32 i;
int32 j;
Item v;
for ( i = lo0 + 1 ; i <= hi0 ; i++ )
{
v = array[i];
j = i;
while ( j > lo0 )
{
vm->pushParam( array[j-1] );
vm->pushParam( v );
vm->callItemAtomic( *comparer, 2 );
if ( vm->regA().asInteger() <= 0 )
break;
array[j] = array[j-1];
j--;
}
array[j] = v;
}
}
/*#
@function arraySort
@brief Sorts an array, possibly using an arbitrary ordering criterion.
@param array The array that will be searched.
@optparam sortingFunc A function used to compare two items.
The function sorts the contents of the array so that the first element is the
smaller one, and the last element is the bigger one. String sorting is performed
lexicographically. To sort the data based on an arbitrary criterion, or to sort
complex items, or objects, based on some of their contents, the caller may
provide a sortFunc that will receive two parameters. The sortFunc must return -1
if the first parameter is be considered greater than the second, 0 if they
are equal and 1 if the second parameter is to be considered greater.
Sort function is called in atomic mode. The called function cannot be
interrupted by external kind requests, and it cannot sleep or yield the
execution to other coroutines.
*/
/*#
@method sort Array
@brief Sorts an array, possibly using an arbitrary ordering criterion.
@optparam sortingFunc A function used to compare two items.
@see arraySort
*/
FALCON_FUNC mth_arraySort( ::Falcon::VMachine *vm )
{
Item *array_itm;
Item *sorter_itm;
if( vm->self().isMethodic() )
{
array_itm = &vm->self();
sorter_itm = vm->param( 0 );
}
else
{
array_itm = vm->param( 0 );
sorter_itm = vm->param( 1 );
}
if ( array_itm == 0 || ! array_itm->isArray()
|| (sorter_itm != 0 && ! sorter_itm->isCallable())
)
{
throw new ParamError( ErrorParam( e_inv_params, __LINE__ ).
origin( e_orig_runtime ).
extra( vm->self().isMethodic() ? "C" : "A,C" ) );
}
CoreArray *array = array_itm->asArray();
Item *vector = array->items().elements();
if ( sorter_itm == 0 )
{
arraySort_quickSort( vector, 0, array->length() - 1 );
arraySort_insertionSort( vm, vector, 0, array->length() -1 );
}
else {
// fetching as we're going to change the stack
Item sorter = *sorter_itm;
arraySort_quickSort_flex( vm, &sorter, vector, 0, array->length() - 1 );
arraySort_insertionSort_flex( vm, &sorter, vector, 0, array->length() -1 );
}
}
/*#
@function arrayMerge
@brief Merges two arrays.
@param array1 Array containing the first half of the merge, that will be modified.
@param array2 Array containing the second half of the merge, read-only
@optparam insertPos Optional position of array 1 at which to place array2
@optparam start First element of array2 to merge in array1
@optparam end Last element - 1 of array2 to merge in array1
The items in array2 are appended to the end of array1, or in case an mergePos
is specified, they are inserted at the given position. If mergePos is 0, they
are inserted at beginning of array1, while if it's equal to array1 size they are
appended at the end. An optional start parameter may be used to specify the
first element in the array2 that must be copied in array1; if given, the
parameter end will specify the last element that must be copied plus 1; that is
elements are copied from array2 in array1 from start to end excluded.
The items are copied shallowly. This means that if an object is in array2 and
it's modified thereafter, both array2 and array1 will grant access to the
modified object.
*/
/*#
@method merge Array
@brief Merges the given array into this one.
@param array Array containing the second half of the merge, read-only
@optparam insertPos Optional position of array 1 at which to place array2
@optparam start First element of array to merge in this array
@optparam end Last element - 1 of array2 to merge in this array
@see arrayMerge
*/
FALCON_FUNC mth_arrayMerge( ::Falcon::VMachine *vm )
{
Item *first_i, *second_i, *from_i, *start_i, *end_i;
if( vm->self().isMethodic() )
{
first_i = &vm->self();
second_i = vm->param( 0 );
from_i = vm->param( 1 );
start_i = vm->param( 2 );
end_i = vm->param( 3 );
}
else
{
first_i = vm->param( 0 );
second_i = vm->param( 1 );
from_i = vm->param( 2 );
start_i = vm->param( 3 );
end_i = vm->param( 4 );
}
if ( first_i == 0 || ! first_i->isArray()
|| second_i == 0 || ! second_i->isArray()
|| ( from_i != 0 && ! from_i->isOrdinal() ) ||
( start_i != 0 && ! start_i->isOrdinal() ) ||
( end_i != 0 && ! end_i->isOrdinal() ) )
{
throw new ParamError( ErrorParam( e_inv_params, __LINE__ )
.origin( e_orig_runtime )
.extra( vm->self().isMethodic() ? "A,[N],[N],[N]" : "A,A,[N],[N],[N]" ) );
}
CoreArray *first = first_i->asArray();
CoreArray *second = second_i->asArray();
int64 from = from_i == 0 ? first->length(): from_i->forceInteger();
int64 start = start_i == 0 ? 0 : start_i->forceInteger();
int64 end = end_i == 0 ? second->length() : end_i->forceInteger();
bool val;
if( start == 0 && end == second->length() )
{
val = first->change( *second, (int32) from, (int32) from );
}
else {
//TODO: partition on an array
CoreArray *third = second->partition( (int32)start, (int32)end );
third->mark( vm->generation() );
if ( third == 0 ) {
throw new AccessError( ErrorParam( e_arracc, __LINE__ ).
origin( e_orig_runtime ) );
}
val = first->change( *third, (int32) from, (int32) from );
}
if ( ! val ) {
throw new AccessError( ErrorParam( e_arracc, __LINE__ ).
origin( e_orig_runtime ).extra( Engine::getMessage( rtl_start_outrange ) ) );
}
}
/*#
@function arrayNM
@brief Force an array to be non-method.
@param array the array that should not be transformed into a method.
@return The same array passed as parameter.
Callable arrays stored in objects become methods when they are accessed.
At times, this is not desirable. Suppose it is necessary to store a list
of items, possibly functions, in an object, and that random access is needed.
In this case, an array is a good storage, but it's useful to tell Falcon
that this array is never to be considered a method for the host object.
Consider the following case:
@code
class WithArrays( a )
asMethod = a
asArray= arrayNM( a.clone() ) // or a.clone().NM()
end
wa = WithArrays( [ printl, 'hello' ] )
// this is ok
for item in wa.asArray: > "Item in this array: ", item
// this will raise an error
for item in wa.asMethod: > "Item in this array: ", item
@endcode
The array is cloned in this example as the function modifies
the array itself, which becomes non-methodic, and returns it
without copying it. So, if not copied, in this example also
asMethod would have been non-methodic.
*/
/*#
@method NM Array
@brief Force an array to be non-method.
@return The This array
@see arrayNM
*/
FALCON_FUNC mth_arrayNM( ::Falcon::VMachine *vm )
{
Item *i_array;
if( vm->self().isMethodic() )
{
i_array = &vm->self();
}
else
{
i_array = vm->param(0);
if ( i_array == 0 || ! i_array->isArray() )
{
throw new ParamError( ErrorParam( e_inv_params, __LINE__ )
.origin( e_orig_runtime )
.extra( "A" ) );
}
}
CoreArray *array = i_array->asArray();
array->canBeMethod(false);
vm->retval( array );
}
}}
/* end of array_ext.cpp */
|