US20060123383A1 - Method and apparatus for a system management tool to adapt command interface and behavior based on installed features - Google Patents

Method and apparatus for a system management tool to adapt command interface and behavior based on installed features Download PDF

Info

Publication number
US20060123383A1
US20060123383A1 US11/002,699 US269904A US2006123383A1 US 20060123383 A1 US20060123383 A1 US 20060123383A1 US 269904 A US269904 A US 269904A US 2006123383 A1 US2006123383 A1 US 2006123383A1
Authority
US
United States
Prior art keywords
command
system management
software
extension
framework
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/002,699
Inventor
Ajay Apte
Lavena Chan
John Chang
Qinhua Wang
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.)
International Business Machines Corp
Original Assignee
International Business Machines 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 International Business Machines Corp filed Critical International Business Machines Corp
Priority to US11/002,699 priority Critical patent/US20060123383A1/en
Assigned to INTERNATIONAL BUSINESS MACHINES CORPORATION reassignment INTERNATIONAL BUSINESS MACHINES CORPORATION ASSIGNMENT OF ASSIGNORS INTEREST (SEE DOCUMENT FOR DETAILS). Assignors: CHAN, LAVENA, APTE, AJAY A., CHANG, JOHN YOW-CHUN, WANG, QINHUA
Publication of US20060123383A1 publication Critical patent/US20060123383A1/en
Priority to US12/056,167 priority patent/US8271622B2/en
Abandoned legal-status Critical Current

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/60Software deployment
    • G06F8/61Installation

