US20050125805A1 - Method and system for implementing virtual functions of an interface - Google Patents

Method and system for implementing virtual functions of an interface Download PDF

Info

Publication number
US20050125805A1
US20050125805A1 US11/039,982 US3998205A US2005125805A1 US 20050125805 A1 US20050125805 A1 US 20050125805A1 US 3998205 A US3998205 A US 3998205A US 2005125805 A1 US2005125805 A1 US 2005125805A1
Authority
US
United States
Prior art keywords
class
interface
forwarding
virtual function
implementation
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Abandoned
Application number
US11/039,982
Inventor
Richard Hasha
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Microsoft Corp
Original Assignee
Microsoft Corp
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Microsoft Corp filed Critical Microsoft Corp
Priority to US11/039,982 priority Critical patent/US20050125805A1/en
Publication of US20050125805A1 publication Critical patent/US20050125805A1/en
Abandoned legal-status Critical Current

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/30Creation or generation of source code
    • G06F8/38Creation or generation of source code for implementing user interfaces
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/44Arrangements for executing specific programs
    • G06F9/448Execution paradigms, e.g. implementations of programming paradigms
    • G06F9/4488Object-oriented
    • G06F9/449Object-oriented method invocation or resolution
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/46Multiprogramming arrangements
    • G06F9/465Distributed object oriented systems
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06TIMAGE DATA PROCESSING OR GENERATION, IN GENERAL
    • G06T1/00General purpose image data processing
    • HELECTRICITY
    • H05ELECTRIC TECHNIQUES NOT OTHERWISE PROVIDED FOR
    • H05BELECTRIC HEATING; ELECTRIC LIGHT SOURCES NOT OTHERWISE PROVIDED FOR; CIRCUIT ARRANGEMENTS FOR ELECTRIC LIGHT SOURCES, IN GENERAL
    • H05B47/00Circuit arrangements for operating light sources in general, i.e. where the type of light source is not relevant
    • H05B47/10Controlling the light source
    • H05B47/155Coordinated control of two or more light sources
    • HELECTRICITY
    • H05ELECTRIC TECHNIQUES NOT OTHERWISE PROVIDED FOR
    • H05BELECTRIC HEATING; ELECTRIC LIGHT SOURCES NOT OTHERWISE PROVIDED FOR; CIRCUIT ARRANGEMENTS FOR ELECTRIC LIGHT SOURCES, IN GENERAL
    • H05B47/00Circuit arrangements for operating light sources in general, i.e. where the type of light source is not relevant
    • H05B47/10Controlling the light source
    • H05B47/175Controlling the light source by remote control
    • H05B47/18Controlling the light source by remote control via data-bus transmission
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L12/00Data switching networks
    • H04L12/28Data switching networks characterised by path configuration, e.g. LAN [Local Area Networks] or WAN [Wide Area Networks]
    • H04L12/2803Home automation networks
    • HELECTRICITY
    • H05ELECTRIC TECHNIQUES NOT OTHERWISE PROVIDED FOR
    • H05BELECTRIC HEATING; ELECTRIC LIGHT SOURCES NOT OTHERWISE PROVIDED FOR; CIRCUIT ARRANGEMENTS FOR ELECTRIC LIGHT SOURCES, IN GENERAL
    • H05B47/00Circuit arrangements for operating light sources in general, i.e. where the type of light source is not relevant
    • H05B47/10Controlling the light source
    • H05B47/165Controlling the light source following a pre-assigned programmed sequence; Logic control [LC]

