25#include <wx/filename.h>
54#define FMT_UNIMPLEMENTED _( "Plugin '%s' does not implement the '%s' function." )
55#define FMT_NOTFOUND _( "Plugin type '%s' is not found." )
71SCH_IO* SCH_IO_MGR::FindPlugin( SCH_FILE_T aFileType )
94 default:
return nullptr;
107 case SCH_KICAD:
return wxString( wxT(
"KiCad" ) );
108 case SCH_LEGACY:
return wxString( wxT(
"Legacy" ) );
109 case SCH_ALTIUM:
return wxString( wxT(
"Altium" ) );
110 case SCH_CADSTAR_ARCHIVE:
return wxString( wxT(
"CADSTAR Schematic Archive" ) );
111 case SCH_DATABASE:
return wxString( wxT(
"Database" ) );
112 case SCH_EAGLE:
return wxString( wxT(
"EAGLE" ) );
113 case SCH_EASYEDA:
return wxString( wxT(
"EasyEDA (JLCEDA) Std" ) );
114 case SCH_EASYEDAPRO:
return wxString( wxT(
"EasyEDA (JLCEDA) Pro" ) );
115 case SCH_EASYEDAPRO_V3:
return wxString( wxT(
"EasyEDA (JLCEDA) Pro v3" ) );
116 case SCH_GEDA:
return wxString( wxT(
"gEDA / Lepton EDA" ) );
117 case SCH_LTSPICE:
return wxString( wxT(
"LTspice" ) );
118 case SCH_HTTP:
return wxString( wxT(
"HTTP" ) );
119 case SCH_PADS:
return wxString( wxT(
"PADS Logic" ) );
120 case SCH_DIPTRACE:
return wxString( wxT(
"DipTrace" ) );
121 case SCH_PCAD:
return wxString( wxT(
"P-CAD" ) );
122 case SCH_ORCAD:
return wxString( wxT(
"OrCAD" ) );
124 default:
return wxString::Format(
_(
"Unknown SCH_FILE_T value: %d" ), aType );
135 if( aType == wxT(
"KiCad" ) )
137 else if( aType == wxT(
"Legacy" ) )
139 else if( aType == wxT(
"Altium" ) )
141 else if( aType == wxT(
"CADSTAR Schematic Archive" ) )
142 return SCH_CADSTAR_ARCHIVE;
143 else if( aType == wxT(
"Database" ) )
145 else if( aType == wxT(
"EAGLE" ) )
147 else if( aType == wxT(
"EasyEDA (JLCEDA) Std" ) )
149 else if( aType == wxT(
"EasyEDA (JLCEDA) Pro" ) )
150 return SCH_EASYEDAPRO;
151 else if( aType == wxT(
"EasyEDA (JLCEDA) Pro v3" ) )
152 return SCH_EASYEDAPRO_V3;
153 else if( aType == wxT(
"gEDA / Lepton EDA" ) )
155 else if( aType == wxT(
"LTspice" ) )
157 else if( aType == wxT(
"HTTP" ) )
159 else if( aType == wxT(
"PADS Logic" ) )
161 else if( aType == wxT(
"DipTrace" ) )
163 else if( aType == wxT(
"P-CAD" ) )
165 else if( aType == wxT(
"OrCAD" ) )
168 return SCH_NESTED_TABLE;
170 return SCH_FILE_UNKNOWN;
178 if( parser.
Parse( aLibPath.ToStdString() ).has_value() )
179 return SCH_NESTED_TABLE;
181 for(
const SCH_IO_MGR::SCH_FILE_T&
fileType : SCH_IO_MGR::SCH_FILE_T_vector )
183 bool isKiCad =
fileType == SCH_IO_MGR::SCH_KICAD ||
fileType == SCH_IO_MGR::SCH_LEGACY;
202 if( pi->SCH_IO::CanReadLibrary( aLibPath ) )
209 if( pi->CanReadLibrary( aLibPath ) )
214 return SCH_IO_MGR::SCH_FILE_UNKNOWN;
221 for(
const SCH_IO_MGR::SCH_FILE_T&
fileType : SCH_IO_MGR::SCH_FILE_T_vector )
223 bool isKiCad =
fileType == SCH_IO_MGR::SCH_KICAD ||
fileType == SCH_IO_MGR::SCH_LEGACY;
236 if( pi->CanReadSchematicFile( aSchematicPath ) )
240 return SCH_IO_MGR::SCH_FILE_UNKNOWN;
245 const wxString& aNewFilepath,
REPORTER* aReporter )
247 auto report = [&](
const wxString& aMessage,
SEVERITY aSeverity )
250 aReporter->
Report( aMessage, aSeverity );
255 if( oldFileType == SCH_IO_MGR::SCH_FILE_UNKNOWN )
263 if( oldFileType == SCH_IO_MGR::SCH_NESTED_TABLE )
269 if( oldFileType == SCH_IO_MGR::SCH_HTTP || oldFileType == SCH_IO_MGR::SCH_DATABASE )
275 if( !oldFilePI || !kicadPI )
279 oldFilePI->SetReporter( aReporter );
281 std::vector<LIB_SYMBOL*> symbols;
282 std::vector<std::unique_ptr<LIB_SYMBOL>> newSymbols;
283 std::map<LIB_SYMBOL*, LIB_SYMBOL*> symbolMap;
285 report( wxString::Format(
_(
"Loading symbol library '%s'" ), aOldFilePath ),
RPT_SEVERITY_ACTION );
289 oldFilePI->EnumerateSymbolLib( symbols, aOldFilePath, aOldFileProps );
294 if( symbol->IsDerived() )
299 newSymbols.push_back( std::make_unique<LIB_SYMBOL>( *symbol ) );
300 symbolMap[symbol] = newSymbols.back().get();
306 if( !symbol->IsDerived() )
311 newSymbols.push_back( std::make_unique<LIB_SYMBOL>( *symbol ) );
312 newSymbols.back()->SetParent( symbolMap[ symbol->GetParent().lock().get() ] );
316 kicadPI->SaveLibrary( aNewFilepath );
320 report( wxString::Format(
_(
"Library '%s' Convert err: \"%s\"" ), aOldFilePath, io_err.
What() ),
324 catch(
const std::exception& e )
326 report( wxString::Format(
_(
"Error loading library '%s': %s" ), aOldFilePath, e.what() ),
RPT_SEVERITY_ERROR );
331 report( wxString::Format(
_(
"Error loading library '%s': unknown error" ), aOldFilePath ),
338 for( std::unique_ptr<LIB_SYMBOL>& symbol : newSymbols )
340 const wxString symbolName = symbol->GetName();
344 kicadPI->SaveSymbol( aNewFilepath, std::move( symbol ) );
348 report( wxString::Format(
_(
"Error saving symbol '%s': %s" ), symbolName, io_err.
What() ),
352 catch(
const std::exception& e )
354 report( wxString::Format(
_(
"Error saving symbol '%s': %s" ), symbolName, e.what() ),
360 report( wxString::Format(
_(
"Error saving symbol '%s': unknown error" ), symbolName ),
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()
tl::expected< LIBRARY_TABLE_IR, LIBRARY_PARSE_ERROR > Parse(const std::filesystem::path &aPath)
static const wxString TABLE_TYPE_NAME
Define a library symbol object.
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.
A KiCad database library provides both symbol and footprint metadata, so there are "shim" plugins on ...
A SCH_IO derivation for loading DipTrace schematic files (.dch).
A SCH_IO derivation for loading Eagle schematic files.
A SCH_IO derivation for loading gEDA/gschem schematic files (.sch).
A KiCad HTTP library provides both symbol and footprint metadata, so there are "shim" plugins on both...
A SCH_IO derivation for loading schematic files created before the new s-expression file format.
A SCH_IO derivation for loading schematic files using the new s-expression file format.
static bool ConvertLibrary(std::map< std::string, UTF8 > *aOldFileProps, const wxString &aOldFilePath, const wxString &aNewFilepath, REPORTER *aReporter=nullptr)
Convert a schematic symbol library to the latest KiCad format.
static SCH_FILE_T EnumFromStr(const wxString &aFileType)
Return the #SCH_FILE_T from the corresponding plugin type name: "kicad", "legacy",...
static const wxString ShowType(SCH_FILE_T aFileType)
Return a brief name for a plugin, given aFileType enum.
static SCH_FILE_T GuessPluginTypeFromSchPath(const wxString &aSchematicPath, int aCtl=0)
Return a plugin type given a schematic using the file extension of aSchematicPath.
static SCH_FILE_T GuessPluginTypeFromLibPath(const wxString &aLibPath, int aCtl=0)
Return a plugin type given a symbol library using the file extension of aLibPath.
A SCH_IO derivation for loading PADS Logic schematic files.
A SCH_IO derivation for loading P-CAD 2006 ASCII schematic files (.SCH).
Base class that schematic file and library loading and saving plugins should derive from.
std::unique_ptr< T > IO_RELEASER
Helper to hold and release an IO_BASE object when exceptions are thrown.
#define KICTL_CREATE
caller thinks requested project files may not exist.
#define KICTL_KICAD_ONLY
chosen file is from KiCad according to user
#define KICTL_NONKICAD_ONLY
chosen file is non-KiCad according to user
MODEL3D_FORMAT_TYPE fileType(const char *aFileName)
wxString EscapeString(const wxString &aSource, ESCAPE_CONTEXT aContext)
The Escape/Unescape routines use HTML-entity-reference-style encoding to handle characters which are:...
Definition of file extensions used in Kicad.