23#include <wx/filename.h>
45#define FMT_UNIMPLEMENTED _( "Plugin '%s' does not implement the '%s' function." )
46#define FMT_NOTFOUND _( "Plugin type '%s' is not found." )
62SCH_IO* SCH_IO_MGR::FindPlugin( SCH_FILE_T aFileType )
79 default:
return nullptr;
92 case SCH_KICAD:
return wxString( wxT(
"KiCad" ) );
93 case SCH_LEGACY:
return wxString( wxT(
"Legacy" ) );
94 case SCH_ALTIUM:
return wxString( wxT(
"Altium" ) );
95 case SCH_CADSTAR_ARCHIVE:
return wxString( wxT(
"CADSTAR Schematic Archive" ) );
96 case SCH_DATABASE:
return wxString( wxT(
"Database" ) );
97 case SCH_EAGLE:
return wxString( wxT(
"EAGLE" ) );
98 case SCH_EASYEDA:
return wxString( wxT(
"EasyEDA (JLCEDA) Std" ) );
99 case SCH_EASYEDAPRO:
return wxString( wxT(
"EasyEDA (JLCEDA) Pro" ) );
100 case SCH_LTSPICE:
return wxString( wxT(
"LTspice" ) );
101 case SCH_HTTP:
return wxString( wxT(
"HTTP" ) );
103 default:
return wxString::Format(
_(
"Unknown SCH_FILE_T value: %d" ), aType );
114 if( aType == wxT(
"KiCad" ) )
116 else if( aType == wxT(
"Legacy" ) )
118 else if( aType == wxT(
"Altium" ) )
120 else if( aType == wxT(
"CADSTAR Schematic Archive" ) )
121 return SCH_CADSTAR_ARCHIVE;
122 else if( aType == wxT(
"Database" ) )
124 else if( aType == wxT(
"EAGLE" ) )
126 else if( aType == wxT(
"EasyEDA (JLCEDA) Std" ) )
128 else if( aType == wxT(
"EasyEDA (JLCEDA) Pro" ) )
129 return SCH_EASYEDAPRO;
130 else if( aType == wxT(
"LTspice" ) )
132 else if( aType == wxT(
"HTTP" ) )
135 return SCH_NESTED_TABLE;
137 return SCH_FILE_UNKNOWN;
145 if( parser.
Parse( aLibPath.ToStdString() ).has_value() )
146 return SCH_NESTED_TABLE;
148 for(
const SCH_IO_MGR::SCH_FILE_T&
fileType : SCH_IO_MGR::SCH_FILE_T_vector )
150 bool isKiCad =
fileType == SCH_IO_MGR::SCH_KICAD ||
fileType == SCH_IO_MGR::SCH_LEGACY;
169 if( pi->SCH_IO::CanReadLibrary( aLibPath ) )
176 if( pi->CanReadLibrary( aLibPath ) )
181 return SCH_IO_MGR::SCH_FILE_UNKNOWN;
188 for(
const SCH_IO_MGR::SCH_FILE_T&
fileType : SCH_IO_MGR::SCH_FILE_T_vector )
190 bool isKiCad =
fileType == SCH_IO_MGR::SCH_KICAD ||
fileType == SCH_IO_MGR::SCH_LEGACY;
203 if( pi->CanReadSchematicFile( aSchematicPath ) )
207 return SCH_IO_MGR::SCH_FILE_UNKNOWN;
212 const wxString& aNewFilepath )
216 if( oldFileType == SCH_IO_MGR::SCH_FILE_UNKNOWN )
221 std::vector<LIB_SYMBOL*> symbols;
222 std::vector<LIB_SYMBOL*> newSymbols;
223 std::map<LIB_SYMBOL*, LIB_SYMBOL*> symbolMap;
227 oldFilePI->EnumerateSymbolLib( symbols, aOldFilePath, aOldFileProps );
232 if( symbol->IsDerived() )
237 newSymbols.push_back(
new LIB_SYMBOL( *symbol ) );
238 symbolMap[symbol] = newSymbols.back();
244 if( !symbol->IsDerived() )
249 newSymbols.push_back(
new LIB_SYMBOL( *symbol ) );
250 newSymbols.back()->SetParent( symbolMap[ symbol->GetParent().lock().get() ] );
254 kicadPI->SaveLibrary( aNewFilepath );
259 kicadPI->SaveSymbol( aNewFilepath, symbol );
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 KiCad database library provides both symbol and footprint metadata, so there are "shim" plugins on ...
A SCH_IO derivation for loading 6.x+ Eagle schematic files.
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)
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.
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.