Foreign function interface

Foreign function interface

A foreign function interface (or abbr|FFI|Foreign Function Interface) is a mechanism by which a program written in one programming language can call routines or make use of services written in another. The term comes from the specification for Common Lisp, which explicitly refers to the language features for inter-language calls as such; the term is also used officially by the Haskell programming language. Other languages use other terminology (the Ada programming language talks about "language bindings", while Java refers to its abbr|FFI as the Java Native Interface, or JNI). Foreign function interface has become generic terminology for mechanisms which provide such services.

It should be noted that despite the name, abbr|FFIs|Foreign Function Interfaces are not necessarily restricted to function calls; many abbr|FFIs permit method calls on objects; and some even permit migration of non-trivial datatypes and/or objects across the language boundary.

The term foreign function interface is generally not used to describe multi-lingual runtimes such as the Microsoft Common Language Runtime, where a common "substrate" is provided which enables any CLR-compliant language to use services defined in any other. (However, in this case the CLR does include an FFI, P/Invoke, to call outside the runtime.) In addition, many distributed computing architectures such as the Java remote method invocation (abbr|RMI), abbrlink|RPC|Remote procedure call, abbrlink|CORBA|Common Object Request Broker Architecture, SOAP and D-Bus permit different services to be written in different languages; such architectures are generally not considered abbr|FFIs.

In most cases, a abbr|FFI is defined by a "higher-level" language, so that it may employ services defined and implemented in a lower level language, typically a systems language like C or C++. This is typically done to either access abbrlink|OS|Operating System services in the language in which the OS' API is defined, or for performance considerations.

Many FFIs also provide the means for the called language to invoke services in the host language as well.

Operation of an FFI

The primary function of a abbr|FFI is to mate the semantics and calling conventions of one programming language (the "host" language, or the language which defines the FFI), with the semantics and conventions of another (the "guest" language). This process must also take into consideration the runtime environments and/or application binary interfaces of both. This can be done in several ways:

* Requiring that guest-language functions which are to be host-language callable be specified or implemented in a particular way; often using a compatibility library of some sort.
* Use of a tool to automatically "wrap" guest-language functions with appropriate glue code, which performs any necessary translation.
* Restricting the set of host language capabilities which can be used cross-language. For example, C++ functions called from C may not (in general) include reference parameters or throw exceptions.

abbr|FFIs may be complicated by the following considerations:

* If one language supports garbage collection (GC) and the other does not; care must be taken that the non-GC language code doesn't do something to cause the GC to fail. In JNI, for example, C code which "holds on to" object references passed from Java must "register" this fact with the Java runtime; otherwise the referred-to objects may be garbage-collected if no more valid references to the object(s) exist within the Java environment. (The C code must likewise release such references manually when the corresponding object is no longer needed).
* Complicated or non-trivial objects or datatype may be difficult to map from one environment to another.
* It may not be possible for both languages to maintain references to the same instance of a mutable object, due to the mapping issue above.
* One or both languages may be running on a virtual machine (including different VMs).
* Cross language inheritance or other forms of type or object composition may be especially difficult.

Examples

