This file is indexed.

/usr/include/python2.7/llnl_babel/sidlPyArrays.h is in python-sidl 1.4.0.dfsg-8.2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
/*
 * File:        sidlPyArrays.h
 * Copyright:   (c) 2001 Lawrence Livermore National Security, LLC
 * Revision:    @(#) $Revision: 6482 $
 * Date:        $Date: 2008-08-21 15:50:53 -0700 (Thu, 21 Aug 2008) $
 * Description: Runtime support for routines to convert arrays to/from Python
 *
 * Copyright (c) 2000-2001, Lawrence Livermore National Security, LLC
 * 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
 */

#ifndef included_sidlPyArrays_h
#define included_sidlPyArrays_h

/*
 * This header defines the external API for a Python C extension module.
 * It provides conversion routines between sidl arrays and Numerical
 * Python arrays.
 * 
 * These functions apply to all arrays
 *
 * This is a Python wrapper function for sidl__array_deleteRef.
 * void
 * sidl_python_deleteRef_array(struct sidl__array *array);
 *
 * Attempt to convert a sidl array into a Python object.
 * This method will create a Python object that borrows data from
 * the sidl array if it's possible; otherwise, it will create
 * an independent copy of the array. This function is designed
 * to be used in a Py_BuildValue call and a format string entry of "O&".
 * Return value: NULL means the conversion failed; otherwise,
 *               the conversion was successful.
 * PyObject *
 * sidl_python_borrow_array(struct sidl__array *array);
 *
 *
 * Attempt to convert a sidl array into an independent Python
 * object. This will create an independent Python object regardless
 * of whether borrowing is possible or not. This function is designed
 * to be used in a Py_BuildValue call and a format string entry of "O&".
 * Return value: NULL means the conversion failed; otherwise,
 *               the conversion was successful.
 * PyObject *
 * sidl_python_clone_array(struct sidl__array *array);
 *
 * Copy from src to dest if they're the same type.  This ignores the
 * lower and upper bounds on the indices in each dimension and just copies
 * based on the extents.
 * void
 * sidl_python_copy(struct sidl__array *src, struct sidl__array *dest);
 *
 * Ensure the array has the required ordering.  The intended usage is:
 *  foo = sidl_python_ensure(foo, FALSE);
 * or
 *  foo = sidl_python_ensure(foo, TRUE);
 * If ensure must make a copy of src, it deleteRef's the incoming array.
 * struct sidl__array *
 * sidl_python_ensure(struct sidl__array *src, int columnOrdering);
 *
 *
 * For each type, 
 *      bool
 *      char
 *      dcomplex
 *      double
 *      fcomplex
 *      float
 *      int
 *      long
 *      opaque
 *      string
 * there are three methods related to converting python arrays into
 * sidl arrays.  For each type x, the method names and meanings are
 * as follows: 
 *
 *
 * Attempt to convert a Python object into a sidl array of x's. This
 * method will attempt to borrow data from the Python object if it's
 * possible; if borrowing is not possible, it will create an independent
 * copy. This function is designed for use as a convert function in a
 * PyArg_ParseTuple call with a format string entry of "O&".
 * Return value: 1 is returned if the conversion was successful; otherwise,
 *               0 is returned.
 * int
 * sidl_x__borrow_python_array(PyObject *obj,
 *                             struct sidl_x__array **array);
 *
 *
 * Attempt to convert a Python object into an independent, column-ordered
 * sidl array of x's.  This will always copy data from the Python object
 * unless the Python object is actually borrowing data from a SIDL array.
 * This function is designed for use as a convert
 * function in a PyArg_ParseTuple call with a format string entry of "O&".
 * Return value: 1 is returned if the conversion was successful; otherwise,
 *               0 is returned.
 * int
 * sidl_x__clone_python_array_column(PyObject *obj,
 *                                   struct sidl_x__array **array);
 *
 *
 * Attempt to convert a Python object into an independent, row-ordered
 * sidl array of x's.  This will always copy data from the Python object
 * unless the Python object is actually borrowing data from a SIDL array.
 * This function is designed for use as a convert
 * function in a PyArg_ParseTuple call with a format string entry of "O&".
 * Return value: 1 is returned if the conversion was successful; otherwise,
 *               0 is returned.
 * int
 * sidl_x__clone_python_array_row(PyObject *obj,
 *                                struct sidl_x__array **array);
 *
 * Attempt to convert a Python object into an independent
 * sidl array of x's.  This will always copy data from the Python object
 * unless the Python object is actually borrowing data from a SIDL array.
 * This function is designed for use as a convert
 * function in a PyArg_ParseTuple call with a format string entry of "O&".
 * Return value: 1 is returned if the conversion was successful; otherwise,
 *               0 is returned.
 * int
 * sidl_x__clone_python_array(PyObject *obj,
 *                            struct sidl_x__array **array);
 *
 *
 *
 *
 *
 *
 * Here are the standalone functions.  These are useful for arrays of
 * object or interface pointers.
 *
 *
 *
 * This function will copy a Python array into a sidl array.  The
 * sidl array is assumed to have the same shape and index bounds
 * as the Python array.
 *
 * setfunc is called as follows:
 *     (*setfunc)(sidl_dest, ind, pyobj)
 *     sidl_dest is the void pointer passed to sidl_array__convert_python.
 *     ind       is a pointer to dimen integers
 *     pyobj     is a pointer to a Python object from pya_src.
 * If setfunc returns a true value, sidl_array__convert_python will 
 * immediately cease copying and return a false value.
 *
 * A true value is returned if the function was successful; otherwise,
 * a false value is returned to indicated that the operation failed.
 *
 * int
 * sidl_array__convert_python(PyArrayObject          *pya_src,
 *                            const int32_t           dimen,
 *                            void                   *sidl_dest,
 *                            sidl_array_set_py_elem  setfunc) 
 *
 *
 *
 * This function will copy a sidl array into a Python array.  The
 * Python array is assumes to have the same shape as the sidl array.
 * The Python array need not have index bounds.
 *
 * getfunc is called as follows:
 *     (*getfunc)(sidl_dest, ind, pyobj)
 *     sidl_src  is the void pointer passed to sidl_array__convert_sidl.
 *     ind       is a pointer to dimen integers
 *     pyobj     is a pointer to a pointer to a Python object from pya_dest.
 *               This is where the return is stored
 * If setfunc returns a true value, sidl_array__convert_sidl will 
 * immediately cease copying and return a false value.
 *
 * A true value is returned if the function was successful; otherwise,
 * a false value is returned to indicated that the operation failed.
 *
 * int
 * sidl_array__convert_sidl(PyArrayObject          *pya_dest,
 *                          const int32_t           dimen,
 *                          int32_t                 lower[],
 *                          const int32_t           upper[],
 *                          const int32_t           numelem[],
 *                          void                   *sidl_src,
 *                          sidl_array_get_py_elem  getfunc) 
 *
 *
 *
 *
 * Extract the dimension information from a Numerical Python array
 * into a form that sidl can use.
 *      dimension   on entry a pointer to a single integer
 *      lower       an array of SIDL_MAX_ARRAY_DIMENSION integers
 *      upper       an array of SIDL_MAX_ARRAY_DIMENSION integers
 *      stride      an array of SIDL_MAX_ARRAY_DIMENSION integers
 * int
 * sidl_array__extract_python_info(PyArrayObject  *pya,
 *                                 int32_t        *dimension,
 *                                 int32_t       **lower,
 *                                 int32_t       **upper,
 *                                 int32_t       **stride)
 */

