It is possible to reference an external Profile during a publication using the Publisher for Enterprise Architect.
An external Profile is meant to be shared and used by several projects. This external Profile will become a used shared Package in the Cameo model transformed.
The option ea2md.resources.mapping.file
in the publisher.properties allows switching to the shared Profile by providing the path of the mapping configuration file.
Note:
In Enterprise Architect, it is possible to define a Profile, and use it in the same model.
It won't be possible to transform this kind of model correctly for reasons we will detail later. With a profile switch, only Enterprise Architect models using a profile (and without definition) can be correctly transformed.
When the Profile is ready to be used, the Package containing it must be shared, so that it can be used by other projects. To do this, select the Package from Cameo, right-click, and select the menu Project Usage > Share Packages…
Note:
To avoid any loss of information, the Cameo Profile must be synchronized regularly with the Enterprise Architect Profile, especially if the Enterprise Architect Profile changes.
Indeed, if the Enterprise Architect and Cameo Profiles are different (deletion, addition, or modification of a Stereotype/Tagged Value between Enterprise Architect and Cameo), the application of the Stereotypes will not be done correctly in the Cameo model.
To transform Enterprise Architect Language Types to UML Predefined Types, the option ea2md.semantic.primitive.convertLanguageToStandard
is set to True by default in the publisher.properties file. See Language Types to UML Standard Types.
ea2md.resources.mapping.file
option in the publisher.ini file allows you to declare a path to an XML mapping file. Here is the minimum configuration necessary:
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<MAPPING>
<resources url="D:\mapping\ExternalProfile.mdzip">
<mappingProfiles>
<mappingProfile source="EA_Model::ExternalProfile" target="ExternalProfile">
</mappingProfile>
</mappingProfiles>
</resources>
</MAPPING>
In the minimal configuration, the Publisher will try to map all the elements of the Enterprise Architect profile, to the Cameo profile.
In our example, the Enterprise Architect profile is named "ExternalProfile", as well as the Cameo profile.
Either simple names, qualified names of Profiles or Profile elements (Stereotype, Property...) can be used in the configuration, for example:
<mappingProfile source="EA_Model::ExternalProfile" target="EA_Model::ExternalProfile::ExternalProfile">
When name changes have been made in the shared profile, it is possible to configure the mapping, in the XML file, accordingly.
For example, when a Stereotype "StereotypeA" is renamed in the Cameo profile "StereotypeA_renamed", the following line will be added to the configuration file:
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<MAPPING>
<resources url="D:\mapping\ExternalProfile.mdzip">
<mappingProfiles>
<mappingProfile source="EA_Model::ExternalProfile" target="ExternalProfile">
<mappings>
<mapping source="StereotypeA" target="StereotypeA_renamed" type="Stereotype">
</mapping>
</mappings>
</mappingProfile>
</mappingProfiles>
</resources>
</MAPPING>
Also, if a Property of this Stereotype is renamed, we will add a mapping line such as:
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<MAPPING>
<resources url="D:\mapping\ExternalProfile.mdzip">
<mappingProfiles>
<mappingProfile source="EA_Model::ExternalProfile" target="ExternalProfile">
<mappings>
<mapping source="StereotypeA" target="StereotypeA_renamed" type="Stereotype">
<mappings>
<mapping source="TagValue1" target="TagValue1_renamed" type="Property">
</mapping>
</mappings>
</mapping>
</mappings>
</mappingProfile>
</mappingProfiles>
</resources>
</MAPPING>
Stereotypes or Properties not appearing in the configuration file are mapped by name.
Multiple Cameo Resources (Cameo mdzip files) can be declared in the mapping file.
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<MAPPING>
<resources url="D:\mapping\ExternalProfile.mdzip">
<mappingProfiles>
<mappingProfile source="EA_Model::ExternalProfile" target="ExternalProfile">
<mappings>
<mapping source="StereotypeA" target="StereotypeA_renamed" type="Stereotype">
<mappings>
<mapping source="TagValue1" target="TagValue1_renamed" type="Property">
</mapping>
</mappings>
</mapping>
</mappings>
</mappingProfile>
</mappingProfiles>
</resources>
<resources url="D:\mapping\ExternalProfile.mdzip">
<mappingProfiles>
<mappingProfile source="EA_Model::thecustomprofile" target="EA_Model::Custom Profile">
</mappingProfiles>
</resources>
</MAPPING>
Similarly, multiple Profiles can be mapped to the same Cameo Resource (mdzip file).
The following table describes all the characteristics of the configuration file:
Tag Name | Attribute Name | Description |
---|---|---|
resources | url | Absolute path of the mdzip resources containing the target profiles |
MappingProfile | source | The Enterprise Architect Profile name or qualified name to map |
target | The Cameo Profile name or qualified name to map | |
mapping | source | The Enterprise Architect element name or qualified name to map |
target | The Cameo Element name or qualified name to map | |
type | The Element type to map. Supported types:
|
Note:
Note:
The best recommendation is to place it in the profiles directory of the Cameo installation, the profile can then be used by all models.
To initiate Profile switching, please set the ea2md.resources.mapping.file option in the publisher.ini file, such as:
# Provide the path of the resources mapping configuration file for external Resource mapping. For example C:\\Publisher_Installation_Path\\mapping\\Profile_Mapping.xml
ea2md.resources.mapping.file=d:\\temp\\ExternalProfile_config.xml
Note: You need to use double back slashes "\\" in the path.