Development status Active | Written in C++ | |
Initial release 1993; 24 years ago (1993) Stable release 6.3.3 / September 17, 2015; 17 months ago (2015-09-17) Website www.dre.vanderbilt.edu/~schmidt/ACE.html |
The Adaptive Communication Environment (ACE) is an open source software framework used for network programming. It provides a set of object-oriented C++ classes designed to help address the inherent complexities and challenges in network programming by preventing common errors.
Contents
History
ACE was initially developed by Douglas C. Schmidt during his graduate work at the University of California, Irvine. Development followed him to the Washington University, St. Louis, where he was employed. ACE was released by WU's Distributed Object Computer (DOC) group as open-source software. Development continued as part of the Institute for Software Integrated Systems (ISIS) at Vanderbilt University.
Features
ACE provides a standardized usage for operating system/machine specific features. It provides common data types and methods to access the powerful but complex features of modern operating systems. These include: inter-process communication, thread management, efficient memory management, etc.
It was designed to be portable and provide a common framework. The same code will work on most Unixes, Windows, VxWorks, QNX, OpenVMS, etc., with minimal changes. Due to this cross-platform support, it has been widely used in the development of communication software. Some of the successful projects that have used ACE includes: Motorola Iridium satellites, Boeing Wedgetail's Australian airborne early warning & control (AEW&C) system, and others.
ACE used software design patterns.