#include <Python.h>
#include "babel_config.h"
#ifndef included_sidlArray_h
#include "sidlArray.h"
#endif
#ifndef included_sidlType_h
#include "sidlType.h"
#endif

/*
 * Forward declarations of array types.
 */
struct sidl_bool__array;
struct sidl_char__array;
struct sidl_dcomplex__array;
struct sidl_double__array;
struct sidl_fcomplex__array;
struct sidl_float__array;
struct sidl_int__array;
struct sidl_long__array;
struct sidl_opaque__array;
struct sidl_string__array;
struct sidl_BaseInterface__array;

typedef int (*sidl_array_set_py_elem)(void *, const int32_t *, PyObject *);
typedef int (*sidl_array_get_py_elem)(void *, const int32_t *, PyObject **);

/*
 * Here we use the standard Python method for exposing an external
 * C API.  It's not particular pretty, but it works.
 */

#define sidl_python_deleteRef_array_NUM 0
#define sidl_python_deleteRef_array_RETURN void
#define sidl_python_deleteRef_array_PROTO \
  (struct sidl__array *array)

#define sidl_python_borrow_array_NUM 1
#define sidl_python_borrow_array_RETURN PyObject *
#define sidl_python_borrow_array_PROTO \
  (struct sidl__array *array)

#define sidl_python_clone_array_NUM 2
#define sidl_python_clone_array_RETURN PyObject *
#define sidl_python_clone_array_PROTO \
  (struct sidl__array *array)

#define sidl_generic_clone_python_array_NUM 3
#define sidl_generic_clone_python_array_RETURN int
#define sidl_generic_clone_python_array_PROTO \
  (PyObject *obj, struct sidl__array **array)

#define sidl_generic_borrow_python_array_NUM 4
#define sidl_generic_borrow_python_array_RETURN int
#define sidl_generic_borrow_python_array_PROTO \
  (PyObject *obj, struct sidl__array **array)

#define sidl_python_copy_NUM 5
#define sidl_python_copy_RETURN void
#define sidl_python_copy_PROTO \
  (struct sidl__array *src, struct sidl__array *dest)

#define sidl_python_ensure_NUM 6
#define sidl_python_ensure_RETURN struct sidl__array *
#define sidl_python_ensure_PROTO \
  (struct sidl__array *src, int columnOrdering)


#define sidl_bool__borrow_python_array_NUM 7
#define sidl_bool__borrow_python_array_RETURN int
#define sidl_bool__borrow_python_array_PROTO \
  (PyObject *obj, struct sidl_bool__array **array)

#define sidl_bool__clone_python_array_column_NUM 8
#define sidl_bool__clone_python_array_column_RETURN int
#define sidl_bool__clone_python_array_column_PROTO \
  (PyObject *obj, struct sidl_bool__array **array)

