Internet Communications Engine
Developer(s) | ZeroC |
---|---|
Stable release |
3.6.3
/ October 10, 2016 |
Development status | Active |
Platform | Cross-platform |
Type | Remote procedure call framework |
License | GPL / Proprietary |
Website |
zeroc |
The Internet Communications Engine, or Ice, is an open source RPC framework developed by ZeroC. It provides SDKs for C++, C#, Java, JavaScript, Objective-C, PHP, Python, and Ruby, and can run on various operating systems, including Linux, Windows, OS X, and Android.[1] Ice Touch[2] is a variant of Ice for iOS devices, and Ice-E[3] is another variant for embedded devices.
Ice implements a proprietary communications protocol, called the Ice protocol, that can run over TCP, TLS, UDP, and WebSocket.[4] As its name indicates, Ice can be suitable for applications that communicate over the Internet, and includes functionality for traversing firewalls.
History
ZeroC was founded in 2002 in Florida.[5] Ice was influenced by the Common Object Request Broker Architecture (CORBA) in its design, and indeed was created by several influential CORBA developers, including Michi Henning. However, according to ZeroC, it was smaller and less complex than CORBA because it was designed by a small group of experienced developers, instead of suffering from design by committee.[6]
In 2004, it was reported that a game called "Wish" by a company named Mutable Realms used Ice.[7] In 2008, it was reported that Big Bear Solar Observatory had used the software since 2005.[8] Some versions were posted to GitHub as part of the Open Microscopy Environment, through the 3.4.2 version in 2011.[9]
Components
Ice components include object-oriented remote-object-invocation, replication, grid-computing, failover, load-balancing, firewall-traversals and publish-subscribe services. To gain access to those services, applications are linked to a stub library or assembly, which is generated from a language-independent IDL-like syntax called slice.
IceStorm
is an object-oriented publish-and-subscribe framework that also supports federation and quality-of-service. Unlike other publish-subscribe frameworks such as Tibco Software's Rendezvous or SmartSockets, message content consist of objects of well defined classes rather than of structured text.
IceGrid
is a suite of frameworks that provide object-oriented load balancing, failover, object-discovery and registry services.
IcePatch
facilitates the deployment of ICE-based software. For example, a user who wishes to deploy new functionality and/or patches to several servers may use IcePatch.
Glacier
is a proxy-based service to enable communication through firewalls, thus making ICE an internet communication engine.
IceBox
Icebox is a service-oriented architecture container of executable services implemented in .dll or .so libraries. This is a lighter alternative to building entire executable for every service.
Slice
Slice is a ZeroC-proprietary file format that programmers follow to edit computer-language independent declarations and definitions of classes, interfaces, structures and enumerations. Slice definition files are used as input to the stub generating process. The stub in turn is linked to applications and servers that should communicate with one another based on interfaces and classes as declared/defined by the slice definitions.
Apart from CORBA, classes and interfaces support inheritance and abstract classes. In addition, slice provides configuration options in form of macros and attributes to direct the code generation process. An example is the directive to generate a certain STL list<double>
template instead of the default, which is to generate a STL vector<double>
template.
See also
- Abstract Syntax Notation One (ASN.1)
- Structured Data eXchange Format (SDXF)
- Caucho's Hessian
- Cisco's Etch
- Facebook’s Thrift
- Google's Protocol Buffers
- Microsoft's "M"
Notes
- ↑ http://zeroc.com/products/ice#everywhere Retrieved on 2015-11-18.
- ↑ https://zeroc.com/products/icetouch Retrieved on 2015-11-18
- ↑ https://zeroc.com/products/ice-e Retrieved on 2015-11-18
- ↑ https://zeroc.com/products/ice#flexible Retrieved on 2015-11-18
- ↑ "Zeroc, Inc". Corporate profile. Manta. Retrieved July 17, 2013.
- ↑ "Differences between Ice and CORBA". Archived from the original on March 18, 2013. Retrieved July 17, 2013.
- ↑ Michi Henning (February 1, 2004). "Massively Multiplayer Middleware". Queue. ACM. Retrieved July 17, 2013.
- ↑ Sergij Shumko (November 2, 2008). "Ice middleware in the New Solar Telescope's Telescope Control System" (PDF). Astronomical Data Analysis Software and Systems XVII, ASP Conference Series, Vol. XXX, 2008. Quebec City, Canada. Retrieved July 17, 2013.
- ↑ "ome/zeroc-ice". Source code download. GitHub. Retrieved July 17, 2013.