On this page
Using the Generate command
You can enter the Generate command in the command line to generate a report.
To generate a report from the package scope
generate - project projectFileName -output outputFileName -template templateName -package packageNameList
To generate a report from the element scope
generate -project projectFileName -output outputFileName -template templateName -element elementNameList
To generate a report from the option specified in the properties file
generate -properties propertiesFileName
To generate an encrypted password for Teamwork or Teamwork Cloud
generate -generatepassword password
Description
The Generate command creates a report document with a received set of information from arguments and parameters. The information will then be generated as a report document to the specified output file. By default, an argument is the specified data of the invoked parameters. If the -properties option is specified, the argument is the name of a properties file. A properties file contains other parameters, along with the specified data of each parameter.
Synopsis
Command | Function |
---|---|
-project projectFileName | Specifies the MagicDraw project path as a file name. |
-output outputFileName | Specifies the output file path as a file name. |
-template templateName | Specifies a template name used to generate a report document. The template must exist in MagicDraw prior to using this command, otherwise an error will occur. If the template name is not specified, the template specified in the Report Data (specified in -report reportName) will be used instead. |
-package packageNameList | Specifies the name of one or more packages in a MagicDraw project to be included in the report. Multiple package entries must be separated by a semicolon (;). Warning: Duplicate qualified name Do not enter a duplicate name of a root Model package or its immediate child package to the -package option. |
-element elementNameList | Specifies the name of one or more elements from a MagicDraw project to be included in a report. Element entries must be separated by a semicolon (;). |
-elementID | Specifies the element ID of one or more elements in a MagicDraw project to be included in the report. Multiple element entries must be separated by a semicolon (;). Note
|
[options] | The command-line options. |
-properties propertiesFileName | This command specifies the name of a properties file to utilize. Use only with -properties. |
-generatepassword password | This command generates an encrypted password to be used with a properties file. |
Options
The command line feature supports a set of options useful in adding additional configuration possibilities.
Command | Function | |
---|---|---|
-report reportName | This command specifies the name of a Report Data file or Report Data element. The Report Data file must exist in MagicDraw prior to using this command, otherwise an error will occur. If the reportName is not specified, the previous Report Data will be set and used instead. | |
-autoImage 0|1|2|3 | This command specifies how an image will be shown in a report document. The default value for this argument is 1.
| |
-imageFormat jpg|png|svg|emf|wmf | This command specifies an image format in a report document. The default value for this argument is jpg.
| |
-recursive true|false | This command specifies how to select a package in a MagicDraw project. The default value for this argument is true.
| |
-includeAuxiliary true|false | This command is used to select packages, including auxiliary packages. The default value is false. | |
-outputOnBlankField stringValue | This command will show a string value in a blank field in a report document. The default value for this argument is “”. | |
-category categoryName | This command specifies a template category. | |
-fields[name=value] | This command specifies a variable. | |
-server serverName|IPAddress | This command specifies the name or IP Address of a Teamwork Server project. | |
-login loginName | This command specifies a login name to log on to Teamwork Server. | |
-password password | This command specifies a password to log on to Teamwork Server. | |
-spassword encryptedPassword | This command specifies an encrypted password (Teamwork password) to log on to Teamwork Server. This option is available only in a properties file. | |
-upload serverAddress | This command specifies a serverAddress consisting of a scheme, userInfo, host, port, and path to connect and upload a generated report to a server (see Upload generated report to server). | |
-overwrite true|false | This command overwrites any previously generated files. The default value for this argument is true.
If you type ‘y’ or ‘yes’, the Report Wizard will generate a new report that replaces the previous one. If you type ‘n’ or ‘no’, the Report Wizard will not generate a report and terminate the process. | |
-pversion projectVersion | This command specifies a Teamwork project version. | |
-servertype tw | twcloud | This command specifies a type of server to connect. The default value is tw.
| |
-ssl true | false | This command specifies if a Secured Connection (SSL) is used. The default value is false.
| |
-tag tagValue | This is an additional argument to generate reports from a server project by specifying a server project tag name. The tagValue is non-case sensitive. More than one project version may be returned from specifying one tag value. Hence, one report generation process may generate multiple reports. You cannot use this command with –pversion. | |
-incremental true|false | Specifies the incremental method. The default value is true.
| |
-projectpassword projectPassword | Specifies a password for the protected Teamwork Cloud project. The password is required to open a protected Teamwork Cloud project for generating a report. |
Using command line
You can use the command line on Windows, Linux, or Unix.
To use the command line on Windows
- Run a command line console. In the Console window, go to the local installation of the MagicDraw application.
- Go to the plugins\com.nomagic.magicdraw.reportwizard folder, and type the command line there.
To use the command line on Linux or Unix
- Run a terminal (command line console). In the Console window, go to the local installation of the MagicDraw application.
- Go to the plugins\com.nomagic.magicdraw.reportwizard folder, and type the command line there.
See the following examples of command line on Windows and Linux or Unix respectively.
generate -properties "C:\\output\\prop.properties"
generate -project "C:\\MagicDraw\\samples\\diagrams\\class diagram.mdzip" -output "C:\\output\\output.rtf" -template "Class Specification Report" -package "Model" -report "Built-in" -autoImage 1 -imageFormat png -recursive false -outputOnBlankField "#NA"
./generate.sh -project "/home/project/project.mdzip" -output "/home/output/output.rtf" -template "Class Specification Report" -package "Model" -report "Built-in" -autoImage 1 -imageFormat png -recursive false -outputOnBlankField "#NA"
Generating multiple reports
You can open multiple projects and generate multiple reports before MagicDraw shuts down. The generate command with the -properties option accepts multiple properties files as shown below.
generate -properties <file1.properties> <file2.properties> <file3.properties>... |
For example
generate -properties “property1.properties” “property2.properties” |
Note
Template, output, package, and project are the required data for each property file.