Generating applications
The main use case for ModuleStudio application models is the creation of Zikula extensions. This section describes how the generator works.
Basic idea
Every application consists of different types of code parts. While some code is unique for each application, most parts can be derived from that and is therefore very similar for a whole software systems family. Those code parts are known as boilerplate code.
A very simple example will make this clear very quickly:
|
|
This code has obviously not very much knowledge which is essential for this certain application. Reduced to what is really required from a functional view one would get something like:
entity person {
string firstName
string lastName
}
Thought a little further the generator helps reaching a constantly high code quality, as all implementation details are always considered completely. For example if a new extension is activated for an entity this is not forgotten anywhere inside the code.
How it works
Calling the generator within ModuleStudio is very easy. The only requirement is that you have an opened project and your application model does not contain any validation errors.
If there are no validation errors, choose the menu entry File > Generate application to call the generator. If the model contains unsaved changes or errors, error messages appear accordingly. If there are still warnings a dialog asks if these should be ignored. Once past any errors or warnings, you need to choose an output directory. Since the generator deletes everything in the specified directory, ensure to create a new empty folder. If you would choose a folder that was not empty, a dialog with a corresponding warning appears to allow you to confirm the selection. Afterwards click on OK to start the process. A progress dialog shows what the generator is currently creating. Finally a message notification shows that the generation is complete.
The generation workflow
The rough steps of the generator workflow are as follows:
- Ask for input parameters (in particular the desired output folder).
- Empty output directory.
- Export dumps of editor diagrams.
- Read input model.
- Perform validation.
- Execute a model-to-model transformation. This adds primary and foreign key fields as well as other derived elements.
- Call the actual generator workflow.
From model to generated artifacts
The mapping from your model elements to the generated application elements is described in detail in the generator reference chapter.
Stand-alone generator
There is also a stand-alone generator available. This is a JAR file which can be used to generate applications from the command line.
wget https://github.com/Guite/MostGenerator/releases/download/standalone/ModuleStudio-generator.jar
java -jar ModuleStudio-generator.jar MyModel.mostapp
By default this creates a sub folder named GeneratedModule
and puts all generated artifacts into this sub directory.
You can also specify another directory name if you like:
java -jar ModuleStudio-generator.jar MyModel.mostapp MyDirectory
Note the stand-alone generator currently assumes that the model files are in the same directory in which it is executed.
Using this little tool is particularly handy for things like:
- Batch jobs: you can create a
.bat
(Windows) or.sh
file for generating 10 different applications in one step. - Automated build jobs: incorporate regenerating an application from it’s model into your build process.
Note the stand-alone generator is updated after every build. So it always uses the latest Git revision.