Definitions

  • the described technology relates generally to object-oriented programming techniques and more specifically to a system for automatically implementing virtual functions.
  • Object-oriented programming techniques allow for the defining of “interfaces” by which objects can expose their functionality independently of the implementation of the functionality.
  • 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.
  • This interface, named “IShape,” has three virtual functions: draw, save, and clear.
  • 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.
  • class that implements the interfaces inherits the interface.
  • class Shape IShape ⁇ virtual void save(char filename) ⁇ . . . ⁇ ; virtual void clear(int x,y) ⁇ . . .); virtual void draw(int x,y) ⁇ . . . ⁇ ; virtual void internal_save( ) ⁇ . . .); int x; int y; ⁇
  • 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.
  • a C++ compiler 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.
  • FIG. 1 illustrates a sample object layout for an object of the Shape class.
  • the object data structure 101 contains a pointer to a virtual function table and the data members x and y.
  • the virtual function table 102 contains an entry for each virtual function. Each entry contains the address of the corresponding virtual function.
  • the first entry in the virtual function table contains the address of the draw function 103 .
  • the order of the references in the virtual function table is the same as defined in the inherited interface even though the Shape class specifies these three functions in a different order. In particular, the reference to the draw function is first, followed by the references to the save and clear functions.
  • 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:
  • 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.
  • 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:
  • classes A and B are interfaces.
  • Interface A defines virtual function A1
  • 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.
  • 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.
  • FIG. 2 illustrates the difficulty when the virtual function tables are merged.
  • the object layouts 201 and 202 illustrate the order of the virtual functions within the virtual function tables. (Since interfaces A and B are abstract classes, objects of these classes cannot actually be instantiated.) To allow type casting as described above, an implementation of interface B needs to provide a virtual function table with entries in the same order as shown in object layout 202 , that is with the entry for virtual function A1 followed immediately by the entry for virtual function B1.
  • the virtual function table of class AImp is shown by object layout 203 .
  • Object layout 204 illustrates the virtual function table for class BImp when the virtual function tables are merged.
  • This virtual function table for class BImp illustrates the order of the entries to be virtual functions A1, A2, and B1. If a pointer to an object of class AImp is type cast to a pointer to interface B, then the virtual function table would not have the entries in the order as specified by the interface B. In particular, the entry for virtual function A1 is not immediately followed by the entry for virtual function B1.
  • a C++ compiler could have reordered in entries in the virtual function table within object layout 204 to be virtual functions A1, B1, and A2. In which case, the type casting for interface B would work. However, the type casting from a pointer to a class BImp object to a class AImp object would be incorrect because the class AImp defines that the entry for virtual function A1 is immediately followed by the entry for virtual function A2. Thus, a C++ compiler cannot define a single virtual function table that satisfies the virtual function table ordering of both interface B and class AImp.
  • FIG. 3 illustrates the object layouts with separate virtual function tables.
  • the object layout 304 for class BImp has two virtual function tables.
  • the first virtual function table has the order of entries to be virtual functions A1 and A2, which is consistent with the ordering for class AImp.
  • the second virtual function table has the order of entries to be virtual functions A1 and B1, which is consistent with the ordering for interface B.
  • the difficulty arises because the developer of class BImp, who wants to reuse the implementation of interface A, which is class AImp, must provide an implementation for each virtual function of interface A within class BImp. (These multiple implementations can be avoided by virtually inheriting interface A.
  • class BImp The developer of class BImp can implement each virtual function of interface A in a straightforward manner. In particular, the developer can implement each virtual function to forward its invocation to the corresponding virtual function in the implementation of interface A, which is class AImp.
  • class AImp The following is an example implementation of class BImp: Class BImp : AImp, B ⁇ virtual void B 1( ) ⁇ . . . ⁇ ; virtual void A 1( ) ⁇ return AImp::A1( ) ⁇ ⁇
  • 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.
  • 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.
  • 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.
  • 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.
  • 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.
  • FIG. 1 illustrates a sample object layout for an object of the Shape class.
  • FIG. 2 illustrates the difficulty when the virtual function tables are merged.
  • FIG. 3 illustrates the object layouts with separate virtual function tables.
  • FIG. 4 is a block diagram of an example implementation of the forwarding system.
  • FIG. 5 is a block diagram illustrating a computer system for practicing the forwarding system.
  • FIG. 6 is a flow diagram illustrating an example implementation of a routine to automatically add forwarding macros to interface definitions.
  • 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.
  • 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.
  • the forwarding system 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.
  • the forwarding system automatically detects that no implementation has been provided for the interface and inserts a forwarding implementation to the implementing class.
  • the forwarding system is implemented by adapting a compiler to recognize a special forwarding instruction and to automatically insert and implement the virtual functions.
  • 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 “#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.
  • the parameter such as “Imp,” the result is:
  • interface B which is class BImp
  • interface A which is class AImp
  • An implementation of virtual function A1 is provided that forwards its invocation to the implementation of class AImp.
  • class BImp AImp, B ⁇ virtual void B1( ) ⁇ . . . ⁇ ; $forwardATo(AImp) ⁇
  • class BImp AImp, B ⁇ virtual void B1( ) ⁇ . . . ⁇ ; virtual void A1( ) ⁇ return AImp::A1( ) ⁇ ; ⁇
  • 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.
  • 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: class B : A ⁇ virtual void B1( ) 0; #define $forwardBTo(interface) ⁇ $forwardATo(interface) ⁇ virtual void B1( ) ⁇ return interface##::B1( ) ⁇ ; ⁇
  • class CImp class CImp : BImp, C ⁇ virtual void C1( ) ⁇ . . . ⁇ ; virtual void A1( ) ⁇ return BImp::A1( )); virtual void B1( ) ⁇ return BImp::B1( ) ⁇ ; ⁇
  • 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.
  • interface C which is class CImp
  • 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 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.
  • class BImp AImp, B ⁇ virtual void B1( ) ⁇ . . . ⁇ ; $forwardBParentClassTo(AImp) ⁇
  • class BImp AImp
  • B virtual void B1( ) ⁇ . . . ⁇
  • 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.
  • FIG. 4 is a block diagram of an example implementation of the forwarding system.
  • the forwarding system may be implemented as part of a compiler or as a preprocessor to a compiler.
  • the process forwarding instruction routine is invoked when the forwarding system encounters a special forwarding instruction, which specifies an interface and an implementing class or automatically detects such a situation.
  • the routine inserts, into the class definition that inherits the interface and that inherits the implementing class, a forwarding implementation for each virtual function of the interface.
  • the routine then recursively calls itself to insert forwarding implementations for virtual functions of any indirectly inherited interfaces of the interface.
  • the routine loops inserting forwarding implementations for each virtual function of the interface.
  • step 401 the routine selects the next virtual function of the interface.
  • step 402 if all the virtual functions have already been selected, then the routine continues at step 404 , else the routine continues at step 403 .
  • step 403 the routine inserts a forwarding implementation of the selected virtual function that forwards its invocation to the implementing class.
  • step 404 if the interface has an inherited interface (i.e., a base interface), then the routine continues at step 405 , else the routine returns.
  • step 405 the routine recursively invokes the process forwarding instruction routine passing the base interface and the implementing class. The routine then returns.
  • FIG. 5 is a block diagram illustrating a computer system for practicing the forwarding system.
  • the computer system 500 includes a central processing unit 501 , I/O devices 502 , and memory 503 .
  • the I/O devices may include computer readable media, such as a hard disk or a flexible disk, on which components of the forwarding system may be stored.
  • the forwarding system that is stored in memory is the macro system.
  • the forwarding system comprises an add forwarding macro component 505 .
  • the add forwarding macro component inputs interface definitions 504 and outputs modified interface definitions 506 .
  • the add forwarding macro component inserts the forwarding macro and the parent class forwarding macro into the interface definitions.
  • the compiler preprocessor 508 inputs the modified interface definitions 506 and class definitions that have calls to the macros 507 .
  • the compiler preprocessor expands the macros within the class definitions to generate expanded class definitions 509 .
  • the compiler 510 inputs the expanded class definitions to generate the compiled code.
  • FIG. 6 is a flow diagram illustrating an example implementation of a routine to automatically add forwarding macros and parent class forwarding macros to interface definitions.
  • This routine is passed an interface definition and inserts macro definitions for the forwarding macro and the parent class forwarding macro.
  • the routine inserts a statement “#define $forward ⁇ class>To(interface) ⁇ ” into the interface definition. This statement starts the definition of the forwarding macro. The “ ⁇ class>” is replaced by the name of the interface.
  • step 602 if the interface inherits a base interface, then the routine continues at step 603 , else the routine continues at step 604 .
  • the routine inserts the statement “$formardcbaseclass>To(interface);”.
  • step 604 the routine loops adding forwarding implementations for each virtual function of the interface.
  • step 604 the routine selects the next virtual function.
  • step 605 if all the virtual functions have already been selected, then the routine continues at step 607 , else the routine continues at step 606 .
  • step 606 the routine adds the forwarding implementation of the selected virtual function and loops to step 604 to select the next virtual function.
  • step 607 the routine adds a termination for the macro definition. The termination may be accomplished by inserting a blank line.
  • step 608 the routine adds the statement “#define $forward ⁇ class>ParentClassTo(interface)”. This statement defines the parent class forwarding macro.
  • step 609 if the interface inherits a base interface, then the routine continues its step 610 , else the routine continues that step 611 .
  • step 610 the routine adds the statement “Sforward ⁇ baseclass>To(interface)”. This statement calls the forwarding macro of the base interface. If, however, the interface inherits no base interface, then the parent class forwarding macro is empty.
  • step 611 the routine adds a termination of the macro definition and completes.

