Common Language Infrastructure
From Wikipedia, the free encyclopedia
The Common Language Infrastructure (CLI) is an open specification (published under ECMA-335 and ISO/IEC 23271) developed by Microsoft that describes the executable code and runtime environment that form the core of a number of runtimes including the Microsoft .NET Framework, Mono, and Portable.NET. The specification defines an environment that allows multiple high-level languages to be used on different computer platforms without being rewritten for specific architectures.
Contents |
[edit] Overview
Among other things, the CLI specification describes the following four aspects:-
- The Common Type System (CTS)
- A set of types and operations that are shared by all CTS-compliant programming languages.
- Metadata
- Information about program structure is language-agnostic, so that it can be referenced between languages and tools, making it easy to work with code written in a language you are not using.
- Common Language Specification (CLS)
- A set of base rules to which any language targeting the CLI should conform in order to interoperate with other CLS-compliant languages. The CLS rules define a subset of the Common Type System.
- Virtual Execution System (VES)
- The VES loads and executes CLI-compatible programs, using the metadata to combine separately generated pieces of code at runtime.
All compatible languages compile to Common Intermediate Language (CIL), which is an intermediate language that is abstracted from the platform hardware. When the code is executed, the platform-specific VES will compile the CIL to the machine language according to the specific hardware.
[edit] Standardization and licensing
In August 2000, Microsoft, Hewlett-Packard, Intel, and others worked to standardize CLI. By December 2001, it was ratified by the ECMA, with ISO standardization following in April 2003.
While Microsoft and their partners hold patents for CLI, ECMA and ISO require that all patents essential to implementation be made available under "reasonable and non-discriminatory (RAND) terms."
[edit] Support for dynamic languages
The Common Language Infrastructure has currently no built-in support for Dynamically typed languages, because the existing Common Intermediate Language is statically typed[1].
The Dynamic Language Runtime is an ongoing effort to bring this support to the CLR.
[edit] Implementations
- The .NET Framework is built on the Common Language Runtime, Microsoft's commercial implementation of the CLI for desktop and server systems, and also encompasses a large collection of programming frameworks and libraries.
- Shared Source Common Language Infrastructure is a reference implementation of the CLI available from Microsoft, under the Shared source licensing program.
- .NET Compact Framework is Microsoft's commercial implementation of the CLI for portable devices and Xbox 360.
- Net60 is redFIVElabs' commercial implementation of .NET Compact Network on Symbian-based devices.
- Microsoft Silverlight, an implementation for use in web browsers - for Microsoft Windows and Mac OS X.
- Mono development platform is an open source implementation of CLI and accompanying technologies, sponsored by Novell.
- Portable.NET, part of the dotGNU project, is another open-source implementation.
- VMKit part of Low Level Virtual Machine toolkit as of version 2.3.
[edit] Notes
- ^ Pobar, Joel (2007-01-03). "CLR Dynamic languages under the hood". http://blogs.msdn.com/joelpob/archive/2005/07/01/434728.aspx. Retrieved on 2008-01-26.
[edit] References
- Common Language Specification
- "Standard ECMA-335, Common Language Infrastructure (CLI)". ECMA International. http://www.ecma-international.org/publications/standards/Ecma-335.htm. Retrieved on August 31.
- "ISO/IEC 23271, Common Language Infrastructure". ISO. http://www.iso.org/iso/en/CatalogueDetailPage.CatalogueDetail?CSNUMBER=42927. Retrieved on September 27.
|
|