#define sidl_bool__clone_python_array_row_NUM 9
#define sidl_bool__clone_python_array_row_RETURN int
#define sidl_bool__clone_python_array_row_PROTO \
  (PyObject *obj, struct sidl_bool__array **array)

#define sidl_bool__clone_python_array_NUM 10
#define sidl_bool__clone_python_array_RETURN int
#define sidl_bool__clone_python_array_PROTO \
  (PyObject *obj, struct sidl_bool__array **array)



#define sidl_char__borrow_python_array_NUM 11
#define sidl_char__borrow_python_array_RETURN int
#define sidl_char__borrow_python_array_PROTO \
  (PyObject *obj, struct sidl_char__array **array)

#define sidl_char__clone_python_array_column_NUM 12
#define sidl_char__clone_python_array_column_RETURN int
#define sidl_char__clone_python_array_column_PROTO \
  (PyObject *obj, struct sidl_char__array **array)

#define sidl_char__clone_python_array_row_NUM 13
#define sidl_char__clone_python_array_row_RETURN int
#define sidl_char__clone_python_array_row_PROTO \
  (PyObject *obj, struct sidl_char__array **array)

#define sidl_char__clone_python_array_NUM 14
#define sidl_char__clone_python_array_RETURN int
#define sidl_char__clone_python_array_PROTO \
  (PyObject *obj, struct sidl_char__array **array)

#define sidl_dcomplex__borrow_python_array_NUM 15
#define sidl_dcomplex__borrow_python_array_RETURN int
#define sidl_dcomplex__borrow_python_array_PROTO \
  (PyObject *obj, struct sidl_dcomplex__array **array)

#define sidl_dcomplex__clone_python_array_column_NUM 16
#define sidl_dcomplex__clone_python_array_column_RETURN int
#define sidl_dcomplex__clone_python_array_column_PROTO \
  (PyObject *obj, struct sidl_dcomplex__array **array)

#define sidl_dcomplex__clone_python_array_row_NUM 17
#define sidl_dcomplex__clone_python_array_row_RETURN int
#define sidl_dcomplex__clone_python_array_row_PROTO \
  (PyObject *obj, struct sidl_dcomplex__array **array)

#define sidl_dcomplex__clone_python_array_NUM 18
#define sidl_dcomplex__clone_python_array_RETURN int
#define sidl_dcomplex__clone_python_array_PROTO \
  (PyObject *obj, struct sidl_dcomplex__array **array)


#define sidl_double__borrow_python_array_NUM 19
#define sidl_double__borrow_python_array_RETURN int
#define sidl_double__borrow_python_array_PROTO \
  (PyObject *obj, struct sidl_double__array **array)

#define sidl_double__clone_python_array_column_NUM 20
#define sidl_double__clone_python_array_column_RETURN int
#define sidl_double__clone_python_array_column_PROTO \
  (PyObject *obj, struct sidl_double__array **array)

#define sidl_double__clone_python_array_row_NUM 21
#define sidl_double__clone_python_array_row_RETURN int
#define sidl_double__clone_python_array_row_PROTO \
  (PyObject *obj, struct sidl_double__array **array)

#define sidl_double__clone_python_array_NUM 22
#define sidl_double__clone_python_array_RETURN int
#define sidl_double__clone_python_array_PROTO \
  (PyObject *obj, struct sidl_double__array **array)



#define sidl_fcomplex__borrow_python_array_NUM 23
#define sidl_fcomplex__borrow_python_array_RETURN int
#define sidl_fcomplex__borrow_python_array_PROTO \
  (PyObject *obj, struct sidl_fcomplex__array **array)

#define sidl_fcomplex__clone_python_array_column_NUM 24
#define sidl_fcomplex__clone_python_array_column_RETURN int
#define sidl_fcomplex__clone_python_array_column_PROTO \
  (PyObject *obj, struct sidl_fcomplex__array **array)

#define sidl_fcomplex__clone_python_array_row_NUM 25
#define sidl_fcomplex__clone_python_array_row_RETURN int
#define sidl_fcomplex__clone_python_array_row_PROTO \
  (PyObject *obj, struct sidl_fcomplex__array **array)

#define sidl_fcomplex__clone_python_array_NUM 26
#define sidl_fcomplex__clone_python_array_RETURN int
#define sidl_fcomplex__clone_python_array_PROTO \
  (PyObject *obj, struct sidl_fcomplex__array **array)



#define sidl_float__borrow_python_array_NUM 27
#define sidl_float__borrow_python_array_RETURN int
#define sidl_float__borrow_python_array_PROTO \
  (PyObject *obj, struct sidl_float__array **array)

#define sidl_float__clone_python_array_column_NUM 28
#define sidl_float__clone_python_array_column_RETURN int
#define sidl_float__clone_python_array_column_PROTO \
  (PyObject *obj, struct sidl_float__array **array)

#define sidl_float__clone_python_array_row_NUM 29
#define sidl_float__clone_python_array_row_RETURN int
#define sidl_float__clone_python_array_row_PROTO \
  (PyObject *obj, struct sidl_float__array **array)

#define sidl_float__clone_python_array_NUM 30
#define sidl_float__clone_python_array_RETURN int
#define sidl_float__clone_python_array_PROTO \
  (PyObject *obj, struct sidl_float__array **array)


