carrays.i 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. /* -----------------------------------------------------------------------------
  2. * carrays.i
  3. *
  4. * SWIG library file containing macros that can be used to manipulate simple
  5. * pointers as arrays.
  6. * ----------------------------------------------------------------------------- */
  7. /* -----------------------------------------------------------------------------
  8. * %array_functions(TYPE,NAME)
  9. *
  10. * Generates functions for creating and accessing elements of a C array
  11. * (as pointers). Creates the following functions:
  12. *
  13. * TYPE *new_NAME(int nelements)
  14. * void delete_NAME(TYPE *);
  15. * TYPE NAME_getitem(TYPE *, int index);
  16. * void NAME_setitem(TYPE *, int index, TYPE value);
  17. *
  18. * ----------------------------------------------------------------------------- */
  19. %define %array_functions(TYPE,NAME)
  20. %{
  21. static TYPE *new_##NAME(int nelements) { %}
  22. #ifdef __cplusplus
  23. %{ return new TYPE[nelements](); %}
  24. #else
  25. %{ return (TYPE *) calloc(nelements,sizeof(TYPE)); %}
  26. #endif
  27. %{}
  28. static void delete_##NAME(TYPE *ary) { %}
  29. #ifdef __cplusplus
  30. %{ delete [] ary; %}
  31. #else
  32. %{ free(ary); %}
  33. #endif
  34. %{}
  35. static TYPE NAME##_getitem(TYPE *ary, int index) {
  36. return ary[index];
  37. }
  38. static void NAME##_setitem(TYPE *ary, int index, TYPE value) {
  39. ary[index] = value;
  40. }
  41. %}
  42. TYPE *new_##NAME(int nelements);
  43. void delete_##NAME(TYPE *ary);
  44. TYPE NAME##_getitem(TYPE *ary, int index);
  45. void NAME##_setitem(TYPE *ary, int index, TYPE value);
  46. %enddef
  47. /* -----------------------------------------------------------------------------
  48. * %array_class(TYPE,NAME)
  49. *
  50. * Generates a class wrapper around a C array. The class has the following
  51. * interface:
  52. *
  53. * struct NAME {
  54. * NAME(int nelements);
  55. * ~NAME();
  56. * TYPE getitem(int index);
  57. * void setitem(int index, TYPE value);
  58. * TYPE * cast();
  59. * static NAME *frompointer(TYPE *t);
  60. * }
  61. *
  62. * ----------------------------------------------------------------------------- */
  63. %define %array_class(TYPE,NAME)
  64. %{
  65. typedef TYPE NAME;
  66. %}
  67. typedef struct {
  68. /* Put language specific enhancements here */
  69. } NAME;
  70. %extend NAME {
  71. #ifdef __cplusplus
  72. NAME(int nelements) {
  73. return new TYPE[nelements]();
  74. }
  75. ~NAME() {
  76. delete [] self;
  77. }
  78. #else
  79. NAME(int nelements) {
  80. return (TYPE *) calloc(nelements,sizeof(TYPE));
  81. }
  82. ~NAME() {
  83. free(self);
  84. }
  85. #endif
  86. TYPE getitem(int index) {
  87. return self[index];
  88. }
  89. void setitem(int index, TYPE value) {
  90. self[index] = value;
  91. }
  92. TYPE * cast() {
  93. return self;
  94. }
  95. static NAME *frompointer(TYPE *t) {
  96. return (NAME *) t;
  97. }
  98. };
  99. %types(NAME = TYPE);
  100. %enddef