Table of Contents
Generator Configuration File
Overview
The configuration file that drives the generator adheres to the JSON specification. It has the following general structure:
{ "jobs" : { "job1" : { ... }, "job2" : { ... }, ... "jobN" : { ... } } }
The job names job1, …, jobN are freely chooseable but must form a valid key. JavaScript-style comments (/*…*/ and //…) are permissible but only in rather robust places, like after a comma or directly after opening or before closing parentheses, but e.g. not between a key and its value.
Quick links:
Example
Here is an example of a minimal config file that defines a single job to create the source version of an application:
{ "jobs" : { "source" : { "let" : { "QOOXDOO_PATH" : "../..", "APPLICATION" : "custom" ], "library" : [ { "manifest" : "${QOOXDOO_PATH}/framework/Manifest.json" }, { "manifest" : "./Manifest.json" } ], "compile-source" : { "paths" : { "file" : "./source/script/${APPLICATION}.js" } }, "require" : { "qx.log.Logger" : ["qx.log.appender.Native"] }, "settings" : { "qx.application" : "${APPLICATION}.Application" }, "cache" : { "compile" : { "path" : "../../cache2" } } } } }
Syntax
Apart from the general Json rules, you can place '=' in front of job and key names, to indicate that this feature should prevail as specified when configs get merged. See here for more details on that. The config system also allows the use of macros, details of which can be found here.
Valid Job Keys
The value of each job is a map where the keys are not freely chooseable, but are predefined.
Keys can be grouped into several categories:
structure-changing- Keys that influence the configuration itself, e.g. the contents or structure of jobs, the job queue, or the config file as a whole (e.g. extend, include (top-level), run).actions- Keys that if present trigger a certain action in the generator, which usually results in some output (e.g. compile-source, api, localize).input/output-setting- Keys that specify input (e.g. classes or ranges of classes to deal with) and output (e.g. packaging, variants) options (e.g. library, require, include).runtime-settings- Keys pertaining to the working needs of the generator (e.g. cache).miscellaneous- Keys that don't fall in any of the other categories (e.g. desc).
First, here is an overview table, to list all possible keys in a job (unless otherwise noted). Below that you'll find a structured listing of all possible configuration keys in their respective context, with links to further information for each key.
| Action Keys | Description |
|---|---|
| api | Triggers the generation of a custom Apiviewer application. |
| clean-files | Delete files and directories from the file system. |
| combine-images | Triggers creation of a combined image file that contains various images. |
| compile-dist | Triggers the generation of the build version of the app. |
| compile-source | Triggers generation of the source version of the app. |
| copy-files | Triggers files/directories to be copied. |
| copy-resources | Triggers the copying of resources. |
| debug (until 0.8.2) | Analyse specific application aspects through log output. |
| fix-files | Fix white space in source files. |
| lint-check | Check source code with a lint-like utility. |
| migrate-files | Migrate source code to the current qooxdoo version. |
| pretty-print | Format source files. |
| shell | Triggers the execution of an external command. |
| slice-images | Triggers cutting images into regions. |
| translate | Triggers updating of .po files. |
| Structure-changing Keys | Description |
|---|---|
| export | List of jobs to be exported to other config files. |
| extend | Extend the current job with other jobs. |
| include (top-level) | Include external config files. |
| let | Define macros. |
| let (top-level) | Define default macros. |
| run | Define a list of jobs to run. |
| Input/Output-setting Keys | Description |
|---|---|
| asset-let (since 0.8.1) | Defines macros that will be replaced in #asset hints. |
| dependencies (since 0.8.3) | Fine-tune dependency processing. |
| exclude | Exclude classes from processing of the job. |
| include | Include classes to be processed in the job. |
| library | Define libraries to be taken into account for this job. |
| packages | Define packages for this app. |
| require | Define prerequisite classes (load time). |
| settings | Define qooxdoo settings. |
| themes (until 0.8) | Defines macros that will be replaced in #asset hints. |
| use | Define prerequisite classes (run time). |
| variants | Define variants for the curren app. |
| Runtime-setting Keys | Description |
|---|---|
| cache | Define the path to the cache directory. |
| log | Tailor log output options. |
| Miscellaneous Keys | Description |
|---|---|
| desc | A descriptive string for the job. |
Listing of Keys in Context
This shows the complete possible contents of the top-level configuration map. Further information is linked from the respective keys.
- include
Include external config files. Takes a list of maps, where each map specifies an external configuration file, and options how to include it. (See special section on the include key)
- let
Define default macros. Takes a map (see the description of the job-level 'let' further down). This let map is included automatically into every job run. There is no explicit reference to it, so be aware of side effects.
- export
List of jobs to be exported if this config file is included by another.
- jobs
Map of jobs. Each key is the name of a job.- <jobname>
Each job's value is a map describing the job. The describing map can have any number of the following keys:- api
Triggers the generation of a custom Apiviewer application. - asset-let
Defines macros that will be replaced in #asset hints in source files. (See special section on the "asset-let" key). (since 0.8.1) - clean-files
Triggers clean-up of files and directories within a project and the framework, e.g. deletion of generated files, cache contents, etc. - combine-images
Triggers creation of a combined image file that contains various images. - compile-dist
Triggers the generation of the build version of the application. - compile-source
Triggers generation of the source version of the application. - copy-files
Triggers files/directories to be copied, usually between source and build version. - copy-resources
Triggers the copying of resources, usually between source and build version. - debug
Analyse application aspects and log results. (until 0.8.2) - dependencies
Fine-tune the processing of class dependencies. (since 0.8.3) - desc
A string describing the job. - exclude
List classes to be excluded from the job. Takes an array of class specifiers. - extend
Extend the current job with other jobs. Takes an array of job names. The information of these jobs are merged into the current job description, so the current job sort of "inherits" their settings. (See the special section on "extend" semantics). - fix-files
Fix white space in source files. - include
List classes to be processed in the job. Takes an array of class specifiers. - library
Define libraries to be taken into account for this job. Takes an array of maps, each map specifying one library to consider. The most important part therein is the "manifest" specification. (See special section on Manifest files). - lint-check
Check source code with a lint-like utility. - log
Tailor log output of job. - migrate-files
Migrate source code to the current qooxdoo version. - pretty-print
Triggers code beautification of source class files (in-place-editing). An empty map value triggers default formatting, but further keys can tailor the output. - require
Define prerequisite classes needed at load time. Takes a map, where the keys are class names and the values lists of prerequisite classes. - run
Define a list of jobs to run in place of the current job. (See the special section on "run" semantics). - settings
Define qooxdoo settings for the generated application. - shell
Triggers the execution of an external command. - slice-images
Triggers cutting images into regions. - themes
Defines theme keys that will be replaced in #asset hints in source files. (See special section on the "themes" key). (until 0.8) - translate
(Re-)generate .po files from source classes. - use
Define prerequisite classes needed at run time. Takes a map, where the keys are class names and the values lists of prerequisite classes. - variants
Define variants for the generated application.
