|
Server : Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17 System : Linux localhost 2.6.18-419.el5 #1 SMP Fri Feb 24 22:47:42 UTC 2017 x86_64 User : nobody ( 99) PHP Version : 5.2.17 Disable Function : NONE Directory : /usr/share/swig/1.3.29/ruby/ |
Upload File : |
/* ------------------------------------------------------------
* --- Argc & Argv ---
* ------------------------------------------------------------ */
/* ------------------------------------------------------------
Use it as follow:
%apply (int ARGC, char **ARGV) { (size_t argc, const char **argv) }
%inline %{
int mainApp(size_t argc, const char **argv)
{
return argc;
}
then in the ruby side:
args = ["asdf", "asdf2"]
mainApp(args);
* ------------------------------------------------------------ */
%typemap(in) (int ARGC, char **ARGV) {
if (rb_obj_is_kind_of($input,rb_cArray)) {
int i;
int size = RARRAY($input)->len;
$1 = ($1_ltype) size;
$2 = (char **) malloc((size+1)*sizeof(char *));
VALUE *ptr = RARRAY($input)->ptr;
for (i=0; i < size; i++, ptr++) {
$2[i]= STR2CSTR(*ptr);
}
$2[i]=NULL;
} else {
$1 = 0; $2 = 0;
%argument_fail(SWIG_TypeError, "int ARGC, char **ARGV", $symname, $argnum);
}
}
%typemap(typecheck, precedence=SWIG_TYPECHECK_STRING_ARRAY) (int ARGC, char **ARGV) {
$1 = rb_obj_is_kind_of($input,rb_cArray);
}
%typemap(freearg) (int ARGC, char **ARGV) {
free((char *) $2);
}