#define sidl_int__borrow_python_array_NUM 31
#define sidl_int__borrow_python_array_RETURN int
#define sidl_int__borrow_python_array_PROTO \
  (PyObject *obj, struct sidl_int__array **array)

#define sidl_int__clone_python_array_column_NUM 32
#define sidl_int__clone_python_array_column_RETURN int
#define sidl_int__clone_python_array_column_PROTO \
  (PyObject *obj, struct sidl_int__array **array)

#define sidl_int__clone_python_array_row_NUM 33
#define sidl_int__clone_python_array_row_RETURN int
#define sidl_int__clone_python_array_row_PROTO \
  (PyObject *obj, struct sidl_int__array **array)

#define sidl_int__clone_python_array_NUM 34
#define sidl_int__clone_python_array_RETURN int
#define sidl_int__clone_python_array_PROTO \
  (PyObject *obj, struct sidl_int__array **array)



#define sidl_long__borrow_python_array_NUM 35
#define sidl_long__borrow_python_array_RETURN int
#define sidl_long__borrow_python_array_PROTO \
  (PyObject *obj, struct sidl_long__array **array)

#define sidl_long__clone_python_array_column_NUM 36
#define sidl_long__clone_python_array_column_RETURN int
#define sidl_long__clone_python_array_column_PROTO \
  (PyObject *obj, struct sidl_long__array **array)

#define sidl_long__clone_python_array_row_NUM 37
#define sidl_long__clone_python_array_row_RETURN int
#define sidl_long__clone_python_array_row_PROTO \
  (PyObject *obj, struct sidl_long__array **array)

#define sidl_long__clone_python_array_NUM 38
#define sidl_long__clone_python_array_RETURN int
#define sidl_long__clone_python_array_PROTO \
  (PyObject *obj, struct sidl_long__array **array)



#define sidl_opaque__borrow_python_array_NUM 39
#define sidl_opaque__borrow_python_array_RETURN int
#define sidl_opaque__borrow_python_array_PROTO \
  (PyObject *obj, struct sidl_opaque__array **array)

#define sidl_opaque__clone_python_array_column_NUM 40
#define sidl_opaque__clone_python_array_column_RETURN int
#define sidl_opaque__clone_python_array_column_PROTO \
  (PyObject *obj, struct sidl_opaque__array **array)

#define sidl_opaque__clone_python_array_row_NUM 41
#define sidl_opaque__clone_python_array_row_RETURN int
#define sidl_opaque__clone_python_array_row_PROTO \
  (PyObject *obj, struct sidl_opaque__array **array)

#define sidl_opaque__clone_python_array_NUM 42
#define sidl_opaque__clone_python_array_RETURN int
#define sidl_opaque__clone_python_array_PROTO \
  (PyObject *obj, struct sidl_opaque__array **array)



#define sidl_string__borrow_python_array_NUM 43
#define sidl_string__borrow_python_array_RETURN int
#define sidl_string__borrow_python_array_PROTO \
  (PyObject *obj, struct sidl_string__array **array)

#define sidl_string__clone_python_array_column_NUM 44
#define sidl_string__clone_python_array_column_RETURN int
#define sidl_string__clone_python_array_column_PROTO \
  (PyObject *obj, struct sidl_string__array **array)

#define sidl_string__clone_python_array_row_NUM 45
#define sidl_string__clone_python_array_row_RETURN int
#define sidl_string__clone_python_array_row_PROTO \
  (PyObject *obj, struct sidl_string__array **array)

#define sidl_string__clone_python_array_NUM 46
#define sidl_string__clone_python_array_RETURN int
#define sidl_string__clone_python_array_PROTO \
  (PyObject *obj, struct sidl_string__array **array)


#define sidl_array__convert_python_NUM 47
#define sidl_array__convert_python_RETURN int
#define sidl_array__convert_python_PROTO \
  (PyObject *pya_src, const int32_t dimen, void *sidl_dest, \
   sidl_array_set_py_elem setfunc)

#define sidl_array__convert_sidl_NUM 48
#define sidl_array__convert_sidl_RETURN int
#define sidl_array__convert_sidl_PROTO \
  (PyObject *pya_dest, \
   const int32_t dimen, \
   int32_t lower[], \
   const int32_t upper[], \
   const int32_t numelem[], \
   void *sidl_src, \
   sidl_array_get_py_elem getfunc)

#define sidl_array__extract_python_info_NUM 49
#define sidl_array__extract_python_info_RETURN int
#define sidl_array__extract_python_info_PROTO \
  (PyObject *pya, int32_t *dimension, int32_t lower[], int32_t upper[],\
   int32_t stride[])

#define sidlPyArrays_API_pointers 50


#ifdef sidlPyArrays_MODULE

static sidl_python_borrow_array_RETURN
sidl_python_borrow_array sidl_python_borrow_array_PROTO;

static sidl_python_clone_array_RETURN
sidl_python_clone_array sidl_python_clone_array_PROTO;

static sidl_generic_clone_python_array_RETURN
sidl_generic_clone_python_array sidl_generic_clone_python_array_PROTO;

static sidl_generic_borrow_python_array_RETURN
sidl_generic_borrow_python_array sidl_generic_borrow_python_array_PROTO;

