Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 2c7dd36638a4423a81c6d5006b1e70efbe2c5711 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
/*******************************************************************************
* Copyright (c) 2018 protos software gmbh (http://www.protos.de).
* All rights reserved.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* CONTRIBUTORS:
*           Jan Belle (initial contribution)
*
 *******************************************************************************/

package org.eclipse.etrice.generator.base;

import java.util.List;

import org.eclipse.etrice.generator.base.args.BooleanOption;
import org.eclipse.etrice.generator.base.args.Option;
import org.eclipse.etrice.generator.base.args.StringOption;
import org.eclipse.etrice.generator.base.setup.GeneratorOptions;

public class AbstractGeneratorOptions extends GeneratorOptions {
	
	public static final String GROUP_ETRICE = "eTrice";
	
	public static final BooleanOption LIB = new BooleanOption(
			GROUP_ETRICE,
			"lib",
			"generateAsLibrary",
			"if specified all classes are generated, not only instanciated ones",
			false);
	
	public static final StringOption SAVE_GEN_MODEL = new StringOption(
			GROUP_ETRICE,
			"saveGenModel",
			"genmodel path",
			"if specified the generator model will be saved to this location",
			"");
	
	public static final StringOption MAIN_NAME = new StringOption(
			GROUP_ETRICE,
			"mainName",
			"name",
			"if specified the generated main method will be named as stated",
			"main");
	
	public static final BooleanOption MSC_INSTR = new BooleanOption(
			GROUP_ETRICE,
			"msc_instr",
			"generateMSCInstrumentation",
			"generate instrumentation for MSC generation",
			false);
	
	public static final BooleanOption DATA_INSTR = new BooleanOption(
			GROUP_ETRICE,
			"data_instr",
			"generateDataInstrumentation",
			"generate instrumentation for data logging",
			false);
	
	public static final BooleanOption VERBOSE_RT = new BooleanOption(
			GROUP_ETRICE,
			"gen_as_verbose",
			"generateWithVerboseOutput",
			"generate instrumentation for verbose console output",
			false);
	
	public static final BooleanOption NOTRANSLATE = new BooleanOption(
			GROUP_ETRICE,
			"notranslate",
			"noTranslation",
			"if specified the detail codes won't be translated",
			false);
	
	@Override
	public void configure(List<Option<?>> options) {
		super.configure(options);
		
		options.add(LIB);
		options.add(SAVE_GEN_MODEL);
		options.add(MAIN_NAME);
		options.add(MSC_INSTR);
		options.add(DATA_INSTR);
		options.add(VERBOSE_RT);
		options.add(NOTRANSLATE);
	}
}

Back to the top