1. Technical Field
Embodiments of the invention relate to the field of user interfaces, and more specifically to a scriptable command line interface.
2. Background Information and Description of Related Art
A typical command line interface (CLI) execution model begins with a user entering a command in a shell. The command is parsed by a CLI engine. One or more applications may then be invoked by the command. The invoked application will process the command and generate and format any data for output. This output is then displayed to the user. If a new format for the output is desired, a change to the application software code can be made, but the application software code must be then be recompiled. Therefore, the operation of the electronic computing device, such as a network device, must be interrupted for a period of time for even a minor change to the application software code, potentially causing much inconvenience to users and making it impractical to change output format.
The invention may best be understood by referring to the following description and accompanying drawings that are used to illustrate embodiments of the invention. In the drawings:
Embodiments of a system and method for a scriptable command line interface are described. A script is written and associated with each command. When an input is received at a command line interface, the input is parsed to identify a command and any associated parameters. The script associated with the command is invoked, and parameters associated with the command are sent to an application to configure the application in accordance with the script. The application is executed and data is generated. The script receives the data from the application and formats the data for output.
Referring to
System 100 includes a shell 104 to receive commands input from a user and a command line interface 102 to parse the commands received from the shell. The command line interface 102 may invoke one or more applications, such as 110, 112, or 114, in response to the received commands.
The command line interface 102 includes a list of commands 106 and a plurality of scripts 108. Each script is associated with a command and is invoked when the associated command is received by the command line interface. The scripts 108 may be written in various scripting languages, such as TCL (Tool Command Language), PERL (Practical Extraction and Report Language), Python, Bourne Shell, or C Shell. In one embodiment, the scripts are written by a user. In response to a command entered in the shell, the script associated with the command sends parameters as input to an application. The parameters may include arguments entered by a user in the command line in conjunction with entering the command. The parameters may include other data used to configure the application according to user preference. In one embodiment, the parameters sent by the script as input to the application are encoded in XML (Extensible Markup Language).
The application receives the input from the script and processes the command and associated parameters. Data is then generated by the application. This data is typically encoded according to a scheme understood by the command line interface or the shell. For example, a binary or proprietary encoding scheme may be used to encode the data generated by the application. In one embodiment, XML is used to encode the data generated by the application. The script associated with the command receives the encoded data from the application and formats the data for output.
The script may be modified at any time to change the way the data received from the application is formatted for output. The script may also be modified to change the parameters sent to the application. By changing the scripts, it is unnecessary to edit and recompile the application for changes to output format.
As an example, suppose that a route manager application accepts and executes a command as follows:
show iproute <ip_address> <netmask> <gateway> <metric>
An example of a script written in TCL for the command above is as follows:
# Get command line arguments.
array set args $argv
# Build the XML configuration data.
set configuration \
# Send the configuration data to application and receive reply.
set reply [getbulk $configuration 1]
# Parse XML reply and format display.
buildarray $reply-simple
if [string compare $xmlData(reply.status) “SUCCESS”] {
} else {
}
The getbulk, buildarray, and show commands are extended TCL commands that send parameters to the application to configure the application, receive data from the application, parse the received data, and display the output to a user.
As will be appreciated by those skilled in the art, a system incorporating an embodiment of the invention may be implemented in software, firmware, or hardware. The content for implementing an embodiment of the method of the invention, for example, computer program instructions, may be provided by any machine-readable media which can store data that is accessible by system 100, as part of or in addition to memory, including but not limited to cartridges, magnetic cassettes, flash memory cards, digital video disks, random access memories (RAMs), read-only memories (ROMs), and the like. In this regard, the system 100 is equipped to communicate with such machine-readable media in a manner well-known in the art.
It will be further appreciated by those skilled in the art that the content for implementing an embodiment of the method of the invention may be provided to the system 100 from any external device capable of storing the content and communicating the content to the system 100. For example, in one embodiment of the invention, the system 100 may be connected to a network, and the content may be stored on any device in the network.
In this description, numerous specific details have set forth. However, it is understood that embodiments of the invention may be practiced without these specific details. In other instances, well-known circuits, structures and techniques have not been shown in detail in order not to obscure the understanding of this description.
Reference throughout this specification to “one embodiment” or “an embodiment” means that a particular feature, structure, or characteristic described in connection with the embodiment is included in at least one embodiment of the invention. Thus, the appearances of the phrases “in one embodiment” or “in an embodiment” in various places throughout this specification are not necessarily all referring to the same embodiment. Furthermore, the particular features, structures, or characteristics may be combined in any suitable manner in one or more embodiments.
While the invention has been described in terms of several embodiments, those of ordinary skill in the art will recognize that the invention is not limited to the embodiments described, but can be practiced with modification and alteration within the spirit and scope of the appended claims. The description is thus to be regarded as illustrative instead of limiting.
Number | Name | Date | Kind |
---|---|---|---|
5991814 | Rzonca et al. | Nov 1999 | A |
6091412 | Simonoff et al. | Jul 2000 | A |
6668368 | Hernandez, III | Dec 2003 | B1 |
6684241 | Sandick et al. | Jan 2004 | B1 |
6907572 | Little et al. | Jun 2005 | B2 |
7111206 | Shafer et al. | Sep 2006 | B1 |
20020147972 | Olmeda et al. | Oct 2002 | A1 |
20020191619 | Shafer | Dec 2002 | A1 |
20030046370 | Courtney | Mar 2003 | A1 |
20030051008 | Gorthy et al. | Mar 2003 | A1 |
20030115304 | Murray et al. | Jun 2003 | A1 |
20030163570 | Hendley et al. | Aug 2003 | A1 |
20030167445 | Su et al. | Sep 2003 | A1 |
20040078374 | Hamilton | Apr 2004 | A1 |
20040103407 | Blaukopf et al. | May 2004 | A1 |
20040216138 | Pankovcin et al. | Oct 2004 | A1 |