2013-06-14 14:59:52 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2018-02-23 08:50:15 +00:00
|
|
|
* Copyright (C) 2018 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
|
|
|
* Copyright (C) 1992-2018 KiCad Developers, see AUTHORS.txt for contributors.
|
2013-06-14 14:59:52 +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 2
|
|
|
|
* 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, you may find one here:
|
|
|
|
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
|
|
|
* or you may search the http://www.gnu.org website for the version 2 license,
|
|
|
|
* or you may write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file eeschema/dialogs/dialog_bom.cpp
|
|
|
|
* @brief Dialog box for creating bom and other documents from generic netlist.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include <fctsys.h>
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
#include <pgm_base.h>
|
|
|
|
#include <kiface_i.h>
|
2013-06-14 14:59:52 +00:00
|
|
|
#include <confirm.h>
|
|
|
|
#include <gestfich.h>
|
2018-01-30 10:49:51 +00:00
|
|
|
#include <sch_edit_frame.h>
|
2013-06-14 14:59:52 +00:00
|
|
|
#include <netlist.h>
|
2015-06-12 07:02:06 +00:00
|
|
|
#include <netlist_exporter_generic.h>
|
2013-06-14 14:59:52 +00:00
|
|
|
#include <invoke_sch_dialog.h>
|
|
|
|
#include <dialog_helpers.h>
|
|
|
|
#include <dialog_bom_base.h>
|
2013-06-19 16:11:12 +00:00
|
|
|
#include <html_messagebox.h>
|
2015-06-12 07:02:06 +00:00
|
|
|
#include <reporter.h>
|
2018-11-12 13:45:07 +00:00
|
|
|
#include <bom_plugins.h>
|
|
|
|
#include <make_unique.h>
|
2013-06-14 14:59:52 +00:00
|
|
|
|
2018-11-19 13:44:26 +00:00
|
|
|
static constexpr wxChar BOM_TRACE[] = wxT( "BOM_PLUGINS" );
|
|
|
|
|
2018-11-12 13:45:07 +00:00
|
|
|
static constexpr wxChar BOM_PLUGINS_KEY[] = wxT( "bom_plugins" );
|
|
|
|
static constexpr wxChar BOM_PLUGIN_SELECTED_KEY[] = wxT( "bom_plugin_selected" );
|
2013-06-14 14:59:52 +00:00
|
|
|
|
2018-11-12 13:45:07 +00:00
|
|
|
static const char* s_bomHelpInfo =
|
2013-06-14 14:59:52 +00:00
|
|
|
#include <dialog_bom_help_html.h>
|
|
|
|
;
|
|
|
|
|
|
|
|
#include <dialog_bom_cfg_lexer.h>
|
|
|
|
|
|
|
|
using namespace T_BOMCFG_T;
|
|
|
|
|
2018-11-12 13:45:07 +00:00
|
|
|
typedef std::vector<BOM_PLUGIN::PTR> BOM_PLUGIN_ARRAY;
|
2016-03-31 06:28:16 +00:00
|
|
|
|
2018-10-25 14:33:19 +00:00
|
|
|
|
2013-06-14 14:59:52 +00:00
|
|
|
/**
|
2018-10-25 14:33:19 +00:00
|
|
|
* Holds data and functions pertinent to parsing a S-expression file
|
2013-06-14 14:59:52 +00:00
|
|
|
*/
|
2018-06-28 20:21:42 +00:00
|
|
|
class BOM_CFG_PARSER : public DIALOG_BOM_CFG_LEXER
|
2013-06-14 14:59:52 +00:00
|
|
|
{
|
2016-03-31 06:28:16 +00:00
|
|
|
BOM_PLUGIN_ARRAY* m_pluginsList;
|
2013-06-14 14:59:52 +00:00
|
|
|
|
|
|
|
public:
|
2018-06-28 20:21:42 +00:00
|
|
|
BOM_CFG_PARSER( BOM_PLUGIN_ARRAY* aPlugins, const char* aData, const wxString& aSource );
|
2017-06-08 21:47:21 +00:00
|
|
|
void Parse();
|
2013-06-14 14:59:52 +00:00
|
|
|
|
|
|
|
private:
|
2017-06-08 21:47:21 +00:00
|
|
|
void parsePlugin();
|
2013-06-14 14:59:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2018-06-28 20:21:42 +00:00
|
|
|
BOM_CFG_PARSER::BOM_CFG_PARSER( BOM_PLUGIN_ARRAY* aPlugins, const char* aLine,
|
|
|
|
const wxString& aSource ) :
|
2013-06-14 14:59:52 +00:00
|
|
|
DIALOG_BOM_CFG_LEXER( aLine, aSource )
|
|
|
|
{
|
|
|
|
m_pluginsList = aPlugins;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-06-28 20:21:42 +00:00
|
|
|
void BOM_CFG_PARSER::Parse()
|
2013-06-14 14:59:52 +00:00
|
|
|
{
|
|
|
|
T token;
|
|
|
|
|
|
|
|
while( ( token = NextTok() ) != T_RIGHT )
|
|
|
|
{
|
|
|
|
if( token == T_EOF)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if( token == T_LEFT )
|
|
|
|
token = NextTok();
|
|
|
|
|
|
|
|
if( token == T_plugins )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
switch( token )
|
|
|
|
{
|
|
|
|
case T_plugin: // Defines a new plugin
|
|
|
|
parsePlugin();
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
// Unexpected( CurText() );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-25 14:33:19 +00:00
|
|
|
|
2018-06-28 20:21:42 +00:00
|
|
|
void BOM_CFG_PARSER::parsePlugin()
|
2013-06-14 14:59:52 +00:00
|
|
|
{
|
|
|
|
NeedSYMBOLorNUMBER();
|
2018-11-12 13:45:07 +00:00
|
|
|
wxString name = FromUTF8();
|
|
|
|
auto plugin = std::make_unique<BOM_PLUGIN>( name );
|
2013-06-14 14:59:52 +00:00
|
|
|
|
|
|
|
T token;
|
2018-10-25 14:33:19 +00:00
|
|
|
|
2013-06-14 14:59:52 +00:00
|
|
|
while( ( token = NextTok() ) != T_RIGHT )
|
|
|
|
{
|
|
|
|
if( token == T_EOF)
|
|
|
|
break;
|
|
|
|
|
|
|
|
switch( token )
|
|
|
|
{
|
|
|
|
case T_LEFT:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case T_cmd:
|
|
|
|
NeedSYMBOLorNUMBER();
|
2018-11-12 13:45:07 +00:00
|
|
|
|
|
|
|
if( plugin )
|
|
|
|
plugin->SetCommand( FromUTF8() );
|
|
|
|
|
2013-06-14 14:59:52 +00:00
|
|
|
NeedRIGHT();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case T_opts:
|
2016-03-31 06:28:16 +00:00
|
|
|
NeedSYMBOLorNUMBER();
|
2018-11-12 13:45:07 +00:00
|
|
|
|
|
|
|
if( plugin )
|
2018-12-28 20:30:37 +00:00
|
|
|
{
|
|
|
|
wxString option = FromUTF8();
|
|
|
|
|
|
|
|
if( option.StartsWith( "nickname=", &name ) )
|
|
|
|
plugin->SetName( name );
|
|
|
|
else
|
|
|
|
plugin->Options().Add( option );
|
|
|
|
}
|
2018-11-12 13:45:07 +00:00
|
|
|
|
2016-03-31 06:28:16 +00:00
|
|
|
NeedRIGHT();
|
2013-06-14 14:59:52 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
Unexpected( CurText() );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-12 13:45:07 +00:00
|
|
|
if( plugin )
|
|
|
|
m_pluginsList->push_back( std::move( plugin ) );
|
2013-06-14 14:59:52 +00:00
|
|
|
}
|
|
|
|
|
2018-06-28 20:21:42 +00:00
|
|
|
|
2016-03-31 06:28:16 +00:00
|
|
|
// The main dialog frame to run scripts to build bom
|
2013-06-14 14:59:52 +00:00
|
|
|
class DIALOG_BOM : public DIALOG_BOM_BASE
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
SCH_EDIT_FRAME* m_parent;
|
2016-03-31 06:28:16 +00:00
|
|
|
BOM_PLUGIN_ARRAY m_plugins;
|
2014-12-03 19:09:56 +00:00
|
|
|
wxConfigBase* m_config; // to store the "plugins"
|
2018-06-28 20:21:42 +00:00
|
|
|
bool m_initialized;
|
2013-06-14 14:59:52 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
DIALOG_BOM( SCH_EDIT_FRAME* parent );
|
|
|
|
~DIALOG_BOM();
|
|
|
|
|
|
|
|
private:
|
2016-09-24 18:53:15 +00:00
|
|
|
void OnPluginSelected( wxCommandEvent& event ) override;
|
|
|
|
void OnRunPlugin( wxCommandEvent& event ) override;
|
|
|
|
void OnHelp( wxCommandEvent& event ) override;
|
|
|
|
void OnAddPlugin( wxCommandEvent& event ) override;
|
|
|
|
void OnRemovePlugin( wxCommandEvent& event ) override;
|
|
|
|
void OnEditPlugin( wxCommandEvent& event ) override;
|
|
|
|
void OnCommandLineEdited( wxCommandEvent& event ) override;
|
|
|
|
void OnNameEdited( wxCommandEvent& event ) override;
|
|
|
|
void OnShowConsoleChanged( wxCommandEvent& event ) override;
|
2018-06-28 20:21:42 +00:00
|
|
|
void OnIdle( wxIdleEvent& event ) override;
|
2013-06-14 14:59:52 +00:00
|
|
|
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
void pluginInit();
|
2013-06-14 14:59:52 +00:00
|
|
|
void installPluginsList();
|
2018-11-19 13:44:26 +00:00
|
|
|
BOM_PLUGIN* addPlugin( const wxString& aPath, const wxString& aName = wxEmptyString );
|
|
|
|
bool pluginExists( const wxString& aName );
|
2014-12-03 19:09:56 +00:00
|
|
|
|
2018-11-12 13:45:07 +00:00
|
|
|
BOM_PLUGIN* selectedPlugin()
|
|
|
|
{
|
|
|
|
int idx = m_lbPlugins->GetSelection();
|
|
|
|
|
2018-11-19 16:26:32 +00:00
|
|
|
if( idx < 0 || idx >= (int)m_plugins.size() )
|
2018-11-12 13:45:07 +00:00
|
|
|
return nullptr;
|
2014-12-03 16:22:06 +00:00
|
|
|
|
2018-11-12 13:45:07 +00:00
|
|
|
return m_plugins[idx].get();
|
|
|
|
}
|
2014-12-03 16:22:06 +00:00
|
|
|
|
2014-12-03 19:09:56 +00:00
|
|
|
wxString choosePlugin();
|
2013-06-14 14:59:52 +00:00
|
|
|
};
|
|
|
|
|
2018-06-28 20:21:42 +00:00
|
|
|
|
2013-06-14 14:59:52 +00:00
|
|
|
// Create and show DIALOG_BOM.
|
|
|
|
int InvokeDialogCreateBOM( SCH_EDIT_FRAME* aCaller )
|
|
|
|
{
|
|
|
|
DIALOG_BOM dlg( aCaller );
|
|
|
|
return dlg.ShowModal();
|
|
|
|
}
|
|
|
|
|
2018-06-28 20:21:42 +00:00
|
|
|
|
2013-06-14 14:59:52 +00:00
|
|
|
DIALOG_BOM::DIALOG_BOM( SCH_EDIT_FRAME* parent ) :
|
|
|
|
DIALOG_BOM_BASE( parent )
|
|
|
|
{
|
|
|
|
m_parent = parent;
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
m_config = Kiface().KifaceSettings();
|
2018-06-28 20:21:42 +00:00
|
|
|
m_initialized = false;
|
|
|
|
|
2018-08-15 13:29:53 +00:00
|
|
|
m_buttonAddPlugin->SetBitmap( KiBitmap( small_plus_xpm ) );
|
|
|
|
m_buttonDelPlugin->SetBitmap( KiBitmap( trash_xpm ) );
|
2018-08-13 17:00:08 +00:00
|
|
|
m_buttonEdit->SetBitmap( KiBitmap( small_edit_xpm ) );
|
2018-06-28 20:21:42 +00:00
|
|
|
|
2013-06-14 14:59:52 +00:00
|
|
|
installPluginsList();
|
|
|
|
|
2017-10-09 18:57:41 +00:00
|
|
|
#ifndef __WINDOWS__
|
|
|
|
m_checkBoxShowConsole->Show( false );
|
2016-03-31 06:28:16 +00:00
|
|
|
#endif
|
|
|
|
|
2019-01-14 12:14:13 +00:00
|
|
|
m_sdbSizerOK->SetLabel( _( "Generate" ) );
|
|
|
|
m_sdbSizerCancel->SetLabel( _( "Close" ) );
|
|
|
|
m_sdbSizer->Layout();
|
2018-06-28 20:21:42 +00:00
|
|
|
|
|
|
|
SetInitialFocus( m_lbPlugins );
|
2019-01-14 12:14:13 +00:00
|
|
|
m_sdbSizerOK->SetDefault();
|
2018-06-28 20:21:42 +00:00
|
|
|
|
2016-07-18 07:04:13 +00:00
|
|
|
// Now all widgets have the size fixed, call FinishDialogSettings
|
|
|
|
FinishDialogSettings();
|
2013-06-14 14:59:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
DIALOG_BOM::~DIALOG_BOM()
|
|
|
|
{
|
|
|
|
// Save the plugin descriptions in config.
|
2018-06-28 20:21:42 +00:00
|
|
|
// The config stores only one string, so we save the plugins inside a S-expr:
|
2013-06-14 14:59:52 +00:00
|
|
|
// ( plugins
|
2016-03-31 06:28:16 +00:00
|
|
|
// ( plugin "plugin name 1" (cmd "command line 1") )
|
|
|
|
// ( plugin "plugin name 2" (cmd "command line 2") (opts "option1") (opts "option2") )
|
2013-06-14 14:59:52 +00:00
|
|
|
// ....
|
|
|
|
// )
|
|
|
|
|
|
|
|
STRING_FORMATTER writer;
|
2013-06-17 19:01:47 +00:00
|
|
|
writer.Print( 0, "(plugins" );
|
2014-12-03 16:22:06 +00:00
|
|
|
|
2018-11-12 13:45:07 +00:00
|
|
|
for( auto& plugin : m_plugins )
|
2013-06-14 14:59:52 +00:00
|
|
|
{
|
2016-03-31 06:28:16 +00:00
|
|
|
writer.Print( 1, "(plugin %s (cmd %s)",
|
2018-11-12 13:45:07 +00:00
|
|
|
writer.Quotew( plugin->GetFile().GetFullPath() ).c_str(),
|
|
|
|
writer.Quotew( plugin->GetCommand() ).c_str() );
|
2016-03-31 06:28:16 +00:00
|
|
|
|
2018-11-12 13:45:07 +00:00
|
|
|
for( unsigned jj = 0; jj < plugin->Options().GetCount(); jj++ )
|
2016-03-31 06:28:16 +00:00
|
|
|
{
|
|
|
|
writer.Print( 1, "(opts %s)",
|
2018-11-12 13:45:07 +00:00
|
|
|
writer.Quotew( plugin->Options().Item( jj ) ).c_str() );
|
2016-03-31 06:28:16 +00:00
|
|
|
}
|
|
|
|
|
2018-12-28 20:30:37 +00:00
|
|
|
if( !plugin->GetName().IsEmpty() )
|
|
|
|
{
|
|
|
|
wxString option = wxString::Format( "nickname=%s", plugin->GetName() );
|
|
|
|
|
|
|
|
writer.Print( 1, "(opts %s)",
|
|
|
|
writer.Quotew( option ).c_str() );
|
|
|
|
}
|
|
|
|
|
2016-03-31 06:28:16 +00:00
|
|
|
writer.Print( 0, ")" );
|
2013-06-14 14:59:52 +00:00
|
|
|
}
|
2014-12-03 16:22:06 +00:00
|
|
|
|
2013-06-17 19:01:47 +00:00
|
|
|
writer.Print( 0, ")" );
|
2013-06-14 14:59:52 +00:00
|
|
|
|
2013-06-17 19:01:47 +00:00
|
|
|
wxString list( FROM_UTF8( writer.GetString().c_str() ) );
|
2013-06-14 14:59:52 +00:00
|
|
|
|
|
|
|
m_config->Write( BOM_PLUGINS_KEY, list );
|
|
|
|
|
|
|
|
wxString active_plugin_name = m_lbPlugins->GetStringSelection( );
|
|
|
|
m_config->Write( BOM_PLUGIN_SELECTED_KEY, active_plugin_name );
|
|
|
|
}
|
|
|
|
|
2018-10-25 14:33:19 +00:00
|
|
|
|
2018-06-28 20:21:42 +00:00
|
|
|
// Read the initialized plugins in config and fill the list of names
|
2013-06-14 14:59:52 +00:00
|
|
|
void DIALOG_BOM::installPluginsList()
|
|
|
|
{
|
2013-06-17 19:01:47 +00:00
|
|
|
wxString list, active_plugin_name;
|
2013-06-14 14:59:52 +00:00
|
|
|
m_config->Read( BOM_PLUGINS_KEY, &list );
|
|
|
|
m_config->Read( BOM_PLUGIN_SELECTED_KEY, &active_plugin_name );
|
|
|
|
|
|
|
|
if( !list.IsEmpty() )
|
|
|
|
{
|
2018-06-28 20:21:42 +00:00
|
|
|
BOM_CFG_PARSER cfg_parser( &m_plugins, TO_UTF8( list ), wxT( "plugins" ) );
|
2018-10-25 14:33:19 +00:00
|
|
|
|
2013-06-14 14:59:52 +00:00
|
|
|
try
|
|
|
|
{
|
|
|
|
cfg_parser.Parse();
|
|
|
|
}
|
2016-10-10 15:04:48 +00:00
|
|
|
catch( const IO_ERROR& )
|
2013-06-14 14:59:52 +00:00
|
|
|
{
|
2016-09-14 22:38:52 +00:00
|
|
|
// wxLogMessage( ioe.What() );
|
2013-06-14 14:59:52 +00:00
|
|
|
}
|
2018-11-12 13:45:07 +00:00
|
|
|
catch( std::runtime_error& e )
|
|
|
|
{
|
|
|
|
DisplayError( nullptr, e.what() );
|
|
|
|
}
|
2018-11-19 13:44:26 +00:00
|
|
|
|
|
|
|
// Populate list box
|
|
|
|
for( unsigned ii = 0; ii < m_plugins.size(); ii++ )
|
|
|
|
{
|
|
|
|
m_lbPlugins->Append( m_plugins[ii]->GetName() );
|
|
|
|
|
|
|
|
if( active_plugin_name == m_plugins[ii]->GetName() )
|
|
|
|
m_lbPlugins->SetSelection( ii );
|
|
|
|
}
|
2013-06-14 14:59:52 +00:00
|
|
|
}
|
|
|
|
|
2018-11-19 13:44:26 +00:00
|
|
|
if( m_plugins.empty() ) // No plugins found?
|
2013-06-14 14:59:52 +00:00
|
|
|
{
|
2018-11-19 13:44:26 +00:00
|
|
|
// Load plugins from the default locations
|
|
|
|
std::vector<wxString> pluginPaths = {
|
|
|
|
#if defined(__WXGTK__)
|
|
|
|
"/usr/share/kicad/plugins",
|
|
|
|
"/usr/local/share/kicad/plugins",
|
|
|
|
#elif defined(__WXMSW__)
|
|
|
|
wxString::Format( "%s\\scripting\\plugins", Pgm().GetExecutablePath() ),
|
|
|
|
#elif defined(__WXMAC__)
|
|
|
|
wxString::Format( "%s/plugins", GetOSXKicadDataDir() ),
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
|
|
|
wxFileName pluginPath;
|
2013-06-14 14:59:52 +00:00
|
|
|
|
2018-11-19 13:44:26 +00:00
|
|
|
for( const auto& path : pluginPaths )
|
|
|
|
{
|
|
|
|
wxLogDebug( wxString::Format( "Searching directory %s for BOM plugins", path ) );
|
|
|
|
wxDir dir( path );
|
|
|
|
|
|
|
|
if( !dir.IsOpened() )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
pluginPath.AssignDir( dir.GetName() );
|
|
|
|
wxString fileName;
|
2019-01-06 04:23:13 +00:00
|
|
|
bool cont = dir.GetFirst( &fileName, wxFileSelectorDefaultWildcardStr, wxDIR_FILES );
|
2018-11-19 13:44:26 +00:00
|
|
|
|
|
|
|
while( cont )
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
wxLogTrace( BOM_TRACE, wxString::Format( "Checking if %s is a BOM plugin", fileName ) );
|
|
|
|
|
|
|
|
if( BOM_PLUGIN::IsPlugin( fileName ) )
|
|
|
|
{
|
|
|
|
pluginPath.SetFullName( fileName );
|
|
|
|
addPlugin( pluginPath.GetFullPath() );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch( ... ) { /* well, no big deal */ }
|
|
|
|
|
|
|
|
cont = dir.GetNext( &fileName );
|
|
|
|
}
|
|
|
|
}
|
2013-06-14 14:59:52 +00:00
|
|
|
}
|
|
|
|
|
2018-11-19 13:44:26 +00:00
|
|
|
|
2013-06-14 14:59:52 +00:00
|
|
|
pluginInit();
|
|
|
|
}
|
|
|
|
|
2018-06-28 20:21:42 +00:00
|
|
|
|
2018-11-19 13:44:26 +00:00
|
|
|
BOM_PLUGIN* DIALOG_BOM::addPlugin( const wxString& aPath, const wxString& aName )
|
|
|
|
{
|
|
|
|
BOM_PLUGIN* ret = nullptr;
|
|
|
|
auto plugin = std::make_unique<BOM_PLUGIN>( aPath );
|
|
|
|
|
|
|
|
if( !plugin )
|
|
|
|
return nullptr;
|
|
|
|
|
|
|
|
if( !aName.IsEmpty() )
|
|
|
|
{
|
|
|
|
plugin->SetName( aName );
|
|
|
|
m_lbPlugins->Append( aName );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_lbPlugins->Append( plugin->GetName() );
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = plugin.get();
|
|
|
|
m_plugins.push_back( std::move( plugin ) );
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool DIALOG_BOM::pluginExists( const wxString& aName )
|
|
|
|
{
|
|
|
|
for( unsigned ii = 0; ii < m_plugins.size(); ii++ )
|
|
|
|
{
|
|
|
|
if( aName == m_plugins[ii]->GetName() )
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-06-14 14:59:52 +00:00
|
|
|
void DIALOG_BOM::OnPluginSelected( wxCommandEvent& event )
|
|
|
|
{
|
|
|
|
pluginInit();
|
|
|
|
}
|
|
|
|
|
2018-06-28 20:21:42 +00:00
|
|
|
|
2013-06-14 14:59:52 +00:00
|
|
|
void DIALOG_BOM::pluginInit()
|
|
|
|
{
|
2018-11-12 13:45:07 +00:00
|
|
|
auto plugin = selectedPlugin();
|
2013-06-14 14:59:52 +00:00
|
|
|
|
2018-11-12 13:45:07 +00:00
|
|
|
if( !plugin )
|
2013-06-15 18:02:52 +00:00
|
|
|
{
|
|
|
|
m_textCtrlName->SetValue( wxEmptyString );
|
|
|
|
m_textCtrlCommand->SetValue( wxEmptyString );
|
2018-11-12 13:45:07 +00:00
|
|
|
m_Messages->SetValue( wxEmptyString );
|
2013-06-14 14:59:52 +00:00
|
|
|
return;
|
2013-06-15 18:02:52 +00:00
|
|
|
}
|
2013-06-14 14:59:52 +00:00
|
|
|
|
2018-11-12 13:45:07 +00:00
|
|
|
m_textCtrlName->SetValue( plugin->GetName() );
|
|
|
|
m_textCtrlCommand->SetValue( plugin->GetCommand() );
|
|
|
|
m_Messages->SetValue( plugin->GetInfo() );
|
|
|
|
m_Messages->SetSelection( 0, 0 );
|
2016-03-31 06:28:16 +00:00
|
|
|
|
|
|
|
#ifdef __WINDOWS__
|
2018-11-19 13:44:26 +00:00
|
|
|
if( plugin->Options().Index( wxT( "show_console" ) ) == wxNOT_FOUND )
|
2016-03-31 06:28:16 +00:00
|
|
|
m_checkBoxShowConsole->SetValue( false );
|
|
|
|
else
|
|
|
|
m_checkBoxShowConsole->SetValue( true );
|
|
|
|
#endif
|
2019-01-14 12:14:13 +00:00
|
|
|
|
|
|
|
// A plugin can be not working, so do not left the OK button enabled if
|
|
|
|
// the plugin is not ready to use
|
|
|
|
m_sdbSizerOK->Enable( plugin->IsOk() );
|
2014-12-03 16:22:06 +00:00
|
|
|
}
|
2013-06-14 14:59:52 +00:00
|
|
|
|
2018-06-28 20:21:42 +00:00
|
|
|
|
2013-06-14 14:59:52 +00:00
|
|
|
void DIALOG_BOM::OnRunPlugin( wxCommandEvent& event )
|
|
|
|
{
|
|
|
|
// Calculate the xml netlist filename
|
2018-06-28 20:21:42 +00:00
|
|
|
wxFileName fn = g_RootSheet->GetScreen()->GetFileName();
|
2013-06-14 14:59:52 +00:00
|
|
|
|
2015-05-26 15:13:33 +00:00
|
|
|
fn.SetPath( wxPathOnly( Prj().GetProjectFullName() ) );
|
2013-06-14 14:59:52 +00:00
|
|
|
fn.ClearExt();
|
2018-06-28 20:21:42 +00:00
|
|
|
|
2013-06-14 14:59:52 +00:00
|
|
|
wxString fullfilename = fn.GetFullPath();
|
|
|
|
m_parent->ClearMsgPanel();
|
|
|
|
|
2015-06-12 07:02:06 +00:00
|
|
|
wxString reportmsg;
|
|
|
|
WX_STRING_REPORTER reporter( &reportmsg );
|
2013-06-14 14:59:52 +00:00
|
|
|
m_parent->SetNetListerCommand( m_textCtrlCommand->GetValue() );
|
2016-03-31 06:28:16 +00:00
|
|
|
|
|
|
|
#ifdef __WINDOWS__
|
|
|
|
if( m_checkBoxShowConsole->IsChecked() )
|
|
|
|
m_parent->SetExecFlags( wxEXEC_SHOW_CONSOLE );
|
|
|
|
#endif
|
|
|
|
|
2017-08-25 07:14:26 +00:00
|
|
|
m_parent->CreateNetlist( -1, fullfilename, 0, &reporter, false );
|
2015-06-12 07:02:06 +00:00
|
|
|
|
|
|
|
m_Messages->SetValue( reportmsg );
|
2013-06-14 14:59:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void DIALOG_BOM::OnRemovePlugin( wxCommandEvent& event )
|
|
|
|
{
|
|
|
|
int ii = m_lbPlugins->GetSelection();
|
|
|
|
|
|
|
|
if( ii < 0 )
|
|
|
|
return;
|
|
|
|
|
|
|
|
m_lbPlugins->Delete( ii );
|
2018-11-12 13:45:07 +00:00
|
|
|
m_plugins.erase( m_plugins.begin() + ii );
|
2013-06-15 18:02:52 +00:00
|
|
|
|
|
|
|
// Select the next item, if exists
|
2018-06-28 20:21:42 +00:00
|
|
|
if( m_lbPlugins->GetCount() )
|
|
|
|
m_lbPlugins->SetSelection( std::min( ii, (int) m_lbPlugins->GetCount() - 1 ) );
|
2013-06-15 18:02:52 +00:00
|
|
|
|
|
|
|
pluginInit();
|
2013-06-14 14:59:52 +00:00
|
|
|
}
|
|
|
|
|
2018-06-28 20:21:42 +00:00
|
|
|
|
2013-06-14 14:59:52 +00:00
|
|
|
void DIALOG_BOM::OnAddPlugin( wxCommandEvent& event )
|
|
|
|
{
|
2018-11-12 13:45:07 +00:00
|
|
|
wxString filename = choosePlugin();
|
2014-12-03 19:09:56 +00:00
|
|
|
|
2018-11-12 13:45:07 +00:00
|
|
|
if( filename.IsEmpty() )
|
2014-12-03 19:09:56 +00:00
|
|
|
return;
|
|
|
|
|
2013-06-14 14:59:52 +00:00
|
|
|
// Creates a new plugin entry
|
2018-11-12 13:45:07 +00:00
|
|
|
wxFileName fn( filename );
|
2018-10-25 14:33:19 +00:00
|
|
|
wxString name = wxGetTextFromUser( _( "Plugin nickname:" ), _( "Add Plugin" ),
|
|
|
|
fn.GetName(), this );
|
2013-06-14 14:59:52 +00:00
|
|
|
|
|
|
|
if( name.IsEmpty() )
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Verify if it does not exists
|
2018-11-19 13:44:26 +00:00
|
|
|
if( pluginExists( name ) )
|
2013-06-14 14:59:52 +00:00
|
|
|
{
|
2018-11-19 13:44:26 +00:00
|
|
|
wxMessageBox( wxString::Format( _( "Nickname \"%s\" already in use." ), name ) );
|
|
|
|
return;
|
2013-06-14 14:59:52 +00:00
|
|
|
}
|
|
|
|
|
2018-11-12 13:45:07 +00:00
|
|
|
try
|
|
|
|
{
|
2018-11-19 16:26:32 +00:00
|
|
|
auto plugin = addPlugin( fn.GetFullPath(), name );
|
2018-11-12 13:45:07 +00:00
|
|
|
|
2018-11-19 13:44:26 +00:00
|
|
|
if( plugin )
|
|
|
|
{
|
|
|
|
m_lbPlugins->SetSelection( m_lbPlugins->GetCount() - 1 );
|
|
|
|
m_textCtrlCommand->SetValue( plugin->GetCommand() );
|
|
|
|
pluginInit();
|
|
|
|
}
|
2018-11-12 13:45:07 +00:00
|
|
|
}
|
|
|
|
catch( const std::runtime_error& e )
|
|
|
|
{
|
|
|
|
DisplayError( this, e.what() );
|
|
|
|
}
|
2013-06-14 14:59:52 +00:00
|
|
|
}
|
|
|
|
|
2018-10-25 14:33:19 +00:00
|
|
|
|
2014-12-03 19:09:56 +00:00
|
|
|
wxString DIALOG_BOM::choosePlugin()
|
2013-06-14 14:59:52 +00:00
|
|
|
{
|
2018-10-25 14:33:19 +00:00
|
|
|
static wxString lastPath;
|
|
|
|
|
|
|
|
if( lastPath.IsEmpty() )
|
|
|
|
{
|
2014-10-17 17:45:33 +00:00
|
|
|
#ifndef __WXMAC__
|
2018-10-25 14:33:19 +00:00
|
|
|
lastPath = Pgm().GetExecutablePath();
|
2014-10-17 17:45:33 +00:00
|
|
|
#else
|
2018-10-25 14:33:19 +00:00
|
|
|
lastPath = GetOSXKicadDataDir() + "/plugins";
|
2014-10-17 17:45:33 +00:00
|
|
|
#endif
|
2018-10-25 14:33:19 +00:00
|
|
|
}
|
2013-06-14 14:59:52 +00:00
|
|
|
|
2018-11-12 13:45:07 +00:00
|
|
|
wxString fullFileName = EDA_FILE_SELECTOR( _( "Plugin files:" ), lastPath, wxEmptyString,
|
2019-01-06 04:23:13 +00:00
|
|
|
wxEmptyString, wxFileSelectorDefaultWildcardStr,
|
|
|
|
this, wxFD_OPEN, true );
|
2013-06-14 14:59:52 +00:00
|
|
|
|
2018-11-12 13:45:07 +00:00
|
|
|
return fullFileName;
|
2013-06-14 14:59:52 +00:00
|
|
|
}
|
|
|
|
|
2014-12-03 16:22:06 +00:00
|
|
|
|
2018-11-12 13:45:07 +00:00
|
|
|
void DIALOG_BOM::OnEditPlugin( wxCommandEvent& event )
|
2013-06-14 14:59:52 +00:00
|
|
|
{
|
2018-11-12 13:45:07 +00:00
|
|
|
auto plugin = selectedPlugin();
|
2015-06-29 16:34:31 +00:00
|
|
|
|
2018-11-12 13:45:07 +00:00
|
|
|
if( !plugin )
|
|
|
|
return;
|
2014-12-03 16:22:06 +00:00
|
|
|
|
2018-11-12 13:45:07 +00:00
|
|
|
wxString pluginFile = plugin->GetFile().GetFullPath();
|
2014-12-03 16:22:06 +00:00
|
|
|
|
2018-11-12 13:45:07 +00:00
|
|
|
if( pluginFile.Length() <= 2 ) // if name != ""
|
2014-12-03 16:22:06 +00:00
|
|
|
{
|
2018-10-25 14:33:19 +00:00
|
|
|
wxMessageBox( _( "Plugin file name not found." ) );
|
2014-12-03 16:22:06 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-11-12 13:45:07 +00:00
|
|
|
AddDelimiterString( pluginFile );
|
2018-06-28 20:21:42 +00:00
|
|
|
wxString editorname = Pgm().GetEditorName();
|
2013-06-14 14:59:52 +00:00
|
|
|
|
|
|
|
if( !editorname.IsEmpty() )
|
2018-11-12 13:45:07 +00:00
|
|
|
ExecuteFile( this, editorname, pluginFile );
|
2013-06-14 14:59:52 +00:00
|
|
|
else
|
2018-06-28 20:21:42 +00:00
|
|
|
wxMessageBox( _( "No text editor selected in KiCad. Please choose one." ) );
|
2013-06-14 14:59:52 +00:00
|
|
|
}
|
|
|
|
|
2018-06-28 20:21:42 +00:00
|
|
|
|
2013-06-14 14:59:52 +00:00
|
|
|
void DIALOG_BOM::OnHelp( wxCommandEvent& event )
|
|
|
|
{
|
2018-11-12 13:45:07 +00:00
|
|
|
HTML_MESSAGE_BOX help_Dlg( this, _( "Bill of Material Generation Help" ) );
|
2018-01-11 08:08:55 +00:00
|
|
|
help_Dlg.SetDialogSizeInDU( 500, 350 );
|
2013-06-14 14:59:52 +00:00
|
|
|
|
2018-10-25 14:33:19 +00:00
|
|
|
wxString msg = FROM_UTF8( s_bomHelpInfo );
|
2013-06-14 14:59:52 +00:00
|
|
|
help_Dlg.m_htmlWindow->AppendToPage( msg );
|
|
|
|
help_Dlg.ShowModal();
|
|
|
|
}
|
|
|
|
|
2018-06-28 20:21:42 +00:00
|
|
|
|
2013-06-14 14:59:52 +00:00
|
|
|
void DIALOG_BOM::OnCommandLineEdited( wxCommandEvent& event )
|
|
|
|
{
|
2018-11-12 13:45:07 +00:00
|
|
|
auto plugin = selectedPlugin();
|
2013-06-14 14:59:52 +00:00
|
|
|
|
2018-11-12 13:45:07 +00:00
|
|
|
if( plugin )
|
|
|
|
plugin->SetCommand( m_textCtrlCommand->GetValue() );
|
2013-06-14 14:59:52 +00:00
|
|
|
}
|
|
|
|
|
2018-06-28 20:21:42 +00:00
|
|
|
|
2013-06-14 14:59:52 +00:00
|
|
|
void DIALOG_BOM::OnNameEdited( wxCommandEvent& event )
|
|
|
|
{
|
|
|
|
int ii = m_lbPlugins->GetSelection();
|
|
|
|
|
|
|
|
if( ii < 0 )
|
|
|
|
return;
|
|
|
|
|
2018-11-12 13:45:07 +00:00
|
|
|
m_plugins[ii]->SetName( m_textCtrlName->GetValue() );
|
|
|
|
m_lbPlugins->SetString( ii, m_plugins[ii]->GetName() );
|
2016-03-31 06:28:16 +00:00
|
|
|
}
|
|
|
|
|
2018-11-12 13:45:07 +00:00
|
|
|
|
2016-03-31 06:28:16 +00:00
|
|
|
void DIALOG_BOM::OnShowConsoleChanged( wxCommandEvent& event )
|
|
|
|
{
|
|
|
|
#ifdef __WINDOWS__
|
2018-11-12 13:45:07 +00:00
|
|
|
static constexpr wxChar OPT_SHOW_CONSOLE[] = wxT( "show_console" );
|
2016-03-31 06:28:16 +00:00
|
|
|
|
2018-11-12 13:45:07 +00:00
|
|
|
auto plugin = selectedPlugin();
|
|
|
|
|
|
|
|
if( !plugin )
|
2016-03-31 06:28:16 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
if( m_checkBoxShowConsole->IsChecked() )
|
|
|
|
{
|
2018-11-12 13:45:07 +00:00
|
|
|
if( plugin->Options().Index( OPT_SHOW_CONSOLE ) == wxNOT_FOUND )
|
|
|
|
plugin->Options().Add( OPT_SHOW_CONSOLE );
|
2016-03-31 06:28:16 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-11-12 13:45:07 +00:00
|
|
|
plugin->Options().Remove( OPT_SHOW_CONSOLE );
|
2016-03-31 06:28:16 +00:00
|
|
|
}
|
|
|
|
#endif
|
2013-06-14 14:59:52 +00:00
|
|
|
}
|
2018-06-28 20:21:42 +00:00
|
|
|
|
|
|
|
|
|
|
|
void DIALOG_BOM::OnIdle( wxIdleEvent& event )
|
|
|
|
{
|
|
|
|
// On some platforms we initialize wxTextCtrls to all-selected, but we don't want that
|
|
|
|
// for the messages text box.
|
|
|
|
if( !m_initialized )
|
|
|
|
{
|
|
|
|
m_Messages->SetSelection( 0, 0 );
|
|
|
|
m_initialized = true;
|
|
|
|
}
|
|
|
|
}
|