2022-10-04 01:53:37 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2022 Mark Roszko <mark.roszko@gmail.com>
|
2025-01-01 13:30:11 -08:00
|
|
|
* Copyright The KiCad Developers, see AUTHORS.txt for contributors.
|
2022-10-04 01:53:37 +00:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License as published by the
|
|
|
|
* Free Software Foundation, either version 3 of the License, or (at your
|
|
|
|
* option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef CLI_COMMAND_H
|
|
|
|
#define CLI_COMMAND_H
|
|
|
|
|
|
|
|
#include <argparse/argparse.hpp>
|
|
|
|
#include <kiway.h>
|
|
|
|
|
2022-11-14 07:25:33 -05:00
|
|
|
#define UTF8STDSTR( s ) ( std::string( s.utf8_str() ) )
|
|
|
|
|
2023-01-01 11:50:40 -05:00
|
|
|
#define ARG_VERSION "--version"
|
|
|
|
#define ARG_HELP "--help"
|
|
|
|
#define ARG_HELP_SHORT "-h"
|
2023-08-31 22:01:07 -04:00
|
|
|
#define ARG_HELP_DESC _( "Shows help message and exits" )
|
2023-08-31 18:43:32 -04:00
|
|
|
#define ARG_OUTPUT "--output"
|
|
|
|
#define ARG_INPUT "input"
|
2023-08-31 19:37:12 -04:00
|
|
|
#define ARG_DRAWING_SHEET "--drawing-sheet"
|
2023-08-31 21:45:51 -04:00
|
|
|
#define ARG_DEFINE_VAR_SHORT "-D"
|
|
|
|
#define ARG_DEFINE_VAR_LONG "--define-var"
|
2023-01-01 11:50:40 -05:00
|
|
|
|
2022-10-04 01:53:37 +00:00
|
|
|
namespace CLI
|
|
|
|
{
|
|
|
|
|
2022-10-25 23:03:21 -04:00
|
|
|
class COMMAND
|
2022-10-04 01:53:37 +00:00
|
|
|
{
|
2022-10-25 23:03:21 -04:00
|
|
|
public:
|
2023-01-01 11:50:40 -05:00
|
|
|
/**
|
|
|
|
* Define a new COMMAND instance
|
|
|
|
*
|
|
|
|
* @param aName The name of the command that is to be used in the cli interface
|
|
|
|
*/
|
|
|
|
COMMAND( const std::string& aName );
|
2022-10-04 01:53:37 +00:00
|
|
|
|
2023-01-01 11:50:40 -05:00
|
|
|
/**
|
|
|
|
* Entry point to processing commands from args and doing work
|
|
|
|
*/
|
|
|
|
int Perform( KIWAY& aKiway );
|
2022-10-04 01:53:37 +00:00
|
|
|
|
|
|
|
virtual ~COMMAND() = default;
|
|
|
|
|
|
|
|
argparse::ArgumentParser& GetArgParser() { return m_argParser; }
|
|
|
|
const std::string& GetName() const { return m_name; }
|
|
|
|
|
2023-01-01 11:50:40 -05:00
|
|
|
void PrintHelp();
|
2023-08-31 18:43:32 -04:00
|
|
|
|
2022-10-04 01:53:37 +00:00
|
|
|
protected:
|
2023-08-31 18:43:32 -04:00
|
|
|
/**
|
2023-12-19 14:29:17 -05:00
|
|
|
* Set up the most common of args used across cli
|
2023-08-31 18:43:32 -04:00
|
|
|
*
|
|
|
|
* @param aInput Configures the input arg
|
|
|
|
* @param aOutput Configures the output arg
|
2023-12-19 14:29:17 -05:00
|
|
|
* @param aInputIsDir Configures whether the input arg description will be for a file or
|
|
|
|
* directory
|
|
|
|
* @param aOutputIsDir Configures whether the output arg description will be for a file or
|
|
|
|
* directory
|
2023-08-31 18:43:32 -04:00
|
|
|
*/
|
2023-09-19 01:47:41 +00:00
|
|
|
void addCommonArgs( bool aInput, bool aOutput, bool aInputIsDir, bool aOutputIsDir );
|
2023-08-31 18:43:32 -04:00
|
|
|
|
2023-08-31 19:37:12 -04:00
|
|
|
/**
|
2023-12-19 14:29:17 -05:00
|
|
|
* Set up the drawing sheet arg used by many of the export commands
|
2023-08-31 19:37:12 -04:00
|
|
|
*/
|
|
|
|
void addDrawingSheetArg();
|
|
|
|
|
2023-08-31 21:45:51 -04:00
|
|
|
/**
|
2023-12-19 14:29:17 -05:00
|
|
|
* Set up the drawing sheet arg used by many of the export commands
|
2023-08-31 21:45:51 -04:00
|
|
|
*/
|
|
|
|
void addDefineArg();
|
|
|
|
|
2023-01-01 11:50:40 -05:00
|
|
|
/**
|
|
|
|
* The internal handler that should be overloaded to implement command specific
|
|
|
|
* processing and work.
|
|
|
|
*
|
|
|
|
* If not overloaded, the command will simply emit the help options by default
|
|
|
|
*/
|
|
|
|
virtual int doPerform( KIWAY& aKiway );
|
|
|
|
|
2023-08-31 18:43:32 -04:00
|
|
|
/**
|
|
|
|
* Name of this command that is exported and used in the cli
|
|
|
|
*/
|
2022-10-04 01:53:37 +00:00
|
|
|
std::string m_name;
|
2023-08-31 18:43:32 -04:00
|
|
|
|
2022-10-04 01:53:37 +00:00
|
|
|
argparse::ArgumentParser m_argParser;
|
2023-08-31 18:43:32 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether or not the input arg was added for parsing
|
|
|
|
*/
|
|
|
|
bool m_hasInputArg;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether or not the output arg was added for parsing
|
|
|
|
*/
|
|
|
|
bool m_hasOutputArg;
|
|
|
|
|
2023-08-31 19:37:12 -04:00
|
|
|
/**
|
|
|
|
* Whether or not the input arg was added for parsing
|
|
|
|
*/
|
|
|
|
bool m_hasDrawingSheetArg;
|
|
|
|
|
2023-08-31 21:45:51 -04:00
|
|
|
/**
|
|
|
|
* Whether or not the input arg was added for parsing
|
|
|
|
*/
|
|
|
|
bool m_hasDefineArg;
|
|
|
|
|
2023-08-31 18:43:32 -04:00
|
|
|
/**
|
|
|
|
* Whether or not the output arg is expecting a directory
|
|
|
|
*/
|
|
|
|
bool m_outputArgExpectsDir;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Value of the common input arg if configured
|
|
|
|
*/
|
|
|
|
wxString m_argInput;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Value of the output arg if configured
|
|
|
|
*/
|
|
|
|
wxString m_argOutput;
|
2023-08-31 19:37:12 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Value of the drawing sheet arg if configured
|
|
|
|
*/
|
|
|
|
wxString m_argDrawingSheet;
|
2023-08-31 21:45:51 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Value of the drawing sheet arg if configured
|
|
|
|
*/
|
|
|
|
std::map<wxString, wxString> m_argDefineVars;
|
2022-10-04 01:53:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2023-12-19 14:29:17 -05:00
|
|
|
#endif
|