COM IDs & Registry keys in a nutshell

发布时间: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

 

 HKEY_CLASSES_ROOT 

 

     |...

 

      CLSID 

 

|...

 

 {<CLSID_val>}

The CLSID_val is a 128-bit Globally Uniq Identifier (GUID) that identifies the CLSID key

 @ 

  String val
The human-readable name.

 AppID 

  String val
It is a 128-bit Globally Uniq Identifier (GUID) that identifies the AppID key.

 AutoConvertTo 

Automatic object class conversion

 @ 

  String val
The class identifier (CLSID) of the object to which a given object or class of objects should be converted.

 AutoTreatAs 

Assigns the TreatAs val

 @ 

  String val
The CLSID that will automatically be assigned to the TreatAs entry.

 AuxUserType 

Identifies object as a control

 2 

ShortDisplayName

 @ 

  String val
Specifies an application's short display name, used in menus, incl ing pop-ups (e.g. "Chart").

 3 

ApplicationName

 @ 

  String val
Specifies an application name, used in the Results field of the Paste Special dialog box (e.g. "Super Graph 2001 Chart").

 Control 

Identifies an object as an ActiveX Control

 @ 

  String val
This optional entry is used by containers to fill in dialog boxes. The container uses this s key to determine whether to incl e an object in a dialog box that displays ActiveX Controls.

 Conversion 

Conversion used by the Convert dialog

 Readable 

  

 Main 

  

 @ 

  String val
The file format an application can read (convert from).

 ReadWritable 

  

 Main 

  

 @ 

  String val
The file format an application can read and write (activate as).

 DataFormats 

Formats supported by applications

 DefaultIcon 

Provides default icon information

 @ 

  String val
Specifies the full path to the executable name of the object application and the resource index of the icon within the executable (e.g. "c:\toto\titi.exe,0").

 InprocHandler 

Registers a 16-bit handler DLL

 @ 

  String val
Specifies the custom handler used by the application.

 InprocHandler32 

Registers a 32-bit handler DLL

 @ 

  String val
Specifies the custom handler used by the application.

 InprocServer 

Registers a 16-bit in-process server DLL

 @ 

  String val
Specifies the path to the in-process server DLL.

 InprocServer32 

Registers a 32-bit in-process server DLL

 @ 

  String val
Specifies the path to the 32-bit in-process server.

 ThreadingModel 

  String val
Specifies the threading model of the apartment the server can run in.
In-process servers are loaded into an existing apartment and so do not call CoInitialize or CoInitializeEx; they must use the registry to specify an application's threading model.
Allowable vals are: 
ThreadingModel=Apartment. Single-threaded apartment.
ThreadingModel=Both. Single-threaded or multithreaded apartment.
ThreadingModel=Free. Multithreaded apartment.
ThreadingModel=Neutral. Neutral apartment (available in Windows 2000).

 Insertable 

Indicates whether the object is insertable in COM applications.
Objects of this class should appear in the Insert Object dialog box's list box when used by COM container applications.

 @ 

  String val
Specifies the path to the 32-bit in-process server.

 LocalServer 

Full path to a 16-bit local server application

 @ 

  String val
Specifies the full path to the local server, and can incl e command-line arguments.

 LocalServer32 

Full path to a 32-bit local server application

 @ 

  String val
Specifies the full path to the local server, and can incl e command-line arguments.

 MiscStatus 

Specifies how to create and display an object

 ProgID 

Programmatic identifier for a class

 @ 

  String val
Associates a ProgID with a CLSID. Generally, the ProgID str ture is like: <vendor>.<component>.<version>
and must:

  • Have no more than 39 characters.
  • Contain no punct tion (incl ing underscores) except one or more periods.
  • Not start with a digit.

 ToolBoxBitmap32 

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 module name and the resourceID for the bitmap (e.g. "c:\toto\titi.dll,5").

 TreatAs 

Specifies the CLSID of a class that can emulate the current class

 @ 

  String val
CLSID of the Class that is to perform the emulation.
Emulation is the ability of one application to open and edit an object of a different class, while retaining the original format of the object.

 Verb 

Verbs associated with an application

 Version 

Version number of the control

 @ 

  String val
The version number of the control.
The version number should match the version of the type library associated with the control.

 

HKEY_CLASSES_ROOT\AppID\{GUID}
or
HKEY_LOCAL_MACHINE\Software\Classes\AppID\{GUID} 

The AppID registry key groups the configuration and security options for all coclasses exposed by a COM Sever and it is localised in the registry like that: 

AppID node

 

 HKEY_CLASSES_ROOT

 

     |...

 

      AppID

 

|...

 

 {<AppID_val>}

The AppID_val is a 128-bit Globally Uniq Identifier (GUID) that identifies the AppID key

 @

  String val
Generally the human-readable name of the component.

 AccessPermission

  Binary val
Sets an ACL that determines access.

 ActivateAtStorage

  String val
Configures the client to activate on the same system as persistent storage. Any val beginning with Y or y means thatActivageAtStorage should be used

 AuthenticationLevel 

  DWORD val
Sets the default authentication.Vals are from 1 through 6, and correspond to the RPC_C_AUTHN_LEVEL_xxx constants.
Be aware that the AuthenticationLevel named val is supported only on Windows NT 4.0 SP4 and Windows 2000 as well as dcom95 1.1 .

 DllSurrogate

  String val
Names the surrogate process used to load DLLs remotely or locally. To use the system-supplied generic surrogate process, set surrogate_path to an empty string or NULL.

 LaunchPermission

  Binary val
Sets the ACL that determines who can launch the application.

 LocalService

  String val
Configures the component to run as a Win32 service.
The LocalService named-val is used in preference to the LocalServer32 key for local and remote activation reqsts ? ifLocalService exists and refers to a valid service, the LocalServer32 key is ignored.

 LocalService32

  String val
Configures the component to run as a Win32 service.

 RemoteServerName

  String val
Names of the remote Server.

 RunAs

  String val
Sets an application to run only as given user. It must either of the form username, domain\username, or the string "Interactive User". To establish a password for a RunAs class, you must use the DCOMCNFG administrative tool installed in the system directory.

 ServiceParameters

  String val
Sets parameters to be passed to LocalService on invocation.


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} 

The Interface registry key registers new interfaces by associating an interface name with an Interface ID or IID and it is localised in the registry like that: 

AppID node

 

 HKEY_CLASSES_ROOT

 

     |...

 

      Interface

 

|...

 

 {<IID_val>}

The IID_val is a 128-bit Globally Uniq Identifier (GUID) that identifies the Interface

 @

  String val
Generally the human-readable name of the Interface.

 BaseInterface 

Interface derived from

 @

  String val
The IID (GUID) of the Interface derived from.

 NumMethods 

Number of methods

 @

  String val
The number of methods exposed by the Interface.

 ProsySt CLSID 

Maps IID to CLSID (16-bit DLLs)

 @

  String val
Specifies the CLSID (GUID) to map the IID to.

If you add interfaces, you must use this entry to register them (16-bit systems) so that OLE can find the appropriate remoting code to establish interprocess communication.

 ProsySt CLSID32 

Maps IID to CLSID (32-bit DLLs)

 @

  String val
Specifies the CLSID (GUID) to map the IID to.

This is a required entry since the IID-to-CLSID mapping may be different for 16- and 32-bit interfaces. The IID-to-CLSID mapping depends on the way the interface proxies are packaged into a set of proxy DLLs.

If you add interfaces, you must use this entry to register them (32-bit systems) so that OLE can find the appropriate remoting code to establish interprocess communication.