XPCOM Code FAQ

Suresh Duddi <dp@netscape.com>
Last Modified: April 2 1999


I am documenting things randomly as I am replying to people's questions. So this looks more like an FAQ.

Table of Contents

  1. What are the Global Objects that XPCOM maintains
  2. What are the static classes that XPCOM maintains
  3. Is there any restriction on which static class I should call first
  4. What is the order of creation of the ServiceManager, ComponentManager and Registry
  5. Is there a global Registry being maintained
  6. ComponentManager Vs ServiceManager
  7. ProgID Vs CLSID
  8. How to debug components ?

What are the Global Objects that XPCOM maintains

What are the static classes that XPCOM maintains

nsComponentManager
nsServiceManager

Is there any restriction on which static class I should call first

No restrictions. You can call any function from the static classes nsComponentManager and nsServiceManager. XPCOM will do the right thing to initialize itself at both places.

Autoregistration() can happen only after Init_XPCOM() is called since the registy might be required by SelfRegister() functions of the dlls and it is only in Init_XPCOM() do we create register the RegistryFactory() with the ComponentManager.

What is the order of creation of the ServiceManager, ComponentManager and Registry

Init_XPCOM()
  • create the global service manager
  • create the global component manager and register as service with the global service manager
  • RegisterFactory(...RegistryFactory...)  Register the RegistryFactory with the component manager so that new registry objects can be created.
  • Now the hard problem is when to trigger Init_XPCOM() There are two static objects nsComponentManager and nsServiceManager. Any function in either of them can be called first. Today nsServiceManager::GetService() is the first one that gets called. All the members of the static nsServiceManager use the NS_GetGlobalServiceManager() to get to the global service manager. All members of the static nsComponentManager use the NS_GetGlobalComponentManager() to get to the global component manager. Hence if we trigger Init_XPCOM() from both NS_GetGlobalComponentManager() and NS_GetGlobalServiceManager() we will be safe.

    Is there a global Registry being maintained

    No. The nsIRegistry is designed to be lightweight access to the registry. Consumers who need to access the registry should use the component manager to create the their own registry access object. This is required because the open() call is supported by the nsIRegistry() and if we maintain a global registry arbitrating which registry file is opened is going to be a major headach.

    The ProgID for the registry will be component://netscape/registry
     

    ComponentManager Vs ServiceManager

    ComponentManager is the only way for component creation. ComponentManager always uses the component's factory to create the component instance. Clients (code that calls CreateInstance() to create and use a component) call the ComponentManager to create instances. Components (the code that implemented NSRegisterSelf()) calls the ComponentManager to register itself and gets called when a Client wants to instantiate a component.

    ServiceManager is a convinience for getting singleton components, components for which only one instance stays alive for the entire application e.g Netlib. It enforces only one of a kind of a component to exist. Hence the notion of getting a service not creating one. (as opposed to the notion of Creating instances with the componentManager). ServiceManager is a convenience because components can technically force singletonism by making their factory return the same instance if one was created already. The other big use of ServiceManager is the (still unimplemented) notion of Shutting down a service.

    Client

    Component

    ProgID Vs CLSID

    ClassID or CLSID is the unique indentification of a component. It is a structure of huge numbers generated by using uuidgen on a windows box. It is represented as a string in documentation as {108d75a0-bab5-11d2-96c4-0060b0fb9956}

    ProgID is the string identification of an implementation of a component the client is looking for. The representation takes a URI syntax. Eg. component://netscape/network/protocol?name=http;description=Http%20Protocol%20Handler
    Some simplify this to, ProgID is a more readable string form of a CLSID. That is acceptable on the periphery. The ProgID is a Client thing. Components register with component manager to claim that they are the implementation for a ProgID. A component can register to be the implementation for multiple ProgIDs (not implemented yet).

    Client

    Component

    How to debug components ?

    XPCOM provides log output. To enable the logging:
    setenv NSPR_LOG_MODULES nsComponentManager:5
    setenv NSPR_LOG_FILE xpcom.log
    Start your application after setting the above environment variables. Debug log from xpcom would be in the file xpcom.log

    Since components are dynamically loaded only on demand, debugging them could be a hard. Here are some tips to debugging components.

    Windows: VC5.0 VC6.0

    Unix: gdb
    Let the program run until you are sure that your component is loaded. Type Control-C. Now all symbols from your component will be available in gdb. Put your breakpoints and restart the app. Gdb will complain that it cannot set the breakpoint, and that it is temporarily disabling it, but when the *.so is loaded, the breakpoint is enabled automatically. - <Eric Van Der Poel>

    I think typing "dir components" (assuming you're in dist/bin) will also allow you to see the symbols in your stack the first time. - <Alec Flett>

    Mac: Codewarrior
    Just open the appropriate .xSYM file in the debugger; the debugger will target the library when the application is run. - <Simon Fraser>