As one example, US2010/138825A1 by Harrop (assigned to VMware, Inc.) describes a mechanism for providing configuration files using configuration templates.
In general terms, a configuration file contains configuration information which defines how an application program will interact with various resources provided by a computer device, and defines how the runtime execution environment of this computer device needs to be adapted in order to support the application. Traditionally, the configuration file would be written in a text-based format such as ASCII. More recently, the configuration information is written in a markup language such as XML. The configuration information may be structured to follow a predetermined schema. It is desired that the configuration files should be robust and suitable even for open-ended runtime execution environments that bring together resources from many different sources and vendors. The complex nature of modern computer devices means that a large volume of configuration information is often required. The configuration information may be distributed among many different parts of the application and may be supplied in several different formats, even within the same application.
There is a desire to make operation of the computer device more efficient, in particular by reducing the workload required to deploy an application program into a runtime execution environment. Therefore, it is known to provide templates containing frequently-needed configuration information. These templates may exist in multiple versions, and from multiple sources.
When an application is deployed, two or more configuration files may be encountered having the same file name. Thus, a file name conflict may occur in relation to the intended runtime instance of the application program. In this situation, the deployment process may display a warning to the user and require manual intervention to resolve the file conflict. Usually, the user may choose only one of the configuration files in preference to any of the others. As a result, configuration information in the other, not-chosen, configuration files is typically ignored or lost.
The example embodiments have been provided with a view to addressing at least some of the difficulties that are encountered in current computer devices, whether those difficulties have been specifically mentioned above or will otherwise be appreciated by the person of ordinary skill in the art from the discussion herein. At least in some of the following example embodiments, it is desired to provide an improved mechanism for providing configuration files of an application program in a computer device.
According to the present invention there is provided a computer device, a method and a computer-readable storage medium as set forth in the appended claims. Other, optional, features of the invention will be apparent from the dependent claims, and the description which follows.
At least some of the following example embodiments provide an improved mechanism for providing configuration files in a computer device. There now follows a summary of various aspects and advantages according to embodiments of the invention. This summary is provided as an introduction to assist those skilled in the art to more rapidly assimilate the detailed discussion herein and does not and is not intended in any way to limit the scope of the claims that are appended hereto.
In one aspect, a computer device comprises a deployment unit which deploys an application program into a runtime execution environment based on configuration information from a plurality of configuration files. The configuration files include at least one base configuration file and one or more supplementary configuration files. A merge unit uses the one or more supplementary configuration files to modify configuration information provided in the base configuration file.
In one aspect, a method of providing configuration files in a computer device includes modifying configuration information provided in a base configuration file using one or more supplementary configuration files to provide a merged configuration file, and deploying an application program into a runtime execution environment based on configuration information from the merged configuration file.
In one aspect, a tangible non-transient computer-readable storage medium is provided having recorded thereon instructions which, when implemented by a computer device, cause the computer device to be arranged as set forth herein and/or which cause the computer device to perform the method as set forth herein.
For a better understanding of the invention, and to show how example embodiments may be carried into effect, reference will now be made to the accompanying drawings in which:
The following example embodiments will be discussed in detail in relation to an execution environment which includes a Java Virtual Machine (JVM) and a web application server such as Apache Tomcat or VMware vFabric™ tc Server™. However, the teachings, principles and techniques herein are also applicable in other example embodiments, such as other virtual machine environments and other application platforms.
The application program 100 may be provided using object-oriented programming languages, such as the popular Java language. Java relies upon a virtual machine which converts universal Java bytecode into binary instructions in the instruction set of the host computer device 200. More recently, Java 2 Standard Edition (J2SE) and Java 2 Enterprise Edition (JEE or J2EE) have been developed to support a very broad range of applications from the smallest portable applets through to large-scale multilayer server applications such as complex controls for processes, manufacturing, production, logistics, and other industrial and commercial applications.
In the example embodiment, the application program 100 is a web server application layer which supports web applications to provide services to clients, locally or remotely, across a network, as shown in
As shown in
As one example, each of the configuration files 120 is written in a markup language, such as XML, and may be formatted according to a predetermined schema. The complex nature of modern computer devices means that a large amount of configuration information may be required. Also, the configuration information may be highly complex.
A file conflict may occur where two configuration files 120 having the same file name are encountered in relation to a runtime instance of the application program 100. As an example,
As also shown in
Typically, the configuration information is tailored specifically to the requirements of the application 100 and is bespoke for each application. The configuration information is often written laboriously by hand or is cut-and-pasted from previous applications and then carefully modified for this new application. Both methods are expensive and time-consuming. As a result, many difficulties arise when creating the configuration information. For example, it takes a lot of time and effort to produce the configuration information and this effort is often duplicated many times when creating new applications. Also, it is difficult for a large team of programmers to coordinate their efforts and produce coherent and accurate configuration information that applies correctly and consistently across many different parts of the application 100. Further, it is difficult to later change the configuration information, such as when the application 100 evolves and is deployed to alternate or improved versions of the runtime environment 203.
In one aspect, the configuration files 120 are arranged in a plurality of directories 125. In one example, each template 130 may be provided as a directory 125 containing one or more configuration files 120. A library 150 may be provided comprising a plurality of the templates 130. The developer or user may then select a group of one or more templates 130 from the library 150, relevant to the resources of interest. Further, it may be desired to employ the same template 130 multiple times in relation to the same runtime instance of the application program 100. For example, one of the templates 130 may be provided with configuration information for a connector such as a http: protocol connector, and the same template may also be used, with minor modifications, for a https: secure connector. Repeated use of the same template 130 again raises the issue of a file name conflict.
In the example embodiment shown in
As one example, the base configuration files 120 include one or more of the files:
In which case, the respective supplementary configuration files 123 are provided as:
In this example, the supplementary configuration files 123 conveniently have a file name with a first portion carrying the same name as their respective base configuration file 122, together with a modifier or identifier portion, such as “-fragment”. This naming convention allows ready identification of the supplementary configuration files 123, and clearly establishes an association of the supplementary configuration files 123 with their respective base configuration file 120. The supplementary files 123 contribute to and modify the configuration information in the base configuration file 122 of the same name.
In one aspect, each of the supplementary configuration files 123 contains a markup language fragment (e.g. XML fragment) that describes configuration information that is to be modified (e.g. added, removed, or updated) in the respective base configuration file 122. The fragment describes its contributions using keywords, or tags. The keywords are readily identified and parsed, e.g. by the merge unit 220.
The fragment further comprises a location element which identifies a location within the configuration information which is to be modified. In the example embodiment, XML elements are defined to describe a single XML element that the contributions should act upon. The XML elements that exist can be thought of as a direct example of an XPath expression. For example, the XPath expression //Server/Service[@name=“Catalina”] may be represented as follows.
A more complex example of the XPath expression //Server/Service[@name=“Catalina”]/Engine[@name=“Catalina” and @defaultHost=“localhost”] is represented as follows.
Once an element has been specified using the location information, the relevant add, update and/or delete contributions can then be specified. In the example embodiments, an “update:” keyword is used only on attributes, while the “add:” and “remove:” keywords may be used on both elements and attributes. In the following example, these contributions are updates and additions of attributes:
Conveniently, when adding an element, once the element has been marked with the “add:” keyword, it is unnecessary to also mark the attributes of the new element. An example of adding an element without marking its attributes follows.
In the example embodiments, it is unnecessary to mark any sub-elements with the keyword “add:” when the parent element is marked. An example adding an element with sub-elements without marking its sub-elements follows.
In the example embodiments, as shown in
The library 150 shown in
In one example, the base configuration file 122 may be provided initially without any configuration information contained therein, and the one or more supplementary configuration files 123 may add configuration information into the base configuration file 122 and may then further update, or remove, that configuration information as appropriate. Thus, the supplementary configuration files 123 make contributions to the configuration information and are combined into the base configuration file 122. The application program 100 may be supplied to the host computer 200 only with a set of one or more of the supplementary configuration files 123. In which case, the merge unit 220 may begin by creating the respective base configuration file 122, which may initially be an empty file, and then use the supplied supplementary configuration files 123 to modify the configuration information as contained in the base configuration file 122.
As an example, a supplementary configuration file 123 named “server-fragment.xml” is supplied as follows:
In this example, the root <Server> element is annotated with the “add:” keyword, indicating that the fragment expects to add a new root element to the respective base configuration file, here called “server.xml”. An XML document can only have a single root element, which brings the ordering requirement that this particular supplementary configuration file 123 should be applied first. Other supplementary configuration file 123 may then modify the root element or append further elements to the now-defined root element.
As described herein, file name conflicts between configuration files can be reduced, or avoided, by defining a base configuration file and applying contributions and modifications as defined in one or more supplementary configuration files. These configuration files may be merged together automatically. There may be minimal user intervention at the point in time when the configuration files are merged. The described mechanism is powerful and flexible, and can be adapted to a wide range of specific needs. Adopting supplementary configuration files in the same markup language as the base configuration files is simple and convenient. The contributions made by the supplementary configuration files are defined with minimal additional overhead or additional metadata.
At least some embodiments of the invention may be constructed, partially or wholly, using dedicated special-purpose hardware. Terms such as ‘component’, ‘module’ or ‘unit’ used herein may include, but are not limited to, a hardware device, such as a Field Programmable Gate Array (FPGA) or Application Specific Integrated Circuit (ASIC), which performs certain tasks. Alternatively, elements of the invention may be configured to reside on an addressable storage medium and be configured to execute on one or more processors. Thus, functional elements of the invention may in some embodiments include, by way of example, components, such as software components, object-oriented software components, class components and task components, processes, functions, attributes, procedures, subroutines, segments of program code, drivers, firmware, microcode, circuitry, data, databases, data structures, tables, arrays, and variables. Further, although the example embodiments have been described with reference to the components, modules and units discussed herein, such functional elements may be combined into fewer elements or separated into additional elements.
In summary, the example embodiments have described an improved mechanism for providing configuration files within a computer device The industrial application of the example embodiments will be clear from the discussion herein.
Although a few example embodiments have been shown and described, it will be appreciated by those skilled in the art that various changes and modifications might be made without departing from the scope of the invention, as defined in the appended claims.
This application claims the benefit of U.S. Provisional Patent Application 61/556,923 filed on Nov. 8, 2011 and entitled “Computer Device and Method of Providing Configuration Files in a Computer Device,” which is hereby incorporated by reference.
Number | Name | Date | Kind |
---|---|---|---|
6871221 | Styles | Mar 2005 | B1 |
20020059348 | Lee et al. | May 2002 | A1 |
20020178239 | Kinyon et al. | Nov 2002 | A1 |
20030140333 | Odaka et al. | Jul 2003 | A1 |
20050091348 | Ferri et al. | Apr 2005 | A1 |
20100042639 | Grinshpun et al. | Feb 2010 | A1 |
20100138825 | Harrop | Jun 2010 | A1 |
Entry |
---|
Vincent Santaguida, “Folder and File Naming Convention—10 Rules for Best Practice”, MultiCIM Technologies, Jan. 2010. |
Number | Date | Country | |
---|---|---|---|
20130117424 A1 | May 2013 | US |
Number | Date | Country | |
---|---|---|---|
61556923 | Nov 2011 | US |