KiCad PCB EDA Suite
Loading...
Searching...
No Matches
command.cpp
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright (C) 2022 Mark Roszko <[email protected]>
5 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
6 *
7 * This program is free software: you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation, either version 3 of the License, or (at your
10 * option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program. If not, see <http://www.gnu.org/licenses/>.
19 */
20
21#include "command.h"
22#include <cli/exit_codes.h>
23#include <wx/crt.h>
24#include <macros.h>
25#include <string_utils.h>
26
27#include <sstream>
28
29
30CLI::COMMAND::COMMAND( const std::string& aName ) :
31 m_name( aName ),
32 m_argParser( aName, "", argparse::default_arguments::none ),
33 m_hasInputArg( false ),
34 m_hasOutputArg( false ),
35 m_hasDrawingSheetArg( false ),
36 m_hasDefineArg( false ),
37 m_outputArgExpectsDir( false ),
38 m_hasVariantArg( false )
39
40{
41 m_argParser.add_argument( ARG_HELP_SHORT, ARG_HELP )
43 .flag()
44 .nargs( 0 );
45}
46
47
49{
50 std::stringstream ss;
51 ss << m_argParser;
52 wxPrintf( From_UTF8( ss.str().c_str() ) );
53}
54
55
57{
58 if( m_argParser[ ARG_HELP ] == true )
59 {
60 PrintHelp();
61
62 return 0;
63 }
64
65 if ( m_hasInputArg )
66 {
67 m_argInput = From_UTF8( m_argParser.get<std::string>( ARG_INPUT ).c_str() );
68 }
69
70 if( m_hasOutputArg )
71 {
72 m_argOutput = From_UTF8( m_argParser.get<std::string>( ARG_OUTPUT ).c_str() );
73 }
74
76 {
77 m_argDrawingSheet = From_UTF8( m_argParser.get<std::string>( ARG_DRAWING_SHEET ).c_str() );
78 }
79
80 if( m_hasDefineArg )
81 {
82 auto defines = m_argParser.get<std::vector<std::string>>( ARG_DEFINE_VAR_LONG );
83
84 for( const std::string& def : defines )
85 {
86 wxString str = From_UTF8( def.c_str() );
87 wxArrayString bits;
88 wxStringSplit( str, bits, wxS( '=' ) );
89
90 if( bits.Count() == 2 )
91 {
92 m_argDefineVars[bits[0]] = bits[1];
93 }
94 else
95 {
97 }
98 }
99 }
100
101 if( m_hasVariantArg && m_argParser.is_used( ARG_VARIANT ) )
102 {
103 auto variantNames = m_argParser.get<std::vector<std::string>>( ARG_VARIANT );
104
105 for( const auto& name : variantNames )
106 m_argVariantNames.push_back( From_UTF8( name ) );
107
108 if( m_argVariantNames.size() > 1 && m_hasOutputArg && !m_argOutput.IsEmpty() )
109 {
110 if( !m_argOutput.Contains( wxS( "${VARIANT}" ) ) )
111 {
112 wxFprintf( stderr,
113 _( "When specifying multiple variants, the output path must contain "
114 "${VARIANT} to generate separate output files for each variant.\n" ) );
116 }
117 }
118 }
119
120 return doPerform( aKiway );
121}
122
123
125{
126 // default case if we aren't overloaded, just print the help
127 PrintHelp();
128
129 return EXIT_CODES::OK;
130}
131
132
133void CLI::COMMAND::addCommonArgs( bool aInput, bool aOutput, INPUT_TYPE aInputType, bool aOutputIsDir )
134{
135 m_hasInputArg = aInput;
136 m_hasOutputArg = aOutput;
137 m_outputArgExpectsDir = aOutputIsDir;
138
139 if( aInput )
140 {
141 switch( aInputType )
142 {
143 case INPUT_TYPE::FILE:
144 {
145 m_argParser.add_argument( ARG_INPUT )
146 .help( UTF8STDSTR( _( "Input file" ) ) )
147 .metavar( "INPUT_FILE" );
148 break;
149 }
151 {
152 m_argParser.add_argument( ARG_INPUT )
153 .help( UTF8STDSTR( _( "Input directory" ) ) )
154 .metavar( "INPUT_DIR" );
155 break;
156 }
158 {
159 m_argParser.add_argument( ARG_INPUT )
160 .help( UTF8STDSTR( _( "Input file or directory" ) ) )
161 .metavar( "INPUT_FILE_OR_DIR" );
162 break;
163 }
164 // no default
165 }
166 }
167
168 if( aOutput )
169 {
170 if( aOutputIsDir )
171 {
172 m_argParser.add_argument( "-o", ARG_OUTPUT )
173 .default_value( std::string() )
174 .help( UTF8STDSTR( _( "Output directory" ) ) )
175 .metavar( "OUTPUT_DIR" );
176 }
177 else
178 {
179 m_argParser.add_argument( "-o", ARG_OUTPUT )
180 .default_value( std::string() )
181 .help( UTF8STDSTR( _( "Output file" ) ) )
182 .metavar( "OUTPUT_FILE" );
183 }
184 }
185}
186
187
189{
191
192 m_argParser.add_argument( ARG_DRAWING_SHEET )
193 .default_value( std::string() )
194 .help( UTF8STDSTR( _( "Path to drawing sheet, this overrides any existing project "
195 "defined sheet when used" ) ) )
196 .metavar( "SHEET_PATH" );
197}
198
199
201{
202 m_hasDefineArg = true;
203
205 .default_value( std::vector<std::string>() )
206 .append()
207 .help( UTF8STDSTR(
208 _( "Overrides or adds project variables, can be used multiple times to "
209 "declare multiple variables."
210 "\nUse in the format of '--define-var key=value' or '-D key=value'" ) ) )
211 .metavar( "KEY=VALUE" );
212}
213
214
216{
217 m_hasVariantArg = true;
218
219 m_argParser.add_argument( ARG_VARIANT )
220 .default_value( std::vector<std::string>() )
221 .append()
222 .help( UTF8STDSTR(
223 _( "The variant name(s) to output, can be used multiple times to specify "
224 "multiple variants.\n"
225 "When specifying multiple variants, use ${VARIANT} in the output path to "
226 "generate separate files for each variant.\n"
227 "When no --variant argument is provided the default variant is output." ) ) );
228}
const char * name
std::string m_name
Name of this command that is exported and used in the cli.
Definition command.h:111
std::map< wxString, wxString > m_argDefineVars
Value of the drawing sheet arg if configured.
Definition command.h:158
virtual int doPerform(KIWAY &aKiway)
The internal handler that should be overloaded to implement command specific processing and work.
Definition command.cpp:124
bool m_hasDefineArg
Whether or not the input arg was added for parsing.
Definition command.h:133
void addVariantsArg()
Set up the list of variants to output arguement.
Definition command.cpp:215
argparse::ArgumentParser m_argParser
Definition command.h:113
bool m_hasOutputArg
Whether or not the output arg was added for parsing.
Definition command.h:123
COMMAND(const std::string &aName)
Define a new COMMAND instance.
Definition command.cpp:30
void addDefineArg()
Set up the drawing sheet arg used by many of the export commands.
Definition command.cpp:200
bool m_outputArgExpectsDir
Whether or not the output arg is expecting a directory.
Definition command.h:138
void PrintHelp()
Definition command.cpp:48
int Perform(KIWAY &aKiway)
Entry point to processing commands from args and doing work.
Definition command.cpp:56
wxString m_argDrawingSheet
Value of the drawing sheet arg if configured.
Definition command.h:153
void addCommonArgs(bool aInput, bool aOutput, INPUT_TYPE aInputType, bool aOutputIsDir)
Set up the most common of args used across cli.
Definition command.cpp:133
wxString m_argOutput
Value of the output arg if configured.
Definition command.h:148
wxString m_argInput
Value of the common input arg if configured.
Definition command.h:143
std::vector< wxString > m_argVariantNames
The list of variant names to output.
Definition command.h:170
bool m_hasInputArg
Whether or not the input arg was added for parsing.
Definition command.h:118
void addDrawingSheetArg()
Set up the drawing sheet arg used by many of the export commands.
Definition command.cpp:188
bool m_hasVariantArg
Whether or not the input argument for variant names was added for parsing.
Definition command.h:163
bool m_hasDrawingSheetArg
Whether or not the input arg was added for parsing.
Definition command.h:128
A minimalistic software bus for communications between various DLLs/DSOs (DSOs) within the same KiCad...
Definition kiway.h:294
#define ARG_HELP
Definition command.h:30
#define ARG_OUTPUT
Definition command.h:33
#define ARG_INPUT
Definition command.h:34
#define ARG_VARIANT
Definition command.h:38
#define UTF8STDSTR(s)
Definition command.h:27
#define ARG_HELP_DESC
Definition command.h:32
#define ARG_DRAWING_SHEET
Definition command.h:35
#define ARG_DEFINE_VAR_LONG
Definition command.h:37
#define ARG_DEFINE_VAR_SHORT
Definition command.h:36
#define ARG_HELP_SHORT
Definition command.h:31
#define _(s)
This file contains miscellaneous commonly used macros and functions.
static const int ERR_ARGS
Definition exit_codes.h:31
static const int OK
Definition exit_codes.h:30
wxString From_UTF8(const char *cstring)
void wxStringSplit(const wxString &aText, wxArrayString &aStrings, wxChar aSplitter)
Split aString to a string list separated at aSplitter.