Difference between revisions of "Components and Interfaces"

From CDOT Wiki
Jump to: navigation, search
(Components and Interfaces in Mozilla)
Line 13: Line 13:
  
 
== Components and Interfaces in Mozilla ==
 
== Components and Interfaces in Mozilla ==
 +
 +
In Mozilla, there are several technologies used that build the codebase. You will find some lower level programming languages such as C/C++ in the core, and may find some higher level programming languages such as Javascript in extensions, components, etc...
 +
 +
These technologies are connected using the XPCOM, XPConnect, XPIDL, etc... With these frameworks, developers can break up software projects into components.
  
 
=== Component ===
 
=== Component ===
  
In Mozilla, XPCOM is used to break up the software projects into components.
+
XPCOM allows developers to connect their code to the rest of the Mozilla codebase. It is a cross platform technology which allows the code to be reusable, updateable, and modular.
 +
 
 +
These components can be grouped together to become a Module. A component or several components (aka Module) are delivered as binary library. In Windows, libraries are .dll files; whereas, Unix libraries are DSO.
  
 
For example, Necko is the network library which is made up of several components such as HTTP, FTP, and other network protocol implementations.
 
For example, Necko is the network library which is made up of several components such as HTTP, FTP, and other network protocol implementations.
  
 
=== Interface ===
 
=== Interface ===
 
  
 
== Related Links ==
 
== Related Links ==

Revision as of 17:23, 4 October 2006

What are Components and Interfaces?

Components and Interfaces define and/or implement small pieces of modular code that can be reused in the codebase.

Component

  • A component is a small piece of reusable code.
  • It is usually one of several in a module.
  • A module is a binary library that groups components that provide some functionality.

Interface

  • A interface defines the communication channels between components.
  • These interfaces are reused to define unique components with the same characteristics and communication channels.

Components and Interfaces in Mozilla

In Mozilla, there are several technologies used that build the codebase. You will find some lower level programming languages such as C/C++ in the core, and may find some higher level programming languages such as Javascript in extensions, components, etc...

These technologies are connected using the XPCOM, XPConnect, XPIDL, etc... With these frameworks, developers can break up software projects into components.

Component

XPCOM allows developers to connect their code to the rest of the Mozilla codebase. It is a cross platform technology which allows the code to be reusable, updateable, and modular.

These components can be grouped together to become a Module. A component or several components (aka Module) are delivered as binary library. In Windows, libraries are .dll files; whereas, Unix libraries are DSO.

For example, Necko is the network library which is made up of several components such as HTTP, FTP, and other network protocol implementations.

Interface

Related Links

Examples