NextPrevUpTopContentsIndex

define-foreign-callable

Macro
Summary

Defines a Lisp function which can be called from a foreign language.

Package

fli

Signature

define-foreign-callable ( foreign-name &key encode language result-type result-pointer no-check calling-convention ) ( {args }*) &body body => lisp-name

args ::= { arg-name } | ( arg-name arg-type )

language ::= :c | :ansi-c

Arguments

foreign-name

A string or symbol naming the Lisp callable function created.

encode

By default, LispWorks performs automatic name encoding to translate foreign-name

If you want to explicitly specify an encoding, the encode option can be one of the following:

:source tells LispWorks that foreign-name is the function name to call from the foreign source code. This is the default value of encode if foreign-name is a string.

:object tells LispWorks that foreign-name is the literal name to be called in the foreign object code.

:lisp tells LispWorks that if foreign-name is a Lisp symbol, it must be translated and encoded. This is the default value of encode if foreign-name is a symbol.

:dbcs modifies the function name on Windows, as described for define-foreign-function.

language

The language in which the foreign calling code is written. The default is :ansi-c .

result-type

The FLI type of the Lisp foreign callable function's return value which is passed back to the calling code.

result-pointer

A variable which will be bound to a foreign pointer into which the result should be written when the result-type is an aggregate type.

no-check

If nil , the result of the foreign callable function, produced by body , is checked to see if matches the result-type , and an error is raised if they do not match. Setting no-check to t overrides this check.

calling-convention

Specifies the calling convention used on Windows.

args

The arguments of the Lisp foreign callable function. Each argument can consist either of an arg-name , in which case LispWorks assumes it is an :int , or an arg-name and an arg-type , which is a FLI type.

body

A list of forms which make up the Lisp foreign callable function.

Values

lisp-name

A string or symbol naming the Lisp callable function created.

Description

The macro define-foreign-callable defines a Lisp function that can be called from a foreign language, for example from a C function. When the Lisp function is called, data passed to it is converted to the appropriate FLI representation, which is translated to an appropriate Lisp representation for the Lisp part of the function. Once the callable function exits, any return values are converted back into a FLI format to be passed back to the calling language.

When you use :reference with :lisp-to-foreign-p t as an arg-type , you need to set arg-name to the value that you want to return in that reference. That value is then converted and stored into the pointer supplied by the calling foreign function. This is done after the visible body of your define-foreign-callable form returns.

calling-convention is ignored on non-Windows platforms, where there is no calling convention issue. On Windows, :stdcall is the calling convention used to call Win32 API functions and matches the C declarator "__stdcall" . This is the default value. :cdecl is the default calling convention for C/C++ programs and matches the C declarator "__cdecl" .

When result-type is an aggregate type, an additional variable is bound in the body to allow the value of the function to be returned (the value returned by the body is ignored). This argument is named after the result-pointer argument or is named result-pointer in the current package if unspecified. While the body is executing, the variable will be bound to a foreign pointer that points to an object of the type result-type . The body must set the slots in this foreign object in order for the value to be returned to the caller.

To make a function pointer referencing a foreign callable named "Foo" , use:

(make-pointer :symbol-name "Foo")

Note: For a delivered application where the string name of your foreign callable is not passed in dll-exports , be aware that a call to make-pointer like that above will not retain the foreign callable in a delivered application. Internally a Lisp symbol named |%FOREIGN-CALLABLE/Foo| is used so you could retain that explicitly (see the LispWorks Delivery User Guide for details, and take care to specify the package). However it is simpler to name the foreign callable with your Lisp symbol, and pass that to make-pointer. This call will keep your foreign callable in the delivered application:

(make-pointer :symbol-name 'foo :functionp t)

Note: if you specify any of the FLI float types :float, :double, :lisp-float, :lisp-single-float and so on, then the value of language should be :ansi-c .

Example

The following example demonstrates the use of foreign callable. A foreign callable function, square , is defined, which takes an integer as its argument, and returns the square of the integer.

(fli:define-foreign-callable 
  ("square" :result-type :int)
  ((arg-1 :int)) (* arg-1 arg-1))

The foreign callable function, square , can now be called from a foreign language. We can mimic a foreign call by using the define-foreign-function macro to define a FLI function to call square .

(fli:define-foreign-function (call-two "square")
  ((in-arg :int)) :result-type :int)

The call-two function can now be used to call square . The next command is an example of this.

(call-two 9)

This last example shows how the address of a foreign callable can be passed via a pointer object, which is how you use foreign callables in practice. The foreign library in this example is libgsl:

(fli:define-foreign-callable ("gsl-error-handler")
    ((reason (:reference-return :ef-mb-string))
     (file (:reference-return :ef-mb-string))
     (lineno :integer)
     (gsl-errno :integer))
  (error 
   "Error number ~a inside GSL [file: ~a, lineno ~a]: ~a"
   gsl-errno file lineno reason))
(fli:define-foreign-function gsl-set-error-handler 
    ((func :pointer))
  :result-type :pointer)

To set the error handler, you would do:

(gsl-set-error-handler 
 (fli:make-pointer :symbol-name "gsl-error-handler"))
See also

define-foreign-function
define-foreign-variable
make-pointer


LispWorks Foreign Language Interface User Guide and Reference Manual - 14 Mar 2008

NextPrevUpTopContentsIndex