I am accessing the dll from Javascript using JSCTypes. I have to receive data by passing a character buffer to the following api,

__declspec(dllexport) WORD WINAPI receive( LPWORD lpwBufferSize, LPSTR lpsBuffer);

My jsctypes looks like this,

<code>
      let receive = libs.dll.declare("receive",
                         ctypes.stdcall_abi,  
                         ctypes.int32_t,           //Return type- return code
                         ctypes.int32_t.ptr,            // buffer size
                         ctypes.char.ptr,            // Buffer
                        );
    var bufferSize =new ctypes.int32_t(3000000).address(); //3000000
    var buffer =new ctypes.char().address();
    let rvopen = receive(bufferSize,buffer);
    return buffer.readString()
</code>

With above code, I could receive data for the first time correctly but xulrunner crashes on receive funtion call in the subsequent times. I tried to reproduce this produce this issue with a common dll available on windows.This throws an exception, uncaught exception: TypeError: ctypes.char.array(500).address is not a function

   <code>
      var hostName = exports.getString = function() {
                          let lib= ctypes.open('Ws2_32.dll');
                          let gethostname=lib.declare("gethostname",
                          ctypes.default_abi,
                          ctypes.int,
                          ctypes.char.ptr,
                          ctypes.int);
           var myArray = ctypes.char.array(500).address();
           gethostname(myArray, 500);
return myArray.readString();

};

If I drop the address api call and try it as below, var myArray = ctypes.char.array(64); I run into this issue,Although in C++ arrays are considered as pointers.

'uncaught exception: TypeError: expected type pointer, got ctypes.char.array(640000)' in file '' at line 0, col 0

I dont have access to any of the dll's source code. I just have the include file(.h) for the dll.I am a java developer and not sure if I can debug without the source code Any help appreciated!

link|improve this question

75% accept rate
feedback

2 Answers

up vote 1 down vote accepted

Have finally found a solution,

<code>
 let charArray= ctypes.ArrayType(ctypes.char);
 let myArray = new charArra(500);
</code>
link|improve this answer
feedback

If I had to guess, I would say that you need to allocate the buffer to the right size. Maybe:

var buffer = new ctypes.char().array(3000000).address();

Try using a debugger with a breakpoint set in the "receive" function to see what data is being passed from JS.

link|improve this answer
I am still not able to solve it. address() api is not supported for arrays. Any thoughts! – yesh Aug 7 '11 at 0:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.