A dynamic nature is added to configuration files so that various types of dynamic functions can be performed within them. variables are utilized within the configuration files. Thus, it is possible to have parameters specified in one configuration file and a formula to which the parameters will be applied in another configuration file. This allows changing of the values in the parameter file without having to modify the formula file, thereby streamlining the modification process when changes need to be made. In addition, it provides the capability for cross-referencing between configuration properties by allowing for variables in properties that refer to other properties.
|
1. A system of returning dynamic results from the processing of a configuration file by a processor, said processor including a memory, comprising:
means for loading into memory a configuration file comprising configuration properties having one or more variables;
means for resolving the variables of the configuration properties; and
means for replacing each variable with the results of its respective resolving step;
wherein said means for resolving includes, for each configuration property:
means for detecting each variable in said configuration property;
means for resolving any recursive variables in said configuration property before resolving a primary variable in said configuration property; and
means for resolving said primary variable; and
wherein said means for resolving executes when an external program attempts to access any configuration properties containing variables.
8. A computer program product for returning dynamic results from the processing of a configuration file by a processor, said processor including a memory, the computer program product comprising a computer-readable storage medium having computer-readable program code embodied in the medium, the computer-readable program code comprising:
computer-readable program code that loads into memory a configuration file comprising configuration properties having one or more variables;
computer-readable program code that resolves the variables of the configuration properties; and
computer-readable program code that replaces each variable with the results of its respective resolving step;
wherein said computer-readable program code that resolves the variable of the configuration property includes, for each configuration property:
computer-readable program code that detects each variable in said configuration property;
computer-readable program code that resolves any recursive variables in said configuration property before resolving a primary variable in said configuration property; and
computer-readable program code that resolves said primary variable;
wherein said computer-readable program code that resolves the variable of the configuration property is executed when an external program attempts to access any configuration properties containing variables.
2. The system of
3. The system of
7. The system of
9. The computer program product of
10. The computer program product of
11. The computer program product of
12. The computer program product of
13. The computer program product of
|
This is a continuation of U.S. application Ser. No. 11/022,718, filed Dec. 27, 2004, the entire contents of which are hereby incorporated by reference.
1. Field of the Invention
This invention relates to data processing systems, methods, and computer program products, and more particularly to configuration files for data processing systems, methods, and computer program products.
2. Description of the Related Art
A given data processing system may be configured in many ways. Some of the configuration options are set by varying the hardware (e.g., number and capacity of disk drives). Other configuration parameters are set within configuration files stored by the computer.
Software programs typically use configuration files of one kind or another to define customizable properties. One very common configuration file format, used by “INI” files on the Windows operating system, divides configuration properties into sections, as follows:
property1=value1
[section2]
property1=value1
property2=value2
Configuration files are typically used because they can be edited using a simple text editor, thereby enabling end-users to easily make changes to them. Therefore, their use has become pervasive in application development. Some examples of properties that are often stored in configuration files include user-interface related information, such as colors, font types, font sizes, etc.; prerequisite software locations, versions, and related information; and debug settings.
Typical configuration files are static in nature (i.e. properties are only simple textual strings that contain no variables). This static nature of configuration files renders their use sub-optimal in some circumstances. When defining locale-specific values, multiple configuration files need to be created when a particular property needs to vary from one locale to the next. For example, situations arise when it is desired to define different font-types or font-sizes depending on the locale (e.g., a Japanese-language font versus an English-language font). Using typical configuration files in multi-language development, this could be accomplished by creating separate configuration files for each locale, or having the end-user manually update these fields to match the settings for the desired locale. Either process (separate configuration files or manual updating) are tedious and time-consuming.
Another situation where the static nature of configuration files is not adequate occurs when a property in one configuration file needs to reference a second property in the same or different configuration file. For example, many applications define properties for directories used by an application (e.g. where to put log files, where to find libraries, etc.). Often these directories are located inside the ‘install’ directory by default, but are exposed to the end-user so that these directories can be modified at a later date. Using typical configuration files, each of these dependent properties have to be defined separately, as follows:
[Paths]
installDir=C:\Program Files\My Product
logDir=C:\Program Files\My Product\logs
libDir=C:\Program Files\My Product\lib
Unfortunately, if the install location changes (e.g., if the install directory changes from “My Product” to “Their Product”), each property containing the install location (e.g., “logs” and “lib” in the above example) must also be updated. This can be particularly tedious if these dependent properties are scattered throughout the configuration file, or even defined in different configuration files.
Accordingly, it would be desirable to have the ability to include dynamic elements in configuration files and then resolve the variables when the configuration files are run.
The present invention adds a dynamic nature to configuration files so that various types of dynamic functions can be performed within them. Variables are utilized within the configuration files. Using the present invention, it is possible to have parameters specified in one configuration file and a formula to which the parameters will be applied in another configuration file. This allows changing of the values in the parameter file without having to modify the formula file, thereby streamlining the modification process when changes need to be made. In addition, it provides the capability for cross-referencing between configuration properties by allowing for variables in properties that refer to other properties.
Configuration files are accessed through “keys” of the format “config.section.name” that identify the configuration file name (without the *.cfg extension), section name in the file, and property name in the section, respectively. Either all configuration files can be located in the same directory, or else a “path” can be defined that specifies all directories containing all configuration files.
At step 106, the configuration file is loaded into memory. This consists of reading all properties in the configuration file and storing them in memory. At step 108, the property value associated with the key is retrieved from memory. At step 110, the property value is checked to see if it has a variable in it by looking for the string pattern ‘$x{y}’, where x consists of one or more letters, and y consists of a string with zero or more recursively nested variables. At step 112, the variable is extracted from the property string. If the ‘y’ portion of the variable contains recursively nested variables, then these are recursively resolved until the ‘y’ portion of the variable contains no variables. Then a variable-resolver (described in more detail below) associated with the string ‘x’ is used to resolve the value of the variable as plain text. This plain text value is then reinserted into the original property string, overwriting the previous variable. This process is repeated until all variables in the property are resolved to plain text.
At step 114, the resulting plain-text property and returned to the external program. Optionally, the resolved property value can be stored in memory in place of the previous value in memory so that subsequent property retrievals do not have to re-resolve the variables.
The variable-resolver is a construct that accepts input text, and returns output text relevant to the input text passed in. In the Java™ programming language, this can be accomplished by implementing classes of the following interface:
public interface Var {
public String resolve(String arg);
}
Each variable type defined in a configuration file must have
an associated variables resolver (e.g.
$C{y}CVar, $L{y}LVar, etc.).
The following variables have been defined that implement the dynamic nature in the configuration files.
$C{Config.Section.Name}—Implements the cross-referencing capabilities between configuration properties. The value of ‘Config.Section.Name’ is passed to the process defined in
$L{ResourceBundleProperty}—Implements internationalization support. The value of ‘ResourceBundleProperty’ refers to a property defined in a Java™ resource bundle.
$MB {expression}—Implements Boolean math support. The value of ‘expression’ is a Boolean mathematical expression, and the $MB variable resolves to the strings ‘true’ or ‘false’. Example: $MB {(1>2.parallel.3<4) & false} ‘false’
$MI{expression}—Implements integer math support. The value of ‘expression’ is a mathematical expression, and the $MI variable solves that expression and returns the resulting integer as a string. Example: $MI{1+2*3} ‘7’
$MF{expression}—Implement float math support. The value of ‘expression’ is a mathematical expression, and the $MF variables solves that expression and returns the resulting float values as a string. Example: $MF{3/(1+1)} ‘1.5’
The flow of the process described in
The flow of ConfigMgr.resolve(X) is as follows:
1. Looks for existence of first $_{ } variable. If none exist, returns X.
2. Get contents of body of variable (i.e. $C {<body of variable>}) and puts it in BODY.
3. Calls BODY=ConfigMgr.resolve(BODY) to recursively resolve any internal variables.
4. Depending on the variable . . .
If ($C) {
calls CVar.resolve(BODY), and replaces $C variable in X
with the results.
} else if ($L) {
calls LVar.resolve(BODY), and replaces $L variable in X
with the results.
} else if ($MB) {
calls MBVar.resolve(BODY), and replaces $MB variable in
X with the results.
} else if ($MI) {
calls MIVar.resolve(BODY), and replaces $MI variable in
X with the results.
} else if ($MF) {
calls MFVar.resolve(BODY), and replaces $MF variable in
X with the results.
}
5. Go to step 1.
Passwords can also be stored, using the present invention, in dynamic configuration files thereby resulting in a reduced security risk. Using the present invention for password encoding functions as follows. If a “*” is added to the end of a property name in a configuration file, the value becomes encoded the first time the file is encountered through the ConfigMgr utility. Thus, if a file appears as follows:
[database]
username=me
password*=mypassword
then the first time the file is loaded by the process, the value is immediately encoded and the configuration file is updated, as follows:
[database]
username=me
password*={xor}OS1sdjE7MyY=
The characters that follow the “{xor}” represent the encoded string representing the password. Encoding is a two-way process. If the algorithm used to encode the value is known, then it can also be decoded to get the original value. Therefore, if an encoded value is read from a configuration file, the original value can be determined.
The process proceeds as follows. First, an asterisk is added to the end of the property name of the property to be encoded. Next, when the file gets loaded into memory (see step 106 in
The above-described steps can be implemented using standard well-known programming techniques. The novelty of the above-described embodiment lies not in the specific programming techniques but in the use of the steps described to achieve the described results. Software programming code which embodies the present invention is typically stored in permanent storage of some type, such as permanent storage of a computer system. In a client/server environment, such software programming code may be stored with storage associated with a server. The software programming code may be embodied on any of a variety of known media for use with a data processing system, such as a diskette, or hard drive, or CD-ROM. The code may be distributed on such media, or may be distributed to users from the memory or storage of one computer system over a network of some type to other computer systems for use by users of such other systems. The techniques and methods for embodying software program code on physical media and/or distributing software code via networks are well known and will not be further discussed herein.
It will be understood that each element of the illustrations, and combinations of elements in the illustrations, can be implemented by general and/or special purpose hardware-based systems that perform the specified functions or steps, or by combinations of general and/or special-purpose hardware and computer instructions.
These program instructions may be provided to a processor to produce a machine, such that the instructions that execute on the processor create means for implementing the functions specified in the illustrations. The computer program instructions may be executed by a processor to cause a series of operational steps to be performed by the processor to produce a computer-implemented process such that the instructions that execute on the processor provide steps for implementing the functions specified in the illustrations. Accordingly, the figures support combinations of means for performing the specified functions, combinations of steps for performing the specified functions, and program instruction means for performing the specified functions.
Although the present invention has been described with respect to a specific preferred embodiment thereof, various changes and modifications may be suggested to one skilled in the art and it is intended that the present invention encompass such changes and modifications as fall within the scope of the appended claims.
Patent | Priority | Assignee | Title |
11164403, | May 06 2019 | Argo AI, LLC | Method and system for real-time diagnostics and fault monitoring in a robotic system |
11209817, | May 06 2019 | Argo AI, LLC | Method and system for real-time diagnostics and fault monitoring in a robotic system |
9378472, | Dec 22 2008 | Adobe Inc | Systems and methods for enabling and configuring tracking of user interactions on computer applications |
Patent | Priority | Assignee | Title |
5247683, | Jun 28 1990 | Lenovo PC International | System and method for installing software and updating configuration files |
6151605, | May 29 1998 | HEWLETT-PACKARD DEVELOPMENT COMPANY, L P | Generic configuration file processing library and executable |
7031972, | Jul 21 2003 | Qualcomm Incorporated | Algorithms for block-level code alignment of software binary files |
7155708, | Oct 31 2002 | FG SRC LLC | Debugging and performance profiling using control-dataflow graph representations with reconfigurable hardware emulation |
20020178233, | |||
20050198652, | |||
JP2002222104, | |||
JP4242858, | |||
JP9185495, |
Executed on | Assignor | Assignee | Conveyance | Frame | Reel | Doc |
Jul 02 2008 | International Business Machines Corporation | (assignment on the face of the patent) | / |
Date | Maintenance Fee Events |
May 15 2015 | REM: Maintenance Fee Reminder Mailed. |
Oct 04 2015 | EXP: Patent Expired for Failure to Pay Maintenance Fees. |
Date | Maintenance Schedule |
Oct 04 2014 | 4 years fee payment window open |
Apr 04 2015 | 6 months grace period start (w surcharge) |
Oct 04 2015 | patent expiry (for year 4) |
Oct 04 2017 | 2 years to revive unintentionally abandoned end. (for year 4) |
Oct 04 2018 | 8 years fee payment window open |
Apr 04 2019 | 6 months grace period start (w surcharge) |
Oct 04 2019 | patent expiry (for year 8) |
Oct 04 2021 | 2 years to revive unintentionally abandoned end. (for year 8) |
Oct 04 2022 | 12 years fee payment window open |
Apr 04 2023 | 6 months grace period start (w surcharge) |
Oct 04 2023 | patent expiry (for year 12) |
Oct 04 2025 | 2 years to revive unintentionally abandoned end. (for year 12) |