javascriptstrings.swg 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. /* ------------------------------------------------------------
  2. * utility methods for char strings
  3. * ------------------------------------------------------------ */
  4. %fragment("SWIG_AsCharPtrAndSize","header",fragment="SWIG_pchar_descriptor") {
  5. SWIGINTERN int
  6. SWIG_JSC_AsCharPtrAndSize(JSContextRef context, JSValueRef valRef, char** cptr, size_t* psize, int *alloc)
  7. {
  8. if(JSValueIsString(context, valRef)) {
  9. JSStringRef js_str = JSValueToStringCopy(context, valRef, NULL);
  10. size_t len = JSStringGetMaximumUTF8CStringSize(js_str);
  11. char* cstr = (char*) %new_array(len, char);
  12. /* JSStringGetUTF8CString returns the length including 0-terminator */
  13. len = JSStringGetUTF8CString(js_str, cstr, len);
  14. if(alloc) *alloc = SWIG_NEWOBJ;
  15. if(psize) *psize = len;
  16. if(cptr) *cptr = cstr;
  17. return SWIG_OK;
  18. } else {
  19. if(JSValueIsObject(context, valRef)) {
  20. JSObjectRef obj = JSValueToObject(context, valRef, NULL);
  21. // try if the object is a wrapped char[]
  22. swig_type_info* pchar_descriptor = SWIG_pchar_descriptor();
  23. if (pchar_descriptor) {
  24. void* vptr = 0;
  25. if (SWIG_ConvertPtr(obj, &vptr, pchar_descriptor, 0) == SWIG_OK) {
  26. if (cptr) *cptr = (char *) vptr;
  27. if (psize) *psize = vptr ? (strlen((char *)vptr) + 1) : 0;
  28. if (alloc) *alloc = SWIG_OLDOBJ;
  29. return SWIG_OK;
  30. }
  31. }
  32. return SWIG_TypeError;
  33. } else {
  34. return SWIG_TypeError;
  35. }
  36. }
  37. }
  38. }
  39. %fragment("SWIG_FromCharPtrAndSize","header",fragment="SWIG_pchar_descriptor") {
  40. SWIGINTERNINLINE JSValueRef
  41. SWIG_JSC_FromCharPtrAndSize(JSContextRef context, const char* carray, size_t size)
  42. {
  43. if (carray) {
  44. if (size > INT_MAX) {
  45. // TODO: handle extra long strings
  46. //swig_type_info* pchar_descriptor = SWIG_pchar_descriptor();
  47. //return pchar_descriptor ?
  48. // SWIG_InternalNewPointerObj(%const_cast(carray,char *), pchar_descriptor, 0) : SWIG_Py_Void();
  49. return JSValueMakeUndefined(context);
  50. } else {
  51. JSStringRef jsstring;
  52. JSValueRef result;
  53. if(size < 2) {
  54. char c[2];
  55. int i;
  56. for(i=0;i<size;++i) {
  57. c[i] = carray[i];
  58. }
  59. c[size] = 0;
  60. jsstring = JSStringCreateWithUTF8CString(c);
  61. } else {
  62. jsstring = JSStringCreateWithUTF8CString(carray);
  63. }
  64. result = JSValueMakeString(context, jsstring);
  65. JSStringRelease(jsstring);
  66. return result;
  67. }
  68. } else {
  69. return JSValueMakeUndefined(context);
  70. }
  71. }
  72. }
  73. %define %_typemap2_string(StringCode, CharCode,
  74. Char, CharName,
  75. SWIG_AsCharPtrAndSize,
  76. SWIG_FromCharPtrAndSize,
  77. SWIG_CharPtrLen,
  78. SWIG_CharBufLen,
  79. SWIG_NewCopyCharArray,
  80. SWIG_DeleteCharArray,
  81. FragLimits, CHAR_MIN, CHAR_MAX)
  82. %fragment("SWIG_From"#CharName"Ptr","header",fragment=#SWIG_FromCharPtrAndSize) {
  83. SWIGINTERNINLINE SWIG_Object
  84. SWIG_JSC_From##CharName##Ptr(JSContextRef context, const Char *cptr)
  85. {
  86. return SWIG_JSC_FromCharPtrAndSize(context, cptr, (cptr ? SWIG_CharPtrLen(cptr) : 0));
  87. }
  88. }
  89. %fragment("SWIG_From"#CharName"Array","header",fragment=#SWIG_FromCharPtrAndSize) {
  90. SWIGINTERNINLINE SWIG_Object
  91. SWIG_JSC_From##CharName##Array(JSContextRef context, const Char *cptr, size_t size)
  92. {
  93. return SWIG_JSC_FromCharPtrAndSize(context, cptr, size);
  94. }
  95. }
  96. %fragment("SWIG_As" #CharName "Ptr","header",fragment=#SWIG_AsCharPtrAndSize) {
  97. %define_as(SWIG_As##CharName##Ptr(obj, val, alloc), SWIG_JSC_AsCharPtrAndSize(context, obj, val, NULL, alloc))
  98. }
  99. %fragment("SWIG_As" #CharName "Array","header",fragment=#SWIG_AsCharPtrAndSize) {
  100. SWIGINTERN int
  101. SWIG_JSC_As##CharName##Array(JSContextRef context, SWIG_Object obj, Char *val, size_t size)
  102. {
  103. Char* cptr = 0; size_t csize = 0; int alloc = SWIG_OLDOBJ;
  104. int res = SWIG_JSC_AsCharPtrAndSize(context, obj, &cptr, &csize, &alloc);
  105. if (SWIG_IsOK(res)) {
  106. if ((csize == size + 1) && cptr && !(cptr[csize-1])) --csize;
  107. if (csize <= size) {
  108. if (val) {
  109. if (csize) memcpy(val, cptr, csize*sizeof(Char));
  110. if (csize < size) memset(val + csize, 0, (size - csize)*sizeof(Char));
  111. }
  112. if (alloc == SWIG_NEWOBJ) {
  113. SWIG_DeleteCharArray(cptr);
  114. res = SWIG_DelNewMask(res);
  115. }
  116. return res;
  117. }
  118. if (alloc == SWIG_NEWOBJ) SWIG_DeleteCharArray(cptr);
  119. }
  120. return SWIG_TypeError;
  121. }
  122. #define SWIG_As##CharName##Array(obj, val, size) SWIG_JSC_As##CharName##Array(context, obj, val, size)
  123. }
  124. /* Char */
  125. %fragment(SWIG_From_frag(Char),"header",fragment=#SWIG_FromCharPtrAndSize) {
  126. SWIGINTERNINLINE SWIG_Object
  127. SWIG_From_dec(Char)(Char c)
  128. {
  129. return SWIG_JSC_FromCharPtrAndSize(context, &c,1);
  130. }
  131. }
  132. %fragment(SWIG_AsVal_frag(Char),"header",
  133. fragment="SWIG_As"#CharName"Array",
  134. fragment=FragLimits,
  135. fragment=SWIG_AsVal_frag(long)) {
  136. SWIGINTERN int
  137. SWIG_AsVal_dec(Char)(SWIG_Object obj, Char *val)
  138. {
  139. int res = SWIG_As##CharName##Array(obj, val, 1);
  140. if (!SWIG_IsOK(res)) {
  141. long v;
  142. res = SWIG_AddCast(SWIG_AsVal(long)(obj, &v));
  143. if (SWIG_IsOK(res)) {
  144. if ((CHAR_MIN <= v) && (v <= CHAR_MAX)) {
  145. if (val) *val = %numeric_cast(v, Char);
  146. } else {
  147. res = SWIG_OverflowError;
  148. }
  149. }
  150. }
  151. return res;
  152. }
  153. }
  154. %_typemap_string(StringCode,
  155. Char,
  156. SWIG_AsCharPtrAndSize,
  157. SWIG_FromCharPtrAndSize,
  158. SWIG_CharPtrLen,
  159. SWIG_CharBufLen,
  160. SWIG_As##CharName##Ptr,
  161. SWIG_From##CharName##Ptr,
  162. SWIG_As##CharName##Array,
  163. SWIG_NewCopyCharArray,
  164. SWIG_DeleteCharArray)
  165. %enddef
  166. %insert(runtime) %{
  167. #define SWIG_AsCharPtrAndSize(val, cptr, psize, alloc) SWIG_JSC_AsCharPtrAndSize(context, val, cptr, psize, alloc)
  168. #define SWIG_FromCharPtrAndSize(cptr, size) SWIG_JSC_FromCharPtrAndSize(context, cptr, size)
  169. #define SWIG_FromCharPtr(cptr) SWIG_JSC_FromCharPtr(context, cptr)
  170. %}