static sidl_python_copy_RETURN
sidl_python_copy sidl_python_copy_PROTO;

static sidl_python_ensure_RETURN
sidl_python_ensure sidl_python_ensure_PROTO;

static sidl_bool__borrow_python_array_RETURN
sidl_bool__borrow_python_array sidl_bool__borrow_python_array_PROTO;

static sidl_bool__clone_python_array_column_RETURN
sidl_bool__clone_python_array_column sidl_bool__clone_python_array_column_PROTO;

static sidl_bool__clone_python_array_row_RETURN
sidl_bool__clone_python_array_row sidl_bool__clone_python_array_row_PROTO;

static sidl_bool__clone_python_array_RETURN
sidl_bool__clone_python_array sidl_bool__clone_python_array_PROTO;

static sidl_char__borrow_python_array_RETURN
sidl_char__borrow_python_array sidl_char__borrow_python_array_PROTO;

static sidl_char__clone_python_array_column_RETURN
sidl_char__clone_python_array_column sidl_char__clone_python_array_column_PROTO;
static sidl_char__clone_python_array_row_RETURN
sidl_char__clone_python_array_row sidl_char__clone_python_array_row_PROTO;
static sidl_char__clone_python_array_RETURN
sidl_char__clone_python_array sidl_char__clone_python_array_PROTO;

static sidl_dcomplex__borrow_python_array_RETURN
sidl_dcomplex__borrow_python_array sidl_dcomplex__borrow_python_array_PROTO;

static sidl_dcomplex__clone_python_array_column_RETURN
sidl_dcomplex__clone_python_array_column sidl_dcomplex__clone_python_array_column_PROTO;

static sidl_dcomplex__clone_python_array_row_RETURN
sidl_dcomplex__clone_python_array_row sidl_dcomplex__clone_python_array_row_PROTO;

static sidl_dcomplex__clone_python_array_RETURN
sidl_dcomplex__clone_python_array sidl_dcomplex__clone_python_array_PROTO;

static sidl_double__borrow_python_array_RETURN
sidl_double__borrow_python_array sidl_double__borrow_python_array_PROTO;

static sidl_double__clone_python_array_column_RETURN
sidl_double__clone_python_array_column sidl_double__clone_python_array_column_PROTO;

static sidl_double__clone_python_array_row_RETURN
sidl_double__clone_python_array_row sidl_double__clone_python_array_row_PROTO;

static sidl_double__clone_python_array_RETURN
sidl_double__clone_python_array sidl_double__clone_python_array_PROTO;

static sidl_fcomplex__borrow_python_array_RETURN
sidl_fcomplex__borrow_python_array sidl_fcomplex__borrow_python_array_PROTO;

static sidl_fcomplex__clone_python_array_column_RETURN
sidl_fcomplex__clone_python_array_column sidl_fcomplex__clone_python_array_column_PROTO;

static sidl_fcomplex__clone_python_array_row_RETURN
sidl_fcomplex__clone_python_array_row sidl_fcomplex__clone_python_array_row_PROTO;

static sidl_fcomplex__clone_python_array_RETURN
sidl_fcomplex__clone_python_array sidl_fcomplex__clone_python_array_PROTO;

static sidl_float__borrow_python_array_RETURN
sidl_float__borrow_python_array sidl_float__borrow_python_array_PROTO;

static sidl_float__clone_python_array_column_RETURN
sidl_float__clone_python_array_column sidl_float__clone_python_array_column_PROTO;

static sidl_float__clone_python_array_row_RETURN
sidl_float__clone_python_array_row sidl_float__clone_python_array_row_PROTO;

static sidl_float__clone_python_array_RETURN
sidl_float__clone_python_array sidl_float__clone_python_array_PROTO;

static sidl_int__borrow_python_array_RETURN
sidl_int__borrow_python_array sidl_int__borrow_python_array_PROTO;

static sidl_int__clone_python_array_column_RETURN
sidl_int__clone_python_array_column sidl_int__clone_python_array_column_PROTO;

static sidl_int__clone_python_array_row_RETURN
sidl_int__clone_python_array_row sidl_int__clone_python_array_row_PROTO;

static sidl_int__clone_python_array_RETURN
sidl_int__clone_python_array sidl_int__clone_python_array_PROTO;

static sidl_long__borrow_python_array_RETURN
sidl_long__borrow_python_array sidl_long__borrow_python_array_PROTO;

static sidl_long__clone_python_array_column_RETURN
sidl_long__clone_python_array_column sidl_long__clone_python_array_column_PROTO;

static sidl_long__clone_python_array_row_RETURN
sidl_long__clone_python_array_row sidl_long__clone_python_array_row_PROTO;

static sidl_long__clone_python_array_RETURN
sidl_long__clone_python_array sidl_long__clone_python_array_PROTO;

static sidl_opaque__borrow_python_array_RETURN
sidl_opaque__borrow_python_array sidl_opaque__borrow_python_array_PROTO;

static sidl_opaque__clone_python_array_column_RETURN
sidl_opaque__clone_python_array_column sidl_opaque__clone_python_array_column_PROTO;

static sidl_opaque__clone_python_array_row_RETURN
sidl_opaque__clone_python_array_row sidl_opaque__clone_python_array_row_PROTO;

