1
vote
1answer
48 views
Are peekCString and peekCStringLen lazy?
I have a C function that creates a null terminated string and returns a pointer to it, there is also corresponding deallocation function.
foreign import ccall unsafe "get_str" get …
0
votes
3answers
41 views
Calling mysql_real_escape_string using the PLT-Scheme Foreign Function Interface
Hi,
using the PLT-Scheme-FFI, I want to call the C-function
unsigned long mysql_real_escape_string(MYSQL *con, char *to, const char *from, unsigned long length)
from a scheme …
0
votes
1answer
106 views
How to dereference a memory location from python ctypes?
I want to replicate the following c code in python ctypes:
main() {
long *ptr = (long *)0x7fff96000000;
printf("%lx",*ptr);
}
I can figure out how to call this memory locati …
1
vote
1answer
50 views
How efficient is SBCL for storing big graphs?
How much does the garbage collector affect performance when working with lots of objects in memory, how big is the memory allocation and dealocation overhead?
Is it wise to use SBC …
4
votes
5answers
614 views
Haskell binding with Ruby through FFI ?
Since both ruby and Haskell supports FFI,
Is it possible to call Haskell code from ruby, may be through FFI ?
Is there any Haskell binding in Ruby ?
4
votes
5answers
265 views
Generate C wrapper from C++?
Hi,
I want to generate C wrappers from C++ libraries.
There are tutorials on how to do it by hand:
http://developers.sun.com/solaris/articles/mixing.html
http://www.parashift.c …
1
vote
2answers
131 views
Haskell: How do I get the values of #define-d constants?
In a Haskell program, what's the best way to use constants defined in C headers?
0
votes
4answers
156 views
C: better way to do sizeof(((SomeStruct *) 0)->some_member) ?
I want to get the size of a specific member in a struct.
sizeof(((SomeStruct *) 0)->some_member) works for me but I feel like there might be a nicer way to do it.
I could #def …
2
votes
1answer
124 views
Haskell FFI: ForeignPtr seems not to get freed (maybe a GHC bug?)
Consider the following code snippet
import qualified Foreign.Concurrent
import Foreign.Ptr (nullPtr)
main :: IO ()
main = do
putStrLn "start"
a <- Foreign.Concurrent.newFo …
2
votes
2answers
145 views
Haskell FFI: Calling FunPtrs
Here's my situation:
I would like to call ffmpeg's av_free_packet function:
// avformat.h
static inline void av_free_packet(AVPacket *pkt)
{
if (pkt && pkt->destruct …
5
votes
6answers
1k views
Python: SWIG vs ctypes
In python, under what circumstances is SWIG a better choice than ctypes for calling entry points in shared libraries? Let's assume you don't already have the SWIG interface file(s) …
0
votes
2answers
67 views
Guides for implementing a foreign function interface
Right now I'm working on a scripting language that doesn't yet have a FFI. I'd like to know what's the most convenient way to get it in, assuming that I'd like to write it like coo …
1
vote
2answers
233 views
Ruby Noobie: How to set a string value in an FFI Struct
I'm having some beginner problems setting an FFI struct in Ruby. What I want to do is pass a pointer to a C string by setting a string property in an FFI::Struct object:
class Sp …
5
votes
3answers
321 views
How do I use Haskell’s FFI on structs?
I have created the following C library for reading an image:
typedef struct {
unsigned int height;
unsigned int width;
unsigned char* red; //length=height*width
u …
3
votes
3answers
275 views
Haskell FFI / C MPFR library wrapper woes
In order to create an arbitrary precision floating point / drop in replacement for Double, I'm trying to wrap MPFR using the FFI but despite all my efforts the simplest bit of code …
