25#include <wx/filename.h> 
   52#define FMT_UNIMPLEMENTED   _( "Plugin '%s' does not implement the '%s' function." ) 
   53#define FMT_NOTFOUND        _( "Plugin type '%s' is not found." ) 
   81    for( 
const auto& plugin : plugins )
 
   83        if ( plugin.m_type == aType )
 
   89    return wxString::Format( 
_( 
"UNKNOWN (%d)" ), aType );
 
 
   97    for( 
const auto& plugin : plugins )
 
   99        if ( plugin.m_name == aType )
 
  101            return plugin.m_type;
 
 
  115    for( 
const auto& plugin : plugins )
 
  127        if( pi->CanReadBoard( aFileName ) )
 
  128            return plugin.m_type;
 
 
  139    for( 
const auto& plugin : plugins )
 
  151        if( pi->CanReadLibrary( aLibPath ) )
 
  152            return plugin.m_type;
 
 
  160                     const std::map<std::string, UTF8>* aProperties, 
PROJECT* aProject,
 
  167        pi->SetProgressReporter( aProgressReporter );
 
  168        return pi->LoadBoard( aFileName, aAppendToMe, aProperties, aProject );
 
 
  176                   const std::map<std::string, UTF8>* aProperties )
 
  182        pi->SaveBoard( aFileName, aBoard, aProperties );  
 
 
  191                                 const wxString& aOldFilePath, 
const wxString& aNewFilePath,
 
  201    wxArrayString fpNames;
 
  202    wxFileName newFileName( aNewFilePath );
 
  204    if( newFileName.HasExt() )
 
  206        wxString extraDir = newFileName.GetFullName();
 
  207        newFileName.ClearExt();
 
  208        newFileName.SetName( 
"" );
 
  209        newFileName.AppendDir( extraDir );
 
  212    if( !newFileName.DirExists() && !wxFileName::Mkdir( aNewFilePath, wxS_DIR_DEFAULT ) )
 
  217        bool bestEfforts = 
