Development Guide
In this section, practical development steps are discussed for anyone interested in contributing to the VLINGO XOOM Designer project.
Last updated
In this section, practical development steps are discussed for anyone interested in contributing to the VLINGO XOOM Designer project.
Last updated
The XOOM Designer codebase mainly contains the implementation of the following features:
XOOM Designer
: the visual model designer itself that, besides the project generation, provides a rapid configuration for VLINGO XOOM components.
XOOM CLI
: provides shortcuts for initializing XOOM Designer and interacting with Docker, Gloo Gateway API, and Kubernetes;
Although sharing the same codebase, these two features are not strongly dependent, so it's meant to be kept semantically and structurally separate. In that sense, the Designer and CLI implementations are respectively placed under the package io.vlingo.xoom.designer
and io.vlingo.xoom.cli
.
Next, the practical sections show how to maintain and expand both features.
Once the XOOM Designer is correctly , the CLI is accessed from the terminal by calling the executable bash script (ex. ./xoom docker package
). Internally, this script runs the Designer
jar and passes the command, i.e. docker package
, to the class:
The OptionValue
class helps tasks to support execution options, which are passed along with the bash command. For instance, the designer server port can be customized as follows:
The following diagram gives us an overview of how the Designer components interact for generating a project:
While the previous section provides a quick introduction to the Designer components, this section focuses on explaining each step involved in the Designer Model processing, going through the layers, from the external to the inner, API to the full project generation.
First, let's consider how the web-based UI interacts with the Rest API when the project generation is requested:
The ModelProcessingManager.generate
is the high-level method for the project generation. It uses some auxiliary methods in order to keep the code more organized and readable. Here are the competencies of each one of these auxiliary methods:
Physically create the template output processed in the core steps;
Copy necessary resources to the generated project;
Executes Maven-based Schemata goals;
Clear leftovers of the generated project from Designer internals;
The main constituent parts for every auto-generated class / project resouce are:
A Freemarker template file
Considering those parts, let's take AggregateProtocol
class generation as an example and go through the implementation details, starting from the template file:
Eventually, some peripheral points in the code are also involved. The following list is mainly related when a new template file is added:
The code snippet above shows that an implementation of io.vlingo.xoom.cli.task.Task
is triggered by the user command, implying that there is one Task
subclass for each supported task. Next, the task responsible for initializing the Designer service is demonstrated:
The concluding step of a Task
implementation is to edit the class mapping the task as an element of the cliTasks
list. That makes XOOM CLI able to run the task when the corresponding command is executed:
The Designer-embedded user interface illustrated above is built with . It consumes a Rest API submitting the model details to the server-side. Once successfully processed, XOOM Designer uses for generating classes, configuration, and deployment files. That said, let's see how to add templates at the code level.
The figure above shows the two requests submitted when the user finishes the Designer model and clicks . The first request checks if the generation path is valid by creating the full directory tree where the generated project is going to be installed. If it succeeds, the project generation is subsequently requested. The handler methods responsible for processing these requests are presented below:
depends on for making the generation path and generating the project. Let's get deeper into the code and see how implements the project generation.
Reading the code from the top, it's clear that its constructor receives a list. The details of this dependency are explained later, but, for now, just keep in mind that the list elements are every step responsible for creating or customizing a piece of the generated project such as configuration files, source code, and other resources.
ModelProcessingManager.validate
- checks if the submitted is valid. Otherwise, the project generation fails.
ModelProcessingManager.mapContext
- maps a to that gathers all the information required for the
ModelProcessing.processSteps
- iterates through the list and processes the steps when the CodeGenerationStep.shouldProcess
returns true.
That said, let's have a look at the elements of the list declared in io.vlingo.xoom.designer.Configuration
:
The steps are grouped either by the generation phase or the programming language/technology on which a specific project part is generated. The preliminary steps are responsible for preparing the internal Designer resources for a new project generation and also defining values to be used in the later steps.
The core steps, declared between the preliminary and concluding steps, extend which is a subclass of . This extension allows these steps to easily process Freemarker templates based on Java/React technologies.
At last, the concluding steps, like the preliminary steps, are simple extensions that respectively perform the following tasks:
The next section discusses how to implement a and create/update code templates.
A implementation
A implementation
The requires some parameter values to generate an Aggregate Protocol
class. The parameters handling and mapping are addressed by as follows:
The full package name and the AggregateProtocol
class name are mapped to the template parameters in loadParameters
. Additionally, requires the implementation, which commonly uses the filename resolution logic in the corresponding .
implements the buildTemplateData
method that passes parameter values, coming from the Web-based UI, to RestResourceTemplateData. In this particular scenario, is an additional and optional class that helps building . The is also optional and useful when a subclass needs to be conditionally skipped.
Finally, has to be added to the steps list:
1. Create an enum value in passing the template filename (without extension) in the constructor. Example:
2. Map the new standard file to an existing or create one. Sometimes there are multiple files for the same standard. For instance, there is one Aggregate
template file for each Storage
(Journal, State Store, Object Store). That means is responsible for grouping template files by standard and helps theto find the proper file based on such as . The examples below demonstrate the Aggregate Protocol
and Value Object
standards.
3. In case it doesn't already exist, create an enum value in for each template parameter.
To sum up, those are the common steps regarding code template files
on xoom-designer
. Our team is available to discuss and provide more information on and our .