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 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005
|
/*
* File: sidlPyArrays.c
* Copyright: (c) 2001 The Regents of the University of California
* Revision: @(#) $Revision: 4434 $
* Date: $Date: 2005-03-17 09:05:29 -0800 (Thu, 17 Mar 2005) $
* Description: Runtime support routines to convert sidl arrays to/from Python
*
* This file provides functions to convert sidl arrays to Python with or
* without borrowing data and functions to convert Python arrays to sidl
* with or without borrowing. When borrowing data is not possible, data
* is copied.
* Copyright (c) 2000-2001, The Regents of the University of Calfornia.
* Produced at the Lawrence Livermore National Laboratory.
* Written by the Components Team <components@llnl.gov>
* UCRL-CODE-2002-054
* All rights reserved.
*
* This file is part of Babel. For more information, see
* http://www.llnl.gov/CASC/components/. Please read the COPYRIGHT file
* for Our Notice and the LICENSE file for the GNU Lesser General Public
* License.
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License (as published by
* the Free Software Foundation) version 2.1 dated February 1999.
*
* 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 terms and
* conditions of the GNU Lesser General Public License for more details.
*
* You should have recieved a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#define sidlPyArrays_MODULE 1
#include "sidlPyArrays.h"
#include "sidlObjA.h"
#include "sidlArray.h"
#include "sidl_bool_IOR.h"
#include "sidl_char_IOR.h"
#include "sidl_dcomplex_IOR.h"
#include "sidl_double_IOR.h"
#include "sidl_fcomplex_IOR.h"
#include "sidl_float_IOR.h"
#include "sidl_int_IOR.h"
#include "sidl_long_IOR.h"
#include "sidl_opaque_IOR.h"
#include "sidl_string_IOR.h"
#include "sidl_interface_IOR.h"
#include "sidl_BaseInterface_IOR.h"
/* include Numerical Python header file */
#include "Numeric/arrayobject.h"
#include <stdlib.h>
#include <string.h>
/* Python specializations of the basic array types */
struct sidl__array *
sidl_python_smartCp(struct sidl__array *array) {
sidl__array_addRef(array);
return array;
}
#define specialized_array(sidlType, cType) \
struct sidl_python_## sidlType ##_array { \
struct sidl_## sidlType ##__array d_array; \
PyObject *d_numarray; \
}; \
\
void sidl_python_## sidlType ##_destroy(struct sidl__array *array) \
{ \
if (array) { \
struct sidl_python_## sidlType ##_array *parray = \
(struct sidl_python_## sidlType ##_array *)array; \
Py_XDECREF(parray->d_numarray); \
free((void *)array); \
} \
} \
\
static int32_t \
sidl_python_## sidlType ##_type(void) { \
return sidl_## sidlType ##_array; \
} \
\
static const struct sidl__array_vtable \
s_## sidlType ##_vtable = { \
sidl_python_## sidlType ##_destroy, \
sidl_python_smartCp, \
sidl_python_## sidlType ##_type \
}; \
\
static struct sidl_## sidlType ##__array * \
sidl_python_## sidlType ##_create(const int32_t dimen, \
const int32_t lower[], \
const int32_t upper[], \
const int32_t stride[], \
cType *first, \
PyObject *pyobj) { \
static const size_t arraySize = \
sizeof(struct sidl_python_## sidlType ##_array) + \
(sizeof(int32_t) - \
(sizeof(struct sidl_python_## sidlType ##_array) \
% sizeof(int32_t))) % sizeof(int32_t); \
struct sidl_python_## sidlType ##_array *result = \
(struct sidl_python_## sidlType ##_array *)malloc \
(arraySize + 3 * sizeof(int32_t) * dimen); \
if (result) { \
result->d_array.d_metadata.d_vtable = &s_## sidlType ##_vtable; \
result->d_array.d_metadata.d_dimen = dimen; \
result->d_array.d_metadata.d_refcount = 1; \
result->d_array.d_metadata.d_lower = (int32_t *) \
((char *)result + arraySize); \
result->d_array.d_metadata.d_upper = \
result->d_array.d_metadata.d_lower + dimen; \
result->d_array.d_metadata.d_stride = \
result->d_array.d_metadata.d_upper + dimen; \
memcpy(result->d_array.d_metadata.d_lower, \
lower,sizeof(int32_t)*dimen); \
memcpy(result->d_array.d_metadata.d_upper, \
upper,sizeof(int32_t)*dimen); \
memcpy(result->d_array.d_metadata.d_stride, \
stride,sizeof(int32_t)*dimen); \
result->d_array.d_firstElement = first; \
Py_XINCREF(pyobj); \
result->d_numarray = pyobj; \
} \
return (struct sidl_## sidlType ##__array *)result; \
}
specialized_array(bool,sidl_bool)
specialized_array(char,char)
specialized_array(dcomplex,struct sidl_dcomplex)
specialized_array(double,double)
specialized_array(fcomplex,struct sidl_fcomplex)
specialized_array(float,float)
specialized_array(int,int32_t)
specialized_array(long,int64_t)
typedef struct {
PyObject_HEAD
struct sidl__array *d_array;
} SIDLArrayObject;
static void
sao_dealloc(SIDLArrayObject* self)
{
if (self->d_array) sidl__array_deleteRef(self->d_array);
self->ob_type->tp_free((PyObject*)self);
}
static PyObject *
sao_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
{
SIDLArrayObject* self;
self = (SIDLArrayObject *)type->tp_alloc(type, 0);
if (self) self->d_array = NULL;
return (PyObject *)self;
}
static PyTypeObject sidlPyArrayType = {
PyObject_HEAD_INIT(NULL)
0, /* ob_size*/
"sidlPyArrays.SIDLArrayWrapper", /* tp_name */
sizeof(SIDLArrayObject), /* tp_basicsize */
0, /* tp_itemsize */
(destructor)sao_dealloc, /* tp_dealloc*/
0, /* tp_print*/
0, /* tp_getattr*/
0, /* tp_setattr*/
0, /* tp_compare*/
0, /* tp_repr*/
0, /* tp_as_number*/
0, /* tp_as_sequence*/
0, /* tp_as_mapping*/
0, /* tp_hash */
0, /* tp_call*/
0, /* tp_str*/
0, /* tp_getattro*/
0, /* tp_setattro*/
0, /* tp_as_buffer*/
Py_TPFLAGS_DEFAULT, /* tp_flags*/
"Python type to wrap up SIDL arrays. Not useful to end users.", /* tp_doc */
0, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
0, /* tp_iter */
0, /* tp_iternext */
0, /* tp_methods */
0, /* tp_members */
0, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
0, /* tp_init */
0, /* tp_alloc */
sao_new, /* tp_new */
};
#define sao_Check(op) ((op)->ob_type == &sidlPyArrayType)
/**
* Convert the array description information from the Numerical Python array
* into a form that sidl likes. sidl needs a vector of lower and upper
* index bounds, and a vector holding the stride.
*/
sidl_array__extract_python_info_RETURN
sidl_array__extract_python_info sidl_array__extract_python_info_PROTO
{
if (PyArray_Check(pya)) {
const PyArrayObject *array = (PyArrayObject *)pya;
if (array->nd >= 0) {
/* a zero dimensional Python array is like a scalar */
const int32_t dimen = array->nd ? array->nd : 1;
int32_t i;
if (dimen > SIDL_MAX_ARRAY_DIMENSION) return 0;
*dimension = dimen;
lower[0] = upper[0] = 0;
stride[0] = 1;
for(i = 0; i < array->nd; ++i) {
lower[i] = 0;
upper[i] = array->dimensions[i] - 1;
stride[i] = array->strides[i]/array->descr->elsize;
if ((array->strides[i] % array->descr->elsize) != 0) {
return 0;
}
}
return 1;
}
}
return 0;
}
/**
* Return a true value iff the array is contiguous and in column-major order
* (i.e. like FORTRAN).
*
* stride the stride for each dimension in bytes.
* numelem the number of elements in each dimension.
* dim the number of dimensions.
* elsize the element size in bytes.
*/
static int
columnMajorOrder(const int stride[],
const int32_t numelem[],
const int32_t dim,
const int32_t elsize)
{
int32_t dimStride = elsize, i;
for(i = 0; i < dim; ++i) {
if (stride[i] != dimStride) return FALSE;
dimStride *= numelem[i];
}
return TRUE;
}
/**
* Return a true value iff the array is contiguous and in row-major order
* (i.e. like C).
*
* stride the stride for each dimension in bytes.
* numelem the number of elements in each dimension.
* dim the number of dimensions.
* elsize the element size in bytes.
*/
static int
rowMajorOrder(const int stride[],
const int32_t numelem[],
const int32_t dim,
const int32_t elsize)
{
int dimStride = elsize, i;
for(i = dim - 1; i >= 0; --i) {
if (stride[i] != dimStride) return FALSE;
dimStride *= numelem[i];
}
return TRUE;
}
/**
* Return the number elements in the array times elsize. If elsize is the
* element size in bytes, this will return the size of the array in bytes.
* If elsize is 1, this returns the number of elements in the array.
*
* numelem the number of elements in each dimension. Array of dim
* integers.
* dim the number of dimensions.
* elsize to get the size of the array in bytes, pass in the
* size of an element in bytes. To get the number of
* elements, pass in 1.
*/
static size_t
arraySize(const int32_t numelem[],
const int32_t dim,
const int32_t elsize)
{
size_t result = 0;
if (dim > 0) {
int i;
result = elsize;
for(i = 0; i < dim; ++i) {
result *= numelem[i];
}
}
return result;
}
/**
* A parameterized function to copy one strided array into another.
*/
#define copyData_impl(name, type) \
static void copy_ ## name ## _data(char * /* restrict */ dest, \
const int dstride[], /* not int32_t */ \
const char * /* restrict */ src, \
const int sstride[], /* not int32_t */ \
const int32_t numelem[], \
const int32_t dim) \
{ \
size_t num = arraySize(numelem, dim, sizeof(type)); \
if (num > 0) { \
if ((columnMajorOrder(sstride, numelem, dim, sizeof(type)) && \
columnMajorOrder(dstride, numelem, dim, sizeof(type))) || \
(rowMajorOrder(sstride, numelem, dim, sizeof(type)) && \
rowMajorOrder(dstride, numelem, dim, sizeof(type)))) { \
memcpy(dest, src, num); \
} \
else { \
int32_t * /* restrict */ ind = malloc(sizeof(int32_t)*dim), i; \
memset(ind, 0, sizeof(int32_t)*dim); \
num /= sizeof(type); \
while (num--) { \
*((type * /* restrict */)dest) = *((const type * /* restrict */)src); \
for (i = 0; i < dim ; ++i) { \
dest += dstride[i]; \
src += sstride[i]; \
if (++(ind[i]) < numelem[i]) { \
break; \
} \
else { \
ind[i] = 0; \
dest -= (numelem[i]*dstride[i]); \
src -= (numelem[i]*sstride[i]); \
} \
} \
} \
free(ind); \
} \
} \
}
copyData_impl(bool, int)
copyData_impl(char, char)
copyData_impl(int, int32_t)
#if (SIZEOF_SHORT == 8) || (SIZEOF_INT == 8) || (SIZEOF_LONG == 8)
copyData_impl(long, int64_t)
#endif
copyData_impl(float, float)
copyData_impl(double, double)
copyData_impl(fcomplex, struct sidl_fcomplex)
copyData_impl(dcomplex, struct sidl_dcomplex)
static
struct sidl__array *
alreadySIDLArray(PyArrayObject *pya,
const size_t dataSize,
const int sidlArrayType,
const int orderEnum)
{
struct sidl__array *result = NULL;
if (pya->base && sao_Check(pya->base) &&
(sidl__array_type(((SIDLArrayObject *)(pya->base))->d_array) == sidlArrayType)) {
result = ((SIDLArrayObject *)(pya->base))->d_array;
{
const int32_t dimen = sidlArrayDim(result);
int i;
if ((dimen != pya->nd) ||
((sidl_column_major_order == orderEnum) &&
!sidl__array_isColumnOrder(result)) ||
((sidl_row_major_order == orderEnum) &&
!sidl__array_isRowOrder(result)))
return NULL;
/* check strides and extents */
for(i = 0; i < dimen; ++i) {
if (!((sidlStride(result, i)*dataSize == pya->strides[i]) &&
(sidlLength(result, i) == pya->dimensions[i]))) return NULL;
}
return sidl__array_smartCopy(result);
}
}
return result;
}
/*
* Parameterized function implementation to borrow a particular type
* array.
*/
#define sidl_borrow_impl(stype,dtype,pytype) \
{\
if (PyArray_Check(obj)) {\
PyArrayObject *pya = (PyArrayObject *)obj;\
if ((*array = (struct sidl_ ## stype ## __array *) \
alreadySIDLArray(pya, sizeof(dtype), sidl_ ## stype ## _array, sidl_general_order)))\
return 1;\
if (pytype == pya->descr->type_num) { \
int32_t dimension,\
lower[SIDL_MAX_ARRAY_DIMENSION],\
upper[SIDL_MAX_ARRAY_DIMENSION],\
stride[SIDL_MAX_ARRAY_DIMENSION];\
if (sidl_array__extract_python_info((PyObject *)pya, &dimension, \
lower, upper, stride)) {\
*array = sidl_python_ ## stype ## _create\
(dimension, lower, upper, stride, (dtype *)pya->data, \
(PyObject *)pya);\
return (*array != NULL);\
}\
}\
}\
return sidl_ ## stype ## __clone_python_array(obj, array);\
}
sidl_bool__borrow_python_array_RETURN
sidl_bool__borrow_python_array sidl_bool__borrow_python_array_PROTO
sidl_borrow_impl(bool, sidl_bool, PyArray_INT)
sidl_char__borrow_python_array_RETURN
sidl_char__borrow_python_array sidl_char__borrow_python_array_PROTO
{
if (PyArray_Check(obj)) {
PyArrayObject *pya = (PyArrayObject *)obj;
if ((*array = (struct sidl_char__array *)
alreadySIDLArray(pya, sizeof(char),
sidl_char_array,
sidl_general_order))) return 1;
if ((PyArray_CHAR == pya->descr->type_num) ||
(PyArray_UBYTE == pya->descr->type_num) ||
(PyArray_SBYTE == pya->descr->type_num)) {
int32_t dimension,
lower[SIDL_MAX_ARRAY_DIMENSION],
upper[SIDL_MAX_ARRAY_DIMENSION],
stride[SIDL_MAX_ARRAY_DIMENSION];
if (sidl_array__extract_python_info((PyObject *)pya, &dimension,
lower, upper, stride)) {
*array = sidl_python_char_create(dimension, lower, upper, stride,
(char *)pya->data, (PyObject*)pya);
return (*array != NULL);
}
}
}
return sidl_char__clone_python_array(obj, array);
}
sidl_dcomplex__borrow_python_array_RETURN
sidl_dcomplex__borrow_python_array sidl_dcomplex__borrow_python_array_PROTO
sidl_borrow_impl(dcomplex, struct sidl_dcomplex, PyArray_CDOUBLE)
sidl_double__borrow_python_array_RETURN
sidl_double__borrow_python_array sidl_double__borrow_python_array_PROTO
sidl_borrow_impl(double, double, PyArray_DOUBLE)
sidl_fcomplex__borrow_python_array_RETURN
sidl_fcomplex__borrow_python_array sidl_fcomplex__borrow_python_array_PROTO
sidl_borrow_impl(fcomplex, struct sidl_fcomplex, PyArray_CFLOAT)
sidl_float__borrow_python_array_RETURN
sidl_float__borrow_python_array sidl_float__borrow_python_array_PROTO
sidl_borrow_impl(float, float, PyArray_FLOAT)
sidl_int__borrow_python_array_RETURN
sidl_int__borrow_python_array sidl_int__borrow_python_array_PROTO
{
if (PyArray_Check(obj)) {
PyArrayObject *pya = (PyArrayObject *)obj;
if ((*array = (struct sidl_int__array *)
alreadySIDLArray(pya, sizeof(int32_t),
sidl_int_array, sidl_general_order))) return 1;
if (0
#if SIZEOF_SHORT == 4
|| (PyArray_SHORT == pya->descr->type_num)
#ifdef PyArray_UNSIGNED_TYPES
|| (PyArray_USHORT == pya->descr->type_num)
#endif
#endif
#if SIZEOF_INT == 4
|| (PyArray_INT == pya->descr->type_num)
#ifdef PyArray_UNSIGNED_TYPES
|| (PyArray_UINT == pya->descr->type_num)
#endif
#endif
#if SIZEOF_LONG == 4
|| (PyArray_LONG == pya->descr->type_num)
#endif
) {
int32_t dimension, lower[SIDL_MAX_ARRAY_DIMENSION],
upper[SIDL_MAX_ARRAY_DIMENSION],
stride[SIDL_MAX_ARRAY_DIMENSION];
if (sidl_array__extract_python_info((PyObject *)pya, &dimension,
lower, upper, stride)) {
*array = sidl_python_int_create(dimension, lower, upper, stride,
(int32_t *)pya->data, (PyObject*)pya);
return (*array != NULL);
}
}
}
return sidl_int__clone_python_array(obj, array);
}
sidl_long__borrow_python_array_RETURN
sidl_long__borrow_python_array sidl_long__borrow_python_array_PROTO
{
if (PyArray_Check(obj)) {
PyArrayObject *pya = (PyArrayObject *)obj;
if ((*array = (struct sidl_long__array *)
alreadySIDLArray(pya, sizeof(int64_t),
sidl_long_array, sidl_general_order))) return 1;
if (0
#if SIZEOF_SHORT == 8
|| (PyArray_SHORT == pya->descr->type_num)
#ifdef PyArray_UNSIGNED_TYPES
|| (PyArray_USHORT == pya->descr->type_num)
#endif
#endif
#if SIZEOF_INT == 8
|| (PyArray_INT == pya->descr->type_num)
#ifdef PyArray_UNSIGNED_TYPES
|| (PyArray_UINT == pya->descr->type_num)
#endif
#endif
#if SIZEOF_LONG == 8
|| (PyArray_LONG == pya->descr->type_num)
#endif
) {
int32_t dimension, lower[SIDL_MAX_ARRAY_DIMENSION],
upper[SIDL_MAX_ARRAY_DIMENSION],
stride[SIDL_MAX_ARRAY_DIMENSION];
if (sidl_array__extract_python_info((PyObject *)pya, &dimension,
lower, upper, stride)) {
*array = sidl_python_long_create(dimension, lower, upper, stride,
(int64_t *)pya->data, (PyObject*)pya);
return (*array != NULL);
}
}
}
return sidl_long__clone_python_array(obj, array);
}
sidl_string__borrow_python_array_RETURN
sidl_string__borrow_python_array sidl_string__borrow_python_array_PROTO
{
return sidl_string__clone_python_array(obj,array);
}
sidl_opaque__borrow_python_array_RETURN
sidl_opaque__borrow_python_array sidl_opaque__borrow_python_array_PROTO
{
return sidl_opaque__clone_python_array(obj,array);
}
/*
* Parameterized implementation of a clone function.
*/
#define ClonePython_impl(sidlname, sidltype, pyarraytype, order, orderenum) \
{ \
int result = 0; \
*array = 0; \
if (obj == Py_None) { \
result = 1; \
} \
else { \
PyArrayObject *pya = \
(PyArrayObject *)PyArray_FromObject(obj, pyarraytype, 0, 0); \
if (pya) { \
int32_t dimen,\
lower[SIDL_MAX_ARRAY_DIMENSION],\
upper[SIDL_MAX_ARRAY_DIMENSION],\
stride[SIDL_MAX_ARRAY_DIMENSION]; \
if ((*array = (struct sidl_ ## sidlname ## __array *) \
alreadySIDLArray(pya, sizeof(sidltype), \
sidl_ ## sidlname ## _array, orderenum))) { \
Py_DECREF(pya); \
return 1;\
}\
if (sidl_array__extract_python_info((PyObject *)pya, &dimen, \
lower, upper, stride)) { \
*array = \
sidl_ ## sidlname ## __array_create ## order(dimen, lower, upper); \
if (*array) { \
int *bytestride = malloc(sizeof(int)*dimen), i; \
int32_t *numelem = malloc(sizeof(int32_t)*dimen); \
for(i = 0; i < dimen; ++i){ \
numelem[i] = 1 + upper[i] - lower[i]; \
bytestride[i] = sizeof(sidltype)* \
sidlStride(*array, i); \
} \
copy_ ## sidlname ## _data((char *)((*array)->d_firstElement), \
bytestride, \
pya->data, \
pya->strides, \
numelem, \
dimen); \
free(numelem); \
free(bytestride); \
result = 1; \
} \
} \
Py_DECREF(pya); \
} \
} \
return result; \
}
sidl_bool__clone_python_array_column_RETURN
sidl_bool__clone_python_array_column sidl_bool__clone_python_array_column_PROTO
ClonePython_impl(bool, sidl_bool, PyArray_INT, Col, sidl_column_major_order)
sidl_char__clone_python_array_column_RETURN
sidl_char__clone_python_array_column sidl_char__clone_python_array_column_PROTO
ClonePython_impl(char, char, PyArray_CHAR, Col, sidl_column_major_order)
sidl_dcomplex__clone_python_array_column_RETURN
sidl_dcomplex__clone_python_array_column sidl_dcomplex__clone_python_array_column_PROTO
ClonePython_impl(dcomplex, struct sidl_dcomplex, PyArray_CDOUBLE, Col, sidl_column_major_order)
sidl_double__clone_python_array_column_RETURN
sidl_double__clone_python_array_column sidl_double__clone_python_array_column_PROTO
ClonePython_impl(double, double, PyArray_DOUBLE, Col, sidl_column_major_order)
sidl_fcomplex__clone_python_array_column_RETURN
sidl_fcomplex__clone_python_array_column sidl_fcomplex__clone_python_array_column_PROTO
ClonePython_impl(fcomplex, struct sidl_fcomplex, PyArray_CFLOAT, Col, sidl_column_major_order)
sidl_float__clone_python_array_column_RETURN
sidl_float__clone_python_array_column sidl_float__clone_python_array_column_PROTO
ClonePython_impl(float, float, PyArray_FLOAT, Col, sidl_column_major_order)
#if SIZEOF_SHORT == 4
sidl_int__clone_python_array_column_RETURN
sidl_int__clone_python_array_column sidl_int__clone_python_array_column_PROTO
ClonePython_impl(int, int32_t, PyArray_SHORT, Col, sidl_column_major_order)
#else
#if SIZEOF_INT == 4
sidl_int__clone_python_array_column_RETURN
sidl_int__clone_python_array_column sidl_int__clone_python_array_column_PROTO
ClonePython_impl(int, int32_t, PyArray_INT, Col, sidl_column_major_order)
#else
#if SIZEOF_LONG == 4
sidl_int__clone_python_array_column_RETURN
sidl_int__clone_python_array_column sidl_int__clone_python_array_column_PROTO
ClonePython_impl(int, int32_t, PyArray_LONG, Col, sidl_column_major_order)
#else
#error No 32-bit integer available.
#endif
#endif
#endif
#if SIZEOF_SHORT == 8
sidl_long__clone_python_array_column_RETURN
sidl_long__clone_python_array_column sidl_long__clone_python_array_column_PROTO
ClonePython_impl(long, int64_t, PyArray_SHORT, Col, sidl_column_major_order)
#else
#if SIZEOF_INT == 8
sidl_long__clone_python_array_column_RETURN
sidl_long__clone_python_array_column sidl_long__clone_python_array_column_PROTO
ClonePython_impl(long, int64_t, PyArray_INT, Col, sidl_column_major_order)
#else
#if SIZEOF_LONG == 8
sidl_long__clone_python_array_column_RETURN
sidl_long__clone_python_array_column sidl_long__clone_python_array_column_PROTO
ClonePython_impl(long, int64_t, PyArray_LONG, Col, sidl_column_major_order)
#else
static PyArrayObject *
toNumericArray(PyObject *obj)
{
PyArrayObject *result = NULL;
if (obj) {
if (PyArray_Check(obj)) {
result = (PyArrayObject *)obj;
Py_INCREF(obj);
}
else {
result = (PyArrayObject *)
PyArray_FromObject(obj, PyArray_OBJECT, 0, 0);
}
}
return result;
}
#define long_copy(srctype,convert) \
for(i = 0 ; i < size ; ++i ) { \
*dest = (int64_t)convert(*((const srctype * /* restrict */)src)); \
for (j = 0 ; j < dimen; ++j ) { \
dest += stride[j]; \
src += srcstride[j]; \
if ((++(ind[j])) < numelem[j]) { \
break; \
} \
else { \
ind[j] = 0; \
dest -= (numelem[j]*stride[j]); \
src -= (numelem[j]*srcstride[j]); \
} \
} \
}
static int64_t
pythonToLong(const PyObject *obj)
{
int64_t result;
if (obj) {
if (PyInt_Check(obj)) result = PyInt_AsLong((PyObject *)obj);
else {
PyObject *lnum = PyNumber_Long((PyObject *)obj);
if (lnum) {
#if defined(HAVE_LONG_LONG)
result = PyLong_AsLongLong(lnum);
#else
result = PyLong_AsLong(lnum);
#endif
Py_DECREF(lnum);
}
else {
lnum = PyNumber_Int((PyObject *)obj);
if (lnum) {
result = PyInt_AsLong(lnum);
Py_DECREF(lnum);
}
else {
result = 0;
}
}
}
}
else {
result = 0;
}
return result;
}
static void
clone_long_python(PyArrayObject *pya,
struct sidl_long__array *array,
const int32_t lower[],
const int32_t upper[],
const int32_t stride[])
{
const int size = PyArray_Size((PyObject *)pya);
const int32_t dimen = pya->nd;
const int32_t sdim = sidl_long__array_dimen(array);
int i, j;
int64_t * /* restrict */ dest = sidl_long__array_first(array);
const char * /* restrict */ src = pya->data;
const int * /* restrict */ srcstride = pya->strides;
int32_t * /* restrict */ ind = malloc(sizeof(int32_t)*sdim);
int32_t * /* restrict */ numelem = malloc(sizeof(int32_t)*sdim);
if (ind && numelem) {
memset(ind, 0, sizeof(int32_t)*sdim);
for(i = 0; i < sdim; ++i ){
numelem[i] = sidlLength(array,i);
}
switch(pya->descr->type_num) {
case PyArray_CHAR:
long_copy(char,);
break;
case PyArray_UBYTE:
long_copy(unsigned char,);
break;
case PyArray_SBYTE:
long_copy(signed char,);
break;
case PyArray_SHORT:
long_copy(short,);
break;
case PyArray_INT:
long_copy(int,);
break;
case PyArray_LONG:
long_copy(long,);
break;
case PyArray_FLOAT:
long_copy(float,);
break;
case PyArray_DOUBLE:
long_copy(double,);
break;
case PyArray_OBJECT:
long_copy(PyObject *,pythonToLong);
break;
}
}
if (ind) free(ind);
if (numelem) free(numelem);
}
sidl_long__clone_python_array_column_RETURN
sidl_long__clone_python_array_column sidl_long__clone_python_array_column_PROTO
{
int result = 0;
*array = NULL;
if (obj == Py_None) {
result = 1;
}
else {
PyArrayObject *pya = toNumericArray(obj);
if (pya) {
int32_t dimen;
int32_t lower[SIDL_MAX_ARRAY_DIMENSION],
upper[SIDL_MAX_ARRAY_DIMENSION],
stride[SIDL_MAX_ARRAY_DIMENSION];
if (sidl_array__extract_python_info((PyObject *)pya, &dimen,
lower, upper, stride)) {
*array =
sidl_long__array_createCol(dimen, lower, upper);
clone_long_python(pya, *array, lower, upper, stride);
result = 1;
}
Py_DECREF((PyObject *)pya);
}
}
return result;
}
#endif
#endif
#endif
sidl_bool__clone_python_array_row_RETURN
sidl_bool__clone_python_array_row sidl_bool__clone_python_array_row_PROTO
ClonePython_impl(bool, sidl_bool, PyArray_INT, Row, sidl_row_major_order)
sidl_char__clone_python_array_row_RETURN
sidl_char__clone_python_array_row sidl_char__clone_python_array_row_PROTO
ClonePython_impl(char, char, PyArray_CHAR, Row, sidl_row_major_order)
sidl_dcomplex__clone_python_array_row_RETURN
sidl_dcomplex__clone_python_array_row sidl_dcomplex__clone_python_array_row_PROTO
ClonePython_impl(dcomplex, struct sidl_dcomplex, PyArray_CDOUBLE, Row, sidl_row_major_order)
sidl_double__clone_python_array_row_RETURN
sidl_double__clone_python_array_row sidl_double__clone_python_array_row_PROTO
ClonePython_impl(double, double, PyArray_DOUBLE, Row, sidl_row_major_order)
sidl_fcomplex__clone_python_array_row_RETURN
sidl_fcomplex__clone_python_array_row sidl_fcomplex__clone_python_array_row_PROTO
ClonePython_impl(fcomplex, struct sidl_fcomplex, PyArray_CFLOAT, Row, sidl_row_major_order)
sidl_float__clone_python_array_row_RETURN
sidl_float__clone_python_array_row sidl_float__clone_python_array_row_PROTO
ClonePython_impl(float, float, PyArray_FLOAT, Row, sidl_row_major_order)
sidl_int__clone_python_array_row_RETURN
sidl_int__clone_python_array_row sidl_int__clone_python_array_row_PROTO
ClonePython_impl(int, int, PyArray_INT, Row, sidl_row_major_order)
#if SIZEOF_SHORT == 8
sidl_long__clone_python_array_row_RETURN
sidl_long__clone_python_array_row sidl_long__clone_python_array_row_PROTO
ClonePython_impl(long, int64_t, PyArray_SHORT, Row, sidl_row_major_order)
#else
#if SIZEOF_INT == 8
sidl_long__clone_python_array_row_RETURN
sidl_long__clone_python_array_row sidl_long__clone_python_array_row_PROTO
ClonePython_impl(long, int64_t, PyArray_INT, Row, sidl_row_major_order)
#else
#if SIZEOF_LONG == 8
sidl_long__clone_python_array_row_RETURN
sidl_long__clone_python_array_row sidl_long__clone_python_array_row_PROTO
ClonePython_impl(long, int64_t, PyArray_LONG, Row, sidl_row_major_order)
#else
sidl_long__clone_python_array_row_RETURN
sidl_long__clone_python_array_row sidl_long__clone_python_array_row_PROTO
{
int result = 0;
*array = NULL;
if (obj == Py_None) {
result = 1;
}
else {
PyArrayObject *pya = toNumericArray(obj);
if (pya) {
int32_t dimen, lower[SIDL_MAX_ARRAY_DIMENSION],
upper[SIDL_MAX_ARRAY_DIMENSION],
stride[SIDL_MAX_ARRAY_DIMENSION];
if (sidl_array__extract_python_info((PyObject *)pya, &dimen,
lower, upper, stride)) {
*array =
sidl_long__array_createRow(dimen, lower, upper);
clone_long_python(pya, *array, lower, upper, stride);
result = 1;
}
Py_DECREF((PyObject *)pya);
}
}
return result;
}
#endif
#endif
#endif
sidl_bool__clone_python_array_RETURN
sidl_bool__clone_python_array sidl_bool__clone_python_array_PROTO
ClonePython_impl(bool, sidl_bool, PyArray_INT, Row, sidl_general_order)
sidl_char__clone_python_array_RETURN
sidl_char__clone_python_array sidl_char__clone_python_array_PROTO
ClonePython_impl(char, char, PyArray_CHAR, Row, sidl_general_order)
sidl_dcomplex__clone_python_array_RETURN
sidl_dcomplex__clone_python_array sidl_dcomplex__clone_python_array_PROTO
ClonePython_impl(dcomplex, struct sidl_dcomplex, PyArray_CDOUBLE, Row, sidl_general_order)
sidl_double__clone_python_array_RETURN
sidl_double__clone_python_array sidl_double__clone_python_array_PROTO
ClonePython_impl(double, double, PyArray_DOUBLE, Row, sidl_general_order)
sidl_fcomplex__clone_python_array_RETURN
sidl_fcomplex__clone_python_array sidl_fcomplex__clone_python_array_PROTO
ClonePython_impl(fcomplex, struct sidl_fcomplex, PyArray_CFLOAT, Row, sidl_general_order)
sidl_float__clone_python_array_RETURN
sidl_float__clone_python_array sidl_float__clone_python_array_PROTO
ClonePython_impl(float, float, PyArray_FLOAT, Row, sidl_general_order)
sidl_int__clone_python_array_RETURN
sidl_int__clone_python_array sidl_int__clone_python_array_PROTO
ClonePython_impl(int, int, PyArray_INT, Row, sidl_general_order)
#if SIZEOF_SHORT == 8
sidl_long__clone_python_array_RETURN
sidl_long__clone_python_array sidl_long__clone_python_array_PROTO
ClonePython_impl(long, int64_t, PyArray_SHORT, Row, sidl_general_order)
#else
#if SIZEOF_INT == 8
sidl_long__clone_python_array_RETURN
sidl_long__clone_python_array sidl_long__clone_python_array_PROTO
ClonePython_impl(long, int64_t, PyArray_INT, Row, sidl_general_order)
#else
#if SIZEOF_LONG == 8
sidl_long__clone_python_array_RETURN
sidl_long__clone_python_array sidl_long__clone_python_array_PROTO
ClonePython_impl(long, int64_t, PyArray_LONG, Row, sidl_general_order)
#else
sidl_long__clone_python_array_RETURN
sidl_long__clone_python_array sidl_long__clone_python_array_PROTO
{
int result = 0;
*array = NULL;
if (obj == Py_None) {
result = 1;
}
else {
PyArrayObject *pya = toNumericArray(obj);
if (pya) {
int32_t dimen, lower[SIDL_MAX_ARRAY_DIMENSION],
upper[SIDL_MAX_ARRAY_DIMENSION],
stride[SIDL_MAX_ARRAY_DIMENSION];
if (sidl_array__extract_python_info((PyObject *)pya, &dimen,
lower, upper, stride)) {
*array =
sidl_long__array_createRow(dimen, lower, upper);
clone_long_python(pya, *array, lower, upper, stride);
result = 1;
}
Py_DECREF((PyObject *)pya);
}
}
return result;
}
#endif
#endif
#endif
sidl_array__convert_python_RETURN
sidl_array__convert_python sidl_array__convert_python_PROTO
{
int result = FALSE;
if (PyArray_Check(pya_src)) {
int i, j;
const int size = PyArray_Size(pya_src);
const PyArrayObject *pya = (PyArrayObject *)pya_src;
int32_t *ind = malloc(sizeof(int32_t) * dimen);
char *pydata = pya->data;
memset(ind, 0, sizeof(int32_t) * dimen);
if (size == 1) { /* handle zero dimensional PyArray */
if (!((*setfunc)(sidl_dest, ind, *(PyObject **)pydata))) {
result = TRUE;
}
}
else {
for(i = 0; i < size; ++i){
if ((*setfunc)(sidl_dest, ind, *(PyObject **)pydata)) {
goto error;
}
for(j = 0; j < dimen; ++j) {
pydata += pya->strides[j];
if (++(ind[j]) < pya->dimensions[j]) {
break;
}
else {
ind[j] = 0;
pydata -= (pya->dimensions[j]*pya->strides[j]);
}
}
}
result = TRUE;
}
error:
free(ind);
}
return result;
}
int CopyOpaquePointer(void *array,
const int32_t *ind,
PyObject *data)
{
if (PyCObject_Check(data)) {
sidl_opaque__array_set((struct sidl_opaque__array*)array,
ind,
PyCObject_AsVoidPtr(data));
return FALSE;
}
return TRUE;
}
int CopyStringPointer(void *array,
const int32_t *ind,
PyObject *data)
{
PyObject *str = PyObject_Str(data);
if (str) {
sidl_string__array_set((struct sidl_string__array*)array, ind,
PyString_AsString(str));
Py_DECREF(str);
return FALSE;
}
return TRUE;
}
sidl_opaque__clone_python_array_column_RETURN
sidl_opaque__clone_python_array_column sidl_opaque__clone_python_array_column_PROTO
{
int result = 0;
*array = NULL;
if (obj == Py_None) {
result = TRUE;
}
else {
PyObject *pya = PyArray_FromObject(obj, PyArray_OBJECT, 0, 0);
if (pya) {
if (PyArray_OBJECT == ((PyArrayObject *)pya)->descr->type_num) {
int dimen, lower[SIDL_MAX_ARRAY_DIMENSION],
upper[SIDL_MAX_ARRAY_DIMENSION],
stride[SIDL_MAX_ARRAY_DIMENSION];
if (sidl_array__extract_python_info(pya, &dimen, lower, upper,
stride)) {
*array = sidl_opaque__array_createCol(dimen, lower, upper);
result = sidl_array__convert_python(pya, dimen, *array,
CopyOpaquePointer);
if (*array && !result) {
sidl__array_deleteRef((struct sidl__array *)*array);
*array = NULL;
}
}
}
Py_DECREF(pya);
}
}
return result;
}
sidl_string__clone_python_array_column_RETURN
sidl_string__clone_python_array_column sidl_string__clone_python_array_column_PROTO
{
int result = 0;
*array = NULL;
if (obj == Py_None) {
result = TRUE;
}
else {
PyObject *pya = PyArray_FromObject(obj, PyArray_OBJECT, 0, 0);
if (pya) {
if (PyArray_OBJECT == ((PyArrayObject *)pya)->descr->type_num) {
int dimen, lower[SIDL_MAX_ARRAY_DIMENSION],
upper[SIDL_MAX_ARRAY_DIMENSION],
stride[SIDL_MAX_ARRAY_DIMENSION];
if (sidl_array__extract_python_info(pya, &dimen, lower, upper,
stride)) {
*array = sidl_string__array_createCol(dimen, lower, upper);
result = sidl_array__convert_python(pya, dimen, *array,
CopyStringPointer);
if (*array && !result) {
sidl__array_deleteRef((struct sidl__array *)*array);
*array = NULL;
}
}
}
Py_DECREF(pya);
}
}
return result;
}
sidl_opaque__clone_python_array_row_RETURN
sidl_opaque__clone_python_array_row sidl_opaque__clone_python_array_row_PROTO
{
int result = 0;
*array = NULL;
if (obj == Py_None) {
result = TRUE;
}
else {
PyObject *pya = PyArray_FromObject(obj, PyArray_OBJECT, 0, 0);
if (pya) {
if (PyArray_OBJECT == ((PyArrayObject *)pya)->descr->type_num) {
int dimen, lower[SIDL_MAX_ARRAY_DIMENSION],
upper[SIDL_MAX_ARRAY_DIMENSION],
stride[SIDL_MAX_ARRAY_DIMENSION];
if (sidl_array__extract_python_info(pya, &dimen, lower, upper,
stride)) {
*array = sidl_opaque__array_createRow(dimen, lower, upper);
result = sidl_array__convert_python(pya, dimen, *array,
CopyOpaquePointer);
if (*array && !result) {
sidl__array_deleteRef((struct sidl__array *)*array);
*array = NULL;
}
}
}
Py_DECREF(pya);
}
}
return result;
}
sidl_opaque__clone_python_array_RETURN
sidl_opaque__clone_python_array sidl_opaque__clone_python_array_PROTO
{
return sidl_opaque__clone_python_array_row(obj,array);
}
sidl_string__clone_python_array_row_RETURN
sidl_string__clone_python_array_row sidl_string__clone_python_array_row_PROTO
{
int result = 0;
*array = NULL;
if (obj == Py_None) {
result = TRUE;
}
else {
PyObject *pya = PyArray_FromObject(obj, PyArray_OBJECT, 0, 0);
if (pya) {
if (PyArray_OBJECT == ((PyArrayObject *)pya)->descr->type_num) {
int dimen, lower[SIDL_MAX_ARRAY_DIMENSION],
upper[SIDL_MAX_ARRAY_DIMENSION],
stride[SIDL_MAX_ARRAY_DIMENSION];
if (sidl_array__extract_python_info(pya, &dimen, lower, upper,
stride)) {
*array = sidl_string__array_createRow(dimen, lower, upper);
result = sidl_array__convert_python(pya, dimen, *array,
CopyStringPointer);
if (*array && !result) {
sidl__array_deleteRef((struct sidl__array *)*array);
*array = NULL;
}
}
}
Py_DECREF(pya);
}
}
return result;
}
sidl_string__clone_python_array_RETURN
sidl_string__clone_python_array sidl_string__clone_python_array_PROTO
{
return sidl_string__clone_python_array_row(obj, array);
}
#define CloneSIDL_impl(sidlname, sidltype, pyarraytype) \
static PyObject * \
clone_sidl_ ## sidlname ## _array(struct sidl_ ## sidlname ##__array *array) \
{ \
PyArrayObject *pya = NULL; \
if (array) { \
const int dimen = sidlArrayDim(array); \
int i; \
int32_t *numelem = malloc(sizeof(int32_t)*dimen); \
int *pynumelem = malloc(sizeof(int)*dimen); \
int *bytestride = malloc(sizeof(int)*dimen); \
for(i = 0; i < dimen; ++i){ \
numelem[i] = sidlLength(array,i); \
pynumelem[i] = (int)numelem[i]; \
bytestride[i] = sizeof(sidltype)* \
sidlStride(array, i); \
} \
pya = (PyArrayObject *)PyArray_FromDims(dimen, pynumelem, pyarraytype); \
if (pya) { \
copy_ ## sidlname ## _data(pya->data, \
pya->strides, \
(char *)((array)->d_firstElement), \
bytestride, \
numelem, \
dimen); \
} \
free(pynumelem); \
free(numelem); \
free(bytestride); \
} \
else { \
Py_INCREF(Py_None); \
return Py_None; \
} \
return (PyObject *)pya; \
}
CloneSIDL_impl(bool, sidl_bool, PyArray_INT)
CloneSIDL_impl(char, char, PyArray_CHAR)
CloneSIDL_impl(double, double, PyArray_DOUBLE)
CloneSIDL_impl(dcomplex, struct sidl_dcomplex, PyArray_CDOUBLE)
CloneSIDL_impl(fcomplex, struct sidl_fcomplex, PyArray_CFLOAT)
CloneSIDL_impl(float, float, PyArray_FLOAT)
#if SIZEOF_SHORT == 4
CloneSIDL_impl(int, int32_t, PyArray_SHORT)
#else
#if SIZEOF_INT == 4
CloneSIDL_impl(int, int32_t, PyArray_INT)
#else
#if SIZEOF_LONG == 4
CloneSIDL_impl(int, int32_t, PyArray_LONG)
#else
#error No 32-bit integer type available.
#endif
#endif
#endif
#if SIZEOF_SHORT == 8
CloneSIDL_impl(long, int64_t, PyArray_SHORT)
#else
#if SIZEOF_INT == 8
CloneSIDL_impl(long, int64_t, PyArray_INT)
#else
#if SIZEOF_LONG == 8
CloneSIDL_impl(long, int64_t, PyArray_LONG)
#else
static int
getAndConvertLong(void *array,
const int32_t *ind,
PyObject **dest)
{
int64_t val =
sidl_long__array_get((struct sidl_long__array *)array, ind);
*dest = PyLong_FromLongLong(val);
return FALSE;
}
static PyObject *
clone_sidl_long_array(struct sidl_long__array *array)
{
PyObject *pya = NULL;
if (array) {
const int dimen = sidl_long__array_dimen(array);
int i;
int32_t *lower = malloc(sizeof(int32_t) * dimen);
int32_t *numelem = malloc(sizeof(int32_t) * dimen);
#if (SIZEOF_INT != 4)
int *pynumelem = malloc(sizeof(int) * dimen);
#else
int *pynumelem = (int *)numelem;
#endif
for(i = 0 ; i < dimen; ++i ){
lower[i] = sidl_long__array_lower(array, i);
numelem[i] = sidlLength(array, i);
#if (SIZEOF_INT != 4)
pynumelem[i] = numelem[i];
#endif
}
pya = PyArray_FromDims(dimen, pynumelem, PyArray_OBJECT);
if (pya) {
if (!sidl_array__convert_sidl(pya, dimen, lower,
array->d_metadata.d_upper,
numelem, array, getAndConvertLong)) {
Py_DECREF(pya);
pya = NULL;
}
}
#if (SIZEOF_INT != 4)
free(pynumelem);
#endif
free(numelem);
free(lower);
}
else {
Py_INCREF(Py_None);
pya = Py_None;
}
return pya;
}
#endif
#endif
#endif
static int
getAndConvertString(void *array, const int32_t *ind, PyObject **dest)
{
char *str =
sidl_string__array_get((struct sidl_string__array *)array, ind);
if (str) {
*dest = PyString_FromString(str);
free(str);
}
else {
Py_INCREF(Py_None);
*dest = Py_None;
}
return FALSE;
}
static PyObject *
clone_sidl_string_array(struct sidl_string__array *array)
{
PyObject *pya = NULL;
if (array) {
const int dimen = sidl_string__array_dimen(array);
int i;
int32_t *lower = malloc(sizeof(int32_t) * dimen);
int32_t *upper = malloc(sizeof(int32_t) * dimen);
int32_t *numelem = malloc(sizeof(int32_t) * dimen);
#if (SIZEOF_INT != 4)
int *pynumelem = malloc(sizeof(int) * dimen);
#else
int *pynumelem = (int *)numelem;
#endif
for(i = 0; i < dimen; ++i) {
lower[i] = sidl_string__array_lower(array, i);
upper[i] = sidl_string__array_upper(array, i);
numelem[i] = sidl_string__array_length(array, i);
#if (SIZEOF_INT != 4)
pynumelem[i] = (int)numelem[i];
#endif
}
pya = PyArray_FromDims(dimen, pynumelem, PyArray_OBJECT);
if (pya) {
if (!sidl_array__convert_sidl(pya, dimen, lower, upper,
numelem, array, getAndConvertString)) {
Py_DECREF(pya);
pya = NULL;
}
}
#if (SIZEOF_INT != 4)
free(pynumelem);
#endif
free(numelem);
free(upper);
free(lower);
}
else {
Py_INCREF(Py_None);
pya = Py_None;
}
return pya;
}
static int
getAndConvertOpaque(void *array, const int32_t *ind, PyObject **dest)
{
void *vptr =
sidl_opaque__array_get((struct sidl_opaque__array *)array, ind);
*dest = PyCObject_FromVoidPtr(vptr, NULL);
return FALSE;
}
static PyObject *
clone_sidl_opaque_array(struct sidl_opaque__array *array)
{
PyObject *pya = NULL;
if (array) {
const int dimen = sidl_opaque__array_dimen(array);
int i;
int32_t *lower = malloc(sizeof(int32_t) * dimen);
int32_t *upper = malloc(sizeof(int32_t) * dimen);
int32_t *numelem = malloc(sizeof(int32_t) * dimen);
#if (SIZEOF_INT != 4)
int *pynumelem = malloc(sizeof(int) * dimen);
#else
int *pynumelem = (int *)numelem;
#endif
for(i = 0; i < dimen; ++i) {
lower[i] = sidl_opaque__array_lower(array, i);
upper[i] = sidl_opaque__array_upper(array, i);
numelem[i] = 1 + upper[i] - lower[i];
#if (SIZEOF_INT != 4)
pynumelem[i] = (int)numelem[i];
#endif
}
pya = PyArray_FromDims(dimen, pynumelem, PyArray_OBJECT);
if (pya) {
if (!sidl_array__convert_sidl(pya, dimen, lower, upper,
numelem, array, getAndConvertOpaque)) {
Py_DECREF(pya);
pya = NULL;
}
}
#if (SIZEOF_INT != 4)
free(pynumelem);
#endif
free(numelem);
free(upper);
free(lower);
}
else {
Py_INCREF(Py_None);
pya = Py_None;
}
return pya;
}
sidl_python_clone_array_RETURN
sidl_python_clone_array sidl_python_clone_array_PROTO
{
if (array) {
switch (sidl__array_type(array)) {
case sidl_bool_array:
return clone_sidl_bool_array((struct sidl_bool__array *)array);
case sidl_char_array:
return clone_sidl_char_array((struct sidl_char__array *)array);
case sidl_dcomplex_array:
return clone_sidl_dcomplex_array((struct sidl_dcomplex__array *)array);
case sidl_double_array:
return clone_sidl_double_array((struct sidl_double__array *)array);
case sidl_fcomplex_array:
return clone_sidl_fcomplex_array((struct sidl_fcomplex__array *)array);
case sidl_float_array:
return clone_sidl_float_array((struct sidl_float__array *)array);
case sidl_int_array:
return clone_sidl_int_array((struct sidl_int__array *)array);
case sidl_long_array:
return clone_sidl_long_array((struct sidl_long__array *)array);
case sidl_opaque_array:
return clone_sidl_opaque_array((struct sidl_opaque__array *)array);
case sidl_string_array:
return clone_sidl_string_array((struct sidl_string__array *)array);
default:
return NULL; /* indicate an error */
}
}
else {
Py_INCREF(Py_None);
return Py_None;
}
}
sidl_python_copy_RETURN
sidl_python_copy sidl_python_copy_PROTO
{
const int32_t src_type = sidl__array_type(src);
const int32_t dest_type = sidl__array_type(dest);
if (src_type == dest_type) {
switch(src_type) {
case sidl_bool_array:
sidl_bool__array_copy((const struct sidl_bool__array *)src,
(struct sidl_bool__array *)dest); break;
case sidl_char_array:
sidl_char__array_copy((const struct sidl_char__array *)src,
(struct sidl_char__array *)dest); break;
case sidl_dcomplex_array:
sidl_dcomplex__array_copy((const struct sidl_dcomplex__array *)src,
(struct sidl_dcomplex__array *)dest); break;
case sidl_double_array:
sidl_double__array_copy((const struct sidl_double__array *)src,
(struct sidl_double__array *)dest); break;
case sidl_fcomplex_array:
sidl_fcomplex__array_copy((const struct sidl_fcomplex__array *)src,
(struct sidl_fcomplex__array *)dest); break;
case sidl_float_array:
sidl_float__array_copy((const struct sidl_float__array *)src,
(struct sidl_float__array *)dest); break;
case sidl_int_array:
sidl_int__array_copy((const struct sidl_int__array *)src,
(struct sidl_int__array *)dest); break;
case sidl_long_array:
sidl_long__array_copy((const struct sidl_long__array *)src,
(struct sidl_long__array *)dest); break;
case sidl_opaque_array:
sidl_opaque__array_copy((const struct sidl_opaque__array *)src,
(struct sidl_opaque__array *)dest); break;
case sidl_string_array:
sidl_string__array_copy((const struct sidl_string__array *)src,
(struct sidl_string__array *)dest); break;
}
}
}
sidl_array__convert_sidl_RETURN
sidl_array__convert_sidl sidl_array__convert_sidl_PROTO
{
if (PyArray_Check(pya_dest)) {
PyArrayObject *pya = (PyArrayObject *)pya_dest;
size_t size = arraySize(numelem, dimen, 1);
int i;
char *dest = pya->data;
while (size--) {
if ((*getfunc)(sidl_src, lower, (PyObject **)dest))
return FALSE;
for(i = 0; i < dimen; ++i) {
dest += pya->strides[i];
if (++(lower[i]) <= upper[i]) {
break;
}
else {
dest -= pya->strides[i]*numelem[i];
lower[i] -= numelem[i];
}
}
}
return TRUE;
}
return FALSE;
}
static PyObject*
createArrayHolder(struct sidl__array * const array)
{
PyObject *result = sidlPyArrayType.tp_new(&sidlPyArrayType, NULL, NULL);
if (result) {
SIDLArrayObject *sao = (SIDLArrayObject *)result;
sao->d_array = array;
}
return result;
}
static PyObject *
borrow_sidl(struct sidl__array * const array,
char * const dataPtr,
const size_t dataSize,
const int numpyType)
{
const int dimen = sidlArrayDim(array);
int extent[SIDL_MAX_ARRAY_DIMENSION], i;
PyObject *result;
for(i = 0; i < dimen; ++i) {
extent[i] = sidlLength(array, i);
}
result = PyArray_FromDimsAndData(dimen, extent, numpyType, dataPtr);
if (result) {
PyObject *sidlRef = createArrayHolder(array);
if (sidlRef) {
PyArrayObject *numpy = (PyArrayObject *)result;
/* fix the strides to match the SIDL array */
for(i = 0; i < dimen; ++i) {
numpy->strides[i] = sidlStride(array,i) * dataSize;
}
/* set the CONTIGUOUS flag */
if (sidl__array_isRowOrder(array)){
numpy->flags |= CONTIGUOUS;
}
else {
numpy->flags &= ~CONTIGUOUS;
}
numpy->base = sidlRef;
}
else {
sidl__array_deleteRef(array);
Py_DECREF(result);
result = NULL;
}
}
else {
sidl__array_deleteRef(array);
}
return result;
}
sidl_python_borrow_array_RETURN
sidl_python_borrow_array sidl_python_borrow_array_PROTO
{
if (array) {
switch(sidl__array_type(array)) {
case sidl_char_array:
array = sidl__array_smartCopy(array);
return borrow_sidl(array,
(char *)(((struct sidl_char__array*)array)->d_firstElement),
sizeof(char), PyArray_CHAR);
case sidl_dcomplex_array:
array = sidl__array_smartCopy(array);
return borrow_sidl(array,
(char *)(((struct sidl_dcomplex__array*)array)->d_firstElement),
sizeof(struct sidl_dcomplex), PyArray_CDOUBLE);
case sidl_double_array:
array = sidl__array_smartCopy(array);
return borrow_sidl(array,
(char *)((struct sidl_double__array*)array)->d_firstElement,
sizeof(double), PyArray_DOUBLE);
case sidl_fcomplex_array:
array = sidl__array_smartCopy(array);
return borrow_sidl(array,
(char *)(((struct sidl_fcomplex__array*)array)->d_firstElement),
sizeof(struct sidl_fcomplex), PyArray_CFLOAT);
case sidl_float_array:
array = sidl__array_smartCopy(array);
return borrow_sidl(array,
(char *)((struct sidl_float__array*)array)->d_firstElement,
sizeof(float), PyArray_FLOAT);
case sidl_int_array:
array = sidl__array_smartCopy(array);
return borrow_sidl(array,
(char *)((struct sidl_int__array*)array)->d_firstElement,
sizeof(int32_t),
#if SIZEOF_SHORT == 4
PyArray_SHORT
#else
#if SIZEOF_INT == 4
PyArray_INT
#else
#if SIZEOF_LONG == 4
PyArray_LONG
#else
#error No 32-bit integer available.
#endif
#endif
#endif
);
case sidl_long_array:
#if SIZEOF_SHORT == 8
array = sidl__array_smartCopy(array);
return borrow_sidl(array,
(char *)((struct sidl_long__array*)array)->d_firstElement,
sizeof(int64_t),
PyArray_SHORT);
#else
#if SIZEOF_INT == 8
array = sidl__array_smartCopy(array);
return borrow_sidl(array,
(char *)((struct sidl_long__array*)array)->d_firstElement,
sizeof(int64_t),
PyArray_INT);
#else
#if SIZEOF_LONG == 8
array = sidl__array_smartCopy(array);
return borrow_sidl(array,
(char *)((struct sidl_long__array*)array)->d_firstElement,
sizeof(int64_t),
PyArray_LONG);
#else
return sidl_python_clone_array(array);
#endif
#endif
#endif
}
}
return sidl_python_clone_array(array);
}
sidl_generic_borrow_python_array_RETURN
sidl_generic_borrow_python_array sidl_generic_borrow_python_array_PROTO
{
if (PyArray_Check(obj)) {
PyArrayObject *pya = (PyArrayObject *)obj;
switch (pya->descr->type_num) {
case PyArray_CHAR:
case PyArray_UBYTE:
case PyArray_SBYTE:
return sidl_char__borrow_python_array
(obj, (struct sidl_char__array **)array);
case PyArray_SHORT:
#ifdef PyArray_UNSIGNED_TYPES
case PyArray_USHORT:
#endif
#if SIZEOF_SHORT == 4
return sidl_int__borrow_python_array
(obj, (struct sidl_int__array **)array);
#else
#if SIZEOF_SHORT == 8
reutrn sidl_long__borrow_python_array
(obj, (struct sidl_long__array **)array);
#else
break; /* prevent default or fall through */
#endif
#endif
case PyArray_INT:
#ifdef PyArray_UNSIGNED_TYPES
case PyArray_UINT:
#endif
#if SIZEOF_INT == 4
return sidl_int__borrow_python_array
(obj, (struct sidl_int__array **)array);
#else
#if SIZEOF_INT == 8
return sidl_long__borrow_python_array
(obj, (struct sidl_long__array **)array);
#else
break; /* prevent default or fall through */
#endif
#endif
case PyArray_LONG:
#if SIZEOF_LONG == 4
return sidl_int__borrow_python_array
(obj, (struct sidl_int__array **)array);
#else
#if SIZEOF_LONG == 8
return sidl_long__borrow_python_array
(obj, (struct sidl_long__array **)array);
#else
break; /* prevent default and fall through */
#endif
#endif
case PyArray_FLOAT:
return sidl_float__borrow_python_array
(obj, (struct sidl_float__array **)array);
case PyArray_DOUBLE:
return sidl_double__borrow_python_array
(obj, (struct sidl_double__array **)array);
case PyArray_CFLOAT:
return sidl_fcomplex__borrow_python_array
(obj, (struct sidl_fcomplex__array **)array);
case PyArray_CDOUBLE:
return sidl_dcomplex__borrow_python_array
(obj, (struct sidl_dcomplex__array **)array);
case PyArray_OBJECT:
break;
default:
*array = 0;
return 0;
}
}
return sidl_generic_clone_python_array(obj, array);
}
static int
convertObjectToBaseInterface(void *sidlarray, const int *ind, PyObject *pyobj)
{
struct sidl_BaseInterface__object *sidlobj =
sidl_Cast(pyobj, "sidl.BaseInterface");
if (sidlobj || (Py_None == pyobj)) {
sidl_interface__array_set((struct sidl_interface__array *)sidlarray,
ind, sidlobj);
return FALSE;
}
return TRUE;
}
static
int
clone_object_array(PyArrayObject *pya, struct sidl__array **array)
{
int result = 0;
if (PyArray_Size((PyObject *)pya)) {
PyObject *elem = *((PyObject **)(pya->data));
if ((elem == Py_None) ||
PyType_IsSubtype(elem->ob_type, sidl_PyType())) {
/* an array of sidl objects */
int32_t dimen;
int32_t lower[SIDL_MAX_ARRAY_DIMENSION],
upper[SIDL_MAX_ARRAY_DIMENSION],
stride[SIDL_MAX_ARRAY_DIMENSION];
if (sidl_array__extract_python_info((PyObject *)pya, &dimen,
lower, upper, stride)) {
*array = (struct sidl__array *)
sidl_interface__array_createRow(dimen, lower, upper);
result = sidl_array__convert_python
((PyObject *)pya, dimen, *array, convertObjectToBaseInterface);
if (*array && !result ) {
sidl__array_deleteRef(*array);
*array = NULL;
}
}
}
else {
/* otherwise treat it as an array of longs */
result = sidl_long__clone_python_array
((PyObject *)pya, (struct sidl_long__array **)array);
}
}
else { /* empty list of what? */
result = sidl_int__clone_python_array
((PyObject *)pya, (struct sidl_int__array **)array);
}
return result;
}
sidl_generic_clone_python_array_RETURN
sidl_generic_clone_python_array sidl_generic_clone_python_array_PROTO
{
int result = 0;
*array = 0;
if (obj == Py_None) {
result = 1;
}
else {
PyArrayObject *pya = NULL;
if (PyArray_Check(obj)) {
pya = (PyArrayObject *)obj;
Py_INCREF(pya);
}
else {
pya = (PyArrayObject *)
PyArray_FromObject(obj, PyArray_NOTYPE, 0, 0);
}
if (pya) {
switch (pya->descr->type_num) {
case PyArray_CHAR:
case PyArray_UBYTE:
case PyArray_SBYTE:
result = sidl_char__clone_python_array
(obj, (struct sidl_char__array **)array);
break;
case PyArray_SHORT:
#ifdef PyArray_UNSIGNED_TYPES
case PyArray_USHORT:
#endif
#if SIZEOF_SHORT == 4
result = sidl_int__clone_python_array
(obj, (struct sidl_int__array **)array);
#else
#if SIZEOF_SHORT == 8
result = sidl_long__clone_python_array
(obj, (struct sidl_long__array **)array);
#endif
#endif
break;
case PyArray_INT:
#ifdef PyArray_UNSIGNED_TYPES
case PyArray_UINT:
#endif
#if SIZEOF_INT == 4
result = sidl_int__clone_python_array
(obj, (struct sidl_int__array **)array);
#else
#if SIZEOF_INT == 8
result = sidl_long__clone_python_array
(obj, (struct sidl_long__array **)array);
#endif
#endif
break; /* prevent default or fall through */
case PyArray_LONG:
#if SIZEOF_LONG == 4
result = sidl_int__clone_python_array
(obj, (struct sidl_int__array **)array);
#else
#if SIZEOF_LONG == 8
result = sidl_long__clone_python_array
(obj, (struct sidl_long__array **)array);
#endif
#endif
break; /* prevent default and fall through */
case PyArray_FLOAT:
result = sidl_float__clone_python_array
(obj, (struct sidl_float__array **)array);
case PyArray_DOUBLE:
result = sidl_double__clone_python_array
(obj, (struct sidl_double__array **)array);
case PyArray_CFLOAT:
result = sidl_fcomplex__clone_python_array
(obj, (struct sidl_fcomplex__array **)array);
case PyArray_CDOUBLE:
result = sidl_dcomplex__clone_python_array
(obj, (struct sidl_dcomplex__array **)array);
case PyArray_OBJECT:
result = clone_object_array(pya, array);
default:
*array = 0;
result = 0;
}
Py_DECREF(pya);
}
}
return result;
}
static struct PyMethodDef spa_methods[] = {
/* this module exports no methods */
{ NULL, NULL }
};
#ifndef PyMODINIT_FUNC /* declarations for DLL import/export */
#define PyMODINIT_FUNC void
#endif
PyMODINIT_FUNC
initsidlPyArrays(void)
{
PyObject *module, *dict, *c_api;
static void *spa_api[sidlPyArrays_API_pointers];
module = Py_InitModule("sidlPyArrays", spa_methods);
import_array();
dict = PyModule_GetDict(module);
if (PyType_Ready(&sidlPyArrayType) < 0) return;
Py_INCREF(&sidlPyArrayType);
PyModule_AddObject(module, "SIDLArrayWrapper", (PyObject *)&sidlPyArrayType);
spa_api[sidl_python_deleteRef_array_NUM] =
(void *)sidl__array_deleteRef;
spa_api[sidl_python_borrow_array_NUM] =
(void *)sidl_python_borrow_array;
spa_api[sidl_python_clone_array_NUM] =
(void *)sidl_python_clone_array;
spa_api[sidl_generic_clone_python_array_NUM] =
(void *)sidl_generic_clone_python_array;
spa_api[sidl_generic_borrow_python_array_NUM] =
(void *)sidl_generic_borrow_python_array;
spa_api[sidl_python_copy_NUM] =
(void *)sidl_python_copy;
spa_api[sidl_bool__borrow_python_array_NUM] =
(void *)sidl_bool__borrow_python_array;
spa_api[sidl_bool__clone_python_array_column_NUM] =
(void *)sidl_bool__clone_python_array_column;
spa_api[sidl_bool__clone_python_array_row_NUM] =
(void *)sidl_bool__clone_python_array_row;
spa_api[sidl_bool__clone_python_array_NUM] =
(void *)sidl_bool__clone_python_array;
spa_api[sidl_char__borrow_python_array_NUM] =
(void *)sidl_char__borrow_python_array;
spa_api[sidl_char__clone_python_array_column_NUM] =
(void *)sidl_char__clone_python_array_column;
spa_api[sidl_char__clone_python_array_row_NUM] =
(void *)sidl_char__clone_python_array_row;
spa_api[sidl_char__clone_python_array_NUM] =
(void *)sidl_char__clone_python_array;
spa_api[sidl_dcomplex__borrow_python_array_NUM] =
(void *)sidl_dcomplex__borrow_python_array;
spa_api[sidl_dcomplex__clone_python_array_column_NUM] =
(void *)sidl_dcomplex__clone_python_array_column;
spa_api[sidl_dcomplex__clone_python_array_row_NUM] =
(void *)sidl_dcomplex__clone_python_array_row;
spa_api[sidl_dcomplex__clone_python_array_NUM] =
(void *)sidl_dcomplex__clone_python_array;
spa_api[sidl_double__borrow_python_array_NUM] =
(void *)sidl_double__borrow_python_array;
spa_api[sidl_double__clone_python_array_column_NUM] =
(void *)sidl_double__clone_python_array_column;
spa_api[sidl_double__clone_python_array_row_NUM] =
(void *)sidl_double__clone_python_array_row;
spa_api[sidl_double__clone_python_array_NUM] =
(void *)sidl_double__clone_python_array;
spa_api[sidl_fcomplex__borrow_python_array_NUM] =
(void *)sidl_fcomplex__borrow_python_array;
spa_api[sidl_fcomplex__clone_python_array_column_NUM] =
(void *)sidl_fcomplex__clone_python_array_column;
spa_api[sidl_fcomplex__clone_python_array_row_NUM] =
(void *)sidl_fcomplex__clone_python_array_row;
spa_api[sidl_fcomplex__clone_python_array_NUM] =
(void *)sidl_fcomplex__clone_python_array;
spa_api[sidl_float__borrow_python_array_NUM] =
(void *)sidl_float__borrow_python_array;
spa_api[sidl_float__clone_python_array_column_NUM] =
(void *)sidl_float__clone_python_array_column;
spa_api[sidl_float__clone_python_array_row_NUM] =
(void *)sidl_float__clone_python_array_row;
spa_api[sidl_float__clone_python_array_NUM] =
(void *)sidl_float__clone_python_array;
spa_api[sidl_int__borrow_python_array_NUM] =
(void *)sidl_int__borrow_python_array;
spa_api[sidl_int__clone_python_array_column_NUM] =
(void *)sidl_int__clone_python_array_column;
spa_api[sidl_int__clone_python_array_row_NUM] =
(void *)sidl_int__clone_python_array_row;
spa_api[sidl_int__clone_python_array_NUM] =
(void *)sidl_int__clone_python_array;
spa_api[sidl_long__borrow_python_array_NUM] =
(void *)sidl_long__borrow_python_array;
spa_api[sidl_long__clone_python_array_column_NUM] =
(void *)sidl_long__clone_python_array_column;
spa_api[sidl_long__clone_python_array_row_NUM] =
(void *)sidl_long__clone_python_array_row;
spa_api[sidl_long__clone_python_array_NUM] =
(void *)sidl_long__clone_python_array;
spa_api[sidl_opaque__borrow_python_array_NUM] =
(void *)sidl_opaque__borrow_python_array;
spa_api[sidl_opaque__clone_python_array_column_NUM] =
(void *)sidl_opaque__clone_python_array_column;
spa_api[sidl_opaque__clone_python_array_row_NUM] =
(void *)sidl_opaque__clone_python_array_row;
spa_api[sidl_opaque__clone_python_array_NUM] =
(void *)sidl_opaque__clone_python_array;
spa_api[sidl_string__borrow_python_array_NUM] =
(void *)sidl_string__borrow_python_array;
spa_api[sidl_string__clone_python_array_column_NUM] =
(void *)sidl_string__clone_python_array_column;
spa_api[sidl_string__clone_python_array_row_NUM] =
(void *)sidl_string__clone_python_array_row;
spa_api[sidl_string__clone_python_array_NUM] =
(void *)sidl_string__clone_python_array;
spa_api[sidl_array__convert_python_NUM] =
(void *)sidl_array__convert_python;
spa_api[sidl_array__convert_sidl_NUM] =
(void *)sidl_array__convert_sidl;
spa_api[sidl_array__extract_python_info_NUM] =
(void *)sidl_array__extract_python_info;
c_api = PyCObject_FromVoidPtr((void *)spa_api, NULL);
if (c_api) {
PyDict_SetItemString(dict, "_C_API", c_api);
Py_DECREF(c_api);
}
if (PyErr_Occurred()) {
Py_FatalError("Can't initialize module sidlPyArrays.");
}
}
|