false; 
 
  218        oldFilePI->FootprintEnumerate( fpNames, aOldFilePath, bestEfforts, &aOldFileProps );
 
  219        std::map<std::string, UTF8> props { { 
"skip_cache_validation", 
"" } };
 
  221        for ( 
const wxString& fpName : fpNames )
 
  223            std::unique_ptr<const FOOTPRINT> fp( oldFilePI->GetEnumeratedFootprint( aOldFilePath, fpName,
 
  228                kicadPI->FootprintSave( aNewFilePath, fp.get(), &props );
 
  236                    aReporter->
Report( wxString::Format( 
"Footprint \"%s\" can't be saved. Skipped",
 
  245            aReporter->
Report( wxString::Format( 
"Library '%s' Convert err: \"%s\"",
 
  246                                             aOldFilePath, io_err.
What() ),
 
 
  277        wxT( 
"Altium Circuit Maker" ),
 
  282        wxT( 
"Altium Circuit Studio" ),
 
  287        wxT( 
"Altium Designer" ),
 
  292        wxT( 
"CADSTAR PCB Archive" ),
 
  302        wxT( 
"EasyEDA / JLCEDA Std" ),
 
  307        wxT( 
"EasyEDA / JLCEDA Pro" ),
 
  327        wxT( 
"Solidworks PCB" ),
 
Information pertinent to a Pcbnew printed circuit board.
 
Hold an error message and may be used when throwing exceptions containing meaningful error messages.
 
virtual const wxString What() const
A composite of Problem() and Where()
 
Works with Eagle 6.x XML board files and footprints to implement the Pcbnew #PLUGIN API or a portion ...
 
A #PLUGIN derivation for saving and loading Geda PCB files.
 
A #PLUGIN derivation which could possibly be put into a DLL/DSO.
 
A #PLUGIN derivation for saving and loading Pcbnew s-expression formatted files.
 
PCB_IO * Create(PCB_FILE_T aFileType) const
 
const std::vector< ENTRY > & AllPlugins() const
 
static PLUGIN_REGISTRY * Instance()
 
static PCB_IO * PluginFind(PCB_FILE_T aFileType)
Return a #PLUGIN which the caller can use to import, export, save, or load design documents.
 
static bool ConvertLibrary(const std::map< std::string, UTF8 > &aOldFileProps, const wxString &aOldFilePath, const wxString &aNewFilePath, REPORTER *aReporter)
Convert a schematic symbol library to the latest KiCad format.
 
static BOARD * Load(PCB_FILE_T aFileType, const wxString &aFileName, BOARD *aAppendToMe=nullptr, const std::map< std::string, UTF8 > *aProperties=nullptr, PROJECT *aProject=nullptr, PROGRESS_REPORTER *aProgressReporter=nullptr)
Find the requested #PLUGIN and if found, calls the #PLUGIN::LoadBoard() function on it using the argu...
 
static PCB_FILE_T EnumFromStr(const wxString &aFileType)
Return the PCB_FILE_T from the corresponding plugin type name: "kicad", "legacy", etc.
 
PCB_FILE_T
The set of file types that the PCB_IO_MGR knows about, and for which there has been a plugin written,...
 
@ KICAD_SEXP
S-expression Pcbnew file format.
 
@ GEDA_PCB
Geda PCB file formats.
 
@ LEGACY
Legacy Pcbnew file formats prior to s-expression.
 
static PCB_FILE_T FindPluginTypeFromBoardPath(const wxString &aFileName, int aCtl=0)
Return a plugin type given a path for a board file.
 
static void Save(PCB_FILE_T aFileType, const wxString &aFileName, BOARD *aBoard, const std::map< std::string, UTF8 > *aProperties=nullptr)
Write either a full aBoard to a storage file in a format that this implementation knows about,...
 
static PCB_FILE_T GuessPluginTypeFromLibPath(const wxString &aLibPath, int aCtl=0)
Return a plugin type given a footprint library's libPath.
 
static const wxString ShowType(PCB_FILE_T aFileType)
Return a brief name for a plugin given aFileType enum.
 
A base class that BOARD loading and saving plugins should derive from.
 
A progress reporter interface for use in multi-threaded environments.
 
Container for project specific data.
 
A pure virtual class used to derive REPORTER objects from.
 
virtual REPORTER & Report(const wxString &aText, SEVERITY aSeverity=RPT_SEVERITY_UNDEFINED)
Report a string with a given severity.
 
std::unique_ptr< T > IO_RELEASER
Helper to hold and release an IO_BASE object when exceptions are thrown.
 
#define THROW_IO_ERROR(msg)
macro which captures the "call site" values of FILE_, __FUNCTION & LINE
 
#define KICTL_KICAD_ONLY
chosen file is from KiCad according to user
 
#define KICTL_NONKICAD_ONLY
chosen file is non-KiCad according to user
 
static PCB_IO_MGR::REGISTER_PLUGIN registerODBPPPlugin(PCB_IO_MGR::ODBPP, wxT("ODB++"), []() -> PCB_IO *{ return new PCB_IO_ODBPP;})
 
static PCB_IO_MGR::REGISTER_PLUGIN registerSolidworksPCBPlugin(PCB_IO_MGR::SOLIDWORKS_PCB, wxT("Solidworks PCB"), []() -> PCB_IO *{ return new PCB_IO_SOLIDWORKS;})
 
static PCB_IO_MGR::REGISTER_PLUGIN registerEasyEDAProPlugin(PCB_IO_MGR::EASYEDAPRO, wxT("EasyEDA / JLCEDA Pro"), []() -> PCB_IO *{ return new PCB_IO_EASYEDAPRO;})
 
static PCB_IO_MGR::REGISTER_PLUGIN registerEasyEDAPlugin(PCB_IO_MGR::EASYEDA, wxT("EasyEDA / JLCEDA Std"), []() -> PCB_IO *{ return new PCB_IO_EASYEDA;})
 
static PCB_IO_MGR::REGISTER_PLUGIN registerGPCBPlugin(PCB_IO_MGR::GEDA_PCB, wxT("GEDA/Pcb"), []() -> PCB_IO *{ return new PCB_IO_GEDA;})
 
static PCB_IO_MGR::REGISTER_PLUGIN registerKicadPlugin(PCB_IO_MGR::KICAD_SEXP, wxT("KiCad"), []() -> PCB_IO *{ return new PCB_IO_KICAD_SEXPR;})
 
static PCB_IO_MGR::REGISTER_PLUGIN registerIPC2581Plugin(PCB_IO_MGR::IPC2581, wxT("IPC-2581"), []() -> PCB_IO *{ return new PCB_IO_IPC2581;})
 
static PCB_IO_MGR::REGISTER_PLUGIN registerPcadPlugin(PCB_IO_MGR::PCAD, wxT("P-Cad"), []() -> PCB_IO *{ return new PCB_IO_PCAD;})
 
static PCB_IO_MGR::REGISTER_PLUGIN registerEaglePlugin(PCB_IO_MGR::EAGLE, wxT("Eagle"), []() -> PCB_IO *{ return new PCB_IO_EAGLE;})
 
static PCB_IO_MGR::REGISTER_PLUGIN registerAltiumCircuitStudioPlugin(PCB_IO_MGR::ALTIUM_CIRCUIT_STUDIO, wxT("Altium Circuit Studio"), []() -> PCB_IO *{ return new PCB_IO_ALTIUM_CIRCUIT_STUDIO;})
 
static PCB_IO_MGR::REGISTER_PLUGIN registerAltiumDesignerPlugin(PCB_IO_MGR::ALTIUM_DESIGNER, wxT("Altium Designer"), []() -> PCB_IO *{ return new PCB_IO_ALTIUM_DESIGNER;})
 
static PCB_IO_MGR::REGISTER_PLUGIN registerCadstarArchivePlugin(PCB_IO_MGR::CADSTAR_PCB_ARCHIVE, wxT("CADSTAR PCB Archive"), []() -> PCB_IO *{ return new PCB_IO_CADSTAR_ARCHIVE;})
 
static PCB_IO_MGR::REGISTER_PLUGIN registerLegacyPlugin(PCB_IO_MGR::LEGACY, wxT("Legacy"), []() -> PCB_IO *{ return new PCB_IO_KICAD_LEGACY;})
 
static PCB_IO_MGR::REGISTER_PLUGIN registerFabmasterPlugin(PCB_IO_MGR::FABMASTER, wxT("Fabmaster"), []() -> PCB_IO *{ return new PCB_IO_FABMASTER;})
 
static PCB_IO_MGR::REGISTER_PLUGIN registerAltiumCircuitMakerPlugin(PCB_IO_MGR::ALTIUM_CIRCUIT_MAKER, wxT("Altium Circuit Maker"), []() -> PCB_IO *{ return new PCB_IO_ALTIUM_CIRCUIT_MAKER;})
 
Definition of file extensions used in Kicad.