Definitions

  • the present invention relates generally to the fields of computer software in a client-server heterogeneous distributed network.
  • a software product typically has various optional installable features.
  • the software sometimes has system management commands or task commands that influence its runtime behavior or configuration properties. For instance, a task command “createApplicationServer” creates a new application server in the system. Another example is that a task command “startServer” starts a server in the system. More than often the behavior of a system management command or task command provided a software product might need to be tuned based on which features users decide to install. For example, assuming a messaging software component is an optional installation feature of an application server product, when users create an application server they can configure a message engine on the created server only if the messaging component is already installed. Another example is that one software product needs to extend a system management command of another related software product.
  • a common solution to address the first scenario is that during installation of the software, the software's command implementation queries all the installed features present, and disables some of the interfaces and/or logic on the software to be installed that are not available on the system or network.
  • This solution however is not flexible and extensible.
  • the command implementation needs to know all installation features and their relevance to the command. Whenever a new installable feature is introduced, the implementation of all the relevant commands need to be modified to accommodate the new installable feature.
  • an aspect of the present invention is to provide an improved, scalable and flexible method and apparatus for a system management tool that is dynamically adaptable at runtime, via late binding, abstract classes and inheritance, in a new IDL (Interface Definition Language) framework, so that system management commands may automatically adapt their user interfaces and behavior based on the features and products already installed on a system, which may include access to a distributed system.
  • IDL Interface Definition Language
  • the framework of the present system management tool allows any optional installable features and software products to register, implement and package new extensions of an existing system management command in a product.
  • the extensions are packaged as part of installable features and software products and these extensions are only activated whenever the features and software products are installed.
  • the mechanism of the present invention is not only extensible but also is flexible.
  • the software of the present invention is directed to a system management tool
  • other types of software can also be accommodated by the present invention without departing from the teachings of the present invention.
  • any piece of software to be installed on a network can be made to fit inside a wrapper that can be deemed a system management tool, to aid in the installation of the software, and be accommodated by the teachings of the present invention.
  • the present invention employs system management software with a new Interface Definition Language (IDL) interface framework on both server and client computer, for registering and instantiating new and existing system management commands, employing encapsulation, inheritance, polymorphism, and dynamic (late) binding at runtime, as part of a new application programming interface (API) framework, to increase portability and scalability when distributing and executing new system management commands in a heterogeneous distributed network.
  • IDL Interface Definition Language
  • API application programming interface
  • the method and apparatus of the present invention employs a mainframe or personal computer to run the software tool, but in general any compatible piece of hardware or virtual machine can run the present invention.
  • the preferred method and apparatus of the present invention is a computing platform running a software tool, which can accept human input, and may be written in any computer language (such as C, C++, Perl, Java or the like), preferably an Object Oriented programming (OOP) language, run by a computer system having an operating system.
  • the computer system typically has one or more processors, primary and secondary memory cooperating with the processor(s), which executes instructions stored in the memory, I/O means such as monitor, mouse and keyboard, and any necessary specialized hardware or firmware.
  • the source code, object code and/or executables of the tool may have any number of classes, functions, objects, variables, templates, lines of code, portions of code and constructs (collectively and generally, “a process step”, “step”, “block”, “functional module” or “software module”) to carry out the invention in successive stages as described and taught herein, and may be either a standalone software application, or employed inside of or called by another software application, or as firmware.
  • the software process or software module may be constructed so that one portion of code in the application performs a plurality of functions, as for instance in Object Oriented programming (e.g., an overloaded process).
  • binary executable or source code data comprising the software of the present invention may reside on computer readable storage medium (e.g., a magnetic disk, which may be portable, such as a hard drive), floppy drive; memory (e.g., flash RAM); or a DVD or CD-ROM disk).
  • computer readable storage medium e.g., a magnetic disk, which may be portable, such as a hard drive), floppy drive; memory (e.g., flash RAM); or a DVD or CD-ROM disk).
  • FIG. 1 is a schematic showing a heterogeneous distributed network in a client-server relationship, within which the present invention resides.
  • FIG. 2 is a flowchart showing the steps necessary to build the framework architecture for the present invention.
  • FIG. 3 is a flowchart of the program flow for the present invention as constructed within the framework described in FIG. 2 .
  • the present invention is to more readily register, instantiate, and configure system management type commands used in installing software in a heterogeneous distributed system, such as one having client and server.
  • system management commands are commands for software that influence the software runtime behavior or configuration properties. For instance, a task command “createApplicationServer” creates a new application server in the system. Another example is that a task command “startServer” starts a server in the system.
  • the present invention is built using Java, an object-oriented programming language, and the distributed system architecture is a client-server model, but in general any programming language may be employed and the network may be a peer-to-peer network, N-tier client/server network, non-client—server model or other topology.
  • FIG. 1 there is shown heterogeneous distributed network in a client-server relationship, with the adaptive system management tool of the present invention residing in both the client and server, and communicating via a suitable software interface protocol.
  • a server such as application-server 100 , houses the server software portion of the software tool of the present invention, which is stored in the memory of the server.
  • the server 100 communicates with several clients, 120 , 127 , 129 , 130 in a distributed network, typically a plurality of personal computers, some of which may be connected together with a hub or router 125 .
  • the clients may be any computer system, personal computer, wireless devices, other server, and the like, forming with the server 100 a heterogeneous distributed system network.
  • the system management software that resides in both the server and clients is built according to the framework taught by the present invention.
  • An important aspect of the present invention is that it provides a framework of a unified architecture that delays the binding between the command interface and implementation—from developing time to run time—by encapsulating the system management commands a piece of system management software may have, via a language neutral command interface.
  • This interface may also be termed, at the architecture level, a “protocol”, at the source code level “IDL” (Interface Definition Language), or, at the software component level, an “API” (Application Programming Interface) or “ABI” (Application Binary Interface).
  • the command interface is defined in XML format due to its programming language neutral nature and its flexibility for dynamic binding (late binding), which allows user-defined commands (“extensions” or “command extensions”, to existing system management commands) to be seamlessly integrated into a distributed network, as described further herein.
  • the key idea of this dynamic lazy binding mechanism is generating the client side stubs (software routines that provide a common function) for commands dynamically, at run time, by communicating with a corresponding stub portion found on the server interface, by nature of the stubs being part of the same common framework. This eliminates the need for clients to have command specific static stubs and prevents the potential complexities introduced by the mismatch between client and server such as operating system, product version, or product features differences.
  • object oriented language Java is employed to construct the software tool of the present invention, but in general any language may be used.
  • FIG. 2 there is shown a flowchart showing the steps necessary to build the framework architecture for the system management tool of the present invention.
  • the goal is to provide a framework to implement a system management tool that will dynamically adapt a piece of software that is being installed on a computer within a distributed network without the programmer or the program having any prior knowledge of what components need to be turned on or present for the system management tool, except at run-time (i.e., dynamic binding).
  • system management tool that conforms to this framework may allow a piece of software being installed in a system to dynamically discover (e.g., via late binding at runtime) all the available necessary components that need to be created and/or installed with the software in a distributed heterogeneous system, and/or to discover which features of the software being installed need not be installed (i.e., turned off).
  • this command is termed a “system management command” of the system management tool, which is also the generic term for all such commands.
  • Extensions often need additional information to be provided to users, via help files, as explained further below.
  • conditionally activated extendible software is written to be extended within the framework as taught by the present invention
  • the developers of all software that share this framework can write command extensions to the software that cooperate with and conform to the framework through a common extension mechanism.
  • this common extension mechanism and suitably employing abstract classes and inheritance, as necessary (e.g., using the keyword ‘interface’ and ‘extends’ in Java and ‘virtual’ in C++).
  • any number of conditional system management extensions can be bundled with installation features to either override some base system management command behavior or extend the base command interface for additional options based on the version and features installed on the system.
  • the system management command can be a base class
  • the extension commands can be an inherited class (in C++) or the system management command can be a superclass and the extension commands can be a subclass that inherits from the superclass (in Object Oriented Programming parlance), generally termed inherited classes.
  • the behavior of the command will automatically take the new component and feature into consideration without any user's intervention and knowledge, as the command request is rerouted to the command extension intelligently.
  • any command request message from system management command object will be routed within the network to the proper command extension to handle that object request.
  • conditionally activated software is that an optional component and feature may allow users to provide additional options specific to the component or feature.
  • the present invention allows one to capture the component and features and their additional command options into command extensions, and bundles their command extensions as part of its distribution package. Therefore, these additional command options that are specific to the component or feature are only visible to the end user when the component or feature is installed on the system.
  • this extension mechanism is completely dynamic and flexible the same idea can be applied to across the product boundary. The only thing one needs to do is to replace the component or feature with another product.
  • An example of this scenario is that a database product is installed on a system with the presence of a middleware application server product on the same system.
  • the database product may extend some system management commands of the application server product so that the same command provided by the application server product can be used to configure the data access to the backend database.
  • end users can configure their system end to end through a single familiar command interface. This would improve user experience and lower user's learning curve significantly.
  • the polymorphism of the present invention allows, at runtime, the interpreter and/or compiler, working with the operating system as necessary, to automatically invoke the proper method associated with each system management tool command and any instantiated object associated with the command, even though the same command name is used for many different versions of system management tools commands. In this way, an end user invoking a system management tool command is oblivious to the fact that there may be several different versions of the same command.
  • polymorphism in object oriented programming allows a generalized request or function to produce different results based on the object that is attached to it at any given time.
  • each extensible command (a command that is based upon a previously designed base command) can inherit the properties of a base command it inherits from.
  • the encapsulation afforded by polymorphism (late-binding) if a common interface is employed for all the system management software, as taught by the present invention, insures that the proper method for a particular command is called by a system management software program without the individual program having to separately query the entire network it resides in on its own, assuming the other programs are also written in this common framework.
  • a common framework eliminates the necessity for the programmer to write separate functions for each particular version of system management tool and then having to identify which features must be turned off when the tool is installed, or which other software tools and products must be also installed on the network when the tool is installed.
  • step 200 labeled “Define Interface for Base System Mng. Cmd.”
  • the developer of the system management tool of the present invention would define the interface of the system management tool, and in particular the interface of all the system management and task command steps and their implementation, and any dependent or inherited classes.
  • this interface could take the form of a protocol, IDL, API, abstract class or superclass (a superclass in object technology is a high-level class that passes attributes and methods, down a hierarchy, to subclasses, the classes below it), abstract or concrete superclasses; classes with inheritance and/or any combination of the above.
  • the framework is for the Java language.
  • step 202 in FIG. 2 labeled “Implement the Cmd. Extension” the developer of the system management tool of the present invention would implement the base system management command or task command through a base class. This might be done in connection with a polymorphic class such as a virtual class, abstract class, or superclass, depending on the language. These base classes are associated with the interface to the protocol of step 200 . Thus all system management commands, extensions of a system management command and all conditional extensions of system management commands have an inherited class (i.e. derived class) that may inherit from a base class associated with it.
  • a polymorphic class such as a virtual class, abstract class, or superclass
  • a component, feature or product can be allowed to provide a command extension or conditional extension to override the behavior of a base class command extension.
  • the base command interface can be extended by an inherited class interface.
  • the system management tool of the present invention can have command interfaces and behavior determined at run time through dynamic binding between the interface and the implementation, when the implementation(s) are instantiated.
  • decision box 204 in FIG. 2 labeled “Declare extensions of base class?” the goal is to declare command extensions of the base system management commands have been accounted for; if so, one proceeds to step 206 , as indicated by the “Yes” branch of decision box 204 ; if not, as indicated by the “No” branch of decision box 204 , the flow continues to box 200 and the process repeats until all base classes and all extensions have been properly constructed according to the rules of the framework, so that they work within a framework allowing polymorphism as taught herein.
  • step 206 labeled “Provide Help Info files with Extensions”, the component, feature or product that provides command extensions through the framework for the tool of the present invention would provide national language supported (NLS) help files, in the form of translatable help messages, for each additional command extension, if any additional command options are defined by the extension.
  • Help files are useful for both the developers and users of the tool, so they may learn more about the system management command, extensions and conditional extensions via detailed descriptions of the commands.
  • step 208 labeled “Implement the Cmd. Extensions”, the developers of the component, feature or product that provide the command extension through the framework of the tool develop the logic of the command extension following on the rules laid out by the framework.
  • step 210 labeled “Package and Distribute Executables as part of Installable Product”, the tool of the present invention is distributed to all nodes as part of the relevant component, feature or product within the heterogeneous distributed network as a binary executable.
  • FIG. 3 there is shown the program flow for the method and product of the present invention, once all software products have been constructed in accordance with the framework of FIG. 2 .
  • Step 300 of FIG. 3 is to initialize the server and client nodes (in the preferred client/server architecture as described herein). As a practical matter this would be done by each computer when it boots up and becomes aware of the network to which it is connected.
  • Step 305 in FIG. 3 occurs when the system management tool is launched, and discovers all the system management command, command extensions and conditional extensions dynamically, that is, through run-time (late) dynamic binding, a feature of polymorphism.
  • these extensions are merged with the base command from which they are derived from, and made an integral part of the base command, as shown in FIG. 3 , step 310 .
  • Such mapping and binding is typically done by the compiler and/or interpreter.
  • step 315 in FIG. 3 though polymorphism, it is not necessary to map what extension goes to which necessary function call in the system management tool; rather, this is done by the interpreter and/or compiler working in conjunction with the computer operating system, as a feature of polymorphism.
  • the mechanism of the present invention will intelligently route the request of the command to the proper extension implementation in the network, as shown in step 315 of FIG. 3 .
  • This intelligent routing can happen either within a node (computer) in the network, or, outside the boundaries of a particular node (computer) in the network, and can map and route components of software that may reside on other nodes (computers) in the network.
  • the software of the present invention is directed to system management software
  • other types of software can also be accommodated by the present invention without departing from the teachings of the present invention.
  • any piece of software can be made to fit inside a wrapper that can be deemed a system management tool, to both aid in the installation of the software and /or to adapt the software to change its interface and behavior based on installed features and products that reside on a network into which the software is being introduced .

