Jump to content

API

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by SmackBot (talk | contribs) at 15:13, 28 January 2010 (Date maintenance tags: build 391:). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

An application programming interface (API) is an interface implemented by a software program to enable interaction with other software, much in the same way that a user interface facilitates interaction between humans and computers. APIs are implemented by applications, libraries and operating systems to determine the vocabulary and calling conventions the programmer should employ to use their services. It may include specifications for routines, data structures, object classes and protocols used to communicate between the consumer and implementer of the API.[1][2][3]

Concept

An API is an abstraction that defines and describes an interface for the interaction with a set of functions used by components of a software system. The software that provides the functions described by an API is said to be an implementation of the API.

An API can be:

  • Language-dependent, available only in a given programming language. It is only available by using the syntax and elements of that language to make the API convenient to use in this context.
  • Language-independent, written in a way that means it can be called from several programming languages. This is a desired feature for a service-oriented API that is not bound to a specific process or system and may be provided as remote procedure calls or web services.

For example, a website that allows users to review local restaurants is able to layer their reviews over maps taken from Google Maps, because Google Maps has an API that allows it. Google Maps' API controls what information a third-party site can grab, and what can be done with it.

"API" may be used to refer to a complete interface, a single function, or even a set of multiple APIs provided by an organization. Thus, the scope of meaning is usually determined by the person or document that communicates the information.

Advanced explanation

In its simplest form an API can be a list containing the description of a set of functions that is included in a library and that address a specific problem. For example, in Unix systems the math.h include file for the C language contains the definition of the mathematical functions available in the C language library for mathematic pocessing (usually called libm). The man pages associated to it contain a textual description on how to use these functions and the expected result for the function invocation. For example, on a Unix system the command man 3 sqrt will present the signature of the function sqrt in the form:

SYNOPSIS
            #include <math.h>
            double sqrt(double X);
            float  sqrtf(float X);
DESCRIPTION
       DESCRIPTION
       sqrt computes the positive square root of the argument. ...
RETURNS
       On success, the square root is returned. If X is real and positive...

that means that the function requires a positive floating point number (single or double precision) in input and returns a floating point number in output and this is the square root of the number given in input. Hence the API in this case can be interpreted as the collection of the include files used by the C language and its human readable description provided by the man pages.


In object oriented languages an API usually entails a description of a set of class definitions with a set of behaviours associated to the classes. A behaviour is a description of how an object, derived from that class, will behave in a given circumstance. This abstract concept is associated to real functionalities exposed by the classes that are implemented in terms of actual class methods.

The API in this case can be conceived as the sum of all the methods publicly exposed by the classes (usually called the class interface). This means that the API prescribes the methods through which one handles the objects derived from the class definitions.

More generally one can see the API as the collection of all the kind of objects one can derive from the class definitions (for using them in programs), and their associated possible behaviours. The use again is mediated by the public methods, but in this interpretation the methods are seen as a technical detail of how the behaviour is implemented.

For instance: a class representing a Stack can expose publicly two methods push() (to add a new item to the stack), and pop() (to extract the last item, ideally placed on top of the stack).

