Difference between revisions of "FFI imports packaging utility"

From HaskellWiki
Jump to navigation Jump to search
Line 15: Line 15:
 
As a result of such automatic FFI import generation, substantial amount of Haskell code is created which in turn results in subatantial time to compile it.
 
As a result of such automatic FFI import generation, substantial amount of Haskell code is created which in turn results in subatantial time to compile it.
   
The [http://www.haskell.org/cabal Cabal] tool assists in creation of packages.
+
The [http://www.haskell.org/cabal Cabal] tool assists in creation of packages. Usually Haskell packages contain reusable libraries of modules written in Haskell.
  +
  +
The '''ffipkg''' utility serves the purpose to bridge FFI imports and packaging. With FFI packages, locations of foreign libraries and header files need to be remembered only once, during package creation. The Haskell code created during the automated FFI import process needs to be compiled only once, thus reducing the time to compile applications using the foreign library.
   
 
=== Command Line Options ===
 
=== Command Line Options ===

Revision as of 04:15, 28 January 2006

Note: This page contains a progressing draft of the documentation for an extension to HSFFIG to create Haskell packages for FFI imports. Once this page is complete this note will be removed. Dimitry Golubovsky

The FFI Packaging Utility

Abstract

This document contains user manual for the FFI Packaging Utility (ffipkg) which is an extension to HSFFIG.

Why Package FFI Imports

Typically, when building a Haskell applications calling foreign functions from some library directly, certain things are taken into consideration such as location of the library header files and the library itself.

The hsffig tool automatically preprocesses library header files and generates FFI import statements for all foreign functions (with few exceptions like variadic functions and functions taking/returning structures) as well as function declarations to access members of C structures and unions.

As a result of such automatic FFI import generation, substantial amount of Haskell code is created which in turn results in subatantial time to compile it.

The Cabal tool assists in creation of packages. Usually Haskell packages contain reusable libraries of modules written in Haskell.

The ffipkg utility serves the purpose to bridge FFI imports and packaging. With FFI packages, locations of foreign libraries and header files need to be remembered only once, during package creation. The Haskell code created during the automated FFI import process needs to be compiled only once, thus reducing the time to compile applications using the foreign library.

Command Line Options

How It Works

Preprocessing Header Files

Generating FFI Imports

Splitting Haskell Sources

Building Package Libraries

Integration with Cabal

Working Examples

Hello World

Berkeley DB

X11 Transport Protocol

Conclusion