Abstract

A system management tool framework for a system management tool for extending system management commands related to software installation units such as software component, feature or product. The tool is constructed in accordance with an interface and framework that allows polymorphism and dynamic binding at run-time. When the system management software tool is constructed in accordance to the framework of the present invention, the software tool can be made scalable, flexible and adaptable to a heterogeneous distributed system.

Description

    CROSS-REFERENCE TO RELATED APPLICATIONS
  • This application is filed concurrently with commonly assigned, non-provisional U.S. patent application Ser. No. (to be assigned), entitled “METHOD AND APPARATUS TO IMPLEMENT ADAPTIVE SCRIPTING TOOL”, listing as inventors Qinhua Wang, Lavena Chan, John Y. Chang, and Matt Ranjbar, having docket number IBM-No. AUS920040913US1
  • BACKGROUND OF THE INVENTION
  • 1. Field of Invention
  • The present invention relates generally to the fields of computer software in a client-server heterogeneous distributed network.
  • 2. Description of Related Art
  • A software product typically has various optional installable features. The software sometimes has system management commands or task commands that influence its runtime behavior or configuration properties. For instance, a task command “createApplicationServer” creates a new application server in the system. Another example is that a task command “startServer” starts a server in the system. More than often the behavior of a system management command or task command provided a software product might need to be tuned based on which features users decide to install. For example, assuming a messaging software component is an optional installation feature of an application server product, when users create an application server they can configure a message engine on the created server only if the messaging component is already installed. Another example is that one software product needs to extend a system management command of another related software product. Using the same example as in the previous scenario, when users create an application server, users can configure a portal container on the created server only if the portal product is already installed somewhere on the system. This scenario is similar to the previous one except it crosses the product boundary and either resides on the local host or goes somewhere else in the network.
  • A common solution to address the first scenario is that during installation of the software, the software's command implementation queries all the installed features present, and disables some of the interfaces and/or logic on the software to be installed that are not available on the system or network. This solution however is not flexible and extensible. The command implementation needs to know all installation features and their relevance to the command. Whenever a new installable feature is introduced, the implementation of all the relevant commands need to be modified to accommodate the new installable feature.
  • Furthermore, concerning the second example above involving a network, when the enhancement of a command crosses the product boundary, due to the existence of a network, the above solution is no longer valid as it is very difficult for one software product to know whether all the other software products and their installation features are on the same system or network. Typically, therefore, the software product has to be programmed to provide a separate command for such heterogeneous distributed network instances. This approach is not user friend, as users need to learn additional command syntax for these distributed products. In addition, this approach is not flexible as the implementation of this new command has a direct dependency on a command of another software product.
  • Factoring all of the above, it can be seen that what is needed is a superior method and apparatus for a system management tool, that is adapted to provide a command interface and behavior which is based on the existence of installed features and products, in particular in a heterogeneous distributed system, without the necessity of programmers developing and registering new commands every time a new software product is distributed in a network.
  • SUMMARY OF THE INVENTION
  • Accordingly, an aspect of the present invention is to provide an improved, scalable and flexible method and apparatus for a system management tool that is dynamically adaptable at runtime, via late binding, abstract classes and inheritance, in a new IDL (Interface Definition Language) framework, so that system management commands may automatically adapt their user interfaces and behavior based on the features and products already installed on a system, which may include access to a distributed system.
  • The framework of the present system management tool allows any optional installable features and software products to register, implement and package new extensions of an existing system management command in a product. The extensions are packaged as part of installable features and software products and these extensions are only activated whenever the features and software products are installed.
  • Therefore, the mechanism of the present invention is not only extensible but also is flexible.
  • While in the preferred embodiment the software of the present invention is directed to a system management tool, other types of software can also be accommodated by the present invention without departing from the teachings of the present invention. For instance, any piece of software to be installed on a network can be made to fit inside a wrapper that can be deemed a system management tool, to aid in the installation of the software, and be accommodated by the teachings of the present invention.
  • The present invention employs system management software with a new Interface Definition Language (IDL) interface framework on both server and client computer, for registering and instantiating new and existing system management commands, employing encapsulation, inheritance, polymorphism, and dynamic (late) binding at runtime, as part of a new application programming interface (API) framework, to increase portability and scalability when distributing and executing new system management commands in a heterogeneous distributed network.
  • In a preferred embodiment, the method and apparatus of the present invention employs a mainframe or personal computer to run the software tool, but in general any compatible piece of hardware or virtual machine can run the present invention.
  • Thus the preferred method and apparatus of the present invention is a computing platform running a software tool, which can accept human input, and may be written in any computer language (such as C, C++, Perl, Java or the like), preferably an Object Oriented programming (OOP) language, run by a computer system having an operating system. The computer system typically has one or more processors, primary and secondary memory cooperating with the processor(s), which executes instructions stored in the memory, I/O means such as monitor, mouse and keyboard, and any necessary specialized hardware or firmware. Depending on the language used to construct and implement the software tool, the source code, object code and/or executables of the tool may have any number of classes, functions, objects, variables, templates, lines of code, portions of code and constructs (collectively and generally, “a process step”, “step”, “block”, “functional module” or “software module”) to carry out the invention in successive stages as described and taught herein, and may be either a standalone software application, or employed inside of or called by another software application, or as firmware. The software process or software module may be constructed so that one portion of code in the application performs a plurality of functions, as for instance in Object Oriented programming (e.g., an overloaded process). The converse is also true, in that a plurality of portions of code could perform a plurality of functions, and still be functionally the same as a single portion of code. At any stage of the process step of the present invention, intermediate values, variables and data may be stored for later use by the program. In addition, the binary executable or source code data comprising the software of the present invention may reside on computer readable storage medium (e.g., a magnetic disk, which may be portable, such as a hard drive), floppy drive; memory (e.g., flash RAM); or a DVD or CD-ROM disk).
  • The sum total of all of the above advantageous, as well as the numerous other advantages disclosed and inherent from the invention described herein creates an improvement over prior techniques.
  • The above described and many other features and attendant advantages of the present invention will become apparent from a consideration of the following detailed description when considered in conjunction with the accompanying drawings.
  • BRIEF DESCRIPTION OF THE DRAWINGS
  • Detailed description of preferred embodiments of the invention will be made with reference to the accompanying drawings. Disclosed herein is a detailed description of the best presently known mode of carrying out the invention. This description is not to be taken in a limiting sense, but is made merely for the purpose of illustrating the general principles of the invention. The section titles and overall organization of the present detailed description are for the purpose of convenience only and are not intended to limit the present invention.
  • FIG. 1 is a schematic showing a heterogeneous distributed network in a client-server relationship, within which the present invention resides.
  • FIG. 2 is a flowchart showing the steps necessary to build the framework architecture for the present invention.
  • FIG. 3 is a flowchart of the program flow for the present invention as constructed within the framework described in FIG. 2.
  • It should be understood that one skilled in the art may, using the teachings of the present invention, vary the program flow of the flowcharts without departing from the spirit of the invention herein.
  • DETAILED DESCRIPTION OF THE INVENTION
  • The present invention is to more readily register, instantiate, and configure system management type commands used in installing software in a heterogeneous distributed system, such as one having client and server. Such system management commands are commands for software that influence the software runtime behavior or configuration properties. For instance, a task command “createApplicationServer” creates a new application server in the system. Another example is that a task command “startServer” starts a server in the system. In a preferred embodiment the present invention is built using Java, an object-oriented programming language, and the distributed system architecture is a client-server model, but in general any programming language may be employed and the network may be a peer-to-peer network, N-tier client/server network, non-client—server model or other topology.
  • Turning now to FIG. 1, there is shown heterogeneous distributed network in a client-server relationship, with the adaptive system management tool of the present invention residing in both the client and server, and communicating via a suitable software interface protocol. A server, such as application-server 100, houses the server software portion of the software tool of the present invention, which is stored in the memory of the server. The server 100 communicates with several clients, 120, 127, 129, 130 in a distributed network, typically a plurality of personal computers, some of which may be connected together with a hub or router 125. In general the clients may be any computer system, personal computer, wireless devices, other server, and the like, forming with the server 100 a heterogeneous distributed system network. The system management software that resides in both the server and clients is built according to the framework taught by the present invention.
  • An important aspect of the present invention is that it provides a framework of a unified architecture that delays the binding between the command interface and implementation—from developing time to run time—by encapsulating the system management commands a piece of system management software may have, via a language neutral command interface. This interface may also be termed, at the architecture level, a “protocol”, at the source code level “IDL” (Interface Definition Language), or, at the software component level, an “API” (Application Programming Interface) or “ABI” (Application Binary Interface). In a preferred embodiment, the command interface is defined in XML format due to its programming language neutral nature and its flexibility for dynamic binding (late binding), which allows user-defined commands (“extensions” or “command extensions”, to existing system management commands) to be seamlessly integrated into a distributed network, as described further herein. The key idea of this dynamic lazy binding mechanism is generating the client side stubs (software routines that provide a common function) for commands dynamically, at run time, by communicating with a corresponding stub portion found on the server interface, by nature of the stubs being part of the same common framework. This eliminates the need for clients to have command specific static stubs and prevents the potential complexities introduced by the mismatch between client and server such as operating system, product version, or product features differences.
  • In a preferred embodiment the object oriented language Java is employed to construct the software tool of the present invention, but in general any language may be used.
  • Turning attention now to FIG. 2, there is shown a flowchart showing the steps necessary to build the framework architecture for the system management tool of the present invention. As explained above, the goal is to provide a framework to implement a system management tool that will dynamically adapt a piece of software that is being installed on a computer within a distributed network without the programmer or the program having any prior knowledge of what components need to be turned on or present for the system management tool, except at run-time (i.e., dynamic binding). The basic idea is to package an interface definition, description and implementation, so a system management tool that conforms to this framework may allow a piece of software being installed in a system to dynamically discover (e.g., via late binding at runtime) all the available necessary components that need to be created and/or installed with the software in a distributed heterogeneous system, and/or to discover which features of the software being installed need not be installed (i.e., turned off). Generally this command is termed a “system management command” of the system management tool, which is also the generic term for all such commands. Whenever a new installable feature is introduced into software that is expanded or customized, and this new feature requires additional functionality or command options not found in an existing system management command, this new feature is termed a “extension” or “command extension” of a prior system management command. Extensions often need additional information to be provided to users, via help files, as explained further below.
  • For an example of the advantages of employing a common interface to allow dynamic binding, suppose that a developer of a piece of software having extensions (software capable of being expanded or customized) writes code so that the software can, as explained above, either have certain features or components turned on when the software is installed in a network, and/or, have the software be configured a certain way only when another software product is installed on the network. This behavior is termed a “conditional system management tool command” or “conditional extension” of a command extension. Generally the software that is so controlled by a command extension can be deemed “conditionally activated” software.
  • Thus if the conditionally activated extendible software is written to be extended within the framework as taught by the present invention, the developers of all software that share this framework can write command extensions to the software that cooperate with and conform to the framework through a common extension mechanism. With this common extension mechanism, and suitably employing abstract classes and inheritance, as necessary (e.g., using the keyword ‘interface’ and ‘extends’ in Java and ‘virtual’ in C++). any number of conditional system management extensions can be bundled with installation features to either override some base system management command behavior or extend the base command interface for additional options based on the version and features installed on the system. For example, the system management command can be a base class, and the extension commands can be an inherited class (in C++) or the system management command can be a superclass and the extension commands can be a subclass that inherits from the superclass (in Object Oriented Programming parlance), generally termed inherited classes. When the component or feature that provides the command extension is installed, the behavior of the command will automatically take the new component and feature into consideration without any user's intervention and knowledge, as the command request is rerouted to the command extension intelligently. Hence any command request message from system management command object will be routed within the network to the proper command extension to handle that object request.
  • Another scenario for conditionally activated software is that an optional component and feature may allow users to provide additional options specific to the component or feature. The present invention allows one to capture the component and features and their additional command options into command extensions, and bundles their command extensions as part of its distribution package. Therefore, these additional command options that are specific to the component or feature are only visible to the end user when the component or feature is installed on the system.
  • Since this extension mechanism is completely dynamic and flexible the same idea can be applied to across the product boundary. The only thing one needs to do is to replace the component or feature with another product. An example of this scenario is that a database product is installed on a system with the presence of a middleware application server product on the same system. The database product may extend some system management commands of the application server product so that the same command provided by the application server product can be used to configure the data access to the backend database. Assume if all the products on the same system use this extension mechanism, end users can configure their system end to end through a single familiar command interface. This would improve user experience and lower user's learning curve significantly.
  • The polymorphism of the present invention allows, at runtime, the interpreter and/or compiler, working with the operating system as necessary, to automatically invoke the proper method associated with each system management tool command and any instantiated object associated with the command, even though the same command name is used for many different versions of system management tools commands. In this way, an end user invoking a system management tool command is oblivious to the fact that there may be several different versions of the same command. In is understood that in the present invention, which is implemented by Java, when the term “compiler” or “interpreter” is used, that the term is used generically to refer to not only a Java native language machine compiler, but also a JIT (Just In Time) compiler, Java Virtual Machine interpreter, or any other Java component to convert instructions into machine code, including a hardware Java Chip, working with any necessary operating system and/or firmware of a computer.
  • Thus polymorphism in object oriented programming allows a generalized request or function to produce different results based on the object that is attached to it at any given time. Furthermore, via inheritance, each extensible command (a command that is based upon a previously designed base command) can inherit the properties of a base command it inherits from. The encapsulation afforded by polymorphism (late-binding), if a common interface is employed for all the system management software, as taught by the present invention, insures that the proper method for a particular command is called by a system management software program without the individual program having to separately query the entire network it resides in on its own, assuming the other programs are also written in this common framework. Finally, from the development side, a common framework eliminates the necessity for the programmer to write separate functions for each particular version of system management tool and then having to identify which features must be turned off when the tool is installed, or which other software tools and products must be also installed on the network when the tool is installed. The software implemented by the framework of the present invention, and the compiler/interpreter running this software by nature of polymorphic OOP, automatically takes care of proper binding at run-time (dynamic or late binding).
  • Thus, turning attention to FIG. 2, there is shown an apparatus flowchart for a component, feature or product constructing command extensions through the framework provided by the present invention. As a first step, step 200 labeled “Define Interface for Base System Mng. Cmd.” the developer of the system management tool of the present invention would define the interface of the system management tool, and in particular the interface of all the system management and task command steps and their implementation, and any dependent or inherited classes. Depending on the language used and the state and layer of the data/source code, this interface could take the form of a protocol, IDL, API, abstract class or superclass (a superclass in object technology is a high-level class that passes attributes and methods, down a hierarchy, to subclasses, the classes below it), abstract or concrete superclasses; classes with inheritance and/or any combination of the above. In a preferred embodiment the framework is for the Java language.
  • As a second step, step 202 in FIG. 2 labeled “Implement the Cmd. Extension”, the developer of the system management tool of the present invention would implement the base system management command or task command through a base class. This might be done in connection with a polymorphic class such as a virtual class, abstract class, or superclass, depending on the language. These base classes are associated with the interface to the protocol of step 200. Thus all system management commands, extensions of a system management command and all conditional extensions of system management commands have an inherited class (i.e. derived class) that may inherit from a base class associated with it.
  • From the teachings of the present invention, a component, feature or product can be allowed to provide a command extension or conditional extension to override the behavior of a base class command extension. Likewise, the base command interface can be extended by an inherited class interface. By virtue of Object Oriented Programming, the system management tool of the present invention can have command interfaces and behavior determined at run time through dynamic binding between the interface and the implementation, when the implementation(s) are instantiated.
  • In the third step, decision box 204 in FIG. 2,labeled “Declare extensions of base class?” the goal is to declare command extensions of the base system management commands have been accounted for; if so, one proceeds to step 206, as indicated by the “Yes” branch of decision box 204; if not, as indicated by the “No” branch of decision box 204, the flow continues to box 200 and the process repeats until all base classes and all extensions have been properly constructed according to the rules of the framework, so that they work within a framework allowing polymorphism as taught herein.
  • In step 206, labeled “Provide Help Info files with Extensions”, the component, feature or product that provides command extensions through the framework for the tool of the present invention would provide national language supported (NLS) help files, in the form of translatable help messages, for each additional command extension, if any additional command options are defined by the extension. Help files are useful for both the developers and users of the tool, so they may learn more about the system management command, extensions and conditional extensions via detailed descriptions of the commands.
  • In step 208, labeled “Implement the Cmd. Extensions”, the developers of the component, feature or product that provide the command extension through the framework of the tool develop the logic of the command extension following on the rules laid out by the framework.
  • In step 210, labeled “Package and Distribute Executables as part of Installable Product”, the tool of the present invention is distributed to all nodes as part of the relevant component, feature or product within the heterogeneous distributed network as a binary executable.
  • Turning attention now to FIG. 3, there is shown the program flow for the method and product of the present invention, once all software products have been constructed in accordance with the framework of FIG. 2.
  • Step 300 of FIG. 3 is to initialize the server and client nodes (in the preferred client/server architecture as described herein). As a practical matter this would be done by each computer when it boots up and becomes aware of the network to which it is connected.
  • Step 305 in FIG. 3 occurs when the system management tool is launched, and discovers all the system management command, command extensions and conditional extensions dynamically, that is, through run-time (late) dynamic binding, a feature of polymorphism. Thus these extensions are merged with the base command from which they are derived from, and made an integral part of the base command, as shown in FIG. 3, step 310. Such mapping and binding is typically done by the compiler and/or interpreter.
  • Concerning step 315 in FIG. 3, though polymorphism, it is not necessary to map what extension goes to which necessary function call in the system management tool; rather, this is done by the interpreter and/or compiler working in conjunction with the computer operating system, as a feature of polymorphism. Thus when the users of the present invention execute a system management command (or if it is executed automatically during remote or automatic installation of a program), the mechanism of the present invention will intelligently route the request of the command to the proper extension implementation in the network, as shown in step 315 of FIG. 3. This intelligent routing can happen either within a node (computer) in the network, or, outside the boundaries of a particular node (computer) in the network, and can map and route components of software that may reside on other nodes (computers) in the network.
  • Finally, assuming no exceptions that can be handled in the normal course of the program, the program ends normally as per step 320.
  • Although the present invention has been described in terms of the preferred embodiments above, numerous modifications and/or additions to the above-described preferred embodiments would be readily apparent to one skilled in the art. For example, while in the preferred embodiment the software of the present invention is directed to system management software, other types of software can also be accommodated by the present invention without departing from the teachings of the present invention. For instance, any piece of software can be made to fit inside a wrapper that can be deemed a system management tool, to both aid in the installation of the software and /or to adapt the software to change its interface and behavior based on installed features and products that reside on a network into which the software is being introduced .
  • It is intended that the scope of the present invention extends to all such modifications and/or additions and that the scope of the present invention is limited solely by the claims set forth below.

