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 ?
|
feedback
|
|
I'm a bit late to this discussion, but I'm currently writing a bridge between Ruby and Haskell. It's at http://github.com/mwotton/Hubris - it's a binding that works at the C level. Still at a very early stage of development, though. | |||
|
feedback
|
|
I haven't seen it done before, but it's possible.
You'll need to write glue code, some in C, to get either of those two options working.
I don't know what your requirements are, but this is what I'd go for -- it's a lot easier. | |||
|
feedback
|
|
GHC 6.12.1 supports building dynamic libraries on Linux. Try something like: Example.hs
wrapper.c
script.rb
Makefile
Commands to run
| ||||
|
feedback
|
|
I am not sure about the Haskell side, but here is a cool video from Mountain West Ruby Conf 09 about working with FFI from Ruby. It looks like a pretty nice interface. http://mwrc2009.confreaks.com/13-mar-2009-16-10-ffi-jeremy-hinegardner.html | |||
|
feedback
|
|
@ephemient, I am actually looking for someways to use Ruby (high level + dynamic) to be the main controller logic and invoking haskell for large amount of data crunching (functional + speed) I think native binding is close to non-existence, apart from this tweet http://twitter.com/BlurredWeasel/status/1321484127 Using JSON RPC will be probably the easiest way to implement where there is a thin wrapper in ruby to (method_missing) to invoke haskell over JSON/Socket. JSON has the advantage of being able to easily map primitives to native types between various languages..
Other alternative for fast number crunching in ruby (+ functional style)
Thoughts anyone? | ||||
feedback
|
|
I tried exactly this (I'm the one from the mentioned tweet). I didn't think of the libruby approach, but I spent a fair amount trying to use ruby's FFI to wrap an exported function from haskell, and could never quite get it to all link and run. If you look at haskell's FFI examples, you'll see that they all include a C main() function. Since ruby's FFI doesn't have (and can't have) a main(), that won't work. If you try without that, you end up with weird link errors. I can share what I have with you, ping me on freenode (cschneid), or on twitter (BlurredWeasel). | |||
|
feedback
|