Real World Mozilla First XPCOM Component

From CDOT Wiki
Revision as of 19:31, 27 February 2007 by David.humphrey (talk | contribs) (editing...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Introduction

Mozilla is a huge platform. In order to work in such a large system and have hundreds or thousands of developers working on the same code, it is necessary to break things into smaller pieces. In Mozilla these pieces are called components, and are shipped as .DLL files (on win32). When one of these .DLL files contains two or more components, it is called a module.

Mozilla developer specialize in one or more components/modules (modules are made up of components). Here is a list of the various modules and their owners and peers: http://www.mozilla.org/owners.html. Module owners are responsible for a module's code, and have final say about how changes are made to it. The peers are people designated by the module owner to help them maintain the code. Owners and peers do code reviews of patches from the community.

By writing code in components/modules instead of one giant application, there are a number of benefits:

  • Modularization of code, so pieces of a system can be developed, built, replaced independently
  • Increased performance, because you only need to load the components/modules you are using instead of the whole thing
  • Reuse, as separate components become usable in different applications

This raises a question: what are 'XPCOM components' components of exactly? The answer is Gecko, Mozilla's standards compliant, embeddable web browser and toolkit for creating web browsers and other applications. XPCOM is the means of accessing Gecko library functionality and embedding or extending Gecko.

Writing FirstXpcom

In this walkthrough we will be creating a simple binary XPCOM component using the build system. While this component won't do very much yet, it will provide a starting point for many other types of components you may wish to build down the road.

The code this component will become part of a Gecko-enabled application (in this case, a Firefox binary extension). However, it is important to remember that this is only one of many possible uses for it.

What is a Component?

Components define certain publicly available functionality. The public portion of a component is defined in an Interface. Interfaces are a kind of contract between implementors (those writing code to implement the interface) and clients (those writing code to use an interface's implementation). By defining an interface for a component, we advertise to the world what we are willing and able to do. There are other advantages as well:

  • implementors can change their implementation without affecting clients
  • clients can choose between multiple implementations

It should also be noted that components can implement multiple interfaces. This is something we'll return to later when we discuss interface querying.

Starting FirstXpcom

For this walkthrough we will use the Mozilla build system to create our component. It is also possible to us the Gecko SDK (instructions are here). NOTE: this assumes that you have already done a successful objdir-Firefox build.

Creating Directories

Start by creating a directory for your component, using all lowercase letters:

$ cd mozilla/extensions
$ mkdir firstxpcom

Next, create 2 more directories to hold your component's public interface (i.e., public) and source code (i.e., src):

$ cd mozilla/extensions/firstxpcom
$ mkdir public
$ mkdir src

Defining an Interface

Now we need to define the component's public interface. To do this you must create an IDL file (see http://developer.mozilla.org/en/docs/XPIDL). The IDL file defines the component's public interface in a language neutral way. Mozilla uses the XPIDL format (cross Platform Interface Definition Language) to define a component's public interfaces rather than doing it in C++ header files directly. Using IDL, these interfaces can be defined in a language- and machine-independent way. IDLs make it possible to define interfaces which can then be processed by tools to autogenerate language-dependent interface specifications. The IDL files are used to generate C++ header files.

Create an IDL file for the component in the public directory::

$ cd mozilla/extensions/firstxpcom/public
$ touch IFirstXpcom.idl

Here are the contents of the IFirstXpcom.idl

#include "nsISupports.idl"

[scriptable, uuid(...see below...)]
interface IFirstXpcom : nsISupports
{
	attribute AString name;

	long add(in long a, in long b);
};

What does this interface say? To begin, notice the use of nsISupports. This is the fundamental interface that all XPCOM components must implement. What does it do? How is it defined?

nsISupports (defined here) is the base interface for all XPCOM components (i.e., it is possible to pass any XPCOM component around as an nsISupports object). The methods in nsISupports define basic bookkeeping for an interface's lifetime (it also defines a way to check at runtime if a component implements a given interface, but more on that later).

Components need to keep track of how many clients hold references to them via an interface. We call this reference counting on an interface, and it is used to determine when a component can be safely unloaded so that it doesn't leak (i.e., no one holds a reference any more, but the interface is still in memory).

The members of nsISupports (i.e., QueryInterface, AddRef, and Release) provide the basic means for getting the right interface from an object, incrementing the reference count, and releasing objects once they are not being used.

One point worth mentioning is that pointers in XPCOM are to interfaces. Interface pointers are known to implement nsISupports, so you can access all of the object lifetime and discovery functionality described above.

So the first line above says, "include the interface for nsISupports (defined in nsISupports.idl) because I'll need it", and the fourth line says, "I'm a new interface called IFirstXpcom, but I'm also nsISupports because I inherit from it."

What does line three mean? This says that our component is scriptable, and can be used or implemented in scripting languages, JavaScript for example (see http://developer.mozilla.org/en/docs/Interfaces:About_Scriptable_Interfaces).

Each interface needs to be uniquely identifiable, and Mozilla uses a 128-bit number called a UUID (Universally Unique Identifier) for this purpose. You can generate one using a number of methods:

  • in MSYS, use the command-line program uuidgen.exe
  • in IRC ask firebot:
/msg firebot uuid 

You need to get a UUID and put it in the brackets, for example:

[scriptable, uuid(78af1749-014a-47aa-baec-2669670b7601)]

Next comes the body of your interface. Our interface defines one attribute and one method. An attribute is a value you can Get and Set (NOTE: you can specify attributes that are Get only, that is read-only). We have an attribute called name of type AString (a unicode, or two-byte string class. For more details about strings in Mozilla, see http://developer.mozilla.org/en/docs/XPCOM_string_guide).

Our interface also defines a single method called add, which takes two long integers as input, adds them, and returns the result as a long integer.

Because we are using the Mozilla build system to help us create our component, we can get it to translate our IDL into .h and .cpp stub files automatically. But first we have to generate some makefiles.

Makefile.in

The first step in making the build system aware of our component is to generate an input file for autoconf to use during the configure step, which will build our Makefile automatically.

$ cd mozilla/extensions/firstxpcom
$ touch Makefile.in

The Makefile.in should contain the following (NOTE: you can read more about what these files actually mean here):

DEPTH = ../.. topsrcdir = @top_srcdir@ srcdir = @srcdir@ VPATH = @srcdir@

include $(DEPTH)/config/autoconf.mk

MODULE = firstxpcom

DIRS = public \ src \ $(NULL)

XPI_NAME = firstxpcom

  1. A Unique ID for your extension

INSTALL_EXTENSION_ID = firstxpcom@senecac.on.ca

  1. Will create a .xpi in /mozilla/$(MOZ_OBJDIR)/dist/xpi-stage/

XPI_PKGNAME = firstxpcom

  1. install.rdf will tell Firefox how to install our extension and
  2. this says, "copy install.rdf into our extension dir and xpi"

DIST_FILES = install.rdf

include $(topsrcdir)/config/rules.mk


Note the DIRS variable. It says that the two directories, public and src, will be entered. We also need Makefile.in files in each of those.

Next we need a Makefile.in public directory


start--------------

DEPTH = ../../.. topsrcdir = @top_srcdir@ srcdir = @srcdir@ VPATH = @srcdir@

include $(DEPTH)/config/autoconf.mk

MODULE = firstxpcom XPIDL_MODULE = firstxpcom

XPI_NAME = firstxpcom

  1. The files under EXPORTS are copied directly to
  2. /mozilla/$(MOZ_OBJDIR)/dist/include/myextension/
  3. and are thus accessible from other modules
  4. EXPORTS = \
  5. myHeader.h \
  6. $(NULL)

XPIDLSRCS = IFirstXpcom.idl

include $(topsrcdir)/config/rules.mk


end-------------------

Here we tell the build system about our component's name and where it's XPIDL file can be found.

Now a Makefile.in for src


start--------------

DEPTH = ../../.. topsrcdir = @top_srcdir@ srcdir = @srcdir@ VPATH = @srcdir@

include $(DEPTH)/config/autoconf.mk

IS_COMPONENT = 1 MODULE = firstxpcom LIBRARY_NAME = firstxpcom

XPI_NAME = firstxpcom

  1. The REQUIRES section tells make which modules your
  2. components uses. This causes the relevant subdirectories
  3. of /mozilla/$(MOZ_OBJDIR)/dist/include/ to be added to the
  4. C++ compiler's include path. If you're including Mozilla
  5. headers and the compiler isn't finding them, it could well
  6. mean that you haven't listed all of the necessary modules here.

REQUIRES = xpcom \ string \ $(NULL)

  1. The .cpp source files to be compiled

CPPSRCS = FirstXpcom.cpp \ $(NULL)

EXTRA_DSO_LDOPTS += \

 $(XPCOM_GLUE_LDOPTS) \
 $(NSPR_LIBS) \
 $(NULL)

include $(topsrcdir)/config/rules.mk


end-------------------

Last, we need to create a file telling Firefox how to install our extension, install.rdf (see http://developer.mozilla.org/en/docs/Install_Manifests for details).


start--------------

<?xml version="1.0"?>

<RDF xmlns="http://www.w3.org/1999/02/22-rdf-syntax-ns#"

    xmlns:em="http://www.mozilla.org/2004/em-rdf#">
 <Description about="urn:mozilla:install-manifest">
   <em:id>firstxpcom@senecac.on.ca</em:id>
   <em:version>0.1</em:version>
   <em:type>2</em:type>


   <em:targetApplication>
     <Description>
       <em:id>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</em:id>
       <em:minVersion>2.0+</em:minVersion>
       <em:maxVersion>3.0a3</em:maxVersion>
     </Description>
   </em:targetApplication>
   <em:name>My First XPCOM Extension</em:name>
   <em:description>Just a simple XPCOM component.</em:description>
   <em:creator>David Humphrey</em:creator>
   <em:homepageURL>http://zenit.senecac.on.ca/wiki</em:homepageURL>
 </Description>

</RDF>


end-------------------


  • Now let's build our component

Add the following line to your .mozconfig file in order to enable your extension in the build system:

ac_add_options --enable-extensions=default,firstxpcom

Now you can re-build your tree (also known as "rebuilding world") by doing:

$ cd mozilla $ make -f client.mk build

BUT...this takes forever for it to actually reach your code, since it has to traverse the entire tree checking for changes. So, you can bypass the rest of the tree and go directly to your component's build.

$ cd $(objdir) $ ../build/autoconf/make-makefile extensions/firstxpcom

Now call make in $(objdir)/extensions/firstxpcom

$ cd $(objdir)/extensions/firstxpcom $ make

This will create the public and src directories, as well as generate the Makefiles necessary in each. Go into the public directory and call make again, in order to have your .h and .cpp stubs generated:

$ cd $(objdir)/extensions/firstxpcom/public $ make

If all goes well, you'll see a hundred lines or so of output from make, ending in an error (NOTE: make will error out, since we have no source files yet). We can safely ignore most of it, but a few lines are significant at this point:

IFirstXpcom.idl ../../../dist/bin/xpidl.exe -m header -w -I../../../../extensions/firstxpcom/public -I../../../dist/idl -o _xpidlgen/IFirstXpcom /c/temp/proj/ff-trunk/mozilla/obj-fftrunk/extensions/firstxpcom/public/../../../../extensions/firstxpcom/public/IFirstXpcom.idl

Here it is processing our IDL file. As a result of this first partially successful run make, exported and generated header files (i.e.,from our IDL) will be placed in dist/include/firstxpcom.

Within $(obdir)/dist/include/firstxpcom/IFirstXpcom.h you'll see a block that begins:

  1. if 0

/* Use the code below as a template for the implementation class for this interface. */ ... /* End of implementation class template. */

  1. endif

The code in the middle of this block is what you want to start working with in order to implement your .cpp file (and .h if you choose to split it out, which we won't). Copy this implementation stub into the following file:

mozilla/extensions/firstxpcom/FirstXpcom.cpp

You'll need to do a search/replace on _MYCLASS_ and change it to the name of your class.

_MYCLASS_ > FirstXpcom

Now you can try and re-run make for your extension:

$ cd $(objdir)/extensions/firstxpcom $ make

This will produce a host of errors, mostly related to the fact that we don't have proper includes setup and it can't find declarations it needs. You need to add an include for your interface's generated .h:

  1. include "IFirstXpcom.h"

Now re-run make.


Discuss https://bugzilla.mozilla.org/show_bug.cgi?id=371201 at this point, and problems I had making this work, how luser helped me, and in the end a bug was filed on the build system.

Let's examine the code more closely and try to make sense of things ($(objdir)/dist/include/firstxpcom/IFirstXpcom.h):


start--------------

/*

* DO NOT EDIT.  THIS FILE IS GENERATED FROM c:/temp/proj/ff-trunk/mozilla/obj-fftrunk/extensions/firstxpcom/public/../../../../extensions/firstxpcom/public/IFirstXpcom.idl
*/
  1. ifndef __gen_IFirstXpcom_h__
  2. define __gen_IFirstXpcom_h__


  1. ifndef __gen_nsISupports_h__
  2. include "nsISupports.h"
  3. endif

/* For IDL files that don't want to include root IDL files. */

  1. ifndef NS_NO_VTABLE
  2. define NS_NO_VTABLE
  3. endif

/* starting interface: IFirstXpcom */

  1. define IFIRSTXPCOM_IID_STR "78af1749-014a-47aa-baec-2669670b7601"
  1. define IFIRSTXPCOM_IID \
 {0x78af1749, 0x014a, 0x47aa, \
   { 0xba, 0xec, 0x26, 0x69, 0x67, 0x0b, 0x76, 0x01 }}

class NS_NO_VTABLE IFirstXpcom : public nsISupports {

public: 
 NS_DECLARE_STATIC_IID_ACCESSOR(IFIRSTXPCOM_IID)
 /* attribute AString name; */
 NS_IMETHOD GetName(nsAString & aName) = 0;
 NS_IMETHOD SetName(const nsAString & aName) = 0;
 /* long add (in long a, in long b); */
 NS_IMETHOD Add(PRInt32 a, PRInt32 b, PRInt32 *_retval) = 0;

};

 NS_DEFINE_STATIC_IID_ACCESSOR(IFirstXpcom, IFIRSTXPCOM_IID)

/* Use this macro when declaring classes that implement this interface. */

  1. define NS_DECL_IFIRSTXPCOM \
 NS_IMETHOD GetName(nsAString & aName); \
 NS_IMETHOD SetName(const nsAString & aName); \
 NS_IMETHOD Add(PRInt32 a, PRInt32 b, PRInt32 *_retval); 

/* Use this macro to declare functions that forward the behavior of this interface to another object. */

  1. define NS_FORWARD_IFIRSTXPCOM(_to) \
 NS_IMETHOD GetName(nsAString & aName) { return _to GetName(aName); } \
 NS_IMETHOD SetName(const nsAString & aName) { return _to SetName(aName); } \
 NS_IMETHOD Add(PRInt32 a, PRInt32 b, PRInt32 *_retval) { return _to Add(a, b, _retval); } 

/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */

  1. define NS_FORWARD_SAFE_IFIRSTXPCOM(_to) \
 NS_IMETHOD GetName(nsAString & aName) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetName(aName); } \
 NS_IMETHOD SetName(const nsAString & aName) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetName(aName); } \
 NS_IMETHOD Add(PRInt32 a, PRInt32 b, PRInt32 *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->Add(a, b, _retval); } 
  1. if 0

/* Use the code below as a template for the implementation class for this interface. */

/* Header file */ class _MYCLASS_ : public IFirstXpcom { public:

 NS_DECL_ISUPPORTS
 NS_DECL_IFIRSTXPCOM
 _MYCLASS_();

private:

 ~_MYCLASS_();

protected:

 /* additional members */

};

/* Implementation file */ NS_IMPL_ISUPPORTS1(_MYCLASS_, IFirstXpcom)

_MYCLASS_::_MYCLASS_() {

 /* member initializers and constructor code */

}

_MYCLASS_::~_MYCLASS_() {

 /* destructor code */

}

/* attribute AString name; */ NS_IMETHODIMP _MYCLASS_::GetName(nsAString & aName) {

   return NS_ERROR_NOT_IMPLEMENTED;

} NS_IMETHODIMP _MYCLASS_::SetName(const nsAString & aName) {

   return NS_ERROR_NOT_IMPLEMENTED;

}

/* long add (in long a, in long b); */ NS_IMETHODIMP _MYCLASS_::Add(PRInt32 a, PRInt32 b, PRInt32 *_retval) {

   return NS_ERROR_NOT_IMPLEMENTED;

}

/* End of implementation class template. */

  1. endif


  1. endif /* __gen_IFirstXpcom_h__ */

end-------------------

What things do you notice? What strikes you?

  • Use of header guards

Header guards (or Include Guards, see http://en.wikipedia.org/wiki/Include_guard) are a portable technique for ensuring that includes or defines are only done once. Another way of doing this, especially with the Microsoft compiler, is to use

  1. pragma once

But this is not portable, and therefore Mozilla doesn't use it.


  • Use of macros

Mozilla provides many convenience macros to help C++ developers do common tasks more efficiently. Much of the code involved in making a module/component is generic, and has to be repeated ever time. You can spot macros in the code by the fact that they are all capitals, and often begin with NS_*. Examples include:

NS_DECL_ISUPPORTS NS_ENSURE_TRUE NS_IMPL_NSGETMODULE (see http://developer.mozilla.org/en/docs/Category:XPCOM_Macros for more examples)

NS_DECL_ appended with any interface name in all caps will declare all of the methods of that interface for you. Looking at the code above shows you how this is possible. For example, NS_DECL_NSIFOO will declare all of the methods of nsIFoo provided that it exists and that nsIFoo.h was generated by the XPIDL compiler. Consider the following real class:

class myClass : public nsISomeClass {

 public:
   NS_DECL_ISUPPORTS		// declares AddRef, Release, and QueryInterface
   NS_DECL_NSISOMECLASS	// declares all methods of nsISomeClass
   myClass();
   virtual ~myClass() {}

};

The declaration of nsISomeClass doesn't include any methods other than the contructor and destructor. Instead, the class uses the NS_DECL_ macro

Also note the use of NS_METHOD and NS_METHODIMP for return type signatures. All XPCOM functions are required to return a result code (nsresult), which indicates whether or not the function worked (e.g., NS_OK).

Next there is NS_IMPL_ISUPPORTS1. This macro implements the nsISupports interface for you, specifically the implementation of AddRef, Release, and QueryInterface for any object.

NS_IMPL_ISUPPORTS1(classname, interface1)

Also, if your class implements more than one interface, you can simply change the number 1 in the macro to the number of interfaces you support and list the interfaces, separated by commas. For example:

NS_IMPL_ISUPPORTS2(classname, interface1, interface2) NS_IMPL_ISUPPORTSn(classname, interface1, ..., interfacen)

These macros automatically add the nsISupports entry for you, so you don't need to do something like this:

NS_IMPL_ISUPPORTS2(classname, interface1, nsISupports)

As an example, consider seamonkey/xpcom/io/nsBinaryStream.cpp (http://lxr.mozilla.org/seamonkey/source/xpcom/io/nsBinaryStream.cpp#62):

62 NS_IMPL_ISUPPORTS3(nsBinaryOutputStream, nsIObjectOutputStream, nsIBinaryOutputStream, nsIOutputStream)


  • Use of never before-seen types

nsAString, nsresult, PRInt32 -- what are these new types?

Because Mozilla is cross-platform almost all of the standard types you are used to have Mozilla-specific versions. For example, PRInt32, which is defined as part of the Netscape Portable Runtime (hence the PR prefix), is a signed 32-bit integer on all platforms (see http://developer.mozilla.org/en/docs/PRInt32). Depending on the platform you use this could mean a regular int or a long. The same is true of strings (Mozilla has it's own string classes -- see http://developer.mozilla.org/en/docs/XPCOM_string_guide) because of the need for multi-language support and other things necessary to make Mozilla's products work. At first there are so many of these to learn. But you quickly get accustomed to them, and looking at how other people code (via lxr) can help you in this process.


  • Strange return types - differences between original IDL and the C++ signatures

In our IDL file, the IFirstXpcom::Add method took two longs and returned a long. However in the C++ code stub it says something different:

 /* XPIDL -- long add (in long a, in long b); */
 NS_IMETHOD Add(PRInt32 a, PRInt32 b, PRInt32 *_retval) = 0;

The return value of XPCOM methods generated from XPIDL is always of the type nsresult, and the small macro used in these expansions, NS_IMETHOD, actually represents nsresult. nsresult is returned even when in XPIDL you specify that the method return a void. If your IDL requires a return type, as ours does, that value will be added as a final parameter to the call list--in this case PRInt32 *_retval.

There are other things you should know about making your code compatible on all of the platforms Mozilla supports. You can read about them here: http://www.mozilla.org/hacking/portable-cpp.html.


Continuing on, we now have to write a bit of code to get our component registered. Components reside in modules, and those modules are defined in shared library files (i.e., DLLs or DSOs) that typically sit in the components directory of an XPCOM application.

A set of default libraries stored in this components directory makes up a typical Gecko installation, providing functionality that consists of networking, layout, composition, a cross-platform user interface, and others.

When you build a component or module and compile it into a library, it must export a single method named NSGetModule. This NSGetModule function is the entry point for accessing the library. It gets called during registration and unregistration of the component, and when XPCOM wants to discover what interfaces or classes the module/library implements.

In addition to implementing the module code (i.e., nsIModule), we also have to write code to allow our component to be created at runtime based on interface rather than concrete types--esentially, abstracting the process of creation so that clients don't have to know about real classes underneath the interfaces. This means implementing the nsIFactory interface.

Together, these two interfaces will require us to write hundreds lines of code (see http://developer.mozilla.org/en/docs/Creating_XPCOM_Components:Creating_the_Component_Code#webLock1.cpp as an example), the majority of which is generic boilerplate code. In order to simplify the work component developers must do, a number of macros help us with this task:

NS_GENERIC_FACTORY_CONSTRUCTOR NS_IMPL_NSGETMODULE



start--------------
  1. include "nsIGenericFactory.h"

...

// This will result in a function named FirstXpcomConstructor. NS_GENERIC_FACTORY_CONSTRUCTOR(FirstXpcom)

// 19f3ef5e-759f-49a4-88e3-ed27f9c83011

  1. define FIRSTXPCOM_CID \
 {0x19f3ef5e, 0x759f, 0x49a4, \
     { 0x88, 0xe3, 0xed, 0x27, 0xf9, 0xc8, 0x30, 0x11} }

static const nsModuleComponentInfo components[] = {

 { "FirstXpcom",
   FIRSTXPCOM_CID,
   "@senecac.on.ca/firstxpcom;1",
   FirstXpcomConstructor
 }

};

NS_IMPL_NSGETMODULE(FirstXpcomModule, components)


end-------------------

First, we have to include nsIGenericFactory.h in order to get NS_GENERIC_FACTORY_CONSTRUCTOR. Now we can add the following line, which will generate a function called FirstXpcomConstructor:

NS_GENERIC_FACTORY_CONSTRUCTOR(FirstXpcom)

Note: we also could have provided an initialization function to be called after our object gets allocated (i.e., FirstXpcom->Init()):

NS_GENERIC_FACTORY_CONSTRUCTOR_INIT(nsYourConcreteClassName, Init)

Next, we need to create proper identification for our component's module so that it can be passed to the module implementation macro NS_IMPL_NSGETMODULE. This macro takes an array of nsModuleComponentInfo so that you can define more than one component per module (remember that a module is a collection of components, and every component belongs to a module so it can get loaded by the system).

Start by generating another uuid that will be used for identifying our component/class, for example:

19f3ef5e-759f-49a4-88e3-ed27f9c83011

Now write a define to make it easier to pass this Class ID around:

  1. define FIRSTXPCOM_CID \
 {0x19f3ef5e, 0x759f, 0x49a4, \
     { 0x88, 0xe3, 0xed, 0x27, 0xf9, 0xc8, 0x30, 0x11} }

Then we can populate our componets array with a single entry for the FirstXpcom component:

static const nsModuleComponentInfo components[] = {

 { "FirstXpcom",			// descriptive name
   FIRSTXPCOM_CID,			// CID from above
   "@senecac.on.ca/firstxpcom;1",	// Contract ID
   FirstXpcomConstructor		// Factory Constructor
 }

};

The last two need some explanation. The Component ID is a human-readable string that clients can use to get/create an instance of your class. We'll see how to do this later on. Here is an example Component ID and what it means:

"@mozilla.org/network/ldap-operation;1"

domain = @mozilla.org module = network component = ldap-operation version = 1

The final line, the constructor, is the name of the constructor automatically generated by the NS_GENERIC_FACTORY_CONSTRUCTOR. It will be the name of your concrete class followed by "Constructor," in our case FirstXpcomConstructor.

And that's it! We've done it. Time to call make again:

$ cd $(objdir)/extensions/firstxpcom $ make

Assuming this works without errors, here's what has happened:

  • Generated makefiles for your projects in extensions/firstxpcom/ (remember, we’re under /mozilla/$(MOZ_OBJDIR)/.
  • Exported header files and generated header files (from IDL) in dist/include/firstxpcom/
  • Static libraries for your modules in dist/lib/ (in case other modules want to link statically to your stuff instead of using XPCOM).
  • XPI file in dist/xpi-stage/firstxpcom.xpi.
  • Everything else in dist/bin/extensions/firstxpcom@senecac.on.ca/.

Run Firefox and make sure you can see your extension in the addon manager:

$ cd $(objdir)/dist/bin $ export MOZ_NO_REMOTE=1 $ export MOZ_DEBUG_BREAK=warn $ firefox.exe -Profilemanager

Now let's try and access this from JS in the browser. If you haven't done so already, download the Extension Developer's Extension:

http://ted.mielczarek.org/code/mozilla/extensiondev/index.html

This will allow you to use the JavaScript Shell inside the browser, making it easy to try out the firstxpcom component (see http://developer.mozilla.org/en/docs/Introduction_to_the_JavaScript_shell).

Lauch the JSShell (Tools > Extension Developer > Javascript Shell) and write some code to access your XPCOM component:

// Define our component's ID so we can create an instance of it below. const cid = "@senecac.on.ca/firstxpcom;1" print(cid)

// This will create an instance of our firstxpcom class and return it as nsISupports var obj = Components.classes[cid].createInstance()

// This will take the nsISupports object returned above and QI it to IFirstXpcom obj = obj.QueryInterface(Components.interfaces.IFirstXpcom)


// Now we can use the IFirstXpcom methods and attributes var sum sum = obj.add(4,5)

var name name = "Dave Humphrey"

obj.name = name print(obj.name) alert(obj.name)

When you run this code, also notice how your C++ printf statements are sending messages to stdout in your shell window (you may need to scrollback through all the other messages to find them).

Let's try debugging FirstXpcom in C++ with Visual Studio.NET

  • Close minefield
  • Open VS.NET and choose File > Open Project/Solution...
  • Open $(objdir)/dist/bin/firefox.exe
  • Right-click the firefox.exe item in the Solution Explorer and choose Properties
  • Add the following to "Command Arguments": -p <development_profile_name> or -Profilemanager if you don't have one yet.
  • Add the following to "Environment": XPCOM_DEBUG_BREAK=warn. Click OK
  • File > Open... mozilla/extensions/firstxpcom/src/FirstXpcom.cpp
  • Set a breakpoint on ::Add --> *_retval = a + b;
  • Click "Start Debugging" (the "play" button)
  • Follow the same steps above in the Javascript Shell in order to create and call add() on your component.
  • Use F11 to move line by line when you get dropped into the debugger, and F5 to continue.