Abstract

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.

Description

  • 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 INVENTION
  • The 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:
    class IShape
    {
    virtual void draw(int x,y)=0;
    virtual void save(char filename)=0;
    virtual void clear(int x,y)=0;
    }

    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.
    class Shape: IShape
    {
    virtual void save(char filename){. . .};
    virtual void clear(int x,y){. . .);
    virtual void draw(int x,y) {. . .};
    virtual void internal_save( ){. . .);
    int x;
    int y;
    }

    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. FIG. 1 illustrates a sample object layout for an object of the Shape class. The object data structure 101 contains a pointer to a virtual function table and the data members x and y. The virtual function table 102 contains an entry for each virtual function. Each entry contains the address of the corresponding virtual function. For example, the first entry in the virtual function table contains the address of the draw function 103. The order of the references in the virtual function table is the same as defined in the inherited interface even though the Shape class specifies these three functions in a different order. In particular, the reference to the draw function is first, followed by the references to the save and clear functions.
  • 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.
    class A
    {
    virtual void A1( )=0;
    }
    class B : A
    {
    virtual void B 1( )=0;
    }
    class AImp : A
    {
    virtual void A1( ){. . .};
    virtual void A2( ){. . .};
    }
    class BImp : AImp, B (
    {
    virtual void B1( ){. . .};
    }

    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. FIG. 2 illustrates the difficulty when the virtual function tables are merged. The object layouts 201 and 202 illustrate the order of the virtual functions within the virtual function tables. (Since interfaces A and B are abstract classes, objects of these classes cannot actually be instantiated.) To allow type casting as described above, an implementation of interface B needs to provide a virtual function table with entries in the same order as shown in object layout 202, that is with the entry for virtual function A1 followed immediately by the entry for virtual function B1. A problem arises when the implementation of interface A, which is class AImp, defines a new virtual function, such as virtual function A2. The virtual function table of class AImp is shown by object layout 203. Object layout 204 illustrates the virtual function table for class BImp when the virtual function tables are merged. This virtual function table for class BImp illustrates the order of the entries to be virtual functions A1, A2, and B1. If a pointer to an object of class AImp is type cast to a pointer to interface B, then the virtual function table would not have the entries in the order as specified by the interface B. In particular, the entry for virtual function A1 is not immediately followed by the entry for virtual function B1. A C++ compiler could have reordered in entries in the virtual function table within object layout 204 to be virtual functions A1, B1, and A2. In which case, the type casting for interface B would work. However, the type casting from a pointer to a class BImp object to a class AImp object would be incorrect because the class AImp defines that the entry for virtual function A1 is immediately followed by the entry for virtual function A2. Thus, a C++ compiler cannot define a single virtual function table that satisfies the virtual function table ordering of both interface B and class AImp.
  • Although the use of the separate option for generating virtual function tables alleviates this difficulty, additional difficulties arise. FIG. 3 illustrates the object layouts with separate virtual function tables. In this example, the object layout 304 for class BImp has two virtual function tables. The first virtual function table has the order of entries to be virtual functions A1 and A2, which is consistent with the ordering for class AImp. The second virtual function table has the order of entries to be virtual functions A1 and B1, which is consistent with the ordering for interface B. The difficulty arises because the developer of class BImp, who wants to reuse the implementation of interface A, which is class AImp, must provide an implementation for each virtual function of interface A within class BImp. (These multiple implementations can be avoided by virtually inheriting interface A. With such virtual inheritance, a C++ compiler might generate no virtual function tables with the required ordering of the virtual functions.) The developer of class BImp can implement each virtual function of interface A in a straightforward manner. In particular, the developer can implement each virtual function to forward its invocation to the corresponding virtual function in the implementation of interface A, which is class AImp. The following is an example implementation of class BImp:
    Class BImp : AImp, B
    {
    virtual void B 1( ){. . .};
    virtual void A 1( ){ return AImp::A1( )}
    }

    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.
  • SUMMARY OF THE INVENTION
  • 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
  • FIG. 1 illustrates a sample object layout for an object of the Shape class.
  • FIG. 2 illustrates the difficulty when the virtual function tables are merged.
  • FIG. 3 illustrates the object layouts with separate virtual function tables.
  • FIG. 4 is a block diagram of an example implementation of the forwarding system.
  • FIG. 5 is a block diagram illustrating a computer system for practicing the forwarding system.
  • FIG. 6 is a flow diagram illustrating an example implementation of a routine to automatically add forwarding macros to interface definitions.
  • DETAILED DESCRIPTION OF ILLUSTRATIVE EMBODIMENTS
  • 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:
    class A
    {
    virtual void A1( )=0;
    #define $forwardATo(interface)\
    virtual void A 1( ) { return interface##::A1( )};
    }

    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.
  • 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:
    class BImp : AImp, B
    {
    virtual void B1( ){. . .};
    $forwardATo(AImp)
    }
  • The following illustrates the definition of class BImp when the macro is expanded:
    class BImp : AImp, B
    {
    virtual void B1( ){. . .};
    virtual void A1( ){return AImp::A1( )};
    }
  • 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:
    class B : A
    {
    virtual void B1( )=0;
    #define $forwardBTo(interface)\
    $forwardATo(interface)\
    virtual void B1( ){ return interface##::B1( )};
    }
  • 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:
    class C : B
    {
    virtual void C1( )=0;
    }
    class CImp : BImp, C
    {
    virtual void C1( ){. . .} ;
    $forwardBTo(BImp)
    }
  • The following illustrates expansion of the forwarding macro in class CImp:
    class CImp : BImp, C
    {
    virtual void C1( ){. . .};
    virtual void A1( ){return BImp::A1( ));
    virtual void B1( ){return BImp::B1( )};
    }
  • 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:
    class B : A
    {
    virtual void B1( )=0;
    #define $forwardBTo(interface)\
    $forwardATo(interface)\
    virtual void B1( ){return interface##::B1( )};
    #define $forwardBParentClassTo(interface)\
    $forwardATo(interface)
    }
  • 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:
    class BImp : AImp, B
    {
    virtual void B1( ){. . .};
    $forwardBParentClassTo(AImp)
    }
  • The expansion of the parent class forwarding macro is illustrated in the following:
    class BImp : AImp, B
    {
    virtual void B1( ){. . .};
    virtual void A1( ){return Almp::A1( ));
    }
  • 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.
  • FIG. 4 is a block diagram of an example implementation of the forwarding system. In this implementation, the forwarding system may be implemented as part of a compiler or as a preprocessor to a compiler. The process forwarding instruction routine is invoked when the forwarding system encounters a special forwarding instruction, which specifies an interface and an implementing class or automatically detects such a situation. The routine inserts, into the class definition that inherits the interface and that inherits the implementing class, a forwarding implementation for each virtual function of the interface. The routine then recursively calls itself to insert forwarding implementations for virtual functions of any indirectly inherited interfaces of the interface. In steps 401-403, the routine loops inserting forwarding implementations for each virtual function of the interface. In step 401, the routine selects the next virtual function of the interface. In step 402, if all the virtual functions have already been selected, then the routine continues at step 404, else the routine continues at step 403. In step 403, the routine inserts a forwarding implementation of the selected virtual function that forwards its invocation to the implementing class. In step 404, if the interface has an inherited interface (i.e., a base interface), then the routine continues at step 405, else the routine returns. In step 405, the routine recursively invokes the process forwarding instruction routine passing the base interface and the implementing class. The routine then returns.
  • FIG. 5 is a block diagram illustrating a computer system for practicing the forwarding system. The computer system 500 includes a central processing unit 501, I/O devices 502, and memory 503. The I/O devices may include computer readable media, such as a hard disk or a flexible disk, on which components of the forwarding system may be stored. The forwarding system that is stored in memory is the macro system. The forwarding system comprises an add forwarding macro component 505. The add forwarding macro component inputs interface definitions 504 and outputs modified interface definitions 506. The add forwarding macro component inserts the forwarding macro and the parent class forwarding macro into the interface definitions. The compiler preprocessor 508 inputs the modified interface definitions 506 and class definitions that have calls to the macros 507. The compiler preprocessor expands the macros within the class definitions to generate expanded class definitions 509. The compiler 510 inputs the expanded class definitions to generate the compiled code.
  • FIG. 6 is a flow diagram illustrating an example implementation of a routine to automatically add forwarding macros and parent class forwarding macros to interface definitions. This routine is passed an interface definition and inserts macro definitions for the forwarding macro and the parent class forwarding macro. In step 601, the routine inserts a statement “#define $forward<class>To(interface)\” into the interface definition. This statement starts the definition of the forwarding macro. The “<class>” is replaced by the name of the interface. In step 602, if the interface inherits a base interface, then the routine continues at step 603, else the routine continues at step 604. In step 603, the routine inserts the statement “$formardcbaseclass>To(interface);”. The “<baseclass>” is replaced by the name of the inherited interface. This statement calls the forwarding macro of the inherited interface. In steps 604-606, the routine loops adding forwarding implementations for each virtual function of the interface. In step 604, the routine selects the next virtual function. In step 605, if all the virtual functions have already been selected, then the routine continues at step 607, else the routine continues at step 606. In step 606, the routine adds the forwarding implementation of the selected virtual function and loops to step 604 to select the next virtual function. In step 607, the routine adds a termination for the macro definition. The termination may be accomplished by inserting a blank line. In the step 608, the routine adds the statement “#define $forward<class>ParentClassTo(interface)”. This statement defines the parent class forwarding macro. In step 609, if the interface inherits a base interface, then the routine continues its step 610, else the routine continues that step 611. In step 610, the routine adds the statement “Sforward<baseclass>To(interface)”. This statement calls the forwarding macro of the base interface. If, however, the interface inherits no base interface, then the parent class forwarding macro is empty. In step 611, the routine adds a termination of the macro definition and completes.
  • 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 (8)

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.
US11/039,982 1999-02-03 2005-01-20 Method and system for implementing virtual functions of an interface Abandoned US20050125805A1 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
US11/039,982 US20050125805A1 (en) 1999-02-03 2005-01-20 Method and system for implementing virtual functions of an interface

Applications Claiming Priority (4)

Application Number Priority Date Filing Date Title
US11866899P 1999-02-03 1999-02-03
US09/322,965 US6704924B1 (en) 1999-02-03 1999-05-28 Method and system for implementing virtual functions of an interface
US10/639,108 US6886155B2 (en) 1999-02-03 2003-08-12 Method and system for implementing virtual functions of an interface
US11/039,982 US20050125805A1 (en) 1999-02-03 2005-01-20 Method and system for implementing virtual functions of an interface

Related Parent Applications (1)

Application Number Title Priority Date Filing Date
US10/639,108 Continuation US6886155B2 (en) 1999-02-03 2003-08-12 Method and system for implementing virtual functions of an interface

Publications (1)

Publication Number Publication Date
US20050125805A1 true US20050125805A1 (en) 2005-06-09

Family

ID=31890781

Family Applications (4)

Application Number Title Priority Date Filing Date
US09/322,965 Expired - Lifetime US6704924B1 (en) 1999-02-03 1999-05-28 Method and system for implementing virtual functions of an interface
US10/639,108 Expired - Lifetime US6886155B2 (en) 1999-02-03 2003-08-12 Method and system for implementing virtual functions of an interface
US11/023,726 Expired - Fee Related US7383533B2 (en) 1999-02-03 2004-12-28 Implementing virtual functions of an interface with indirect inheritence
US11/039,982 Abandoned US20050125805A1 (en) 1999-02-03 2005-01-20 Method and system for implementing virtual functions of an interface

Family Applications Before (3)

Application Number Title Priority Date Filing Date
US09/322,965 Expired - Lifetime US6704924B1 (en) 1999-02-03 1999-05-28 Method and system for implementing virtual functions of an interface
US10/639,108 Expired - Lifetime US6886155B2 (en) 1999-02-03 2003-08-12 Method and system for implementing virtual functions of an interface
US11/023,726 Expired - Fee Related US7383533B2 (en) 1999-02-03 2004-12-28 Implementing virtual functions of an interface with indirect inheritence

Country Status (1)

Country Link
US (4) US6704924B1 (en)

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20110010696A1 (en) * 2009-07-09 2011-01-13 Sun Microsystems, Inc. Duplicate virtual function table removal

Families Citing this family (15)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
WO2000045260A1 (en) * 1999-01-29 2000-08-03 Fujitsu Limited Compiler, compiling method, and storage medium stored with program therefor
US6670934B1 (en) 1999-02-03 2003-12-30 William H. Gates, III Method and system for distributing art
US6704924B1 (en) * 1999-02-03 2004-03-09 William H. Gates, III Method and system for implementing virtual functions of an interface
US8001523B1 (en) * 2001-07-05 2011-08-16 Microsoft Corporation System and methods for implementing an explicit interface member in a computer programming language
US6981250B1 (en) * 2001-07-05 2005-12-27 Microsoft Corporation System and methods for providing versioning of software components in a computer programming language
US7730449B2 (en) * 2003-03-19 2010-06-01 Toshiba Corporation Auto reference counting pointer for C++ objects with ability to re-cast and lookup from a free pointer
JP4517923B2 (en) * 2005-03-31 2010-08-04 沖電気工業株式会社 Object relief system and method
US7992130B2 (en) * 2007-05-07 2011-08-02 Microsoft Corporation Class-based object-oriented features in class-less script language
US8210367B2 (en) * 2009-01-15 2012-07-03 Trion Industries, Inc. Width-adjustable product display tray with novel mounting arrangement
US9811353B1 (en) 2010-07-29 2017-11-07 Crimson Corporation Remotely invoking dynamic classes on a computing device
KR101761650B1 (en) * 2010-09-24 2017-07-28 인텔 코포레이션 Sharing virtual functions in a shared virtual memory between heterogeneous processors of a computing platform
US9665601B1 (en) 2010-12-16 2017-05-30 Crimson Corporation Using a member attribute to perform a database operation on a computing device
JP2013235386A (en) * 2012-05-08 2013-11-21 Internatl Business Mach Corp <Ibm> Optimization apparatus, optimization method and optimization program
US9026989B2 (en) * 2012-06-07 2015-05-05 Microsoft Technology Licensing Llc Object extensions using attributes to decouple base classes from derived classes
US20240036861A1 (en) * 2022-07-28 2024-02-01 Red Hat, Inc. Automatic generation of interfaces for optimizing codebases

Citations (12)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5295062A (en) * 1990-01-19 1994-03-15 Yamatake-Honeywell Co., Ltd. Facility management apparatus having touch responsive display screens
US5327562A (en) * 1992-05-06 1994-07-05 Microsoft Corporation Method for implementing virtual function tables in a compiler for an object-oriented programming language
US5327529A (en) * 1990-09-24 1994-07-05 Geoworks Process of designing user's interfaces for application programs
US5410326A (en) * 1992-12-04 1995-04-25 Goldstein; Steven W. Programmable remote control device for interacting with a plurality of remotely controlled devices
US5854931A (en) * 1991-04-09 1998-12-29 Microsoft Corporation Method and system for accessing virtual base classes
US5945993A (en) * 1998-01-30 1999-08-31 Hewlett-Packard Company Pictograph-based method and apparatus for controlling a plurality of lighting loads
US6185625B1 (en) * 1996-12-20 2001-02-06 Intel Corporation Scaling proxy server sending to the client a graphical user interface for establishing object encoding preferences after receiving the client's request for the object
US6198479B1 (en) * 1997-06-25 2001-03-06 Samsung Electronics Co., Ltd Home network, browser based, command and control
US6219046B1 (en) * 1998-09-17 2001-04-17 General Electric Company Man-machine interface for a virtual annunciator panel display
US6425007B1 (en) * 1995-06-30 2002-07-23 Sun Microsystems, Inc. Network navigation and viewing system for network management system
US6457030B1 (en) * 1999-01-29 2002-09-24 International Business Machines Corporation Systems, methods and computer program products for modifying web content for display via pervasive computing devices
US6704924B1 (en) * 1999-02-03 2004-03-09 William H. Gates, III Method and system for implementing virtual functions of an interface

Family Cites Families (14)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US6133029A (en) * 1988-03-21 2000-10-17 Chiron Corporation Replication defective viral vectors for infecting human cells
US5581760A (en) * 1992-07-06 1996-12-03 Microsoft Corporation Method and system for referring to and binding to objects using identifier objects
US5752034A (en) * 1993-01-15 1998-05-12 Texas Instruments Incorporated Apparatus and method for providing an event detection notification service via an in-line wrapper sentry for a programming language
US5699518A (en) * 1993-11-29 1997-12-16 Microsoft Corporation System for selectively setting a server node, evaluating to determine server node for executing server code, and downloading server code prior to executing if necessary
US5628016A (en) * 1994-06-15 1997-05-06 Borland International, Inc. Systems and methods and implementing exception handling using exception registration records stored in stack memory
US5732270A (en) * 1994-09-15 1998-03-24 Visual Edge Software Limited System and method for providing interoperability among heterogeneous object systems
US6185728B1 (en) * 1996-01-31 2001-02-06 Inprise Corporation Development system with methods for type-safe delegation of object events to event handlers of other objects
US6006230A (en) * 1997-01-15 1999-12-21 Sybase, Inc. Database application development system with improved methods for distributing and executing objects across multiple tiers
US6179491B1 (en) * 1997-02-05 2001-01-30 International Business Machines Corporation Method and apparatus for slicing class hierarchies
US5987247A (en) * 1997-05-09 1999-11-16 International Business Machines Corporation Systems, methods and computer program products for building frameworks in an object oriented environment
US5983020A (en) * 1997-10-02 1999-11-09 International Business Machines Corporation Rule-based engine for transformation of class hierarchy of an object-oriented program
US6081665A (en) * 1997-12-19 2000-06-27 Newmonics Inc. Method for efficient soft real-time execution of portable byte code computer programs
US6018628A (en) * 1998-06-16 2000-01-25 Sun Microsystems, Inc. Method of implementing parameterized types to be compatible with existing unparameterized libraries
US6263491B1 (en) * 1998-10-02 2001-07-17 Microsoft Corporation Heavyweight and lightweight instrumentation

Patent Citations (12)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5295062A (en) * 1990-01-19 1994-03-15 Yamatake-Honeywell Co., Ltd. Facility management apparatus having touch responsive display screens
US5327529A (en) * 1990-09-24 1994-07-05 Geoworks Process of designing user's interfaces for application programs
US5854931A (en) * 1991-04-09 1998-12-29 Microsoft Corporation Method and system for accessing virtual base classes
US5327562A (en) * 1992-05-06 1994-07-05 Microsoft Corporation Method for implementing virtual function tables in a compiler for an object-oriented programming language
US5410326A (en) * 1992-12-04 1995-04-25 Goldstein; Steven W. Programmable remote control device for interacting with a plurality of remotely controlled devices
US6425007B1 (en) * 1995-06-30 2002-07-23 Sun Microsystems, Inc. Network navigation and viewing system for network management system
US6185625B1 (en) * 1996-12-20 2001-02-06 Intel Corporation Scaling proxy server sending to the client a graphical user interface for establishing object encoding preferences after receiving the client's request for the object
US6198479B1 (en) * 1997-06-25 2001-03-06 Samsung Electronics Co., Ltd Home network, browser based, command and control
US5945993A (en) * 1998-01-30 1999-08-31 Hewlett-Packard Company Pictograph-based method and apparatus for controlling a plurality of lighting loads
US6219046B1 (en) * 1998-09-17 2001-04-17 General Electric Company Man-machine interface for a virtual annunciator panel display
US6457030B1 (en) * 1999-01-29 2002-09-24 International Business Machines Corporation Systems, methods and computer program products for modifying web content for display via pervasive computing devices
US6704924B1 (en) * 1999-02-03 2004-03-09 William H. Gates, III Method and system for implementing virtual functions of an interface

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20110010696A1 (en) * 2009-07-09 2011-01-13 Sun Microsystems, Inc. Duplicate virtual function table removal

Also Published As

Publication number Publication date
US20040049765A1 (en) 2004-03-11
US7383533B2 (en) 2008-06-03
US6704924B1 (en) 2004-03-09
US20050114866A1 (en) 2005-05-26
US6886155B2 (en) 2005-04-26

Similar Documents

Publication Publication Date Title
US20050125805A1 (en) Method and system for implementing virtual functions of an interface
US5689703A (en) Method and system for referring to and binding to objects using identifier objects
US6345382B1 (en) Run-time customization in object-oriented design
US5418964A (en) System and method for parent class shadowing in a statically linked object hierarchy
US6996832B2 (en) System and method for software component plug-in framework
US6625804B1 (en) Unified event programming model
US5361350A (en) Object oriented method management system and software for managing class method names in a computer system
US6108661A (en) System for instance customization
US20040226030A1 (en) Systems and methods for an extensible software proxy
US7669184B2 (en) Introspection support for local and anonymous classes
US7886286B2 (en) Integration of non-componentized libraries in component-based systems
US7162502B2 (en) Systems and methods that synchronize data with representations of the data
US7810077B2 (en) Reifying generic types while maintaining migration compatibility
US6895581B1 (en) Replaceable classes and virtual constructors for object-oriented programming languages
US20040268301A1 (en) Adding new compiler methods to an integrated development environment
US20080127055A1 (en) Application proxy
US7735070B2 (en) Allowing non-generified methods to override generified methods
US7120618B2 (en) System and method for defining and using subclasses declaratively within markup
WO2000046670A9 (en) Method and system for implementing virtual functions of an interface
US20040227776A1 (en) System and method for controlling user interface properties with data
US20030014555A1 (en) System and method for efficient dispatch of interface calls
US7516460B2 (en) System and method for creating a runtime connection interface for attributes and element tags defined within a subclass in a markup document
JP2000112770A (en) Program translating device
Botto et al. Objective-C language and GNUstep base library programming manual
Robb BPatch Interface Reference

Legal Events

Date Code Title Description
STCB Information on status: application discontinuation

Free format text: ABANDONED -- FAILURE TO RESPOND TO AN OFFICE ACTION