Method and system for aggregating objects5710925Abstract A method and system for aggregating objects within a computer system are provided. In a preferred embodiment, the method aggregates an enclosed object within an enclosing object. The enclosed object has an object management interface and an external interface, while the enclosing object has a controlling object management interface. The controlling object management interface and the external interface of the enclosed object have query function members for receiving an identifier of an interface and for returning a reference to the identified interface. A preferred embodiment creates an instance of an enclosing object and an object to be enclosed. In static aggregation, the controlling object management interface of the enclosing object knows in advance how to return an identifier to the external interface of the enclosed object. In dynamic aggregation, an object to be enclosed is added to the enclosing object after the enclosing object is instantiated. Once aggregated, when the query function member of the object management interface of the enclosed object receives an identifier of an interface, it invokes the query function member of the controlling object management interface forwarding the interface identifier and returns the reference to an interface returned by the invoked query function member of the controlling object management interface. In dynamic aggregation, rules for determining to which interface to return a reference can by added to the enclosing object and used by the query function member of the controlling object management interface. Claims We claim: Description TECHNICAL FIELD
______________________________________
class CIRCLE
{public:
int x, y;
int radius;
void draw( );
};
______________________________________
Variables x and y specify the center location of a circle and variable radius specifies the radius of the circle. These variables are referred to as data members of the class CIRCLE. The function draw is a user-defined function that draws the circle of the specified radius at the specified location. The function draw is referred to as a function member of class CIRCLE. The data members and function members of a class are bound together in that the function operates on an instance of the class. An instance of a class is also called an object of the class. In the syntax of C++, the following statement declares the objects a and b to be of type class CIRCLE. CIRCLE a, b; This declaration causes the allocation of memory for the objects a and b. The following statements assign data to the data members of objects a and b. a.x=2: a.y=2; a.radius=1; b.x=4; b.y=5; b.radius=2; The following statements are used to draw the circles defined by objects a and b. a.draw( ); b.draw( ); A derived class is a class that inherits the characteristics-data members and function members-of its base classes. For example, the following derived class CIRCLE.sub.-- FILL inherits the characteristics of the base class CIRCLE.
______________________________________
class CIRCLE.sub.-- FILL : CIRCLE
{public:
int pattern;
void fill( );
};
______________________________________
This declaration specifies that class CIRCLE.sub.-- FILL includes all the data and function members that are in class CIRCLE in addition to those data and function members introduced in the declaration of class CIRCLE.sub.-- FILL, that is, data member pattern and function member fill. In this example, class CIRCLE.sub.-- FILL has data members x, y, radius, and pattern and function members draw and fill. Class CIRCLE.sub.-- FILL is said to "inherit" the characteristics of class CIRCLE. A class that inherits the characteristics of another class is a derived class (e.g., CIRCLE.sub.-- FILL). A class that does not inherit the characteristics of another class is a primary (root) class (e.g., CIRCLE). A class whose characteristics are inherited by another class is a base class (e.g., CIRCLE is a base class of CIRCLE.sub.-- FILL). A derived class may inherit the characteristics of several classes, that is, a derived class may have several base classes. This is referred to as multiple inheritance. A derived class may specify that a base class is to be inherited virtually. Virtual inheritance of a base class means that only one instance of the virtual base class exists in the derived class. For example, the following is an example of a derived class with two nonvirtual base classes. class CIRCLE.sub.-- 1:CIRCLE {. . .}; class CIRCLE.sub.-- 2:CIRCLE {. . .}; class PATTERN:CIRCLE.sub.-- 1, CIRCLE.sub.-- 2 {. . .}; In this declaration class PATTERN inherits class CIRCLE twice nonvirtually through classes CIRCLE.sub.-- 1 and CIRCLE.sub.-- 2. There are two instances of class CIRCLE in class PATTERN. The following is an example of a derived class with two virtual base classes. class CIRCLE.sub.-- 1:virtual CIRCLE {. . .}; class CIRCLE.sub.-- 2:virtual CIRCLE {. . .}; class PATTERN:CIRCLE.sub.-- 1, CIRCLE.sub.-- 2{. . .}; The derived class PATTERN inherits class CIRCLE twice virtually through classes CIRCLE.sub.-- 1 and CIRCLE.sub.-- 2. Since the class CIRCLE is virtually inherited twice, there is only one object of class CIRCLE in the derived class PATTERN. One skilled in the art would appreciate virtual inheritance can be very useful when the class derivation is more complex. A class may also specify whether its function members are virtual. Declaring that a function member is virtual means that the function can be overridden by a function of the same name and type in a derived class. In the following example, the function draw is declared to be virtual in classes CIRCLE and CIRCLE.sub.-- FILL.
______________________________________
class CIRCLE
{public:
int x, y;
int radius;
virtual void draw( );
};
class CIRCLE.sub.-- FILL : CIRCLE
{public:
int pattern;
virtual void draw( );
};
______________________________________
If a virtual function is declared without providing an implementation, then it is referred to as a pure virtual function. A pure virtual function is a virtual function declared with the pure specifier, "=0". If a class specifies a pure virtual function, then any derived class needs to specify an implementation for that function member before that function member may be invoked. In order to access objects, the C++ language provides a pointer data type. A pointer holds values that are addresses of objects in memory. Through a pointer, an object can be referenced. The following statement declares variable c.sub.-- ptr to be a pointer on an object of type class CIRCLE and sets variable c.sub.-- ptr to hold the address of object c. CIRCLE *c.sub.-- ptr; c.sub.-- ptr=&c; Continuing with the example, the following statement declares object a to be of type class CIRCLE and object b to be of type class CIRCLE.sub.-- FILL. CIRCLE a; CIRCLE.sub.-- FILL b; The following statement refers to the function draw as defined in class CIRCLE. a.draw( ); Whereas, the following statement refers to the function draw defined in class CIRCLE.sub.-- FILL. b.draw( ); Moreover, the following statements type cast object b to an object of type class CIRCLE and invoke the function draw that is defined in class CIRCLE.sub.-- FILL.
______________________________________
CIRCLE *c.sub.-- ptr;
c.sub.-- ptr = &b;
c.sub.-- ptr->draw( );
// CIRCLE.sub.-- FILL::draw( )
______________________________________
Thus, the virtual function that is called is function CIRCLE.sub.-- FILL::draw. FIG. 1 is a block diagram illustrating typical data structures used to represent an object. An object is composed of instance data (data members) and member functions, which implement the behavior of the object. The data structures used to represent an object comprise instance data structure 101, virtual function table 102, and the function members 103, 104, 105. The instance data structure 101 contains a pointer to the virtual function table 102 and contains data members. The virtual function table 102 contains an entry for each virtual function member defined for the object. Each entry contains a reference to the code that implements the corresponding function member. The layout of this sample object conforms to the model defined in U.S. Pat. No. 5,297,284, entitled "A Method for Implementing Virtual Functions and Virtual Bases in a Compiler for an Object Oriented Programming Language," which is hereby incorporated by reference. In the following, an object will be described as an instance of a class as defined by the C++ programming language. One skilled in the an would appreciate that objects can be defined using other programming languages. The inheritance of a class is a type of code sharing. A developer of a class can provide the implementation of the class to other developers. These other developers can then create classes that derive from the class provided. Thus, the function members of the provided class are shared. If, however, a class is inherited and a virtual function is overridden, then the testing of the overriding virtual function can be complex. The overriding virtual function can modify the state of the object in a way that affects non-overridden functions. Thus, each inherited function must be independently tested in conjunction with the testing of the overriding virtual function. To ameliorate the complexities of testing, the developers of a class implementation may distribute source code with the implementation. Unfortunately, the distribution of source code has the same drawbacks to sharing source code as discussed above. An advantage of using object-oriented techniques is that these techniques can be used to facilitate the sharing of objects. In particular, object-oriented techniques facilitate the creation of compound documents. A compound document is a document that contains objects generated by various computer programs. (Typically, only the data members of the object and the class type are stored in a compound document.) For example, a word processing document that contains a spreadsheet object generated by a spreadsheet program is a compound document. A word processing program allows a user to embed a spreadsheet object (e.g., a cell) within a word processing document. To allow this embedding, the word processing program is compiled using the class definition of the object to be embedded to access function members of the embedded object. Thus, the word processing program would need to be compiled using the class definition of each class of objects that can be embedded in a word processing document. To embed an object of a new class into a word processing document, the word processing program would need to be recompiled with the new class definition. Thus, only objects of classes selected by the developer of the word processing program can be embedded. Furthermore, new classes can only be supported with a new release of the word processing program. To allow objects of an arbitrary class to be embedded into compound documents, interfaces are defined through which an object can be accessed without the need for the word processing program to have access to the class definitions at compile time. An abstract class is a class in which there is at least one virtual function member with no implementation (a pure virtual function member). An interlace is an abstract class with no data members and whose virtual functions are all pure. Thus, an interface provides a protocol for two programs to communicate. Interfaces are typically used for derivation: a program implements classes that provide implementations for the interfaces the classes are derived from. Thereafter, objects are created as instances of these derived classes. The following class definition is an example definition of an interface. In this example, for simplicity of explanation, rather than allowing any class of object to be embedded in its documents, a word processing program allows spreadsheet objects to be embedded. Any spreadsheet object that provides this interface can be embedded, regardless of how the object is implemented. Moreover, any spreadsheet object, whether implemented before or after the word processing program is compiled, can be embedded.
______________________________________
class ISpreadSheet
{ virtual void File( ) = 0;
virtual void Edit( ) = 0;
virtual void Formula( ) = 0;
virtual void Format( ) = 0;
virtual void GetCell (string RC, cell *pCell) = 0;
virtual void Data( ) = 0;
______________________________________
The developer of a spreadsheet program would need to provide an implementation of the interface to allow the spreadsheet objects to be embedded in a word processing document. When the word processing program embeds a spreadsheet object, the program needs access to the code that implements the interface for the spreadsheet object. To access the class code, each implementation is given a unique class identifier. For example, code implementing a spreadsheet object developed by Microsoft Corporation may have a class identifier of "MSSpreadsheet," while code implementing a spreadsheet object developed by another corporation may have a class identifier of "LTSSpreadsheet." A persistent registry in each computer system is maintained that maps each class identifier to the code that implements the class. Typically, when a spreadsheet program is installed on a computer system, the persistent registry is updated to reflect the availability of that class of spreadsheet objects. So long as a spreadsheet developer implements each function member defined by the interface and the persistent registry is maintained, the word processing program can embed instances of the developer's spreadsheet objects into a word processing document. The word processing program accesses the function members of the embedded spreadsheet objects without regard to who has implemented them or how they have been implemented. Various spreadsheet developers may wish, however, to implement only certain function members. For example, a spreadsheet developer may not want to implement data base support, but may want to support all other function members. To allow a spreadsheet developer to support only some of the function members, while still allowing the objects to be embedded, multiple interfaces for spreadsheet objects are defined. For example, the interfaces IDatabase and IBasic may be defined for a spreadsheet object as follows.
______________________________________
class IBasic
{ virtual void File( ) = 0;
virtual void Edit( ) = 0;
virtual void Formula( ) = 0;
virtual void Format( ) = 0;
virtual void GetCell (string RC, cell *pCell) = 0;
class IDatabase
{ virtual void Data( ) = 0;
}
______________________________________
Each spreadsheet developer would implement the IBasic interface and, optionally, the IDatabase interface. At run time, the word processing program would need to determine whether a spreadsheet object to be embedded supports the IDatabase interface. To make this determination, another interface is defined (that every spreadsheet object implements) with a function member that indicates which interfaces are implemented for the object. This interface is named IUnknown (and referred to as the unknown interface or the object management interface) and is defined as follows.
______________________________________
class IUnknown
{ virtual HRESULT QueryInterface (REFIID iid, void **ppv) = 0;
virtual ULONG AddRef( ) = 0;
virtual ULONG Release ( ) = 0;
______________________________________
The IUnknown interface defines the function member (method) QueryInterface. The method QueryInterface is passed an interface identifier (e.g., "IDatabase") in parameter iid (of type REFIID) and returns a pointer to the implementation of the identified interface for the object for which the method is invoked in parameter ppv. If the object does not support the interface, then the method returns a false. The type HRESULT indicates a predefined status, the type REFIID indicates a reference to an interface identifier, and the type ULONG indicates an unsigned long integer.
______________________________________
Code Table 1
______________________________________
HRESULT XX::QueryInterface(REFIID iid, void **ppv)
{ ret = TRUE;
switch (iid) {
case IID.sub.-- IBasic:
*ppv = pIBasic;
break;
case IID.sub.-- IDatabase:
*ppv = pIDatabase;
break;
case IID.sub.-- IUnknown:
*ppv = this;
break;
default:
ret = FALSE;
if(ret == TRUE) {AddFef( );};
return ret;
}
______________________________________
Code Table 1 contains C++ pseudocode for a typical implementation of the method QueryInterface for class XX, which inherits the class IUnknown. If the spreadsheet object supports the IDatabase interface, then the method QueryInterface includes the appropriate case label within the switch statement. The variables pIBasic and pIDatabase point to a pointer to the virtual function tables of the IBasic and IDatabase interfaces, respectively. The method QueryInterface invokes to method AddRef (described below) to increment a reference count for the object of class XX when a pointer to an interface is returned. Code Table 2 void XX::AddRef( ) {refcount++;} void XX::Release( ) {if (--refcount==0) delete this;} The interface IUnknown also defines the methods AddRef and Release, which are used to implement reference counting. Whenever a new reference to an interface is created, the method AddRef is invoked to increment a reference count of the object. Whenever a reference is no longer needed, the method Release is invoked to decrement the reference count of the object and, when the reference count goes to zero, to deallocate the object. Code Table 2 contains C++ pseudocode for a typical implementation of the methods AddRef and Release for class XX, which inherits the class IUnknown. The IDatabase interface and IBasic interface inherit the IUnknown interface. The following definitions illustrate the use of the IUnknown interface.
______________________________________
class IDatabase : public IUnknown
{public:
virtual void Data( ) = 0;
class IBasic : public IUnknown
{public:
virtual void File( ) = 0;
virtual void Edit( ) = 0;
virtual void Formula( ) = 0;
virtual void Format( ) = 0;
virtual void GetCell (string RC, cell *pCell) = 0;
}
______________________________________
FIG. 2 is a block diagram illustrating a sample data structure of a spreadsheet object using nested classes. The spreadsheet object comprises object data structure 201, IBasic interface data structure 203, IDatabase interface data structure 204, the virtual function tables 202, 205, 206 and methods 207 through 221. The object data structure 201 contains a pointer to the virtual function table 202 and pointers to the IBasic and IDatabase interface. Each entry in the virtual function table 202 contains a pointer to a method of the IUnknown interface. The IBasic interface data structure 203 contains a pointer to the virtual function table 205. Each entry in the virtual function table 205 contains a pointer to a method of the IBasic interface. The IDatabase interface data structure 204 contains a pointer to the virtual function table 206. Each entry in the virtual function table 207 contains a pointer to a method of the IDatabase interface. Since the IBasic and IDatabase interfaces inherit the IUnknown interface, each virtual function table 205 and 206 contains a pointer to the methods QueryInterface, AddRef, and Release. In the following, an object data structure is represented by the shape 222 labeled with the interfaces through which the object may be accessed. The following pseudocode illustrates how a word processing program determines whether a spreadsheet object supports the IDatabase interface. if (pSpreadsheet.fwdarw.QueryInterface("IDatabase", &pIDatabase)) //IDatabase supported else //IDatabase not supported The pointer pSpreadsheet is a pointer to an instance of the spreadsheet class shown in FIG. 2. (pSpreadsheet points to data structure 201.) If the object supports the IDatabase interface, the method QueryInterface defined by method 207 sets the pointer plDatabase to point to the IDatabase data structure 204 and returns true as its value. Normally, an object can be instantiated (an instance of the object created in memory) by a variable declaration or by the "new" operator. However, both techniques of instantiation need the class definition at compile time. A different technique is needed to allow a word processing program to instantiate a spreadsheet object at run time. One technique provides a global function CreateInstanceXX, which is defined in the following. static void CreateInstanceXX (REFIID iid, void **ppv)=0; The method CreateInstanceXX instantiates an object of class XX and returns a pointer ppv to the interface of the object designated by parameter iid. SUMMARY OF THE INVENTION It is a goal of the present invention to provide a method and system for aggregating objects. It is another goal of the present invention to provide a method and system for dynamically modifying object behavior. It is another goal of the present invention to provide a method and system for dynamically aggregating objects. It is another goal of the present invention to provide a method and system for statically aggregating objects. It is another goal of the present invention to provide a method and system for enclosing an object within another object while exposing an interface of the enclosed object to a client of the enclosing object. It is another goal of the present invention to provide a method and system for enclosing an object within another object after the enclosing object is instantiated. It is another goal of the present invention to provide a method and system for dynamically combining objects of different types into a single object. It is another goal of the present invention to provide a method and system for implementing an object that can be either enclosed within another object or not enclosed within another object without modifying the implementation of the object. It is another goal of the present invention to provide a method and system for implementing an aggregate object so that a client is unaware that the object is an aggregate. It is another goal of the present invention to provide a method and system for enclosing objects wherein an enclosed object can itself be an enclosing object to an arbitrary level of enclosing. It is another goal of the present invention to provide a method and system for enhancing a base object's behavior by adding a new interface to it. It is another goal of the present invention to provide a method and system for enhancing a base object's apparent behavior by adding an interface to it that overrides standard behavior of the base object. It is another goal of the present invention to provide a method and system for supplying default functionality to objects by enclosing them within an enclosing object where an enclosed or enclosing object implements the default functionality. It is another goal of the present invention to provide a method and system for implementing controlling behavior over common functionality present in enclosed objects. It is another goal of the present invention to provide a method and system for determining which interface to provide to a client when the client requests an interface that is implemented by more than one enclosed object. These and other goals, which will be apparent as the invention is more fully described below, are provided by a method and system for aggregating objects within a computer system. In a preferred embodiment, the method aggregates an enclosed object within an enclosing object. The enclosed object has an object management interface and one or more external interfaces, while the enclosing object has a controlling object management interface. Each interface exposed to a client by the aggregate object has a query function member for receiving an identifier of an interface and for returning a reference to the identified interface. The query function member of the controlling object management interface of the enclosing object receives an identifier of an interface exposed by the enclosing object and returns a reference to the exposed interface. A preferred method creates an instance of the enclosed object. When, the query function member of an exposed interface of the enclosed object receives an identifier of an interface, it invokes the query function member of the controlling object management interface of the enclosing object passing the received identifier, and returns the reference returned by the invoked query function member of the controlling object management interface of the enclosing object as a reference to the identified interface. In a preferred embodiment of static aggregation, a query function member of an enclosed object is implemented with knowledge of the external interfaces of the enclosed object and has no knowledge of interfaces (other than the controlling object management interface) of the enclosing object or other enclosed objects. The query function member of a controlling object management interface of the enclosing object is implemented with knowledge of the exposed interfaces of enclosed objects. In a preferred embodiment of dynamic aggregation, an object can be modified dynamically by allowing interface instances, as implemented by objects, to be aggregated during the execution of a client program. Interfaces are aggregated by dynamically enclosing the objects that implement them into a multitype object. Each interface to be added is implemented by an object which has the ability to be aggregated. A multitype object is created to act as an enclosing object. The multitype object has an add interface function member, which can be used to aggregate interfaces by adding them to the enclosing multitype object. The multitype object also has an add object function member for aggregating all of the interfaces of an object. The multitype object also has a query function member for retrieving references to the added interfaces upon request from a client. This query function member is part of the controlling object management interface of the enclosing multitype object. Also, an instance of an object that implements the interface to be aggregated is created. During creation, a pointer to the enclosing multitype object is passed to the object to be enclosed to enable the enclosed object to communicate with the enclosing multitype object. The created object implementing the interface to be aggregated has a query function member, which supports retrieval of a reference to the interface to be aggregated. A preferred method invokes the add interface function member or the add object function member of the enclosing multitype object passing it a reference to the created object implementing the interface to be aggregated. Later, the query function member of the enclosing multitype object is invoked in order to retrieve a reference to the interface that has been aggregated. BRIEF DESCRIPTION OF THE DRAWINGS FIG. 1 is a block diagram illustrating typical data structures used to represent an object. FIG. 2 is a block diagram illustrating a sample data structure of a spreadsheet object using nested classes. FIG. 3 is a block diagram showing an aggregate object. FIG. 4 is a block diagram of the data structure layout of an instance of an object of class S1. FIG. 5 is a block diagram of the data structure layout of an object of class S3. FIGS. 6A and 6B are block diagrams illustrating the cooperation between an enclosing object and an enclosed object. FIGS. 7A, 7B, and 7C are block diagrams of the sequence of adding two objects to a multitype object. FIG. 8 is a block diagram of the data structure layout of an instance of an object of class S1. FIG. 9 is a flow diagram of the method AddInterface of the IMultitype interface implemented by a multitype object. FIG. 10 is a flow diagram of the method QueryInterface of the controlling IUnknown interface for a multitype object. FIG. 11 is a block diagram showing the data structure layout of a multitype object, corresponding to FIG. 7C, after the IBasic, IPrint, and IDatabase interfaces have been dynamically aggregated using the method AddObject. FIG. 12 is a pictorial representation of a spreadsheet object and a data base query object, which can be aggregated together to create an attached database query object. FIG. 13 is a block diagram of an aggregated attached data base query object . DETAILED DESCRIPTION OF THE INVENTION The present invention provides a method in a computer system for aggregating objects. Objects can either be aggregated statically or dynamically. Using static aggregation, an enclosing object typically has compile time knowledge of the exposed interfaces of enclosed objects. The object management interface of the enclosing object is therefore customized to return interface pointers to exposed interfaces of enclosed objects using this knowledge. Instances of these statically aggregated objects are created dynamically (at run time). Using dynamic aggregation, an enclosing object is instantiated and can be used to aggregate objects or interfaces at run time. The enclosing object has no a priori knowledge of the enclosed objects or interfaces, thus no compile time knowledge is used by the enclosing object. Similarly, the enclosed objects and interfaces have no knowledge of the implementation or the presence of interfaces of the enclosing object, with the exception of the controlling object management interface used to aggregate objects and interfaces. Also, a rules mechanism is provided to control access to aggregated objects and interfaces. Each of these types of aggregation is discussed in turn in the following sections. In a preferred embodiment, the methods and systems of the present invention are implemented on a computer system comprising a central processing unit, memory, and input/output devices. Static Aggregation in a preferred embodiment of static aggregation, an aggregate object provides a plurality of interfaces to its clients. The computer program that instantiates an object is referred to as a client. An aggregate object comprises one or more enclosed objects and an implementation of the IUnknown interface, which is referred to as the controlling IUnknown interface of the aggregate object. An aggregate object exposes to its clients its own interfaces and interfaces from the enclosed objects. The method QueryInterface of the controlling IUnknown interface returns a pointer to each interface exposed by the aggregate object. The aggregate object instantiates each enclosed object. This instantiation can be performed during construction of the aggregate object or can be postponed until an interface of the enclosed object is requested. Each enclosed object contains a pointer to the controlling IUnknown interface. The method QueryInterface of an exposed interface of an enclosed object is preferably implemented to invoke the method QueryInterface of an IUnknown interface. When the enclosed object is implemented, the developer typically has no knowledge of what interfaces the enclosing object may expose. Consequently, the method QueryInterface of an enclosed object invokes the method QueryInterface of the controlling IUnknown interface to retrieve a pointer to the requested interface. The method QueryInterface of the controlling IUnknown interface is typically implemented with knowledge of all the exposed interfaces. When an object is not enclosed, the controlling IUnknown interface is the IUnknown interface of the object. Conversely, when an object is enclosed, the controlling IUnknown interface is the IUnknown interface of the enclosing object. In a preferred embodiment, an aggregate object maintains a reference count. When the aggregate object is instantiated, its reference count is set to one. The method QueryInterface of the controlling IUnknown increments the reference count when a reference is returned to the client. The method AddRef of an exposed interface of an enclosed object invokes the method AddRef of the controlling IUnknown interface to increment the reference count of the aggregate object. Similarly, the method Release of an exposed interface of an enclosed object invokes the method Release of the controlling IUnknown interface to decrement the reference count of the aggregate object and delete the aggregate object when the reference count equals zero. When an enclosed object is instantiated, the reference count of the enclosed object is set to one. When the aggregate object is deleted, the method Release of the IUnknown interface of each enclosed object is invoked to delete the enclosed object. FIG. 3 is a block diagram showing an aggregate object. The aggregate object S3 exposes interfaces A, B, C, F, and the controlling IUnknown. The aggregate (enclosing) object S3 comprises enclosed object S1 303, enclosed object S2 302, and implementation I3 304. The enclosed object S1 implements external interfaces C and D, and the enclosed object S2 implements external interfaces E and F. (An external interface is an interface of an object that can be exposed by an enclosing object. An internal interface is an interface of an object that cannot be exposed by an enclosing object.) The implementation I3 implements external interfaces A, B, and the controlling IUnknown. A client of the aggregate object S3 need not be aware that the object is an aggregate. The aggregate object S3 instantiates objects S1 and S2 either during construction of aggregate object S3 or at a later time. The implementation I3 contains pointers to the IUnknown interfaces of objects S1 and S2. Objects S1 and S2 are initialized to contain a pointer to the controlling IUnknown interface. The method QueryInterface of an exposed interface can return a pointer to each exposed interface and increments the reference count of the aggregate object when a pointer is returned. The method QueryInterface of the controlling IUnknown has direct access to the pointers to the interfaces--A, B, and controlling IUnknown--that implementation I3 implements and invokes the method QueryInterface of the IUnknown interface of the enclosed objects to retrieve pointers to the exposed interfaces--C and F--of enclosed objects S1 and S2. When a pointer to an exposed interface is returned, the method QueryInterface of the controlling IUnknown interface increments the reference count of the aggregate object S3 by invoking the method AddRef of the controlling IUnknown interface. The method QueryInterface of each exposed interface (other than the controlling IUnknown interface) preferably invokes the method QueryInterface of the controlling IUnknown interface.
__________________________________________________________________________
Code Table 3
__________________________________________________________________________
void CreateInstanceS1 (IUnknown *punkOuter, REFIID iid, void **ppv)
{ IUnknown *punk;
S1::CreateInstance (punkOuter, &punk);
punk->QueryInterface (iid, ppv);
punk->Release ( );
class IC: public IUnknown
{// methods of IC}
class ID: public IUnknown
{// methods of ID}
class S1: public IUnknown
{
public:
static void CreateInstance(IUnknown *punkOuter, IUnknown **ppunk)
{ S1 *pS1 = new S1(punkOuter);
pS1->QueryInterface(IID.sub.-- IUnknown, ppunk);
}
private:
void S1(IUnknown *punkOuter): m.sub.-- C(this), m.sub.-- D(this)
{ if(punkOuter == NULL)
m.sub.-- punkOuter = this;
else
m.sub.-- punkOuter = punkOuter;
m.sub.-- refcount = 0;
}
class C: public IC
{
public:
void C(S1 *pS1) {m.sub.-- pS1 = pS1;}
virtual boolean QueryInterface (REFIID iid, void **ppv)
{return m.sub.-- pS1->m.sub.-- punkOuter->QueryInterface(iid,
ppv);}
virtual void AddRef( )
{m.sub.-- pS1->m.sub.-- punkOuter->AddRef( );}
virtual void Release( )
{m.sub.-- pS1->m.sub.-- punkOuter->Release( );}
// other methods of IC
private:
S1 *m.sub.-- pS1;
}
friend C;
C m.sub.-- C;
class D: public ID
{
public:
void D(S1 *pS1) {m.sub.-- pS1 = pS1;}
virtual boolean QueryInterface (REFIID iid, void **ppv)
{return m.sub.-- pS1->m.sub.-- punkOuter->QueryInterface(iid,
ppv);}
virtual void AddRef( )
{m.sub.-- pS1->m.sub.-- punkOuter->AddRef( );}
virtual void Release( )
{m.sub.-- pS1->m.sub.-- punkOuter->Release( );}
// other methods of ID
private:
S1 *m.sub.-- pS1;
}
friend D;
D m.sub.-- D;
public:
virtual boolean QueryInterface (REFIID iid, void **ppv)
{ ret = TRUE;
switch (iid)
{case IID.sub.-- C:
*ppv = &m.sub.-- C;
m.sub.-- punkOuter->AddRef( );
break;
case IID.sub.-- D:
*ppv = &m.sub.-- D;
m.sub.-- punkOuter->AddRef( );
break;
case IID.sub.-- IUnknown:
*ppv = this;
AddRef( );
break;
default:
ret = FALSE;
}
return ret;
}
virtual void AddRef( ){ m.sub.-- refcount++;}
virtual void Release( ) {if (--m.sub.-- refcount == 0) delete this;}
private:
IUnknown *m.sub.-- punkOuter;
int m.sub.-- refcount;
}
__________________________________________________________________________
Code Table 3 contains C++ pseudocode for a preferred class definition of the object S1, which can be enclosed in an aggregate (an aggregatable object) along with a global function that creates an instance of the object. The classes IUnknown. IC, and ID are interfaces that define the methods of each interface. The class S1 implements the IUnknown interface, the IC interface, and the ID interface. The class S1 implements the IC and ID interfaces as external interfaces. FIG. 4 is a block diagram of the data structure layout of an instance of an object of class S1. Instance structure 401 contains the data members of class S1 (m.sub.-- C, m.sub.-- D, m.sub.-- punkOuter, m.sub.-- refcount) and a pointer to the virtual function table pointer (Sl::vfptr). The data members m.sub.-- C and m.sub.-- D are instances of an object of classes C and D, respectively. Classes C and D are friends of class S1, which allows C and D objects to access the private members of class S1. The virtual function table pointer S1::vfptr points to virtual function table 402, the virtual function table pointer within data member m.sub.-- C S1::C::vfptr points to virtual function table 403, and the virtual function table pointer within data member m.sub.-- D S1::D::vfptr points to virtual function table 403A. Virtual function table 402 contains pointers to the virtual functions defined for the IUnknown interface, virtual function table 403 contains pointer to the virtual functions defined for the C interface, and virtual function table 403A contains pointers to the virtual functions defined for D interface. The ellipsis in virtual function tables 403 and 403A indicates pointers to additional function members of classes C and D, respectively. Functions 404 through 408 are the function members of class S1. Function 407 is the constructor for class S1. Function 408 is the function CreateInstance for class S1. Functions 409 through 412 are the function members of class C. Function 412 is the constructor for class C. Functions 413 through 416 are the function members of class D. Function 416 is the constructor for class D. As shown in Code Table 3, the method S1::QueryInterface returns a pointer to the interface C, the interface D, or the interface IUnknown. When a pointer to the interface C or interface D is returned, the method S1:QueryInterface invokes the method S1::AddRef to increment the reference count for the S1 object. The method S1::AddRef increments the reference count, and the method S1::Release decrements the reference count and deletes the S1 object when the reference count is zero. When a pointer to the interface C or interface D is returned, the method S1:QueryInterface invokes the method AddRef of the controlling IUnknown interface, which when the S1 object is not aggregated is the method S1::AddRef. The global function CreateInstanceS1 creates an instance of an object of class S1. A client invokes this function to instantiate an object of class S1. Thus, a client can instantiate an object of class S1 without having access to the S1 class definition at compile time or run time. The function CreateInstanceS1 is passed a pointer to the controlling IUnknown (punkOuter) when the instantiated S1 object is enclosed within an aggregate object and an identifier (iid) of an interface to return. The function CreateInstanceS1 returns a pointer (ppv) to the identified interface. The function CreateInstanceS1 invokes the method S1::CreateInstance passing the parameter punkOuter. The method S1::CreateInstance instantiates an S1 object and returns a pointer (punk) to the IUnknown interface of the S1 object. The function CreateInstanceS1 invokes the method QueryInterface of the S1 object to retrieve a pointer to the identified interface. The function CreateInstanceS1 then invokes the method Release of the S1 object because the temporary pointer punk is no longer needed. The method S1::CreateInstance instantiates an S1 object and returns a pointer (ppunk) to the IUnknown interface of the S1 object. The method S1::CreateInstance is passed a pointer (punkOuter) to the controlling IUnknown. The method S1::CreateInstance uses operator new to instantiate the S1 object. During instantiation, the constructor S1::S1 is invoked and passed the value of the parameter punkOuter. After the S1 object is constructed, the method S1::CreateInstance invokes the method S1::QueryInterface to retrieve a pointer to the IUnknown interface of the S1 object. The constructor S1::S1 initializes the data members re.sub.-- C, re.sub.-- D, m.sub.-- punkOuter, and m.sub.-- refcount. The constructor S1::S1 is passed the parameter punkOuter. During instantiation of the data members m.sub.-- C and re.sub.-- D, the constructors C::C and D::D are invoked and passed the this pointer for the S1 object. If the value of the parameter punkOuter is NULL, the constructor S1::S1 sets the data member m.sub.-- punkOuter to the value of the this pointer (which points to the newly instantiated S1 object). If the value of the parameter punkOuter is non-NULL, the constructor S1::S1 sets the data member m.sub.-- punkOuter to the value of parameter punkOuter. Data member m.sub.-- punkOuter points to the value of the controlling IUnknown of the aggregate when the S1 object is enclosed and points to the controlling IUnknown of the S1 object when the S1 object is not enclosed. The constructor S1::S1 also initializes the data member m.sub.-- refcount to zero. The constructor C::C is passed a pointer to the S1 object. The constructor C::C stores the passed pointer in data member C::m.sub.-- pS1. The data member C::m.sub.-- pS1 is used by the methods of class C to access the data member S1::m.sub.-- punkOuter. The methods C::QueryInterface, C::AddRef, and C::Release invoke the corresponding methods of the IUnknown interface pointed to by data member S1::m.sub.-- punkOuter, which when the S1 object is enclosed, points to the controlling IUnknown interface of the aggregate. The constructor and other methods of class D are analogous to those of class C. FIG. 4 shows an instance of an S1 object that is not part of an aggregate. The data members S1::C::m.sub.-- pS1, S1::D::m.sub.-- pS1, and S1::m.sub.-- punkOuter are initialized to pointer to the S1 object itself. The methods QueryInterface, AddRef, and Release of the data members m.sub.-- C and m.sub.-- D invoke the IUnknown methods of the interface of the S1 object. The S2 object that implements interfaces E and F is analogous to the S1 object as described above.
__________________________________________________________________________
Code Table 4
__________________________________________________________________________
void CreateInstanceS3 (IUnknown *punkOuter, REFIID iid, void **ppv)
{ IUnknown *punk;
S3::CreateInstance (punkOuter, &punk);
punk->Query Interface (iid, ppv);
punk->Release ( );
class IA: public IUnknown
{// methods of class IA}
class IB: public IUnknown
{// methods of class IB}
class S3: public IUnknown
{
public:
static void CreateInstance(IUnknown *punkOuter, IUnknown **ppunk)
{ S3 *pS3 = new S3(punkOuter);
CreateInstanceS1(pS3->m.sub.-- punkOuter, IID.sub.-- IUnknown,
pS3->m.sub.-- punkS1);
CreateInstanceS2(pS3->m.sub.-- punkOuter, IID.sub.-- IUnknown,
pS3->m.sub.-- punkS2);
pS3->QueryInterface(IID.sub.-- IUnknown, ppunk);}
private:
void S3(IUnknown *punkOuter): m.sub.-- A(this), m.sub.-- B(this)
{ if(punkOuter == NULL)
m.sub.-- punkOuter = this;
else
m.sub.-- punkOuter = punkOuter;
m.sub.-- refcount = 0;}
void .about.S3( )
{m.sub.-- punkS1->Release( );
m.sub.-- punkS2->Release( );}
class A: public IA
{
public:
void A(S3 *pS3) {m.sub.-- pS3 = pS3}
virtual boolean QueryInterface (REFIID iid, void **ppv)
{return m.sub.-- pS3->m.sub.-- punkOuter->QueryInterface(iid, ppv);}
virtual void AddRef( )
{m.sub.-- pS3->m.sub.-- punkOuter->AddRef( );}
virtual void Release( )
{m.sub.-- pS3->m.sub.-- punkOuter->Release( );}
\\ other methods of IA
private:
S3 *m.sub.-- pS3;
};
friend A;
A m.sub.-- A;
class B: public IB
{
public:
void B(S3 *pS3) {m.sub.-- pS3 = pS3}
virtual boolean QueryInterface (REFIID iid, void **ppy)
{return m.sub.-- pS3->m.sub.-- punkOuter->QueryInterface(iid, ppv);}
virtual void AddRef( )
{m.sub.-- pS3->m.sub.-- punkOuter->AddRef( );}
virtual void Release( )
{m.sub.-- pS3->m.sub.-- punkOuter->Release( );}
\\ other methods of IB
private:
S3 *m.sub.-- pS3;
};
friend B;
B m.sub.-- B;
public:
virtual boolean QueryInterface(REFIID iid, void **ppv)
{ ret = TRUE;
switch (iid)
{case IID.sub.-- C:
ret = m.sub.-- punkS1->QueryInterface(iid, ppv);
break;
case IID.sub.-- F:
ret = m.sub.-- punkS2->QueryInterface(iid, ppv);
break;
case IID.sub.-- A:
*ppv = &m.sub.-- A;
m.sub.-- punkOuter->AddRef( );
break;
case IID.sub.-- B:
*ppv = &m.sub.-- B;
m.sub.-- punkOuter->AddRef( );
break;
case IID.sub.-- IUnknown:
*ppv = this;
AddRef( );
break;
default:
ret = FALSE;
}
return ret;
}
virtual void AddRef( ) {m.sub.-- refcount++;}
virtual void Release( ) {if(--m.sub.-- refcount == 0)delete this;}
private:
IUnknown
*m.sub.-- punkOuter;
int m.sub.-- refcount;
IUnknown
*m.sub.-- punkS1:
IUnknown
*m.sub.-- punkS2;
};
__________________________________________________________________________
Code Table 4 contains C++ pseudocode for a preferred class definition of an aggregate object. The class S3 exposes the interfaces IUnknown, A, B, C, and F. To provide the C interface, the class S3 encloses an S1 object and exposes the C interface. To provide the F interface, the class S3 encloses an S2 object and exposes the F interface. The S3 object exposes the C and F interfaces by returning pointers to the C and F interfaces through the method QueryInterface of the controlling IUnknown interface. The D interface of the S1 object and the E interface of the S2 object are external interfaces, but the S3 object does not expose these interfaces. The methods S3::QueryInterface, S3::AddRef, and S3::Release compose the controlling IUnknown interface for the aggregate. The method S3::QueryInterface returns a pointer to the controlling IUnknown, A, B, C, or F interfaces. When a pointer to the controlling IUnknown interface is returned, the method S3::QueryInterface invokes the method S3::AddRef to increment the reference count for the S3 object. The method S3::AddRef increments the reference count, and the method S3::Release decrements the reference count and deletes the S3 object when the reference count is zero. When a pointer to the A, B, C, or F interfaces is returned, the method S3::QueryInterface invokes the method AddRef of the controlling IUnknown interface, which when the S3 object is not aggregated is the method S3::AddRef. The global function CreateInstanceS3 creates an instance of an object of class S3. A client invokes this function to instantiate an object of class S3. Thus, a client can instantiate an object of class S3 without having access to the S3 class definition at compile time or run time. The function CreateInstanceS3 is passed a pointer to the controlling IUnknown interface (punkOuter) when the instantiated S3 object is enclosed within an aggregate object and an identifier (iid) of an interface exposed by the class S3 to return. The function CreateInstanceS3 returns a pointer (ppv) to the identified interface. The function CreateInstanceS3 invokes the method S3::CreateInstance passing the parameter punkOuter. The method S3::CreateInstance instantiates an S3 object and returns a pointer (ppunk) to the IUnknown interface of the S3 object. The function CreateInstanceS3 then invokes the method S3::QueryInterface to retrieve a pointer to the identified interface. The function CreateInstanceS3 then invokes the method S3::Release because the temporary pointer punk is no longer needed. The method S3::CreateInstance instantiates an S3 object and returns a pointer (ppunk) to the IUnknown interface of the S3 object. The method S3::CreateInstance is passed a pointer (punkOuter) to the controlling IUnknown. The method S3::CreateInstance uses operator new to instantiate the S3 object. During instantiation, the constructor S3::S3 is invoked and passed the value of the parameter punkOuter. After the S3 object is constructed, the method S3::CreateInstance invokes the function CreateInstanceS1 to create the enclosed S1 object. The method S3::CreateInstance passes the parameter pS3.fwdarw.m.sub.-- punkOuter and the interface identifier for the IUnknown interface and is returned a pointer to the IUnknown interface of the S1 object. The method S3::CreateInstance stores the returned pointer in data member S3::m.sub.-- punkS1. The method S3::CreateInstance then invokes the function CreateInstanceS2 to create an S2 object in a manner analogous to the creation of the S1 object. The method S3::CreateInstance invokes the method S3::QueryInterface to retrieve a pointer to the IUnknown interface. The method S3::AddRef increments the reference count of the S3 object. The method S3::Release decrements the reference count. When the reference counts is zero, the method S3::Release deletes the S3 object. The constructor S3::S3 initializes the data members m.sub.-- A, m.sub.-- B, m.sub.-- punkOuter, and m.sub.-- refcount. The constructor S3::S3 is passed the parameter punkOuter. During instantiation of the data members m.sub.-- A and re.sub.-- B, the constructors A::A and B::B are invoked and passed the this pointer for the S3 object. If the value of the parameter punkOuter is NULL, the constructor S3::S3 sets the data member m.sub.-- punkOuter to the value of the this pointer (which points to the newly instantiated S3 object). If the value of the parameter punkOuter is non-NULL, the constructor S3::S3 sets the data member m.sub.-- punkOuter to the value of parameter punkOuter. Data member m.sub.-- punkOuter points to the value of the controlling IUnknown interface of the aggregate when the S3 object is enclosed and points to the lUnknown interface of the S3 object when the S3 object is not enclosed. The constructor S3::S3 initializes the data member m.sub.-- refcount to zero. The destructor S3::.about.S3 invokes the method S1::Release to decrement the reference count of the enclosed S1 object. Since the reference count was set to one during instantiation of the S1 object, the method S1::Release deletes the S1 object. The destructor S3::.about.S3 decrements the reference count of the S2 object in an analogous manner. The methods of the A and B interfaces have an analogous behavior to the methods of the C interface. Thus, the A and B interface can be exposed when an S3 object is enclosed. FIG. 5 is a block diagram showing the data structure layout of an S3 object. The data structure layout comprises instance data 501, virtual function tables 502, 503, and 504, methods 505 through 517, and instances of an S1 object 401-416 and an S2 object 519. The instance data 501 contains a pointer to the virtual function table for the controlling IUnknown interface, data members m.sub.-- A and m.sub.-- B which are instances of class A and B, data member m.sub.-- punkOuter which points to the IUnknown interface of the S3 object, data member m.sub.-- refcount which contains the reference count for the S3 object, data member m.sub.-- punkS1 which points to the IUnknown interface of the enclosed S1 object, and data member m.sub.-- punkS2 which points to the IUnknown interface of the enclosed S2 object 519. When the enclosed S1 object is instantiated, its data member S1::m.sub.-- punkOuter is initialized to point to the IUnknown interface of the S3 object. Similarly, when the enclosed S2 object is instantiated, its data member S2::m.sub.-- punkOuter is initialized to point to the IUnknown interface of the S3 object. FIGS. 6A and 6B are block diagrams illustrating the cooperation between an enclosing object and an enclosed object. FIG. 6A is a block diagram illustrating an object of class S1 that is not enclosed within another object. The class S1 object 601 includes data member m.sub.-- punkOuter, which points to the IUnknown interface and methods 603, 604, 605, and 606. The method IUnknown::QueryInterface 603 returns a pointer to the requested interface and increments the reference count. The methods C::QueryInterface 605 and C::AddRef 606 invoke the corresponding methods of the IUnknown interface. The implementation of the methods of class D (not shown) are analogous to those of class C. FIG. 6B is a block diagram illustrating an object of class S3 that encloses objects of class S1 and S2. The S2 object, which is analogous to the S1 object, is not shown. The data member m.sub.-- punkOuter 602 of the class S1 object 601 points to the IUnknown interface of the class S3 object 610. The method IUnknown::QueryInterface 613 returns a pointer to each of the exposed objects and invokes the method IUnknown::QueryInterface 603 pointed to by data member m.sub.-- punkS1 619 to retrieve a pointer to the C interface. The data member m.sub.-- punkOuter 612 points to the IUnknown interface of the class S3 object 610. The methods QueryInterface 615 and 617 of the class A and B objects invoke the methods pointed to by data member m.sub.-- punkOuter 612. In the above-described embodiment of the present invention, the method QueryInterface of the controlling IUnknown interface of an aggregate invokes the method QueryInterface of the IUnknown interface of enclosed objects to retrieve pointers to the exposed interfaces. In an alternate embodiment of the present invention, an enclosing object can cache pointers to interfaces of enclosed objects that the enclosing object exposes. Thus, when the method QueryInterface of the controlling IUnknown is invoked, the method can retrieve and return the cached pointers after calling the method AddRef of the controlling IUnknown interface, rather than invoke the method QueryInterface of the IUnknown interface of the enclosed object. To implement this alternate embodiment, an enclosing object defines a data member for each cached pointer. When the enclosed object is instantiated (typically during construction of the enclosing object), the method QueryInterface of the IUnknown interface of the enclosed object is invoked to retrieve a pointer of the exposed interface. It is preferred that the retrieved pointer is not reference counted so that the enclosing object effectively maintains only one pointer (e.g., S3::m.sub.-- punkS1) to an enclosed object. The enclosed object can then be deleted by a single call to the method Release. Therefore, after the pointer is cached, the method Release of the exposed interface is invoked to remove the reference count attributable to the cached pointer. In the above-described embodiment of the present invention, the implementation of the method QueryInterface of the controlling IUnknown interface includes a switch statement that specifies which interfaces are exposed. For example, the switch statement of the method S3::QueryInterface includes a case label for each exposed interface A, B, C, F, and the controlling IUnknown. Thus, the exposed interfaces are statically defined during implementation of the enclosing object. In an alternate embodiment, the method QueryInterface of the controlling IUnknown interface can be implemented without specific knowledge of the external interfaces of the enclosed objects. When the method QueryInterface is requested to return a pointer to an interface that it does not implement, the method can invoke the method QueryInterface of the IUnknown interfaces of the enclosed objects to retrieve a pointer to the identified interface, if implemented by an enclosed object. Code Table 5 contains C++ pseudocode for a preferred implementation of the method QueryInterface of the controlling IUnknown of a S3 object that implements this alternate embodiment. In addition to returning a pointer to each external interface of the enclosed objects, the method QueryInterface of the controlling IUnknown could be implemented to not expose certain external interfaces, while exposing all other external interfaces.
______________________________________
Code Table 5
______________________________________
virtual boolean QueryInterface (REFIID iid, void **ppv)
{ret= TRUE;
switch (iid)
{case IID.sub.-- A:
*ppv = &m.sub.-- A;
m.sub.-- punkOuter->AddRef( );
break;
case IID.sub.-- B:
*ppv = &m.sub.-- B;
m.sub.-- punkOuter->AddRef( );
break;
case IID.sub.-- IUnknown:
*ppv = this;
AddRef( );
break;
default:
if(m.sub.-- punkS1->QueryInterface (iid, ppv)) {return ret;};
if(m.sub.-- punkS2->QueryInterface (iid, ppv)) {return ret;};
ret = FALSE;
return ret;
}
______________________________________
In the above-described embodiments, error checking has not been described. It is preferred that various types of error checking are performed to ensure that an aggregate is properly created. For example, if an enclosing object tries to enclose an object that is not aggregatable, then the instantiation of the enclosing object should fall (e.g., the function CreateInstanceS1 returns a flag indicating failure). In the above-described embodiments, an aggregate object can itself be an enclosed object within an enclosing object. This enclosing (nesting) can occur to any depth. Alternately, an aggregate object can be implemented to be non-aggregable. The function CreateInstanceXX for the class XX can return a flag indicating a failure when the parameter punkOuter is non-null, that is, when aggregation is desired. In the above-described embodiment, an object for each external interface of an aggregable object is instantiated as a data member of the aggregable object. In an alternate embodiment, the external interfaces are inherited by the aggregable object, rather than implemented as data members of the aggregable object. Code Table 6 contains C++ pseudocode for a preferred class definition S1 of an aggregable class with external interfaces C and D. The class S1 inherits the abstract classes IC and ID. The implementations of the IC and ID interfaces need not store a pointer to the derived class S1 to access the data member m.sub.-- punkOuter, but a special, non-inherited implementation of the IUnknown interface (IUnknownS1) is needed. Conversely, the implementations of the IC and ID interfaces, as shown in Code Table 3, store the pointer to the derived class S1 in the data member m.sub.-- pS1. One skilled in the art would appreciated that other implementations using inheritance of interfaces are possible.
______________________________________
Code Table 6
______________________________________
class S1: public IC, public ID
{public:
virtual boolean QueryInterface (REFIID iid, void **ppv)
{return m.sub.-- punkOuter->QueryInterface(iid, ppv);}
virtual void AddRef( )
{m.sub.-- punkOuter->AddRef( );}
virtual void Release( )
{m.sub.-- punkOuter->AddRef( );}
// implementation of IC and ID
private:
class IUknownS1: public IUnknown
public:
IUnknownS1 (S1 *pS1)
{m.sub.-- pS1 = pS1;
m.sub.-- refcount = 0;}
virtual boolean QueryInterface (REFIID iid, void **ppv)
{ret = TRUE;
switch (iid)
{case IID.sub.-- IUnknown:
*ppv = this;
AddRef( );
break;
case IID.sub.-- C:
*ppv = (IC *)m.sub.-- pS1;
m.sub.-- pS1->m.sub.-- punkOuter->AddRef( );
break;
case IID.sub.-- D:
*ppv = (ID *)m.sub.-- pS1;
m.sub.-- pS1->m.sub.-- punkOuter->AddRef( );
break;
default:
ret = FALSE;
};
}
virtual void AddRef( ) {m.sub.-- refcount++;}
virtual void Release( ) {if(--m.sub.-- refcount == 0)delete m.sub.--
pS1;}
private:
int m.sub.-- refcount;
S1 m.sub.-- pS1;
}
friend IUnknownS1;
IUnknownS1
m.sub.-- IUnknownS1;
public:
static void CreateInstance (IUnknown *punkOuter, IUnknown **ppunk)
{ S1 *pS1 = new S1(punkOuter);
pS1->QueryInterface(IID.sub.-- Unknown, ppunk);
}
private:
void S1 (IUnknown *punkOuter): m.sub.-- IUnknownS1(this)
{ if (punkOuter == NULL)
m.sub.-- punkOuter = &m.sub.-- IUnknownS1;
else
m.sub.-- punkOuter = punkOuter;
}
IUnknown m.sub.-- punkOuter;
}
______________________________________
Dynamic Aggregation In a preferred embodiment of dynamic aggregation, interface instances are combined by adding them to an enclosing object at any time after the creation of the enclosing object. In this manner, a new or changed interface can be combined with an existing (base) object to alter the apparent behavior of the base object after the code for the base object has been compiled or linked. That is, although the behavior of the base object (as implemented by the methods of the base object) appears outwardly to have changed, the methods implementing the behavior of the base object have not actually changed. The base object is enclosed within the enclosing object and the new or changed interfaces are thereafter added. When an external request is made to access to a particular interface, the enclosing object is responsible for determining which interface to return and how to invoke the requested interface if more than one matching interface exists. For example, if three IPrint interfaces exist in the aggregate object, the enclosing object determines which IPrint interface to return or whether to return its own IPrint interface, which knows how to invoke a combination of the methods of the other IPrint interfaces. The enclosing object can make this determination either from a fixed or specifiable set of combining rules. These combining rules can be used to override the standard behavior of an enclosed base object by providing access to a new implementation of a previously defined interface of the enclosed base object. These rules can also be used to enhance the behavior of an enclosed base object by adding capabilities not initially defined as part of the enclosed base object. Both override and enhancement capabilities are provided by adding a new or changed interface to the base object. In addition to these capabilities, a standard enclosing object can implement default behaviors for enclosed objects (interfaces that implement methods to invoke if not provided for by the enclosed objects or added interfaces). Or, a standard enclosing object can implement controlling (overriding) behavior for a method typically present for all enclosed objects (such as printing). In a preferred embodiment, an object can be modified dynamically by allowing interface instances (implemented by objects) to be aggregated together during the execution of a client program. The computer program that instantiates an object is a client program. Aggregation is the process of combining the capabilities of several distinct objects by enclosing their respective interfaces within an enclosing object. The enclosing object is then responsible for supporting access to all interfaces it wishes to expose through the enclosing object's implementation of a controlling IUnknown interface. Static aggregation requires that the enclosing object have advance knowledge of the interfaces (objects) it wishes to aggregate. Using static aggregation, a programmer decides, in advance, which of its aggregate object interfaces the enclosing object should expose and then implements the QueryInterface method of the controlling IUnknown of the enclosing object to return pointers to these exposed interfaces when requested. The QueryInterface method of the controlling IUnknown accomplishes this task by maintaining references to the corresponding IUnknown interfaces of the individual enclosed objects. (These references are created when the enclosing object instantiates enclosed objects.) When a request is received for a reference to an exposed interface of one of the enclosed objects, the QueryInterface method of the controlling IUnknown invokes the corresponding IUnknown interface of the enclosed object to respond to the request. Because enclosed objects have no knowledge of what interfaces the enclosing object exposes, all external requests received by an enclosed object are passed on to the enclosing object thereby enabling access to the interfaces defined in the other enclosed objects aggregated together. The present invention also supports the dynamic aggregation of interfaces. In a preferred embodiment, an enclosing object provides a method for registering instantiated interfaces and for later removing references to them. In addition, when an interface is requested from the aggregate object, the present invention provides a method for modifying the determination of which interface(s) to retrieve and how to invoke them in combination if more than one instance of the same interface is present in the aggregate object. In a preferred embodiment, dynamic aggregation is implemented using a multitype object. A multitype object is an object capable of aggregating objects of varying types, hence its name. Only interfaces that have been coded such that they are capable of being aggregated can be enclosed within a multitype object. (That is, for example, such interfaces can forward interface and reference counting requests to an enclosing object.) A multitype object provides an IMultitype interface for requesting the aggregation of particular interfaces or objects and for adding rules to determine how to invoke a requested interface. Code Table 7 contains pseudocode for a preferred definition of the IMultitype interface.
__________________________________________________________________________
Code Table 7
__________________________________________________________________________
class IMultiType: public IUnknown {
virtual HRESULT AddObject (ULONG list, BOOLEAN headoflist,
IUnknown *punkobj) = 0;
virtual HRESULT AddInterface (REFIID iid, ULONG list, BOOLEAN
headoflist,
void **ppv = 0;
virtual HRESULT AddRule (REFIID iid, IRULE *prule) = 0;
virtual Enum (ULONG i; REFIID iid, ULONG list, BOOLEAN headoflist;
void **ppv) = 0;
__________________________________________________________________________
FIGS. 7A, 7B, and 7C are block diagrams of the sequence of adding two objects to a multitype object. FIG. 7A is a block diagram of an instance of a multitype object. The object MTO 7A01 implements an exposed interface, the IMultitype interface MT, and a controlling IUnknown. When an external interface is added to the multitype object, the multitype object becomes an aggregate object. The multitype object implementation contains three lists 7A02, 7A09, and 7A10 of interfaces it has added to the aggregation. The multitype object uses these lists to invoke the various interfaces of its enclosed aggregate objects through the multitype object's controlling IUnknown interface. The multitype object also contains a list of rules 7A11 for accessing and combining interfaces from the interface lists 7A02, 7A09, and 7A10. The interaction of these different lists gives the multitype object powerful capabilities. The list of rules 7A11, which can be fixed or specified using the AddRule method, specifies the interaction and use of the different interface lists for a particular interface. Hence, there can be rules for selecting other rules as well as rules for selecting and combining particular interfaces. Three different interface lists 7A02, 7A09, and 7A10 are provided in order to support override, enhancement, default, and controlling capabilities. When an interface is added to the multitype object, the client program creating the aggregate specifies the list to be used in adding the interface. List 7A02 comprises the normal list, list 7A09 comprises the default list, and list 7A10 comprises the override list. Basically, the override list is intended implement override and controlling capabilities by pointing to interfaces that need to be accessed before the interfaces on the normal list. The default list is intended to point to interfaces that are accessed only when the override and normal lists do not contain a requested interface. The interaction of these lists is discussed in greater detail in the description of the IRules interface. FIG. 7B is a block diagram illustrating the multitype object MTO after aggregating the IBasic interface using the AddObject method. The AddObject method adds all of the interfaces of a specified object to a multitype object. The aggregate object MTO 7B01 comprises the multitype interface discussed with reference to FIG. 7A and an enclosed spreadsheet object S1 7B04. The enclosed object S1 implements an instance of the external interface IBasic (B), an instance of the external interface IPrint (P), and an instance of IUnknown. (An external interface is an interface of an object that is exposed by an enclosing object. An internal interface is an interface of an object that is not exposed by an enclosing object.) When the enclosed object S1 is added to the normal list of the multitype object MTO, the normal list of aggregated interfaces 7B02 contains a single element 7B03, which identifies the IUnknown interface of the enclosed object S1. The S1 IUnknown interface returns pointers to the external interfaces B and P upon request. Because S1 is aggregatable, when S1 is instantiated, it is passed a pointer 7B05 to the enclosing object MTO, which can be used subsequently to access the other interfaces aggregated as part of object MTO. FIG. 7C is a block diagram illustrating the multitype object MTO of the result after adding the IDatabase interface using the method AddObject. At this point, the aggregate object MTO 7C01 comprises the IMultitype interface, discussed with reference to FIG. 7A; an enclosed spreadsheet object S1, discussed with reference to FIG. 7B: and an enclosed data base object S2 7C07, which implements database capabilities. The enclosed object S2 implements an instance of the external interface IDatabase (D) and an instance of IUnknown. When the enclosed object S2 is added to the multitype object MTO using the method AddObject of the IMultitype interface, the normal list of aggregated interfaces 7C02 contains two elements 7C03 and 7C06. Element 7C06 identifies the IUnknown interface of the enclosed object S2. Similar to S1, the S2 IUnknown interface is able to return a pointer to the external interface D and contains a pointer 7C08 to the enclosing object MTO for access to the other MTO interfaces. One skilled in the art would recognize that many alternative embodiments of the data structures used to keep track of the added interfaces and objects are possible. For example, one could vary the number and kind of lists used. In particular, one could have only one list or make the override or default lists optional. Also, one could require that each list element only point to the precise interface to be aggregated and not the IUnknown of the object when an entire object is aggregated (only support an AddInterface style multitype object). Or, alternatively, one could require that each list element point to the IUnknown of the object regardless of what interface is added to the aggregation (only support an AddObject style multitype object). In addition, one could use other list implementations including various sorted lists or hash tables of interface identifiers.
__________________________________________________________________________
Code Table 8
__________________________________________________________________________
void CreateInstanceS1 (IUnknown *punkOuter, REFIID iid, void **ppv)
{ IUnknown *punk:
S1::CreateInstance (punkOuter, &punk);
punk->QueryInterface (iid, ppv);
punk->Release ( );
class IBasic: public IUnknown
{ virtual void File ( ) = 0;
virtual void Edit ( ) = 0;
virtual void Formula ( ) = 0;
virtual void Format ( ) = 0;
virtual void GetCell ( ) = 0;
}
class IPrint: public IUnknown
{ virtual void Print (void **ppobj) = 0;
}
class S1: public IUnknown
{
public:
static void CreateInstance(IUnknown *punkOuter, IUnknown *ppunk)
{ S1 *pS1 = new S1(punkOuter);
pS1->QueryInterface(IID.sub.-- IUnknown, ppunk);
}
private:
void S1(IUnknown *punkOuter): m.sub.-- B(this), m.sub.-- P(this)
{ if(punkOuter == NULL)
m.sub.-- punkOuter = this;
else
m.sub.-- punkOuter = punkOuter;
m.sub.-- refcount = 0;
}
class B: public IBasic
{
public:
voidB(S1 *pS1) {m.sub.-- pS1 = pS1;}
virtual boolean QueryInterface (REFIID iid, void **ppv)
{return m.sub.-- pS1->m.sub.-- punkOuter->QueryInterface(iid, ppv);}
virtual void AddRef( )
{m.sub.-- pS1->m.sub.-- punkOuter->AddRef( );}
virtual void Release( )
{m.sub.-- pS1->m.sub.-- punkOuter->Release( );}
// other methods of IBasic including File, Edit, Formula, Format,
GetCell
private:
S1 *m.sub.-- pS1;
}
friend B:
B m.sub.-- B;
class P: public IPrint
{
public:
void P(S1 *pS1) {m.sub.-- pS1 = pS1;}
virtual boolean QueryInterface (REFIID iid, void **ppv)
{return m.sub.-- pS1->m.sub.-- punkOuter->QueryInterface(iid, ppv);}
virtual void AddRef( )
{m.sub.-- pS1->m.sub.-- punkOuter->AddRef( );}
virtual void Release( )
{m.sub.-- pS1->m.sub.-- punkOuter->Release( );}
// other methods of IPrint including Print
private:
S1 *m.sub.-- pS1;
}
friend P;
P m.sub.-- P;
public:
virtual boolean QueryInterface (REFIID iid, void **ppy)
{ ret = TRUE;
switch (iid) {
case IID.sub.-- B:
*ppv = &m.sub.-- B;
m.sub.-- punkOuter->AddRef( );
break;
case IID.sub.-- P:
*ppv = &m.sub.-- P;
m.sub.-- punkOuter->AddRef( );
break;
case IID.sub.-- IUnknown:
*ppv = this;
AddRef( );
break;
default:
ret = FALSE;
}
return ret;
}
virtual void AddRef( ){m.sub.-- refcount++;}
virtual void Release( ) {if(--m.sub.-- refcount = 0)delete this;}
private:
IUnknown *m.sub.-- punkOuter;
int m.sub.-- refcount;
}
__________________________________________________________________________
Code Table 8 contains C++ pseudocode for a preferred class definition of the object S1 in FIGS. 7A-7C, which can be enclosed in an aggregate aggregatable object) along with a global function that creates an instance of the S1 object. The classes IUnknown, IBasic, and IPrint are interfaces that define the methods of each interface comprising S1. The class S1 implements the IUnknown interface, the IBasic interface, and the IPrint interface. The IBasic and IPrint interfaces are implemented as external interfaces. FIG. 8 is a block diagram of the data structure layout of an instance of an object of class S1. Instance structure 801 contains the data members of class S1 (m.sub.-- B, m.sub.-- P, m.sub.-- punkOuter) and the virtual function table pointer (S1::vfptr). The data members m.sub.-- B and m.sub.-- P are instances of objects of classes B and P, respectively (which are class implementations of the interfaces Basic and IPrint). Data members m.sub.-- B and m.sub.-- P are friends of class S1, which allows m.sub.-- B and m.sub.-- P objects to access the private members of class S1, such as m.sub.-- punkOuter. The virtual function table pointer S1::vfptr points to virtual function table 802, the virtual function table pointer within data member m.sub.-- B, S1::B::vfptr, points to virtual function table 803, and the virtual function table pointer within data member m.sub.-- P, S1::P::vfptr, points to virtual function table 804. Virtual function table 802 contains pointers to the virtual functions (methods) defined for the controlling IUnknown interface, virtual function table 803 contains pointers to the virtual functions defined for the IBasic interface, and virtual function table 804 contains pointers to the virtual functions defined for the IPrint interface. Methods 805 through 809 are the function members of class S1. Method 808 is the constructor for class S1. Method 809 is the CreateInstance method for class S1. Methods 810 through 818 are the function members of class B. Method 813 is the constructor for class B. Methods 819 through 823 are the function members of class P. Method 823 is the constructor for class P. Because FIG. 8 shows an instance of an S1 object that is not part of an aggregate, the data members S1::B::m.sub.-- pS1, S1::P::m.sub.-- pS1, and S1::m.sub.-- punkOuter (pointers to the enclosing object) are initialized to point to the S1 object itself. The object S1 as defined by Code Table 8 conforms to the requirements for an aggregatable object discussed with reference to static aggregation. For the purposes of dynamic aggregation, Code Table 8 illustrates how S1 can automatically communicate with its enclosing object when it is aggregated and what is returned from the function S1::QueryInterface. Specifically, upon creation of an S1 object, a pointer to the controlling IUnknown interface of an enclosing multitype object is passed to the method CreateInstance. This pointer is then used by the QueryInterface methods of S1's external interfaces (IBasic and IPrint) to route interface requests to the enclosing multitype object. When an S1 interface is requested from the enclosing multitype object, the method QueryInterface of the controlling IUnknown of the enclosing multitype object invokes the method S1::QueryInterface, which returns a pointer to the appropriate instance of the interface IBasic, the interface IPrint, or the interface IUnknown and increments the S1 object's reference counting appropriately. (The mechanism used by the enclosing multitype object to invoke S1::QueryInterface is discussed in detail below.) One skilled in the an would recognize that many alternatives exist for passing to an aggregatable object a pointer to the controlling IUnknown interface of an enclosing multitype object. For example, instead of passing the pointer at creation time, a method can be defined specifically for passing this pointer. Using this embodiment, an object can, once aggregated, be later unaggregated, or an object could later be aggregated into a different enclosing object. To understand how Code Table 8 interacts with a multitype object as depicted in FIGS. 7A-7C, it is helpful to see the calling sequence when client requests are made. Code Table 9 shows the pseudocode sequence of calls corresponding to FIG. 7C when a client application requests the IBasic interface when the client has a pointer to the multitype object MTO.
______________________________________
Code Table 9
______________________________________
MTO:: QueryInterface(IID.sub.-- IBasic, ppv)
which finds an aggregated object that supports the IBasic interface
S1:: IUnknown:: QueryInterface (IID.sub.-- Basic, ppv)
which returns pointer to the B interface
______________________________________
In the first call (MTO::QueryInterface), MTO determines from its lists of aggregated interfaces which object's QueryInterface method to invoke and then invokes it in the second call (S1::IUnknown::QueryInterface). Code Table 10 shows how the pseudocode sequence of calls varies if the client application has a pointer to one of the enclosed object's interfaces (such as the IPrint interface of S1) instead of a pointer to the enclosing multitype object.
______________________________________
Code Table 10
______________________________________
P::QueryInterface (IID.sub.-- IBasic, ppv)
which forwards the call to the enclosing object
MTO:: IUnknown:: QueryInterface (IID.sub.-- IBasic, ppv)
//m.sub.-- punkOuter points to MTO:: IUnknown
which finds an aggregated object that supports the IBasic interface
S1:: IUnknown:: QueryInterface (IID.sub.-- IBasic, ppv)
which returns pointer to the B interface
______________________________________
Code Table 10 demonstrates how aggregation will automatically forward requests to the enclosing object in order to access other interfaces within the aggregate. In this case, the QueryInterface function of the enclosed object forwards the request to the enclosing object's (MTO's) QueryInterface method. Then, the MTO::QueryInterface method functions as in Code Table 9. The S2 object that implements the lDatabase interface is analogous to the S1 object as described above.
__________________________________________________________________________
Code Table 11
__________________________________________________________________________
void CreateInstanceMTO (IUnknown *punkOuter, REFIID iid, void **ppv)
{ IUnknown *punk;
MTO::CreateInstance (punkOuter, &punk);
punk->Query Interface (iid, ppv);
punk->Release ( );
class IMultitype: public IUnknown
{ virtual HRESULT AddObject (ULONG list, BOOLEAN headoflist,
IUnknown *punkobj) = 0;
virtual HRESULT AddInterface (REFIID iid, ULONG list, BOOLEAN
headoflist,
void *pv) = 0;
virtual HRESULT AddRule (REFIID iid, IRule *prule) = 0;
virtual HRESULT Enum (ULONG i, REFIID iid, ULONG list, BOOLEAN
headoflist,
void **ppv) = 0;
}
class MTO: public IUnknown
{
public:
static void CreateInstance(IUnknown *punkOuter, IUnknown **ppunk)
{ MTO *pMTO = new MTO(punkOuter);
pMTO->QueryInterface(IID.sub.-- IUnknown, ppunk);}
private:
void MTO(IUnknown *punkOuter): m.sub.-- MT(this)
{ if (punkOuter == NULL)
m.sub.-- punkOuter = this;
else
m.sub.-- punkOuter = punkOuter;}
class MT: public IMultitype
{
public:
void MT(MTO *pMTO) {m.sub.-- pMTO = pMTO}
virtual boolean QueryInterface (REFIID iid, void **ppv)
{return m.sub.-- pMTO->m.sub.-- punkOuter->QueryInterface(iid, ppv);}
virtual void AddRef( )
{m.sub.-- pMTO->m.sub.-- punkOuter->AddRef( );}
virtual void Release( )
{m.sub.-- pMTO->m.sub.-- punkOuter->Release( );}
virtual boolean AddObject (ULONG list, BOOLEAN headoflist,
IUnknown *punkobj)
{ item *pitem;
pitem = new (item);
pitem->iid = IID.sub.-- Unknown;
pitem->pobj = punkobj;
pitem->pnext = null;
pitem->pprev = null;
switch (list) {
case NORMAL.sub.-- LIST:
// . . . if headoflist = true, insert as first item in normal
list,
// otherwise insert as last item;
case DEFAULT.sub.-- LIST:
// . . . if headoflist == true, insert as first item in default
list,
// otherwise insert as last item;
case OVERRIDE.sub.-- LIST:
// . . . if headoflist == true, insert as first item in override
list,
// otherwise insert as last item;
default:
// . . . insert at head of normal list;
}
}
virtual boolean AddInterface (REFIID iid, ULONG list, BOOLEAN
headoflist,
void *pv)
{ . . .
pitem->iid = iid;
pitem->pobj = pv;
// same code as for AddObject method except that list item points
to
// the particular interface and not to the IUnknown interface
. . .
}
\\ other methods of IMultitype . . .
private:
MTO *m.sub.-- pMTO;
};
friend MT;
MT m.sub.-- MT;
public:
virtual boolean QueryInterface(REFIID iid, void **ppv)
{ boolean done = TRUE:
item *pitem:
switch (iid) {
case IID.sub.-- IMultiType:
*ppv = &m.sub.-- MT;
m.sub.-- punkOuter->AddRef( );
break;
case IID.sub.-- IUnknown:
*ppv = this;
AddRef( );
break;
default:
// search through the override list for the first matching
interface
done = FALSE;
pitem = m.sub.-- poverride.sub.-- itemhead;
while ((done == FALSE) && (pitem->pnext |= null)) {
switch (pitem->iid) {
case IID.sub.-- IUnknown:
if(pitem->pobj->QueryInterface(iid, ppv) == TRUE)
done = TRUE;
else pitem = pitem->pnext;
break;
default:
if(pitem->iid = = iid) {
ppv = pitem->pobj;
done = TRUE;
}
else pitem = pitem->pnext;
}}
// search through the normal list for the first matching interface
// if not yet found
if(done == FALSE) {
pitem = m.sub.-- pnormail.sub.-- itemhead;
while ((done == FALSE) && (pitem->pnext |= null)) {
. . . // same code as for override list
}
// search through the default list for the first matching interface
// if not yet found
if (done == FALSE) {
pitem = m.sub.-- pdefault.sub.-- itemhead;
while ((done == FALSE) && (pitem->pnext |= null)) {
. . . // same code as for override list
}
break;
}
return done;
}
virtual void AddRef( ) {m.sub.-- refcount++;}
virtual void Release( ) {if(--m.sub.-- refcount == 0) delete this;}
private:
IUnknown
*m.sub.-- punkOuter;
int m.sub.-- refcount, m.sub.-- occurrence;
struct item {
REFIID iid;
void *pobj;
item *pnext;
item *pprev };
item *m.sub.-- pnormal.sub.-- itemhead = null, *m.sub.-- pnormal.sub.--
itemtail = null,
*m.sub.-- pdefault.sub.-- itemhead = null, *m.sub.-- pdefault.sub.--
itemtail = null,
*m.sub.-- poverride.sub.-- itemhead = null, *m.sub.-- poverride.sub.-
- itemtail = null;
};
__________________________________________________________________________
Code Table 11 is C++ pseudocode for a preferred class definition of a multitype object which can be used to dynamically aggregate-interfaces. The class MTO implements an instance of the IMultitype interface and the controlling IUnknown interface for the multitype object. The global function CreateInstanceMTO creates an instance of an object of class MTO. A client invokes this function to instantiate an object of class MTO. Using this function, a client can instantiate an object of class MTO without having access to the MTO class definition at compile time or run time. The function CreateInstanceMTO is passed a pointer to the controlling IUnknown interface (punkOuter) when the instantiated MTO object is aggregated within another object. The function invokes the method MTO::CreateInstance passing along the parameter punkOuter. The method MTO::CreateInstance instantiates an MTO object and returns a pointer (ppunk) to the IUnknown interface of the MTO object. This interface can then be used by the function CreateInstanceMTO to return the interface actually requested by the client application. The method MTO::CreateInstance uses the operator new to instantiate the MTO object. During instantiation, the constructor MTO::MTO is invoked and passed the value of the parameter punkOuter. The constructor MTO::MTO initializes the data members m MT and m.sub.-- punkOuter. During instantiation of the data member m.sub.-- MT of class MT, the constructor MT::MT is invoked and passed the this pointer for the MTO object. (In C++ the this pointer points to the object instance itself.) The constructor MT::MT then sets a local variable pointing back to the MTO class. The constructor MTO::MTO is passed the parameter punkOuter. If the value of punkOuter is null, the constructor MTO::MTO sets the data member m.sub.-- punkOuter to point to the newly instantiated MTO object. If, on the other hand, punkOuter is non-null, for example, if the object is aggregated as part of a larger aggregation, the constructor MTO::MTO sets the data member m.sub.-- punkOuter to the value of the parameter punkOuter. That is, data member m.sub.-- punkOuter points to the value of the controlling IUnknown interface of the aggregate when the MTO object is enclosed and points to the IUnknown interface of the MTO object when the MTO object is not enclosed. The IMultitype interface implemented by the MTO object contains four methods AddObject, AddInterface, AddRule, and Enum. The method AddObject is responsible for adding an object to be enclosed within the multitype object (all of the object's interfaces are made accessible). It is discussed with reference to FIG. 9. The method AddInterface is responsible for adding a single interface instance to the multitype object. The method AddInterface is discussed in conjunction with the method AddObject. The method AddRule enables a client application to specify a combining rule used to determine which combination of objects to query or interfaces to return when a client application requests a particular interface identifier. It is discussed in detail in conjunction with rule objects. The method Enum is used by rule objects to enumerate over the various interface lists maintained by the multitype object. This method is discussed in detail in conjunction with rule objects. FIG. 9 is a flow diagram of the method AddObject of the IMultitype interface implemented by a multitype object. FIG. 9 corresponds to the code for AddObject shown in Code Table 11. The method AddObject is used by a client application to dynamically add to a multitype object access to all of the interfaces of an object. This method is passed a list indicator indicating to which list to add the object, an indication of whether the object should be added to the head or tail of the specified list, and a pointer to the IUnknown interface of the object to aggregate. This method, along with the method AddInterface, implements structures for maintaining information regarding the objects and interfaces enclosed by a multitype object. One typical implementation uses three list structures composed of elements each pointing to an interface of an enclosed object. When the method AddObject is invoked to enclose the entire object, a new element is added to the specified list structure; the new element points to the IUnknown interface of the enclosed object. This IUnknown interface can then be used to access the component interfaces of the enclosed object. If, on the other hand, the method AddInterface is invoked to enclose a single interface of an object, then a new list element is added to the specified list structure; the new element points to the single interface to allow direct access to it. In a typical implementation, each list element is indexed by an interface identifier, points to an interface of an enclosed object, and points to the next element in the list. Since clients can add to either the head or tail of a list, a doubly linked list can be used to increase the efficiency. In the method invocation, a client application specifies on which list the application wants to add the specified interface or object. A "normal" list is used when the client application wants to simply add interfaces or objects to the aggregation. An "override" list and a "default" list are used when the client application wants to add interfaces whose methods will be invoked at a different time than those on the normal list. In a typical implementation, upon request for a particular interface, the method QueryInterface of the controlling IUnknown of the multitype object will return the requested interface searching first through the override list, second through the normal list and third through the default list. One skilled in the art would recognize that many other implementations and search strategies are possibly including varying the number of list structures, changing the search order, and changing the determination of what constitutes matching a requested interface. In a preferred embodiment, as discussed in detail below, the client application may change the determination rules. The steps of FIG. 9 illustrate how an element is added to the specified list. In step 901, the method allocates a new list item and, in step 902, initializes the item to point to the IUnknown interface of the object containing the interfaces the client application desires to aggregate and to contain the interface identifier of the item (to indicate the IUnknown interface). In step 903, the method determines whether the normal list has been specified. If so, the method continues at step 904, else it continues at step 907. In step 904, the method determines whether the client application wants to insert an element at the head of the normal list. If so, the method continues at step 905, else it continues at step 906. In step 905, the method inserts the initialized element at the head of the normal list and returns. In step 906, the method inserts the initialized element at the tail of the normal list and returns. Steps 907 through 914 operate analogously on the override and default lists. The method AddInterface of the IMultitype interface works similarly to the method AddObject. The primary difference is that, instead of an added list element pointing to the specified IUnknown interface of the object to be enclosed, the added list element points to a specified interface and indicates the passed interface identifier. In this manner, a single interface of an object can be aggregated without exposing other interfaces. Returning to Code Table 11, the methods QueryInterface, AddRef, and Release of the IMultitype interface (the inherited IUnknown interface) forward requests to the IUnknown interface of the parent object that implements this IMultitype interface (MTO). The controlling IUnknown interface implemented by the MTO object contains the methods QueryInterface, AddRef, and Release. The methods AddRef and Release implement reference counting of the multitype object. When the reference count is zero, the MTO object is deleted. FIG. 10 is a flow diagram of the method QueryInterface of the controlling IUnknown interface for a multitype object. FIG. 10 corresponds to the code for QueryInterface shown in Code Table 11. The method QueryInterface locates a requested interface using knowledge of its own implementation and information from the aggregated interface lists. The method takes an input parameter which is the requested interface identifier and outputs a pointer to the requested interface. In steps 1001-1004, the method determines whether the requested interface is one implemented by the multitype object itself. Otherwise, in steps 1005-1014, the method searches each enclosed object or interface until it finds the requested interface. In step 1001, the method determines whether the requested interface identifier is equivalent to IID.sub.-- IMultitype, and if it is, continues at step 1002, else continues at step 1003. In step 1002, the method sets the output parameter to point to the instance of IMultitype implemented by the object MTO, and returns. In step 1003, the method determines whether the requested interface identifier is equivalent to IID.sub.-- IUnknown and, if it is, continues at step 1004, else it continues at step 1005. In step 1004, the method sets the output parameter to the this pointer, which is the instance of IUnknown implemented by the multitype object, and returns. In steps 1005 through 1014, the method loops over the three lists searching for the first list element that points to an interface matching the requested interface. When this interface is found, it is returned in the parameter ppv and the method returns a successful status. One skilled in the art would recognize that this implementation is one example of many types of searches that can be used. In step 1005, a temporary list indicator is set to the next list from the set of lists implemented by a multitype object. In a preferred embodiment, this set of lists includes an override, a normal, and a default list. In step 1006, the method sets a temporary variable pitem to point to the front of the current list. In step 1007, the method determines whether it has exhausted all of the elements in the current list and has still not found a matching interface. If the method has reached the end of the current list, then the method continues at step 1008, else it continues at step 1009. In step 1008, if the method determines that more lists are available to be searched, then the method continues back at step 1005 to begin searching a new list. Otherwise, the method returns an unsuccessful status since no matching interface was found. In step 1009, the method determines whether the current list element, pointed to by the temporary variable pitem. points to an IUnknown interface, and if it does continues at step 1010, else it continues at step 1013. (If the current list element points to an IUnknown interface, then the object corresponding to this interface needs to be further queried for a matching interface.) In step 1010, the method calls the method QueryInterface of the IUnknown interface pointed to by the current list element. In step 1011, the method determines whether the requested interface identifier was found and, if not, continues at step 1012, else returns. If the requested interface identifier was found, then the QueryInterface call would have already set the return parameter ppv to point to the requested inte | ||||||
