Tagged Questions
A foreign function interface (FFI) is a mechanism for one language to interact with software written in another language.
21
votes
3answers
536 views
Using higher-order Haskell types in C#
How can I use and call Haskell functions with higher-order type signatures from C# (DLLImport), like...
double :: (Int -> Int) -> Int -> Int -- higher order function
typeClassFunc :: ... ...
20
votes
4answers
2k views
Performance considerations of Haskell FFI / C?
If using Haskell as a library being called from my C program, what is the performance impact of making calls in to it? For instance if I have a problem world data set of say 20kB of data, and I want ...
19
votes
1answer
578 views
OSX, ghci, dylib, what is the correct way?
I need to build some C code and then reference that C code via the FFI. I would like to use my binding from inside ghci on osx. On of my constraints is that I cannot just hand the C sources to ghc ...
19
votes
9answers
8k 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). What are the ...
18
votes
1answer
262 views
Compiling ghc with -fPIC support
I'm trying to install GHC with -fPIC support in Fedora.
I've grabbed a source tarball since it seems no binary one has this.
In Build.mk i've changed the quick build type to
ifeq "$(BuildFlavour)" ...
15
votes
1answer
394 views
How does one interface with a C enum using Haskell and FFI?
Let's say charm.c has an enum key and a function get_key() that returns a key type value.
How can I expose a corresponding Haskell Key record and function getKey :: IO Key?
And how can I do this ...
12
votes
3answers
1k views
Calling Haskell from C++ code
I'm currently writing an app in C++ and found that some of its functionality would be better written in Haskell. I've seen instructions on calling Haskell from C code, but is it possible to do the ...
11
votes
2answers
436 views
Difference between hsc2hs and c2hs?
What is the difference between hsc2hs and c2hs?
I know what hsc2hs is a preprocessor but what does it exactly do?
And c2hs can make Haskell modules from C-code, but do I need hsc2hs for this?
10
votes
2answers
271 views
Is it possible to create PHP extensions in Haskell?
Is it possible to create PHP extensions with Haskell?
Usually PHP extensions are written using C. Is using Haskell FFI to provide functionality for a stub C extension possible (or even a good idea)?
...
10
votes
5answers
2k views
Error installing gems that use native extensions on Ubuntu, Ruby 1.9.2 via RVM
I get an error while trying to install the ffi gem:
~ - 16:54>gem i ffi
Building native extensions. This could take a while...
ERROR: Error installing ffi:
ERROR: Failed to build gem ...
9
votes
2answers
159 views
Implementation of MVar in C?
Is there any known implementation of Haskell MVar in C? There is an example on how to implement it in C++. But, I will like to implement it in C - let us say only MVar CInt equivalent in C for now. ...
9
votes
1answer
126 views
Building a dynamic library with haskell and using it from C++
I want to build a dynamic library containing haskell functions. I work on linux and want to call this dynamic library from C++ code.
I used the example at http://wiki.python.org/moin/PythonVsHaskell ...
9
votes
1answer
366 views
How to choose right Haskell C type?
I have studied some Haskell programming language and now I found out that it's possible to call Haskell functions from C programs. During my Haskell studies, I created a word frequency counter with ...
9
votes
3answers
625 views
Interchange structured data between Haskell and C
First, I'm a Haskell beginner.
I'm planning integrating Haskell into C for realtime game.
Haskell does logic, C does rendering. To do this, I have to pass huge complexly structured data (game state) ...
9
votes
4answers
929 views
Mixing Haskell and C++
If you had the possibility of having an application that would use both Haskell and C++.
What layers would you let Haskell-managed and what layers would you let C++-managed ?
Has any one ever done ...
9
votes
4answers
979 views
Call a Haskell function in .NET
I want to use a Haskell function with the following type ::
string -> string from a C# program.
I want to use hs-dotnet to bridge both worlds. The author claim that it's possible, but provide no ...
9
votes
3answers
972 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
unsigned char* green;
...
8
votes
4answers
509 views
Haskell Polyvariadic Function With IO
Is it possible to have a function that takes a foreign function call where some of the foreign function's arguments are CString and return a function that accepts String instead?
Here's an example of ...
8
votes
3answers
448 views
Applicative without a functor
I have a type Image which is basically an c-array of floats. It is easy to create functions
such as map :: (Float -> Float) -> Image -> Image, or zipWith :: (Float -> Float -> Float) ...
8
votes
2answers
290 views
Using Haskell to extend Perl?
Has anyone ever written a Haskell extension to Perl? Maybe something simple, like a function that calculates the fib. sequence? I'm interested in using Haskell, and I see some overlap between the ...
8
votes
5answers
1k views
Best way to call Haskell functions from within Java
I'm looking an efficient way of executing Haskell functions from within a Java program. I've considered the use of exec() to interact with GHC, but it seems like there should be a better method.
8
votes
6answers
2k views
Generate C wrapper from C++?
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
...
7
votes
1answer
283 views
Call C Functions from Haskell at runtime
I'm building an interpreter for a dynamic programming language in Haskell. I'd like to add a simple mechanism to call C functions. In the past, I've used the Haskell FFI to call C functions that I had ...
7
votes
3answers
180 views
Is there a simple way to use Python libraries from Common Lisp?
One thing I really miss when writing Common Lisp code is access to Python libraries, both standard library and third party modules. CLPython provides a limited subset of Python functionality which ...
7
votes
3answers
623 views
Calling Haskell functions from Python
I want to use some Haskell libraries (e.g. Darcs, Pandoc) from Python, but it seems there’s no direct foreign function interface to Haskell in Python. Is there any way to do that?
7
votes
3answers
334 views
How to “unpack” a structure in haskell
I recently came across this problem and found a solution but I'm wondering if there are better (or just more idiomatic) solutions.
I have a structure for a colour:
data Rgb = Rgb Double Double ...
6
votes
2answers
192 views
Haskell FFI Support for Functions With Variadic Arguments
Can anyone show me an example of using a C function with variadic arguments (e.g. printf) with Haskell's Foreign Function Interface? I tried searching the HaskellWiki, but found no such examples.
...
6
votes
2answers
240 views
Storable empty data declaration
I'm attempting to create a Haskell wrapper for a C library. The underlying structs are too complicated to express as explicit types, and I don't actually use them other than for passing between C ...
6
votes
1answer
258 views
Automatic conversion of types for FFI calls in Haskell
I have defined the following module to help me with FFI function export:
{-# LANGUAGE MultiParamTypeClasses, FunctionalDependencies, TypeSynonymInstances #-}
module ExportFFI where
import Foreign
...
5
votes
2answers
179 views
Vector (Vector Foo) -> (Ptr (Ptr Foo) -> IO a) -> IO a?
I am making a simple wrapper for a c library that needs to have a list of vectors passed to it. It takes an array of pointers to arrays. To make a nice interface I'd like to have Vector (or list) of ...
5
votes
1answer
577 views
How to use LuaJIT's ffi module when embedding?
I'm trying to embed LuaJIT into a C application. The code is like this:
#include <lua.h>
#include <lualib.h>
#include <lauxlib.h>
#include <stdlib.h>
#include <stdio.h>
...
5
votes
2answers
662 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)
...
4
votes
1answer
57 views
GHC/FFI: calling haskell module which imports haskell libraries from C
Let's take a common example how a haskell function can be called from a C function:
Haskell module:
{-# LANGUAGE ForeignFunctionInterface #-}
module Safe where
import Foreign.C.Types
fibonacci :: ...
4
votes
1answer
67 views
How can I use clSetKernelArg to set local memory size in an OpenCL Haskell program?
I'm using the System.GPU.OpenCL module by Luis Cabellos to control an OpenCL kernel.
All is working well but to speed things up I am trying to cache some global memory into a local buffer. I have ...
4
votes
2answers
118 views
Calling Haskell FFI Function Ptrs from C
I am trying to get the following code to work:
sample_hs :: CInt -> (CInt -> CInt)
sample_hs x = (x+)
foreign export ccall sample_hs :: CInt -> (CInt -> CInt)
I would like to be able ...
4
votes
2answers
93 views
How to call a function of type Ptr GLubyte -> IO() in Haskell
In the OpenGL Raw library is the following function:
glPolygonStipple :: Ptr GLubyte -> IO ()
The C counterpart to this function accepts a pointer to an array, but how can I call this function ...
4
votes
1answer
81 views
Interfacing LIRC with Haskell
I've been using pyLirc while prototyping a small application in Python. For performance reasons (among others) I'm moving to Haskell, but can't find any modules providing similar functionality. Should ...
4
votes
1answer
163 views
Using the Haskell FFI to marshal structs; also, how to use FunPtr
hi i have some questions about the ffi in haskell.
first of all i'm trying to work with c structs in haskell.
there i have some questions: i have a struct like
struct foo{int a; float b;};
when ...
4
votes
2answers
217 views
How to use hsc2hs to bind to constants, functions and data structures?
i need a example how to use hsc2hs, i thought that when i write a header file like:
// foo.h
#define PI 3.14159
typedef struct {
int i1;
int i2;
} foo;
struct foo2 {
int i1;
int i2;
...
4
votes
1answer
184 views
A interesting question about wrap and call C function by Lua
I get this question from this chinese blog http://chenyufei.info/blog/2011-02-28/wrap-c-function-closure-gcc-nested-function/
The author want to use closure in c language, and he found GCC has the ...
4
votes
1answer
289 views
Dynamic FFI in Go
Is it possible to dynamically load foreign C library (dll) and call its functions in Go?
I know there is cgo which is used to statically bind to C functions, but I'm interested in dynamic way.
4
votes
3answers
615 views
Compiling C lib and OCaml exe using it, all using ocamlfind
I'm trying to work out how to use ocamlfind to compile a C library and an OCaml executable using that C library.
I put together a set of rather silly example files.
% cat sillystubs.c
#include ...
4
votes
2answers
1k views
Haskell foreign import stdcall on DLL function
This is probably a really easy question to answer, but for some reason I'm really struggling with it.
I have a DLL written in C to access hardware at a protocol level, and I want to write a Haskell ...
4
votes
6answers
1k 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
3answers
532 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 doesn't work. It ...
3
votes
1answer
58 views
Schedule error when calling multi-threaded C FFI with Haskell Callback function
Below is a Haskell/C FFI code that is throwing schedule error at runtime (GHC 7.0.3, Mac OS 10.7, x86_64). I searched for explanation of the error but didn't find anything relevant.
C Code (mt.c):
...
3
votes
2answers
70 views
How do I find the alignment value when defining a storable instance
If I have access to the C struct definition in the header files but want to define my storable instance manually without using something like hsc2hs, how do I find the alignment value?
Also could a ...
3
votes
1answer
128 views
Haskell FFI for C recursive struct and union
I am trying to write Haskell FFI binding for some C structs. An example is below:
typedef struct s0{int a;
union{unsigned char b;
struct s0*c;
...
3
votes
0answers
176 views
Haskell executable linking with static library written in C++ got `undefined reference`
I've create a static library:
// foo.h
extern "C" {
int foo (const char* arg0, int arg1);
}
// foo.cpp
#include "foo.h"
// implementation of foo
This block of code was compiled to foo.o and ...
3
votes
2answers
57 views
How can I find the value of LC_XXX locale integr constants so that I can use them with cffi
I have this code:
(define-foreign-library libc
(:unix "libc.so.6"))
(use-foreign-library libc)
(defcfun "setlocale" :pointer (category :int) (locale :pointer))
and I want to do:
...