static sidl_opaque__clone_python_array_RETURN
sidl_opaque__clone_python_array sidl_opaque__clone_python_array_PROTO;

static sidl_string__borrow_python_array_RETURN
sidl_string__borrow_python_array sidl_string__borrow_python_array_PROTO;

static sidl_string__clone_python_array_column_RETURN
sidl_string__clone_python_array_column sidl_string__clone_python_array_column_PROTO;

static sidl_string__clone_python_array_row_RETURN
sidl_string__clone_python_array_row sidl_string__clone_python_array_row_PROTO;

static sidl_string__clone_python_array_RETURN
sidl_string__clone_python_array sidl_string__clone_python_array_PROTO;

static sidl_array__convert_python_RETURN
sidl_array__convert_python sidl_array__convert_python_PROTO;

static sidl_array__convert_sidl_RETURN
sidl_array__convert_sidl sidl_array__convert_sidl_PROTO;

static sidl_array__extract_python_info_RETURN
sidl_array__extract_python_info sidl_array__extract_python_info_PROTO;

#else /* sidlPyArrays_MODULE */

static void **sidlPyArrays_API;

#define sidl_python_deleteRef_array  \
(*( sidl_python_deleteRef_array_RETURN (*) \
   sidl_python_deleteRef_array_PROTO) \
 sidlPyArrays_API[sidl_python_deleteRef_array_NUM])

#define sidl_python_borrow_array  \
(*( sidl_python_borrow_array_RETURN (*) \
   sidl_python_borrow_array_PROTO) \
 sidlPyArrays_API[sidl_python_borrow_array_NUM])

#define sidl_python_clone_array  \
(*( sidl_python_clone_array_RETURN (*) \
   sidl_python_clone_array_PROTO) \
 sidlPyArrays_API[sidl_python_clone_array_NUM])

#define sidl_generic_clone_python_array \
(*( sidl_generic_clone_python_array_RETURN (*) \
   sidl_generic_clone_python_array_PROTO) \
 sidlPyArrays_API[sidl_generic_clone_python_array_NUM])

#define sidl_generic_borrow_python_array \
(*( sidl_generic_borrow_python_array_RETURN (*) \
   sidl_generic_borrow_python_array_PROTO) \
 sidlPyArrays_API[sidl_generic_borrow_python_array_NUM])

#define sidl_python_copy \
(*( sidl_python_copy_RETURN (*) \
   sidl_python_copy_PROTO) \
 sidlPyArrays_API[sidl_python_copy_NUM])

#define sidl_python_ensure \
(*( sidl_python_ensure_RETURN (*) \
   sidl_python_ensure_PROTO) \
 sidlPyArrays_API[sidl_python_ensure_NUM])

#define sidl_bool__borrow_python_array  \
(*( sidl_bool__borrow_python_array_RETURN (*) \
   sidl_bool__borrow_python_array_PROTO) \
 sidlPyArrays_API[sidl_bool__borrow_python_array_NUM])

#define sidl_bool__clone_python_array_column  \
(*( sidl_bool__clone_python_array_column_RETURN (*) \
   sidl_bool__clone_python_array_column_PROTO) \
 sidlPyArrays_API[sidl_bool__clone_python_array_column_NUM])

#define sidl_bool__clone_python_array_row  \
(*( sidl_bool__clone_python_array_row_RETURN (*) \
   sidl_bool__clone_python_array_row_PROTO) \
 sidlPyArrays_API[sidl_bool__clone_python_array_row_NUM])

#define sidl_bool__clone_python_array  \
(*( sidl_bool__clone_python_array_RETURN (*) \
   sidl_bool__clone_python_array_PROTO) \
 sidlPyArrays_API[sidl_bool__clone_python_array_NUM])

#define sidl_char__borrow_python_array  \
(*( sidl_char__borrow_python_array_RETURN (*) \
   sidl_char__borrow_python_array_PROTO) \
 sidlPyArrays_API[sidl_char__borrow_python_array_NUM])

#define sidl_char__clone_python_array_column  \
(*( sidl_char__clone_python_array_column_RETURN (*) \
   sidl_char__clone_python_array_column_PROTO) \
 sidlPyArrays_API[sidl_char__clone_python_array_column_NUM])

#define sidl_char__clone_python_array_row  \
(*( sidl_char__clone_python_array_row_RETURN (*) \
   sidl_char__clone_python_array_row_PROTO) \
 sidlPyArrays_API[sidl_char__clone_python_array_row_NUM])

#define sidl_char__clone_python_array  \
(*( sidl_char__clone_python_array_RETURN (*) \
   sidl_char__clone_python_array_PROTO) \
 sidlPyArrays_API[sidl_char__clone_python_array_NUM])

#define sidl_dcomplex__borrow_python_array  \
(*( sidl_dcomplex__borrow_python_array_RETURN (*) \
   sidl_dcomplex__borrow_python_array_PROTO) \
 sidlPyArrays_API[sidl_dcomplex__borrow_python_array_NUM])

#define sidl_dcomplex__clone_python_array_column  \
(*( sidl_dcomplex__clone_python_array_column_RETURN (*) \
   sidl_dcomplex__clone_python_array_column_PROTO) \
 sidlPyArrays_API[sidl_dcomplex__clone_python_array_column_NUM])