Examples of abbr|FFIs include:
* Ada language bindings, allowing not only to call foreign functions but also to export its functions and methods to be called from non-Ada code. [http://www.adaic.org/standards/05aarm/html/AA-B.html]
* C++ has a trivial FFI with C, as the languages share a significant common subset. The primary effect of the extern "C" declaration in C++ is to disable name mangling.
* JNI, which provides an interface between Java and C/C++, the preferred systems language on most systems where Java is deployed. JNA provide an interface with native libraries without having to write Glue code.
* CNI, alternative to JNI used in the GNU compiler environment.
* The abbr|FFIs of Common Lisp and Haskell
* The major dynamic languages, such as Python, Perl, Tcl, and Ruby, all provide easy access to native code written in C/C++ (or any other language obeying C/C++ calling conventions).
** Python additionally provides the Ctypes module [http://www.python.org/doc/current/lib/module-ctypes.html] , which can load C functions from shared libraries/DLLs on-the-fly and translate simple data types automatically between Python and C semantics. For example:import ctypeslibc = ctypes.CDLL( '/lib/libc.so.6' ) # under Linux/Unixt = libc.time(None) # equivalent C code: t = time(NULL)print t
* P/Invoke, which provides an interface between the Microsoft Common Language Runtime and native code.
* PLT Scheme has a native FFI based heavily on macros that enables importing arbitrary shared libraries dynamically. [http://download.plt-scheme.org/doc/372/html/foreign/]
* Factor has a C FFI. [http://fun-factor.blogspot.com/2007/10/getting-started-with-factor-easy-ffi.html]
* Visual Basic has a declarative syntax that allows it to call non-unicode C functions.
* One of the bases of the Component Object Model is a common interface format, which natively uses the same types as Visual Basic for strings and arrays.
* GWT, in which java is compiled to javascript, has a FFI called JSNI which allows java source to call arbitrary Javascript functions, and for Javascript to call back into java.

In addition, many FFIs can be generated automatically: for example, SWIG.

External links

* [http://www.c2.com/cgi/wiki?ForeignFunctionInterface c2.com: Foreign function interface]
* [http://www.cse.unsw.edu.au/~chak/haskell/ffi/ Haskell 98 Foreign Function Interface]
* [http://www.franz.com/support/documentation/6.2/doc/foreign-functions.htm Allegro Common Lisp abbr|FFI]
* [http://www.cs.kent.ac.uk/pubs/2005/2254/ A Foreign Function Interface generator for occam-pi]
* [http://uffi.b9.com/ UFFI: Lisp Universal Foreign Function Interface]
* [http://common-lisp.net/project/cffi/ CFFI: Common Foreign Function Interface, for Common Lisp]
* [http://java.sun.com/docs/books/jni/ Java Native Interface: Programmer's Guide and Specification]
*Javadoc:SE-guide|jni/spec/jniTOC.html|The JNI Specification
* [http://code.google.com/webtoolkit/documentation/com.google.gwt.doc.DeveloperGuide.JavaScriptNativeInterface.html JSNI (JavaScript Native Interface)]
* [http://jsext.net JSEXT]
* [http://dyncall.org/ dyncall library using assembly call kernels for a variety of processors,OS and calling conventions]
* [http://www.haible.de/bruno/packages-ffcall.html FFCALL]
* [http://www.nongnu.org/cinvoke/ C/Invoke]
* [http://sourceware.org/libffi/ libFFI]


Wikimedia Foundation. 2010.

Игры ⚽ Поможем сделать НИР

Look at other dictionaries:

  • Foreign function interface — Saltar a navegación, búsqueda Foreign function interface o FFI es un mecanismo por el que un programa escrito en un lenguaje de programación puede realizar llamadas a funciones o usar los servicios escritos en otro. El término procede de la… …   Wikipedia Español

  • Foreign Function Interface — Eine Binärschnittstelle definiert eine Schnittstelle auf Maschinenebene zwischen einem Programm und dem Betriebssystem, bzw. zwischen einem Programm und einer Bibliothek, oder auch zwischen verschiedenen Bestandteilen des Programms. Eine… …   Deutsch Wikipedia

  • Application programming interface — API redirects here. For other uses, see API (disambiguation). An application programming interface (API) is a source code based specification intended to be used as an interface by software components to communicate with each other. An API may… …   Wikipedia

  • Direct Programming Interface — (DPI) is an interface which we use to interface System Verilog with foreign languages. These Foreign languages can be a C, C++, System C as well as others. DPI s consists of two layers: A System Verilog Layer and a Foreign language layer. Both… …   Wikipedia

  • Brain–computer interface — Neuropsychology Topics Brain computer interface …   Wikipedia

  • Brain-computer interface — A brain computer interface (BCI), sometimes called a direct neural interface or a brain machine interface, is a direct communication pathway between a human or animal brain (or brain cell culture) and an external device. In one way BCIs,… …   Wikipedia

  • Application binary interface — In computer software, an application binary interface (ABI) describes the low level interface between an application program and the operating system, or the interface between an application and its libraries, or that between component parts of… …   Wikipedia

  • FFI — Foreign Function Interface (Computing » General) Five Factor Inventory (Business » General) * Atech FastFont (AllType) (Computing » File Extensions) …   Abbreviations dictionary

  • GTK-server — Infobox programming language name = GTK server logo = paradigm = year = 2003 designer = Peter van Eerten developer = Peter van Eerten latest release version = 2.2.8 latest release date = September 29, 2008 typing = implementations = dialects =… …   Wikipedia

  • Component Object Model — Not to be confused with COM file. Component Object Model (COM) is a binary interface standard for software componentry introduced by Microsoft in 1993. It is used to enable interprocess communication and dynamic object creation in a large range… …   Wikipedia

Share the article and excerpts

Direct link
Do a right-click on the link above
and select “Copy Link”