The API in this case can be interpreted as the two methods pop() and push(), or more generally as the idea that the one can use an item of type Stack that implements the behaviour of a stack (a pile exposing it's top to add/remove elements).


This concept can be pushed to the limit of having a class interface in an API that has no methods at all, but only behaviours associated to. For instance the Java language API includes the interface Serializable which is an interface that requires the class which implements it should behave in a way to be always serializable. This does not require to have any public method, rather requires that the class permits to have a representation that can be saved at any time (this is typically true for any class containig simple data, and no link to external resources like an (open) connection to a file, a remote system or an external device).

In this sense, in an object oriented languages, the API turns to be a contract on a set of behaviors, possibly mediated by a set of class methods.

In object oriented languages the API is still distributed in form of libraries. Instead the documentation is usually not provided in the form of few simple man pages, but are often presented as a rich and complex set of documents. For example, the Java language libraries include a set of APIs that are provided in the form of the JDK used by the developers to build new Java programs. The JDK includes the documentation of the API in Javadoc notation. The quality of the documentation associated to an API is often a factor determining it's success in terms of ease of use.

Web APIs

When used in the context of web development, an API is typically a defined set of Hypertext Transfer Protocol (HTTP) request messages along with a definition of the structure of response messages, usually expressed in an Extensible Markup Language (XML) or JavaScript Object Notation (JSON) format. While "Web API" is virtually a synonym for web service, the recent trend (so-called Web 2.0) has been moving away from Simple Object Access Protocol (SOAP) based services towards more direct Representational State Transfer (REST) style communications[4]. Web APIs allow the combination of multiple services into new applications known as mashups [5].

Use of APIs to share content

The practice of publishing APIs has allowed web communities to create an open architecture for sharing of content and data between communities and applications. In this way, content that is created in one place can be dynamically posted and/or updated in multiple locations on the web.
1. Photos can be shared from sites like Flickr and Photobucket to Social Network sites like Facebook and MySpace.
2. Content can be embedded, Here is an example of a presentation embedded by SlideShare on Linked-in:Embedded Slide Show in a Profile
3. Content can be dynamically posted. Sharing comments made on Twitter to a Facebook account for example is enabled by Twitter and Facebook's APIs.
4. Video content can be embedded on sites, in this example of an embedded YouTube Video, where the content is served by YouTube on a third party site Embedded Video Content Example
5. User information can be shared from web communities to outside applications, delivering new functionality to the web community that shared its user data via an open API. One of the best examples of this is the Facebook Application platform. Another is the Open Social platform[6].

Implementations

The POSIX standard defines an API that allows a wide range of common computing functions to be written such that they may operate on many different systems (Mac OS X and various Berkeley Software Distributions (BSDs) implement this interface); however, making use of this requires re-compiling for each platform. A compatible API, on the other hand, allows compiled object code to function without any changes, on any system implementing that API. This is beneficial to both software providers (where they may distribute existing software on new systems without producing/distributing upgrades) and users (where they may install older software on their new systems without purchasing upgrades), although this generally requires various software libraries implementing the necessary APIs too.

Microsoft has shown commitment to a backward compatible API, particularly within their Windows API (Win32) library, such that older applications may run on newer versions of Windows using an executable-specific setting called "Compatibility Mode"[7]. Apple Inc. has shown less propensity to this concern, breaking compatibility or implementing an API in a slower "emulation mode"; this allows greater freedom in development, at the cost of making older software obsolete. [citation needed]

Among Unix-like operating systems, there are many related but incompatible operating systems running on a common hardware platform (particularly Intel 80386-compatible systems). There have been several attempts to standardise the API such that software vendors may distribute one binary application for all these systems; however to date, none of these have met with much success. The Linux Standard Base is attempting to do this for the Linux platform, while many of the BSD Unices (FreeBSD, NetBSD, OpenBSD) implement various levels of API compatibility for both backward compatibility (allowing programs written for older versions to run on newer distributions of the system) and cross-platform compatibility (allowing execution of foreign code without recompiling).

Release policies

Common API publishing policies include:

  • Companies do not release API information to anybody outside of the company.
  • Companies protect information on their APIs from the general public. For example, Sony used to make its official PlayStation 2 API available only to licensed PlayStation developers. This enabled Sony to control who wrote PlayStation 2 games. Such control can have quality control benefits and potential license revenue.
  • Companies make their APIs freely available. For example, Microsoft makes the Microsoft Windows API public and Apple releases its APIs Carbon and Cocoa so that software can be written for their platform.

ABI's

The related term application binary interface (ABI) is a lower level definition concerning details at the assembly language level. For example, the Linux Standard Base is an ABI, while POSIX is an API.[8]

API examples

Language bindings and interface generators

APIs that are intended to be used by more than one high-level programming language often provide, or are augmented with, facilities to automatically map the API to features (syntactic or semantic) that are more natural in those languages. This is known as language binding, and is itself an API. The aim is to encapsulate most of the required functionality of the API, leaving a "thin" layer appropriate to each language.

Below are listed some interface generator tools which bind languages to APIs at compile time.

  • SWIG generates interfaces from many languages for many languages (Typically Compiled->Scripted)
  • F2PY: Fortran to Python interface generator.
  • XPCOM (Cross Platform Component Object Model) is a cross platform component model from Mozilla.

See also

References

  1. ^ "Application Program Interface". Free On-line Dictionary of Computing. 1995-02-15. Retrieved 2009-06-28.
  2. ^ "Definition of: API". PC Magazine. 1996. Retrieved 2009-06-28.
  3. ^ Orenstein, David (2000-01-10). "QuickStudy: Application Programming Interface (API)". Computerworld. Retrieved 2009-06-04.
  4. ^ Benslimane, Djamal (2008). "Services Mashups: The New Generation of Web Applications". IEEE Internet Computing, vol. 12, no. 5. Institute of Electrical and Electronics Engineers. pp. 13–15. {{cite web}}: Cite has empty unknown parameters: |trans_title= and |month= (help); Unknown parameter |coauthors= ignored (|author= suggested) (help)
  5. ^ "Mashup Dashboard". ProgrammableWeb.com. 2009. {{cite web}}: Cite has empty unknown parameters: |trans_title=, |month=, and |coauthors= (help)
  6. ^ "Dynamic Community content via APIs". October 26 2009. {{cite web}}: Check date values in: |date= (help); Cite has empty unknown parameters: |trans_title=, |month=, and |coauthors= (help); Missing or empty |url= (help)CS1 maint: date and year (link)
  7. ^ Microsoft (2001). "Run Older Programs On Windows XP". Microsoft. p. 4. {{cite web}}: Cite has empty unknown parameters: |trans_title= and |coauthors= (help); Unknown parameter |month= ignored (help)
  8. ^ Stoughton, Nick (2005). "Update on Standards" (PDF). USENIX. Retrieved 2009-06-04. {{cite web}}: Unknown parameter |month= ignored (help)