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_hasVariantsArg( 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_hasVariantsArg )
102 {
103 auto variantNames = m_argParser.get<std::vector<std::string>>( ARG_VARIANTS );
104
105 for( const std::string& variantName : variantNames )
106 m_argVariantNames.emplace( variantName );
107
108 if( m_argVariantNames.empty() )
110 }
111
112 return doPerform( aKiway );
113}
114
115
117{
118 // default case if we aren't overloaded, just print the help
119 PrintHelp();
120
121 return EXIT_CODES::OK;
122}
123
124
125void CLI::COMMAND::addCommonArgs( bool aInput, bool aOutput, bool aInputCanBeDir,
126 bool aOutputIsDir )
127{
128 m_hasInputArg = aInput;
129 m_hasOutputArg = aOutput;
130 m_outputArgExpectsDir = aOutputIsDir;
131
132 if( aInput )
133 {
134 if( aInputCanBeDir )
135 {
136 m_argParser.add_argument( ARG_INPUT )
137 .help( UTF8STDSTR( _( "Input directory" ) ) )
138 .metavar( "INPUT_DIR" );
139 }
140
141 m_argParser.add_argument( ARG_INPUT )
142 .help( UTF8STDSTR( _( "Input file" ) ) )
143 .metavar( "INPUT_FILE" );
144 }
145
146 if( aOutput )
147 {
148 if( aOutputIsDir )
149 {
150 m_argParser.add_argument( "-o", ARG_OUTPUT )
151 .default_value( std::string() )
152 .help( UTF8STDSTR( _( "Output directory" ) ) )
153 .metavar( "OUTPUT_DIR" );
154 }
155 else
156 {
157 m_argParser.add_argument( "-o", ARG_OUTPUT )
158 .default_value( std::string() )
159 .help( UTF8STDSTR( _( "Output file" ) ) )
160 .metavar( "OUTPUT_FILE" );
161 }
162 }
163}
164
165
167{
169
170 m_argParser.add_argument( ARG_DRAWING_SHEET )
171 .default_value( std::string() )
172 .help( UTF8STDSTR( _( "Path to drawing sheet, this overrides any existing project "
173 "defined sheet when used" ) ) )
174 .metavar( "SHEET_PATH" );
175}
176
177
179{
180 m_hasDefineArg = true;
181
183 .default_value( std::vector<std::string>() )
184 .append()
185 .help( UTF8STDSTR(
186 _( "Overrides or adds project variables, can be used multiple times to "
187 "declare multiple variables."
188 "\nUse in the format of '--define-var key=value' or '-D key=value'" ) ) )
189 .metavar( "KEY=VALUE" );
190}
191
192
194{
195 m_hasVariantsArg = true;
196
197 m_argParser.add_argument( ARG_VARIANTS )
198 .default_value( std::set<std::string>() )
199 .append()
200 .help( UTF8STDSTR(
201 _( "List of variant names to output.\n"
202 "When no --variants arguement is provided the default variant is output.\n"
203 "To output all variants use '--variants=all'" ) ) );
204}
std::string m_name
Name of this command that is exported and used in the cli.
Definition command.h:104
void addCommonArgs(bool aInput, bool aOutput, bool aInputCanBeDir, bool aOutputIsDir)
Set up the most common of args used across cli.
Definition command.cpp:125
std::map< wxString, wxString > m_argDefineVars
Value of the drawing sheet arg if configured.
Definition command.h:151
virtual int doPerform(KIWAY &aKiway)
The internal handler that should be overloaded to implement command specific processing and work.
Definition command.cpp:116
bool m_hasDefineArg
Whether or not the input arg was added for parsing.
Definition command.h:126
void addVariantsArg()
Set up the list of variants to output arguement.
Definition command.cpp:193
argparse::ArgumentParser m_argParser
Definition command.h:106
bool m_hasOutputArg
Whether or not the output arg was added for parsing.
Definition command.h:116
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:178
bool m_outputArgExpectsDir
Whether or not the output arg is expecting a directory.
Definition command.h:131
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:146
bool m_hasVariantsArg
Whether or not the input arguement for variant names was added for parsing.
Definition command.h:156
wxString m_argOutput
Value of the output arg if configured.
Definition command.h:141
wxString m_argInput
Value of the common input arg if configured.
Definition command.h:136
std::set< wxString > m_argVariantNames
A set of variant names to output.
Definition command.h:163
bool m_hasInputArg
Whether or not the input arg was added for parsing.
Definition command.h:111
void addDrawingSheetArg()
Set up the drawing sheet arg used by many of the export commands.
Definition command.cpp:166
bool m_hasDrawingSheetArg
Whether or not the input arg was added for parsing.
Definition command.h:121
A minimalistic software bus for communications between various DLLs/DSOs (DSOs) within the same KiCad...
Definition kiway.h:286
#define ARG_HELP
Definition command.h:30
#define ARG_VARIANTS
Definition command.h:38
#define ARG_OUTPUT
Definition command.h:33
#define ARG_INPUT
Definition command.h:34
#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.