Claims (29)

1. A method of implementing, in a computer having memory, a system management application tool, said method comprising the steps of:
defining a common interface for an application framework;
implementing a plurality of system management commands;
encapsulating each of said plurality of system management commands with said common interface, said system management commands cooperating with said interface;
invoking said system management commands through said common interface of said application framework system of said management tool.
2. The method as set forth in claim 1, further comprising the steps of:
providing a plurality of computers in a distributed system to form a network;
networking said plurality of computers together, said network having at least one client and a server;
wherein each of said computers is associated with said common interface;
said system management command having a client-portion residing on said client and a server-portion residing on said server;
invoking said system management command by generating said client-portion dynamically, by allowing communication between said client-portion of said system management command and said server-portion of said system management command at run-time, by nature of said client-portion and server-portions being part of the same said framework.
3. The method as set forth in claim 2, further comprising the steps of:
implementing a command extension command to said system management command comprising a user-defined command;
providing a detailed description of said user-defined commands, said detailed description in the way of help files programmably associated with said user-defined commands.
4. The method as set forth in claim 3, further comprising the steps of:
providing said help files with national language supported help, in the form of translatable help messages.
5. The method as set forth in claim 2, further comprising the steps of:
implementing a conditional extension command to said system management command, said conditional extension command comprising a command to control predetermined software in said network so said predetermined software is conditionally activated by said conditional extension command.
6. The method as set forth in claim 1, further comprising the steps of:
constructing an system management command object to associate with said system management command;
binding said system management command object to computer memory dynamically, at run-time.
7. The method as set forth in claim 6, further comprising the steps of:
constructing said application framework in the Java language.
8. The method as set forth in claim 6, further comprising the steps of:
providing a plurality of computers in a distributed system to form a network;
networking said plurality of computers together, wherein each of said computers is associated with said common interface.
9. The method as set forth in claim 8, further comprising the steps of:
implementing a user-defined command extension to said system management command comprising a command defined by a user to an existing set of system management commands;
wherein said command extension and said system management command are in a program neutral language format comprising XML format.
10. The method as set forth in claim 8, further comprising the steps of:
implementing a conditional extension command to said system management command, said conditional extension command comprising a command to control predetermined software in said network so said predetermined software is conditionally activated by said conditional extension command;
wherein said conditional extension and said system management command are in a program neutral language format.
11. A computer readable storage medium storing software data in the form of computer code, comprising:
a common interface software module for an application framework;
a system management command software module for providing task commands to software that influence software runtime behavior and configuration properties;
said common interface software module and said system management command software module cooperating with one another and written in a Object Oriented Programming (OOP) language; and,
said common interface software module written in a programming neutral format.
12. The invention according to claim 11, wherein:
said common interface software module neutral format is XML format;
said OOP language is Java.
13. The invention according to claim 12, wherein:
said system management command software module has a client portion stub module and a server portion stub module, said client and server portions stubs constructed to be bound and associated with one another dynamically at run-time.
14. An apparatus for constructing a system management tool, for implementation in a computer, comprising:
an application development program framework for operation in a computer;
said application development program framework comprising a common interface object for said application framework; and,
a system management command object operatively connected with said common interface object of said framework.
15. The apparatus according to claim 14 wherein:
said framework constructs said objects in an object oriented programming language, said framework constructs said objects as binary executable code, and said objects are constructed to allow dynamic binding of the binary executable code at run-time.
16. The apparatus according to claim 15 wherein:
said system management command object has a base class and at least one inherited class derived from the base class.
17. The apparatus according to claim 16 wherein:
said system management command inherited class is a class for a conditional extension command to allow software to be conditionally activated through said command.
18. The apparatus according to claim 16 wherein:
said system management command inherited class is a class for a user-defined command extension, said command extension programmably associated with help files, said help files including national language support.
19. The apparatus according to claim 16 wherein:
said framework object oriented programming language is Java;
said common interface is written in a programming neutral format, and said system management command object is written in language comprising the XML format.
20. A system for implementing a system management tool in a distributed system, comprising:
a plurality of computers in a distributed system forming a network;
a common interface software module for an application framework forming a common interface for said application framework, each of said computers associated with said common interface;
a plurality of system management command software modules for implementing system management commands, said plurality of system management software modules reside in said computers in said network;
wherein said system management command software modules communicate with said common interface software module of said application framework and are encapsulated by said common interface software module of said application framework.
21. The invention according to claim 20 further comprising:
said network comprises at least one client and a server;
said system management command modules are comprised of system management command objects;
said system management command module has a client-side object residing on at least one client and a server-side object residing on said server;
said objects are constructed to allow dynamic binding of the client object when said client-side object is instantiated at run-time.
22. The invention according to claim 21, wherein:
said system management command is written in an Object Oriented Programming language;
said system management command object has a base class and at least one inherited class derived from the base class;
23. The invention according to claim 22 wherein:
said system management command inherited class is a class for a conditional extension command to allow software to be conditionally activated through said command.
24. The invention according to claim 22 wherein:
said system management command inherited class is a class for a user-defined command extension, said command extension programmably associated with help files, said help files including national language support.
25. The invention according to claim 24 wherein:
said framework object oriented programming language is Java;
said common interface is written in a programming neutral format, and said system management command object is written in language comprising the XML format.
26. The invention according to claim 22 further comprising:
a compiler for said framework;
said system management command objects having a command request message corresponding to a command request query and a command extension corresponding to the query;
said compiler routing said command request message to the command extension dynamically.
27. The invention according to claim 26 further comprising:
said system management command inherited class is a class for software to be conditionally activated through said command.
28. The invention according to claim 26 wherein:
said system management command inherited class is a class for a user-defined command extension, said command extension programmably associated with help files, said help files including national language support.
29. The invention according to claim 26 wherein:
said framework object oriented programming language is Java;
said common interface is written in a programming neutral format, and said system management command object is written in language comprising the XML format.
US11/002,699 2004-12-02 2004-12-02 Method and apparatus for a system management tool to adapt command interface and behavior based on installed features Abandoned US20060123383A1 (en)

