发布时间:2011-5-31 12:03
分类名称:COM
COM Interface
When we are talking about Interface, we are as well talking about the separation between interface definition and implementation. Therefore, an interface defines a contract between the implementor and the user that physically prevents the user from accessing any of the details of the implementation.
You can look an Interface as a set of methods. This set of methods provides you services. You do not care about the implementation of these methods so long as you can use the services you need. COM interface refers to a predefined group of related functions that a COM class implements, but does not necessarily represent all the functions that the COM class supports.
One object-oriented programming (OOP) scholar says that we should concentrate upon the outside view of an object, and he calls this contract programming (B. Meyer, Object-Oriented Software Constr tion, 1988).
COM uses the concept of contract programming.
One of the rules in the COM world is that all COM interfaces must derive, either directly or indirectly, from the IUnknown interface.
COM class or Component Object Class (coclass)
(from the Platform SDK: COM / COM Class Objects and CLSIDs)
"A COM server is implemented as a COM class. A COM class is an implementation of a group of interfaces in code executed whenever you interact with a given object.
There is an important distinction between a C++ class and a COM class. In C++, a class is a type. A COM class is simply a definition of the object, and carries no type, although a C++ programmer might implement it using a C++ class. COM is designed to allow a class to be used by different applications, incl ing applications written without knowledge of that particular class's existence. Therefore, class code for a given type of object exists either in a dynamic linked library (DLL) or in another application (EXE)."
COM object
A COM object is an instance of a COM Class at the runtime.
COM class object or Class Factory
(from the Platform SDK: COM / COM Class Objects and CLSIDs)
"The basic way to create an instance of a class (COM Class) is through a COM class object. This is simply an intermediate object that supports functions common to creating new instances (COM Object) of a given class (COM Class). Most class objects used to create objects from a CLSID support the IClassFactory interface, an interface that incl es the important method CreateInstance. You implement an IClassFactory interface for each (COM) class of object that you offer to be instantiated.
Servers that support some other custom class factory interfaces are not required to support IClassFactory specifically. However, calls to activation functions other than CoGetClassObject (s h as CoCreateInstanceEx) require that the server support IClassFactory."
The Platform SDK: Automation refers to a class factory as "An object that implements the IClassFactory interface, which allows it to create other objects of a specific class.". I will just add that it could be other class factory interfaces (not only the IClassFactory interface) s h as the IClassFactory2 or a custom interface.
COM component
COM component refers to a binary module, s h as a DLL or an Executable. After registering, a component will expose one or more COM Class Object (or Object Factory).
Type Library
Type libraries contain the specification (metadata) for one or more COM elements, incl ing classes, interfaces, enumerations, and more. These files are stored in a standard binary format. A type library can be a stand-alone file with the .tlb filename extension, or it can be stored as a resource in an executable file, which can have a .ocx, .dll, or .exe file name extension.
COM IDs
In COM world, you have to identify different pieces s h as coclasses, interfaces, type libraries, applications, etc. These pieces must be uniq in the world.
COM uses the Globally Uniq IDentifier (GUID) to define these different IDs.
In an Interface Definition Lang ge (IDL) file, you have to use the attribute uuid that stands for Universally Uniq IDentifier. A UUID and a GUID are equivalent.
So, what is a GUID ? A GUID is a 128-bit number, us lly represented in hexadecimal, which is g ranteed "to be uniq across space and time". For example, the following number is a GUID:
{60B4140E-B0A7-4540-B744-7E1A944E8C78}
COM borrows this identify system to the Distributed Computing Environment (DCE) naming scheme. The DCE RPC system uses UUIDs.
The main COM IDs are:
In short, we can have:
Nota: this scheme is not complete, e.g. the Class factory is missing.
To obtain a GUID/UUID you can use:
The Registry
Before starting, here are some acronyms used in the Windows registry documentation and their meaning:
Class registration and file extension informations are stored under the HKEY_LOCAL_MACHINE\Software\Classes key.
COM retrieves the information about COM Classes from the local Registry. With Windows 2000 there is now a global implementation repository called Active Directory. COM uses the registry as well to look for Interface properties and security-related configuration in order to manage the marshalling and distributed access.
All COM Classes related configuration information on the local workstation is stored in the following registry keys:
On Windows 2000 you can register COM class not only as the local machine level but also at the user level, and so you should be very careful as theHKCR is a merged view of HKLM\Software\Classes key and HKCU\Software\Classes key. This is d to the fact that in Windows 2000 class registration and file extension information are stored under both the HKLM key and the HKCU key.
HKEY_CLASSES_ROOT\CLSID\{GUID}
or
HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{GUID} or (Windows 2000 only)
HKEY_CURRENT_USER\SOFTWARE\Classes\CLSID\{GUID}
A CLSID is a globally uniq identifier that identifies a COM class object.
AppID node | |
| |
|... | |
| |
|... | |
| The CLSID_val is a 128-bit Globally Uniq Identifier (GUID) that identifies the CLSID key |
| String val |
| String val |
| Automatic object class conversion |
| String val |
| Assigns the TreatAs val |
| String val |
| Identifies object as a control |
| ShortDisplayName |
| String val |
| ApplicationName |
| String val |
| Identifies an object as an ActiveX Control |
| String val |
| Conversion used by the Convert dialog |
|
|
|
|
| String val |
|
|
|
|
| String val |
| Formats supported by applications |
| Provides default icon information |
| String val |
| Registers a 16-bit handler DLL |
| String val |
| Registers a 32-bit handler DLL |
| String val |
| Registers a 16-bit in-process server DLL |
| String val |
| Registers a 32-bit in-process server DLL |
| String val |
| String val |
| Indicates whether the object is insertable in COM applications. |
| String val |
| Full path to a 16-bit local server application |
| String val |
| Full path to a 32-bit local server application |
| String val |
| Specifies how to create and display an object |
| Programmatic identifier for a class |
| String val
|
| Identifies the module name and resourdeID for a 16 x 16 bitmap to use for the face of a toolbar or toolbox button |
| String val |
| Specifies the CLSID of a class that can emulate the current class |
| String val |
| Verbs associated with an application |
| Version number of the control |
| String val |
HKEY_CLASSES_ROOT\AppID\{GUID}
or
HKEY_LOCAL_MACHINE\Software\Classes\AppID\{GUID}
AppID node | |
| |
|... | |
| |
|... | |
| The AppID_val is a 128-bit Globally Uniq Identifier (GUID) that identifies the AppID key |
| String val |
| Binary val |
| String val |
| DWORD val |
| String val |
| Binary val |
| String val |
| String val |
| String val |
| String val |
| String val |
The keys referring to ACL vals (AccessPermission and LaunchPermission) have to be set using an appropriate tool s h as DCOMCNFG.EXE .
HKEY_CLASSES_ROOT\Interface\{GUID}
or
HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{GUID}
AppID node | |
| |
|... | |
| |
|... | |
| The IID_val is a 128-bit Globally Uniq Identifier (GUID) that identifies the Interface |
| String val |
| Interface derived from |
| String val |
| Number of methods |
| String val |
| Maps IID to CLSID (16-bit DLLs) |
| String val |
| Maps IID to CLSID (32-bit DLLs) |
| String val |