#define sidl_dcomplex__clone_python_array_row  \
(*( sidl_dcomplex__clone_python_array_row_RETURN (*) \
   sidl_dcomplex__clone_python_array_row_PROTO) \
 sidlPyArrays_API[sidl_dcomplex__clone_python_array_row_NUM])

#define sidl_dcomplex__clone_python_array  \
(*( sidl_dcomplex__clone_python_array_RETURN (*) \
   sidl_dcomplex__clone_python_array_PROTO) \
 sidlPyArrays_API[sidl_dcomplex__clone_python_array_NUM])

#define sidl_double__borrow_python_array  \
(*( sidl_double__borrow_python_array_RETURN (*) \
   sidl_double__borrow_python_array_PROTO) \
 sidlPyArrays_API[sidl_double__borrow_python_array_NUM])

#define sidl_double__clone_python_array_column  \
(*( sidl_double__clone_python_array_column_RETURN (*) \
   sidl_double__clone_python_array_column_PROTO) \
 sidlPyArrays_API[sidl_double__clone_python_array_column_NUM])

#define sidl_double__clone_python_array_row  \
(*( sidl_double__clone_python_array_row_RETURN (*) \
   sidl_double__clone_python_array_row_PROTO) \
 sidlPyArrays_API[sidl_double__clone_python_array_row_NUM])

#define sidl_double__clone_python_array  \
(*( sidl_double__clone_python_array_RETURN (*) \
   sidl_double__clone_python_array_PROTO) \
 sidlPyArrays_API[sidl_double__clone_python_array_NUM])

#define sidl_fcomplex__borrow_python_array  \
(*( sidl_fcomplex__borrow_python_array_RETURN (*) \
   sidl_fcomplex__borrow_python_array_PROTO) \
 sidlPyArrays_API[sidl_fcomplex__borrow_python_array_NUM])

#define sidl_fcomplex__clone_python_array_column  \
(*( sidl_fcomplex__clone_python_array_column_RETURN (*) \
   sidl_fcomplex__clone_python_array_column_PROTO) \
 sidlPyArrays_API[sidl_fcomplex__clone_python_array_column_NUM])

#define sidl_fcomplex__clone_python_array_row  \
(*( sidl_fcomplex__clone_python_array_row_RETURN (*) \
   sidl_fcomplex__clone_python_array_row_PROTO) \
 sidlPyArrays_API[sidl_fcomplex__clone_python_array_row_NUM])

#define sidl_fcomplex__clone_python_array  \
(*( sidl_fcomplex__clone_python_array_RETURN (*) \
   sidl_fcomplex__clone_python_array_PROTO) \
 sidlPyArrays_API[sidl_fcomplex__clone_python_array_NUM])

#define sidl_float__borrow_python_array  \
(*( sidl_float__borrow_python_array_RETURN (*) \
   sidl_float__borrow_python_array_PROTO) \
 sidlPyArrays_API[sidl_float__borrow_python_array_NUM])

#define sidl_float__clone_python_array_column  \
(*( sidl_float__clone_python_array_column_RETURN (*) \
   sidl_float__clone_python_array_column_PROTO) \
 sidlPyArrays_API[sidl_float__clone_python_array_column_NUM])

#define sidl_float__clone_python_array_row  \
(*( sidl_float__clone_python_array_row_RETURN (*) \
   sidl_float__clone_python_array_row_PROTO) \
 sidlPyArrays_API[sidl_float__clone_python_array_row_NUM])

#define sidl_float__clone_python_array  \
(*( sidl_float__clone_python_array_RETURN (*) \
   sidl_float__clone_python_array_PROTO) \
 sidlPyArrays_API[sidl_float__clone_python_array_NUM])

#define sidl_int__borrow_python_array  \
(*( sidl_int__borrow_python_array_RETURN (*) \
   sidl_int__borrow_python_array_PROTO) \
 sidlPyArrays_API[sidl_int__borrow_python_array_NUM])

#define sidl_int__clone_python_array_column  \
(*( sidl_int__clone_python_array_column_RETURN (*) \
   sidl_int__clone_python_array_column_PROTO) \
 sidlPyArrays_API[sidl_int__clone_python_array_column_NUM])

#define sidl_int__clone_python_array_row  \
(*( sidl_int__clone_python_array_row_RETURN (*) \
   sidl_int__clone_python_array_row_PROTO) \
 sidlPyArrays_API[sidl_int__clone_python_array_row_NUM])

#define sidl_int__clone_python_array  \
(*( sidl_int__clone_python_array_RETURN (*) \
   sidl_int__clone_python_array_PROTO) \
 sidlPyArrays_API[sidl_int__clone_python_array_NUM])

#define sidl_long__borrow_python_array  \
(*( sidl_long__borrow_python_array_RETURN (*) \
   sidl_long__borrow_python_array_PROTO) \
 sidlPyArrays_API[sidl_long__borrow_python_array_NUM])

#define sidl_long__clone_python_array_column  \
(*( sidl_long__clone_python_array_column_RETURN (*) \
   sidl_long__clone_python_array_column_PROTO) \
 sidlPyArrays_API[sidl_long__clone_python_array_column_NUM])

