Software engine

From Wikipedia, the free encyclopedia

In computer science, a software engine refers to the core of a computer program. Software engines drive the functionality of the program, and are distinct from peripheral aspects of the program, such as look and feel.

Elucidation

The term Engine when used to describe a piece of software is frequently used by developers when speaking to a wider, layman audience, to describe what they would otherwise refer to as library, platform, SDK or object, to denote an encapsulated block of functionality.

The term most frequently shows up in marketing material that need to describe software internals, as well as in product names.[1][2][3]

Distinct definitions have however become established in certain fields, such as 3D rendering engines or game engines. Many of these engines have in common that they describe an input/output system where the output is of a different order than the input, such as the conversion of HTML to a rendered page. In contrast, something like spell checking components take input and produce output of the same order, only slightly different. But it is not a rule, just a tendency.

Mental Model of a Software Engine

The field of computer science uses the term Engine to provide a mental model of software components an order of magnitude more complex than an ordinary modules of software, such as a libraries, platforms, SDKs or objects. Software modules remain static until called upon by another module. In response to the call, the instruction pointer of the computer begins tracing its way through the code in the called upon module. The mental model of a software module is a Turing machine, which changes its state based on the algorithms that it contains.

In contrast, the mental model a software engine is a mechanical engine, which one can start and stop, and which may run idle for periods of time. Examples of software engines include relational database engines, workflow engines, and search engines. A common characteristic of software engines is metadata that provides models of the real data that the engine processes. Software modules pass data to the engine, and the engine uses its metadata models to transform the data into a different state.

Another characteristic of software engines consistent with their mental model is the ability to tune software engines for optimal performance. In contrast, software modules can be "tuned" only by rewriting them.

See also

References

  1. "What is Live? Learn more about Ableton's music making software". Ableton. Retrieved 2013-09-17. 
  2. "alphaWorks Community". Alphaworks.ibm.com. 2009-10-20. Retrieved 2013-09-17. 
  3. BALARAD, s.r.o. (2013-04-25). "Font Engine - lettering, monogram and clipart plug-in for Embird embroidery software". Embird.com. Retrieved 2013-09-17. 


This article is issued from Wikipedia. The text is available under the Creative Commons Attribution/Share Alike; additional terms may apply for the media files.