Pass char * from javascript to c and return char * from c to javascript in Jsctypes

269 Views Asked by At

I have this C code in a library "pruebaChar.so" for use with jsctypes:

char * ejecutarComando(char * miComando){

     return miComando;
 }

Then, I have this other code for call "pruebaChar.so":

function miComando(unComando) {

    var {Cu} = require("chrome");
    var {ctypes} = Cu.import("resource://gre/modules/ctypes.jsm", null);

    var lib = ctypes.open("/home/usuario/pruebaChar.so"); 
    var comandoLib = lib.declare("ejecutarComando",             
                        ctypes.default_abi,
                        ctypes.char,    // return type is correct?
                        ctypes.char.ptr // argument type is correct?

    );

    /* How do I pass the argument to function 
        and save the return value from function?*/

    var  returnString = comandoLib(unComando); // Is this correct?
    return ???;

}

What values should I put in return type and argument type? How do I pass the argument to function and save the return value from function?

Thank you very much :)

1

There are 1 best solutions below

0
On

Instead of ctypes.char try using ctypes.char.ptr and for first argument of string it looks like it would work. which is also ctypes.char.ptr.

here's an example of someone doing a x11 jsctypes with string as return:

Im not pro a js-ctypes but if you can send me your .so file and tell me a bit about i can get it to work and let you know.