A foreign function interface (FFI) is a mechanism for one language to interact with software written in another language.

learn more… | top users | synonyms

2
votes
0answers
45 views

Unable to link FFI library in Haskell

I have the following source file (sdl.hs): module Main where import Graphics.UI.SDL.Mixer.Music import Graphics.UI.SDL.Mixer import Graphics.UI.SDL main = loadMUS "" I try the following: ghc ...
0
votes
0answers
53 views

How to access python class from C extension?

I have my extension for Python written in C. Currently I need to process in a function of my extension objects of a type declared in some external pure python module (Say, its name is ext_module). ...
0
votes
1answer
35 views

How to call C's fread() function in Ruby code?

I have a C code with me which I need to covert to Ruby code. Here is the C code for your reference. //bundle_ingest.h typedef void (* bundle_read_fn)( gsdk_void_t* ...
5
votes
1answer
90 views

How to prevent g++ from not inlining inline functions (to enable Haskell FFI use in GHCI)

I have recently met an issue with C++ inline functions when using Haskell FFI to C/C++. Namely, g++ does not really inline functions that are declared inline, and generate symbols for them. ...
2
votes
1answer
40 views

Racket FFI: C function which accepts a pointer to a function

I'd like to bind to a C function abc whose signature is: int abc(void (*)(int)) I.e. it accepts a pointer to a function. This callback accepts an int and has void return type. What's the right ...
1
vote
1answer
29 views

Calling objective-c selector methods through FFI in Ruby

Say you want to open a simple alertbox, which in the objective-c universe would be something like: NSAlert *alert = [[[NSAlert alloc] init] autorelease]; [alert setMessageText:@"Alert."]; ...
5
votes
1answer
126 views

How to write a pure String to String function in Haskell FFI to C++

there I want to implement a function in C++ via Haskell FFI, which should have the (final) type of String -> String. Say, is it possible to re-implement the following function in C++ with the ...
0
votes
0answers
16 views

Ruby-FFI: How do I specify arrays as arguments in attach_function?

I have C functions with type signatures like this: TCODLIB_API void TCOD_heightmap_get_normal(const TCOD_heightmap_t *hm, float x, float y, float n[3], float waterLevel); Running the header files ...
1
vote
0answers
42 views

Adding an SQL extension to a precompiled Lua 5.2 project

I have looked into at least 6 different SQL Lua extensions, and they all seem to have their latest version compatible with up to version 5.1 of Lua. I have had zero success in implementing any of them ...
3
votes
1answer
50 views

How do I wrap C consts in a Ruby FFI module?

I have a (somewhat exorbitant) number of these: extern TCODLIB_API const TCOD_color_t TCOD_red; extern TCODLIB_API const TCOD_color_t TCOD_flame; extern TCODLIB_API const TCOD_color_t TCOD_orange; ...
4
votes
0answers
62 views

How to handle blocking i/o in Rust, or long running external function calls in general

I need to read data provided by an external process via a posix filedescriptor in my Rust program. The fd connection is kept up a very long time (hours) and the other side passes data to me from time ...
2
votes
2answers
86 views

Which compilers support the Haskell FFI

Are there any other compilers than ghc that support the Haskell Foreign Function Interface as in The Haskell 98 Foreign Function Interface 1.0 An Addendum to the Haskell 98 Report?
0
votes
0answers
25 views

wrong return value in nfclib method

Playing around with a ffi library but are getting the wrong return value: This is my ruby code using the standard nfclib: module NfcLibrary extend FFI::Library ffi_lib ...
1
vote
1answer
91 views

Retrieving a pointer to float from Rust FFI

Ubuntu 13.04, Rust 0.6. I'm trying to use the Rust FFI to operate with openblas. The following code doesn't work as expected. use core::io::println; use core::libc::{c_int, c_float}; use ...
9
votes
1answer
202 views

Why is GHC distributed with gcc and g++?

On Windows, GHC is distributed with gcc and g++, e.g. under ghc-7.6.3\mingw\bin. From the download page, it is also noted under the windows binary download that the build for Windows "also includes ...
1
vote
0answers
28 views

ruby ffi call function referenced by pointer in struct?

I'm trying to use libfluidsynth with ruby ffi and need to iterate over a soundfont to get all instruments. Specifically, the _fluid_sfont_t struct has iteration_start and iteration_next references ...
15
votes
2answers
371 views