#define sidl_long__clone_python_array_row  \
(*( sidl_long__clone_python_array_row_RETURN (*) \
   sidl_long__clone_python_array_row_PROTO) \
 sidlPyArrays_API[sidl_long__clone_python_array_row_NUM])

#define sidl_long__clone_python_array  \
(*( sidl_long__clone_python_array_RETURN (*) \
   sidl_long__clone_python_array_PROTO) \
 sidlPyArrays_API[sidl_long__clone_python_array_NUM])

#define sidl_opaque__borrow_python_array  \
(*( sidl_opaque__borrow_python_array_RETURN (*) \
   sidl_opaque__borrow_python_array_PROTO) \
 sidlPyArrays_API[sidl_opaque__borrow_python_array_NUM])

#define sidl_opaque__clone_python_array_column  \
(*( sidl_opaque__clone_python_array_column_RETURN (*) \
   sidl_opaque__clone_python_array_column_PROTO) \
 sidlPyArrays_API[sidl_opaque__clone_python_array_column_NUM])

#define sidl_opaque__clone_python_array_row  \
(*( sidl_opaque__clone_python_array_row_RETURN (*) \
   sidl_opaque__clone_python_array_row_PROTO) \
 sidlPyArrays_API[sidl_opaque__clone_python_array_row_NUM])

#define sidl_opaque__clone_python_array  \
(*( sidl_opaque__clone_python_array_RETURN (*) \
   sidl_opaque__clone_python_array_PROTO) \
 sidlPyArrays_API[sidl_opaque__clone_python_array_NUM])

#define sidl_string__borrow_python_array  \
(*( sidl_string__borrow_python_array_RETURN (*) \
   sidl_string__borrow_python_array_PROTO) \
 sidlPyArrays_API[sidl_string__borrow_python_array_NUM])

#define sidl_string__clone_python_array_column  \
(*( sidl_string__clone_python_array_column_RETURN (*) \
   sidl_string__clone_python_array_column_PROTO) \
 sidlPyArrays_API[sidl_string__clone_python_array_column_NUM])

#define sidl_string__clone_python_array_row  \
(*( sidl_string__clone_python_array_row_RETURN (*) \
   sidl_string__clone_python_array_row_PROTO) \
 sidlPyArrays_API[sidl_string__clone_python_array_row_NUM])

#define sidl_string__clone_python_array  \
(*( sidl_string__clone_python_array_RETURN (*) \
   sidl_string__clone_python_array_PROTO) \
 sidlPyArrays_API[sidl_string__clone_python_array_NUM])

#define sidl_array__convert_python  \
(*( sidl_array__convert_python_RETURN (*) \
   sidl_array__convert_python_PROTO) \
 sidlPyArrays_API[sidl_array__convert_python_NUM])

#define sidl_array__convert_sidl  \
(*( sidl_array__convert_sidl_RETURN (*) \
   sidl_array__convert_sidl_PROTO) \
 sidlPyArrays_API[sidl_array__convert_sidl_NUM])

#define sidl_array__extract_python_info  \
(*( sidl_array__extract_python_info_RETURN (*) \
   sidl_array__extract_python_info_PROTO) \
 sidlPyArrays_API[sidl_array__extract_python_info_NUM])

#ifdef HAVE_PTHREAD
#include <pthread.h>
#define import_SIDLPyArrays() \
{ \
  pthread_mutex_t __sidl_pyapi_mutex = PTHREAD_MUTEX_INITIALIZER; \
  PyObject *module = NULL; \
  pthread_mutex_lock(&__sidl_pyapi_mutex); \
  module = PyImport_ImportModule("sidlPyArrays"); \
  if (module != NULL) { \
    PyObject *module_dict = PyModule_GetDict(module); \
    PyObject *c_api_object = PyDict_GetItemString(module_dict, "_C_API"); \
    if (PyCObject_Check(c_api_object)) { \
       sidlPyArrays_API = (void **)PyCObject_AsVoidPtr(c_api_object); \
    } \
    else { fprintf(stderr, "babel: import_sidlPyArrays failed to lookup _C_API (%p).\n", c_api_object); }\
    Py_DECREF(module); \
  } \
  else { fprintf(stderr, "babel: import_sidlPyArrays failed to import its module.\n"); }\
  pthread_mutex_unlock(&__sidl_pyapi_mutex); \
  pthread_mutex_destroy(&__sidl_pyapi_mutex); \
}
#else
#define import_SIDLPyArrays() \
{ \
  PyObject *module = PyImport_ImportModule("sidlPyArrays"); \
  if (module != NULL) { \
    PyObject *module_dict = PyModule_GetDict(module); \
    PyObject *c_api_object = PyDict_GetItemString(module_dict, "_C_API"); \
    if (PyCObject_Check(c_api_object)) { \
       sidlPyArrays_API = (void **)PyCObject_AsVoidPtr(c_api_object); \
    } \
    else { fprintf(stderr, "babel: import_sidlPyArrays failed to lookup _C_API (%p).\n", c_api_object); }\
    Py_DECREF(module); \
  } \
  else { fprintf(stderr, "babel: import_sidlPyArrays failed to import its module.\n"); }\
}
#endif

#endif /* sidlPyArrays_MODULE */
#endif /* included_sidlPyArrays_h */