Method and system for implementing virtual functions of an interface
A method and system for implementing functions in a class that inherits an interface and that inherits an implementing class which implements the interface. A forwarding system adds to the class for each virtual function a forwarding implementation of that virtual function. The forwarding implementation forwards its invocation to the implementation of that the virtual function in the implementing class. The forwarding system implements a special forwarding instruction that specifies the interface and implementing class. A developer of a class that inherits the interface and the implementing class inserts the forwarding instruction into the class definition. When the forwarding system encounters such an instruction during compilation of the class definition, the forwarding system provides an implementation of each virtual function of the interface that forwards its invocation to a corresponding virtual function in the implementing class. The forwarding system also forwards virtual functions of any direct or indirect base interface of the interface to the implementing class.
Latest Patents:
FOR CONTROLLING ENVIRONMENTAL CONDITIONS,” filed on May 28, 1999, which has matured into U.S. Pat. No. 6,466,234, the disclosures of which are incorporated herein by reference.
FIELD OF THE INVENTIONThe described technology relates generally to object-oriented programming techniques and more specifically to a system for automatically implementing virtual functions.
BACKGROUND OF THE INVENTION Object-oriented programming techniques allow for the defining of “interfaces” by which objects can expose their functionality independently of the implementation of the functionality. In the C++ programming language, an interface is defined by an abstract class whose virtual functions are all pure. A pure virtual function is one that has no implementation in the class. Thus, an interface defines only the order of the virtual functions within the class and the signatures of the virtual functions, but not their implementations. The following is an example of an interface:
This interface, named “IShape,” has three virtual functions: draw, save, and clear. The “=0” after the formal parameter list indicates that each virtual function is pure. Concepts of the C++ programming language that support object-oriented programming are described in “The Annotated C++ Reference Manual,” by Ellis and Stroustrup, published by Addison-Wesley-Publishing Company in 1990, which is hereby incorporated by reference.
Once an interface is defined, programmers can write programs to access the functionality independent of the implementation. Thus, an implementation can be changed or replaced without having to modify the programs that use the interface. For example, the save function of the IShape interface may have an implementation that saves the shape information to a file on a local file system. Another implementation may save the shape information to a file server accessible via the Internet.
To ensure that an implementation provides the proper order and signatures of the functions of an interface, the class that implements the interfaces inherits the interface. The following is an example of a class that implements the IShape interface.
The first line of the class definition indicates by the “: IShape” that the Shape class inherits the IShape interface. The ellipses between the braces indicate source code that implements the virtual functions. The Shape class, in addition to providing an implementation of the three virtual functions of the IShape interface, also defines a new virtual function “internal_save,” which may be invoked by one of the implementations of the other virtual functions. The Shape class also has defined two integer data members, x and y.
Typical C++ compilers generate virtual function tables to support the invocation of virtual functions. When an object for a class is instantiated, such a C++ compiler generates a data structure that contains the data members of the object and that contains a pointer to a virtual function table. The virtual function table contains the address of each virtual function defined for the class.
The C++ compiler generates code to invoke virtual functions indirectly through the virtual function table. The following is C++ code for invoking a virtual function:
-
- Shape*pShape=new Shape;
- pShape-> save{);
The pointer pShape points to an object in memory that is of the Shape class. When compiling this invocation of the virtual function, the compiler generates code to retrieve the address of the virtual function table from the object, to add to the retrieved address the offset of the entry in the virtual function table that contains the address of the function, and to then invoke the function at that calculated address.
The inheritance of interfaces allows for references to objects that implement the interfaces to be passed in an implementation independent manner. A routine that uses an implementation may define a formal argument that is a pointer to the IShape interface. The developer of the routine can be unaware that the implementation is actually the Shape class. To pass a reference to an object of the Shape class, a program that invokes the routine would type cast a pointer to the object of the Shape class to a pointer to the IShape interface. So-long as the pointer points to a location that contains the address of the virtual function table and the virtual function table contains the entries in the specified order, the invoked routine can correctly access the virtual functions defined by the IShape interface:
Although the use of interfaces facilitates the development of programs that use and implement interfaces, difficulties do arise. The following C++ source code illustrates one of these difficulties.
In this example, classes A and B are interfaces. Interface A defines virtual function A1, and interface B defines virtual function B1. Class AImp is an implementation of interface A and defines a new virtual function A2. Class BImp is an implementation of interface B that inherits the implementation of interface A, which is class AImp. Thus, class BImp inherits multiple classes: class AImp and interface B.
Some C++ compilers have the option of merging the virtual function tables of multiple base classes into a single virtual function table in the derived class or of generating separate virtual function tables for each base class. One difficulty arises if the virtual function tables of the base classes are merged in the derived class.
Although the use of the separate option for generating virtual function tables alleviates this difficulty, additional difficulties arise.
The implementation of virtual function A1 invokes the implementation of virtual function A1 in the class AImp. Although this implementation is straightforward, problems arise when interface A is changed. For example, if a new virtual function A3 is added to interface A, then the developer of the class BImp would need to change the class definition to include an implementation of the new virtual function A3. Although the changing of the class definition in this example may not be difficult, the changing of class definitions in systems that use complex inheritance hierarchies and many virtual functions can present difficulties. It would be desirable to have a technique which would avoid the difficulties of having to change class definitions when a new virtual function is added to an interface.
A method and system for implementing functions in a class that inherits an interface and that inherits an implementing class which implements the interface is provided. In one embodiment, a forwarding system adds to the class for each virtual function a forwarding implementation of that virtual function. The forwarding implementation forwards its invocation to the implementation of that virtual function in the implementing class. In one embodiment, the forwarding system implements a special forwarding instruction that specifies the interface and implementing class. A developer of a class that inherits the interface and the implementing class inserts the forwarding instruction into the class definition. When the forwarding system encounters such an instruction during compilation of the class definition, the forwarding system provides an implementation of each virtual function of the interface that forwards its invocation to a corresponding virtual function in the implementing class. The forwarding system also forwards virtual functions of any direct or indirect base interface of the interface to the implementing class.
BRIEF DESCRIPTION OF THE DRAWINGS
Embodiments of the present technology provide a method and system for automatically generating implementations of virtual functions of interfaces. The system generates the implementations so that each virtual function forwards its invocation to a virtual function that provides an implementation. In one embodiment, the forwarding system implements a special forwarding instruction that specifies an interface and an implementing class. A developer of a class that inherits the interface and the implementing class inserts the forwarding instruction into the class definition. When the forwarding system encounters such an instruction during compilation of the class definition, the forwarding system provides an implementation of each virtual function of the interface that forwards its invocation to a corresponding virtual function in the implementing class. The forwarding system also forwards virtual functions of any direct or indirect base interface of the interface to the implementing class. Alternatively, the forwarding system automatically detects that no implementation has been provided for the interface and inserts a forwarding implementation to the implementing class.
In one embodiment, the forwarding system is implemented by adapting a compiler to recognize a special forwarding instruction and to automatically insert and implement the virtual functions. Alternatively, the forwarding system may be implemented using standard macros that are preprocessed by a compiler, such as a C++ compiler. The macro implementation of the forwarding system is referred to as the “macro system.” The macro system defines a forwarding macro for each interface that provides an implementation of each virtual function that forwards the invocation of the virtual function to an implementation of that virtual function in a class whose name is passed as a parameter to the macro. The following illustrates the forwarding macro that is defined for class A:
The “#define” indicates that a macro is being defined, the “$forwardATo” is the name of the macro, and the “interface” is the name of a parameter that is passed when the macro is expanded. The body of the macro is “virtual void A1( ){return interface##::A1( )};” where “interface##” indicates that the passed parameter is to be substituted. The macro definition is terminated by a statement that does not end with a “ ”. In other words, a “ ” at the end of a statement within the macro indicates that the macro continues onto the next line. When this macro is expanded the parameter such as “Imp,” the result is:
-
- virtual void A1( ){return Imp::A1( )};
which forwards the invocation of virtual function A1 to the implementation of virtual function A1 in class Imp.
- virtual void A1( ){return Imp::A1( )};
The implementation of interface B, which is class BImp, can call the macro formardATo passing the name of the implementation of interface A, which is class AImp. When the macro is expanded, an implementation of virtual function A1 is provided that forwards its invocation to the implementation of class AImp. The following illustrates the use of that macro:
The following illustrates the definition of class BImp when the macro is expanded:
If new virtual functions are added to interface A, the $forwardATo macro is redefined to add statements that are forwarding implementations of the new virtual functions. Because class BImp calls that macro, when the macro is expanded, the definition of class BImp will include forwarding implementations of the new virtual functions. Thus, once a developer adds a forwarding macro to class BImp modifications to interface A are automatically reflected in class BImp.
The definition of such a forwarding macro needs to include statements that will generate forwarding implementations of each virtual function in inherited interfaces. The following illustrates the forwarding macro for interface B that inherits interface A:
An implementing class that inherits interface B need only expand the forwarding macro for interface B, which automatically expands the forwarding macro for interface A. The following illustrates an implementation of interface C, which is class CImp, that uses the forwarding macro of interface B:
The following illustrates expansion of the forwarding macro in class CImp:
A difficulty with the naming convention of these forwarding macros is that an implementation needs to know of any directly inherited interface of its directly inherited interface. For example, the implementation of interface C, which is class CImp, needs to know that interface B is directly inherited by interface C so that the appropriate forwarding macro, $forwardBTo,” can be used. One embodiment of the macro system overcomes this difficulty by defining an additional parent class forwarding macro for each interface that inherits an interface. The parent class forwarding macro has a name that is based solely on the interface for which it is defined, but calls the forwarding macro for its directly inherited interfaces. The following definition of interface B illustrates the parent class forwarding macro:
The parent class forwarding macro is “$forwardBParentClassTo.” This macro calls the forwarding macro for its inherited interface A. An implementing class can call the parent class forwarding macro of its directly inherited interface rather than calling the forwarding macro of an indirectly inherited interface. Thus, the implementation need not be aware that an inherited interface happens to inherit another interface. The following illustrates the use of the parent class forwarding macro:
The expansion of the parent class forwarding macro is illustrated in the following:
More generally, any interface regardless of whether it currently inherits another interface can provide an implementation of the parent class forwarding macro. If the interface does not currently inherit another interface, then the parent class forwarding macro would be defined to be empty. Thus, when such a parent class forwarding macro is expanded, no statements are inserted into the calling class definition and the expansion would have no effect. If, however, the interface is eventually changed to inherit another interface, then the parent class forwarding macro would be redefined to call the forwarding macro of the inherited interface. The change in the parent class forwarding macro would automatically be reflected when the parent class forwarding macro is expanded in the calling class definition.
From the foregoing it will be appreciated that, although specific embodiments of the invention have been described herein for purposes of illustration, various modifications may be made without deviating from the spirit and scope of the invention. Accordingly, the invention is not limited except as by the appended claims.
Claims
1. A method of operating a computer system, comprising:
- providing a class object corresponding to a class of an object oriented programming language comprising a virtual function;
- defining an implementation of the virtual function; and
- automatically inserting an implementation of the virtual function in an second class object wherein the second class object has an inheritance relationship with the class object.
2. The method as recited in claim 1 wherein the class object is an abstract class.
3. The method as recited in claim 1 wherein the automatic insertion of the implementation is performed by a compiler.
4. The method as recited in claim 1 wherein said automatically inserting includes automatically inserting instructions corresponding to the implementation of the virtual function at a location of an indicator within the second object.
5. A computer-readable medium bearing computer executable instructions for carrying out the acts of:
- providing a class object comprising a virtual function;
- defining an implementation of the virtual function; and
- automatically inserting an implementation of the virtual function in a second class object wherein the second class has an inheritance relationship with the class object.
6. The computer-readable medium as recited in claim 5 wherein the class object is an abstract class.
7. The computer-readable medium as recited in claim 5 wherein the automatic insertion of the implementation is performed by a compiler.
8. The computer-readable medium as recited in claim 5 wherein said automatically inserting includes automatically inserting instructions corresponding to the implementation of the virtual function at a location of an indicator included within the second object.
Type: Application
Filed: Jan 20, 2005
Publication Date: Jun 9, 2005
Applicants: , Microsoft Corporation (Redmond, WA)
Inventor: Richard Hasha (Seattle, WA)
Application Number: 11/039,982