Calling Haskell from C#

I just spent the last week or so figuring out how to execute C++ code from C# as part of my day job. It took us forever to figure it out, but the final solution is fairly simple. Now I'm curious... ...
1
vote
0answers
24 views

ffi library for perl for accessing dlls

I have a dll library for specfic software and need to convert it to perl api . on Python there are a library called ctypes http://docs.python.org/2/library/ctypes.html which is a forign function ...
0
votes
1answer
52 views

Where and when load a library in luajit ffi

I am making a wrapper between a C++ engine and Lua, I'm using LuaJIT and because of this I'm using ffi as the "wrapper" between these two, since the engine has much and different parts I was thinking ...
0
votes
0answers
61 views

how can i export Detours to lua by lua jit?

I want to export Detours to lua lua like below: ffi = require "ffi" ffi.cdef [[ typedef void* HWND; typedef void* HMODULE; HWND FindWindowA(const char* lpClassName, const char* lpWindowName); ...
0
votes
0answers
46 views

How to fix Dynamic Linking Error in nodejs ffi?

I wrote dll in Delphi, the dll was tested successfully using C++,but when using ffi module in javascript I got error: C:\Program Files\nodejs\node_modules\ffi\lib\dynamic_library.js:74 throw new ...
1
vote
0answers
27 views

What's all about programming language biding?

RT. As we know, there are many programming languages co-exist in the world. To make it better, we always want to reuse the code, so when you write something in C, you may want to use it in Java or ...
0
votes
1answer
255 views

When using Luajit, is it better to use FFI or normal lua bindings?

I just started tinkering with Luajit with C++ and I see that it's FFI is really easy to use but I am not sure if it is the best solution for all (or at least most) cases. So is it better to use one ...
2
votes
2answers
111 views

Python 3 replacement for PyFile_AsFile

The following code works in Python 2: from ctypes import * ## Setup python file -> c 'FILE *' conversion : class FILE(Structure): pass FILE_P = POINTER(FILE) PyFile_AsFile = ...
0
votes
1answer
18 views

FFI - Attach function with argument type FILE?

How would I wrap a function that accepts an argument of type FILE using FFI in Ruby? int fprintf ( FILE * stream, const char * format, ... );
6
votes
2answers
181 views

Haskell LLVM binding Ambiguous Type

I am trying to get started with the LLVM binding for Haskell. A great place to start is Hello World. The following is from a blog by the author of the binding. bldGreet :: CodeGenModule (Function ...
0
votes
0answers
45 views

Keeping child process alive between server calls in node.js

I am using a C library on my node.js server with node-ffi that loads models that is provided from the client and currently I have the load the client's transmitted models every time the library's ...
2
votes
0answers
72 views

GCC warning when using CAPI calling convention

When using CAPI like this: // libvlc.h libvlc_instance_t *libvlc_new (int argc, const char *const *argv) // VLC.hs foreign import capi "vlc/libvlc.h libvlc_new" vlcNew :: CInt -> Ptr CString ...
0
votes
1answer
30 views

Ruby FFI Enum usage - sending integer

In the ffi documentation for Enums(https://github.com/ffi/ffi/wiki/Enums) it mentions that when you create an ffi, for example: # Example using enums module Week extend FFI::Library ffi_lib ...
3
votes
1answer
52 views

How to interface more complex shared library?

I'm trying to dynamically call functions of external library on Linux/Unix system. I have some success with dl library but only when primitive C types are used and arguments are passed by value: ...
3
votes
1answer
127 views

Testing FFI Code with GHCi

Good (your local time of day), everyone. I went through Real World Haskell's chapter on the Foreign Function Interface, and did some follow-up reading here. I'm now experimenting with binding to C ...
1
vote
1answer
46 views

Ruby ffi struct with value depending from other struct's size

I'm converting a C library with the FFI gem. One of the structs has one property depending on another struct's size. class MipInterface < FFI::Struct layout( :state, :uchar, ...
17
votes
3answers
320 views

What is the equivalent Haskell type for C99 bool when using FFI?

I have a library which uses C99 bool data type and I would like to call it via FFI. What is the corresponding type for C99 bool in Haskell? In Foreign.C.types there are CInt, CShort etc, but no ...
0
votes
1answer
61 views

How do I tell GHC that when it, with the FFI, tries to compile a C++ file, it should look for a library in a particular folder?

I've got a Haskell file, Saturn.hs, and a C++ file hssaturn.cpp and hssaturn.h, in the directory src/Galakhsy/. hssaturn.cpp needs libsaturn.cpp and/or libsaturn.hpp, which are in lib/saturn/src/lib/. ...
4
votes
1answer
235 views

Importing 'C' Delay function into Haskell using FFI

There is a function in the wiringPi 'C' library called delay with type void delay(unsigned int howLong); This function delays execution of code for howLong milliseconds. I wrote the binding code in ...
1
vote
1answer
128 views

Calling a C function that is referenced by a C pointer to that function with Haskell FFI

There is a functions in the 'C' wiringPi library with type, extern void (*pinMode) (int pin, int mode) ; I tried calling it from haskell using the FFI with FunPtr. So I did, foreign import ccall ...
0
votes
1answer
140 views

Can't get pointers to pointers working in Gambit-C scheme's FFI

I'm in the process of wrapping my graphics engine API with Gambit-C and have been successful so far with the FFI. Today I ran into a new problem that I can't easily get past. I have a structure like ...
1
vote
1answer
145 views

Haskell function in Python FFI

I try to use haskell function in my Python program using FFI. My function is like f :: String -> String anyone can help me? i have another function f2 :: [(Double,Double,Double)] -> ...
3
votes
1answer
81 views

linking extra libraries/objects failed

I made FFI bindings to C++ unordered_map(a.k.a. hash_map) container and its wrapper library called libstl.a. At the first time, it used to work well. But after some point, it has failed to link the ...
5
votes
2answers
121 views

Need an example of Ypsilon usage

I started to mess with Ypsilon, which is a C++ implementation of Scheme. It conforms R6RS, features fast garbage collector, supports multi-core CPUs and Unicode but has a LACK of documentation, C++ ...
3
votes
1answer
84 views

How do I return a symbol from a C function in gambit scheme?

I've got a C function behind a c-lambda which needs to do some grubbing around with a select(2) call and decide on a scheme symbol to return as an indication of what it did, and whether an error ...
3
votes
0answers
495 views

Node-webkit WinAPI

I’m developing simple node-webkit application for Windows (Vista, 7, …) and I need to use some WinAPI functions, specifically, RegisterHotKey and SendInput, to bind system-wide hotkeys and make ...
17
votes
2answers
534 views

How much does it cost for Haskell FFI to go into C and back?

If I want to call more than one C function, each one depending on the result of the previous one, is it better to create a wrapper C function that handles the three calls? Will it cost the same as ...
1
vote
1answer
122 views

How do you call a void C function in Haskell

I am attempting to call the main function of a C file in Haskell using the foreign function interface. The main function is declared: int main(void); I am unable to figure out what to tell the ...
8
votes
2answers
339 views

Generate a C struct based on a complex Haskell type

I am trying to use a Haskell library in my C code. The Haskell function I am trying to use has the type String -> IO [Reference] where Reference is a rather complex structure (see here for ...
1
vote
0answers
48 views

warbler seems to use a different ffi that doesn't understand size_t

FFI understands :size_t when running rails through jRuby, but not after using Warbler to create a .war file and running that using java -jar my_project.war or Tomcat. Linux | ...
0
votes
1answer
171 views

FFI code segfaults in jRuby but not MRI Ruby

I'm porting a Ruby gem written in C to Ruby with FFI. When I run the tests using MRI Ruby there aren't any seg-faults. When running in jRuby, I get a seg-fault. This is the code in the test that I ...
7
votes
2answers
332 views

Passing a set of NumPy arrays into C function for input and output

Let's assume we have a C function that takes a set of one or more input arrays, processes them, and writes its output into a set of output arrays. The signature looks as follows (with count ...
2
votes
1answer
75 views

Segmentation fault when running hs_init(0, 0) for ffi

I am trying to call Haskell functions from python. I have the following make file: GHC=ghc GHC_RUNTIME_LINKER_FLAG=-lHSrts-ghc7.4.1 libffi-example.so: Example.o wrapper.o $(GHC) -o $@ -shared ...
6
votes
1answer
192 views

How to force GHC to inline FFI calls?

I made small C module to improve performance, but GHC doesn't inline foreign functions, and calls cost eliminates the acceleration. For example, test.h: int inc (int x); test.c: #include "test.h" ...

1 2 3 4 5 6