summaryrefslogtreecommitdiff
path: root/devtools/swigwin-1.3.34/Lib/ruby/rubystrings.swg
diff options
context:
space:
mode:
Diffstat (limited to 'devtools/swigwin-1.3.34/Lib/ruby/rubystrings.swg')
-rw-r--r--devtools/swigwin-1.3.34/Lib/ruby/rubystrings.swg61
1 files changed, 61 insertions, 0 deletions
diff --git a/devtools/swigwin-1.3.34/Lib/ruby/rubystrings.swg b/devtools/swigwin-1.3.34/Lib/ruby/rubystrings.swg
new file mode 100644
index 0000000..e6b92ef
--- /dev/null
+++ b/devtools/swigwin-1.3.34/Lib/ruby/rubystrings.swg
@@ -0,0 +1,61 @@
+/* ------------------------------------------------------------
+ * utility methods for char strings
+ * ------------------------------------------------------------ */
+
+%fragment("SWIG_AsCharPtrAndSize","header",fragment="SWIG_pchar_descriptor") {
+SWIGINTERN int
+SWIG_AsCharPtrAndSize(VALUE obj, char** cptr, size_t* psize, int *alloc)
+{
+ if (TYPE(obj) == T_STRING) {
+ %#if defined(StringValuePtr)
+ char *cstr = StringValuePtr(obj);
+ %#else
+ char *cstr = STR2CSTR(obj);
+ %#endif
+ size_t size = RSTRING_LEN(obj) + 1;
+ if (cptr) {
+ if (alloc) {
+ if (*alloc == SWIG_NEWOBJ) {
+ *cptr = %new_copy_array(cstr, size, char);
+ } else {
+ *cptr = cstr;
+ *alloc = SWIG_OLDOBJ;
+ }
+ }
+ }
+ if (psize) *psize = size;
+ return SWIG_OK;
+ } else {
+ swig_type_info* pchar_descriptor = SWIG_pchar_descriptor();
+ if (pchar_descriptor) {
+ void* vptr = 0;
+ if (SWIG_ConvertPtr(obj, &vptr, pchar_descriptor, 0) == SWIG_OK) {
+ if (cptr) *cptr = (char *)vptr;
+ if (psize) *psize = vptr ? (strlen((char*)vptr) + 1) : 0;
+ if (alloc) *alloc = SWIG_OLDOBJ;
+ return SWIG_OK;
+ }
+ }
+ }
+ return SWIG_TypeError;
+}
+}
+
+%fragment("SWIG_FromCharPtrAndSize","header",fragment="SWIG_pchar_descriptor") {
+SWIGINTERNINLINE VALUE
+SWIG_FromCharPtrAndSize(const char* carray, size_t size)
+{
+ if (carray) {
+ if (size > LONG_MAX) {
+ swig_type_info* pchar_descriptor = SWIG_pchar_descriptor();
+ return pchar_descriptor ?
+ SWIG_NewPointerObj(%const_cast(carray,char *), pchar_descriptor, 0) : Qnil;
+ } else {
+ return rb_str_new(carray, %numeric_cast(size,long));
+ }
+ } else {
+ return Qnil;
+ }
+}
+}
+