Priority Applications (2)

Application Number Priority Date Filing Date Title
US11/002,699 US20060123383A1 (en) 2004-12-02 2004-12-02 Method and apparatus for a system management tool to adapt command interface and behavior based on installed features
US12/056,167 US8271622B2 (en) 2004-12-02 2008-03-26 Method and apparatus for a system management tool to adapt command interface and behavior based on installed features

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
US11/002,699 US20060123383A1 (en) 2004-12-02 2004-12-02 Method and apparatus for a system management tool to adapt command interface and behavior based on installed features

Related Child Applications (1)

Application Number Title Priority Date Filing Date
US12/056,167 Continuation US8271622B2 (en) 2004-12-02 2008-03-26 Method and apparatus for a system management tool to adapt command interface and behavior based on installed features

Publications (1)

Publication Number Publication Date
US20060123383A1 true US20060123383A1 (en) 2006-06-08

Family

ID=36575848

Family Applications (2)

Application Number Title Priority Date Filing Date
US11/002,699 Abandoned US20060123383A1 (en) 2004-12-02 2004-12-02 Method and apparatus for a system management tool to adapt command interface and behavior based on installed features
US12/056,167 Expired - Fee Related US8271622B2 (en) 2004-12-02 2008-03-26 Method and apparatus for a system management tool to adapt command interface and behavior based on installed features

Family Applications After (1)

Application Number Title Priority Date Filing Date
US12/056,167 Expired - Fee Related US8271622B2 (en) 2004-12-02 2008-03-26 Method and apparatus for a system management tool to adapt command interface and behavior based on installed features

Country Status (1)

Country Link
US (2) US20060123383A1 (en)

Cited By (7)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20070283368A1 (en) * 2006-06-02 2007-12-06 Hiroshi Tsuji Artifact management for an extensible runtime environment
US20090328013A1 (en) * 2008-06-27 2009-12-31 Microsoft Corporation Componentization of compiler functionality
WO2013052801A1 (en) * 2011-10-05 2013-04-11 Hartigen Solutions, Llc Integrated software development and deployment architecture and high availability client-server systems generated using the architecture
US10353364B2 (en) * 2016-05-03 2019-07-16 Schneider Electric Systems Usa, Inc. Application specific field device for process control system
US11068323B2 (en) 2013-06-05 2021-07-20 Splunk Inc. Automatic registration of empty pointers
US11210072B2 (en) * 2013-06-05 2021-12-28 Splunk Inc. System for generating a map illustrating bindings
US11726774B2 (en) 2013-06-05 2023-08-15 Splunk Inc. Application programming interface for a registry

Families Citing this family (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US7490316B2 (en) * 2004-12-02 2009-02-10 International Business Machines Corporation Method and apparatus to implement adaptive scripting tool
US7757213B2 (en) * 2005-05-18 2010-07-13 Microsoft Corporation Aggregation-based management of a distributed business process application
US8589862B2 (en) * 2008-06-02 2013-11-19 Microsoft Corporation Application loading

Citations (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US6385652B1 (en) * 1998-04-16 2002-05-07 Citibank, N.A. Customer access solutions architecture
US20050289536A1 (en) * 2004-06-23 2005-12-29 International Business Machines Coporation Automated deployment of an application

Family Cites Families (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US6667747B1 (en) * 1997-05-07 2003-12-23 Unisys Corporation Method and apparatus for providing a hyperlink within a computer program that access information outside of the computer program
US6684383B1 (en) * 1999-09-29 2004-01-27 Kabushiki Kaisha Toshiba Method for constructing enterprise system
US6922685B2 (en) * 2000-05-22 2005-07-26 Mci, Inc. Method and system for managing partitioned data resources
AU2002240429B2 (en) * 2001-02-22 2007-12-13 Accenture Global Services Limited Distributed development environment for building internet applications by developers at remote locations

Patent Citations (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US6385652B1 (en) * 1998-04-16 2002-05-07 Citibank, N.A. Customer access solutions architecture
US20050289536A1 (en) * 2004-06-23 2005-12-29 International Business Machines Coporation Automated deployment of an application

Cited By (12)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20070283368A1 (en) * 2006-06-02 2007-12-06 Hiroshi Tsuji Artifact management for an extensible runtime environment
US7844978B2 (en) * 2006-06-02 2010-11-30 International Business Machines Corporation Artifact management for an extensible runtime environment
US20090328013A1 (en) * 2008-06-27 2009-12-31 Microsoft Corporation Componentization of compiler functionality
US9170787B2 (en) 2008-06-27 2015-10-27 Microsoft Technology Licensing, Llc Componentization of compiler functionality
WO2013052801A1 (en) * 2011-10-05 2013-04-11 Hartigen Solutions, Llc Integrated software development and deployment architecture and high availability client-server systems generated using the architecture
US20140245262A1 (en) * 2011-10-05 2014-08-28 Hartigen Solutions, Llc. Integrated Software Development and Deployment Architecture and High Availability Client-Server Systems Generated Using the Architecture
US9817657B2 (en) * 2011-10-05 2017-11-14 Hartigen Solutions, Llc. Integrated software development and deployment architecture and high availability client-server systems generated using the architecture
US11068323B2 (en) 2013-06-05 2021-07-20 Splunk Inc. Automatic registration of empty pointers
US11210072B2 (en) * 2013-06-05 2021-12-28 Splunk Inc. System for generating a map illustrating bindings
US11726774B2 (en) 2013-06-05 2023-08-15 Splunk Inc. Application programming interface for a registry
US11755387B1 (en) 2013-06-05 2023-09-12 Splunk Inc. Updating code of an app feature based on a value of a query feature
US10353364B2 (en) * 2016-05-03 2019-07-16 Schneider Electric Systems Usa, Inc. Application specific field device for process control system

Also Published As

Publication number Publication date
US20080301638A1 (en) 2008-12-04
US8271622B2 (en) 2012-09-18

Similar Documents

Publication Publication Date Title
US8271622B2 (en) Method and apparatus for a system management tool to adapt command interface and behavior based on installed features
US11442746B2 (en) Dynamically loaded plugin architecture
US8359570B2 (en) Adaptive scripting tool
KR101795844B1 (en) Runtime system
US5428792A (en) System for producing language neutral objects and generating an interface between the objects and multiple computer languages
US5418964A (en) System and method for parent class shadowing in a statically linked object hierarchy
US6957228B1 (en) Object oriented apparatus and method for providing context-based class replacement in an object oriented system
US5860004A (en) Code generator for applications in distributed object systems
US7519951B2 (en) Multi-attribute dynamic link library packaging
US8863074B2 (en) Software modeling framework
JPH1185519A (en) Method and system for remotely executing object
JP2004534304A (en) System and method for a software component plug-in framework
US20040268301A1 (en) Adding new compiler methods to an integrated development environment
EP3607432B1 (en) Flow-based scoping
US6378003B1 (en) Method and system for deriving metaclasses in an object oriented system
JP2000187594A (en) Run time addition of interface
US20210055941A1 (en) Type-constrained operations for plug-in types
US7219341B2 (en) Code analysis for selective runtime data processing
US6163813A (en) Pattern for instantiating objects of unknown type in object-oriented applications
US7421715B1 (en) System and method for dynamic late-binding of persistent object implementations in software-based systems
Tilevich et al. Aspectizing server-side distribution
US7155701B1 (en) System for dynamically constructing an executable computer program
Cohen et al. Better Construction with Factories.
US20050071852A1 (en) Method and computer program product for providing a meta-data programming language level interface
CN112306539A (en) Method, system, terminal and medium for developing application layer of single chip microcomputer

Legal Events

Date Code Title Description
AS Assignment

Owner name: INTERNATIONAL BUSINESS MACHINES CORPORATION, NEW Y

Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNORS:APTE, AJAY A.;CHAN, LAVENA;CHANG, JOHN YOW-CHUN;AND OTHERS;REEL/FRAME:016010/0359;SIGNING DATES FROM 20041201 TO 20041202

STCB Information on status: application discontinuation

Free format text: EXPRESSLY ABANDONED -- DURING EXAMINATION