KiCad PCB EDA Suite
Loading...
Searching...
No Matches
sch_io_kicad_sexpr_lib_cache.cpp
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
5 *
6 * @author Wayne Stambaugh <[email protected]>
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version 2
11 * of the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program. If not, see <https://www.gnu.org/licenses/>.
20 */
21
22#include <fmt/format.h>
23#include <set>
24
25#include <wx/log.h>
26#include <wx/dir.h>
27
28#include <base_units.h>
29#include <build_version.h>
30#include <common.h>
31#include <sch_shape.h>
32#include <lib_symbol.h>
33#include <sch_textbox.h>
34#include <macros.h>
35#include <richio.h>
39#include <string_utils.h>
40#include <trace_helpers.h>
42
43
44SCH_IO_KICAD_SEXPR_LIB_CACHE::SCH_IO_KICAD_SEXPR_LIB_CACHE( const wxString& aFullPathAndFileName ) :
45 SCH_IO_LIB_CACHE( aFullPathAndFileName )
46{
48}
49
50
54
55
57{
58 // Normalize the path: if it's a directory on the filesystem, ensure m_libFileName
59 // is marked as a directory so that IsDir() checks work correctly throughout the code.
60 // wxFileName::IsDir() only checks if the path string ends with a separator, not if
61 // the path is actually a directory on the filesystem.
62 if( !m_libFileName.IsDir() && wxFileName::DirExists( m_libFileName.GetFullPath() ) )
63 m_libFileName.AssignDir( m_libFileName.GetFullPath() );
64
65 if( !isLibraryPathValid() )
66 THROW_IO_ERRORF( _( "Library '%s' not found." ), m_libFileName.GetFullPath() );
67
68 wxCHECK_RET( m_libFileName.IsAbsolute(),
69 wxString::Format( wxT( "Cannot use relative file paths in sexpr plugin to open library '%s'." ),
70 m_libFileName.GetFullPath() ) );
71
72 if( !m_libFileName.IsDir() )
73 {
74 wxLogTrace( traceSchLegacyPlugin, "Loading sexpr symbol library file '%s'",
75 m_libFileName.GetFullPath() );
76
77 FILE_LINE_READER reader( m_libFileName.GetFullPath() );
78
79 SCH_IO_KICAD_SEXPR_PARSER parser( &reader );
80
81 parser.ParseLib( m_symbols );
82
86
87 // Check if there were any parse warnings (symbols that failed to parse).
88 // If so, mark the library as having parse errors and throw to notify the user.
89 // The library has loaded all valid symbols, but saving would lose the bad ones.
90 const std::vector<wxString>& warnings = parser.GetParseWarnings();
91
92 if( !warnings.empty() )
93 {
94 SetParseError( true );
95
96 wxString errorMsg = wxString::Format(
97 _( "Library '%s' loaded with errors:\n\n" ), m_libFileName.GetFullPath() );
98
99 for( const wxString& warning : warnings )
100 errorMsg += warning + wxT( "\n\n" );
101
102 errorMsg += _( "The library cannot be saved until these errors are fixed manually." );
103
104 THROW_IO_ERROR( errorMsg );
105 }
106 }
107 else
108 {
109 wxString libFileName;
110
111 wxLogTrace( traceSchLegacyPlugin, "Loading sexpr symbol library folder '%s'", m_libFileName.GetPath() );
112
113 // Clear source file tracking for fresh load
114 m_symbolSourceFiles.clear();
115
116 wxFileName tmp( m_libFileName.GetPath(), wxS( "dummy" ), wxString( FILEEXT::KiCadSymbolLibFileExtension ) );
117 wxDir dir( m_libFileName.GetPath() );
118 wxString fileSpec = wxS( "*." ) + wxString( FILEEXT::KiCadSymbolLibFileExtension );
119
120 if( dir.GetFirst( &libFileName, fileSpec ) )
121 {
122 wxString errorCache;
123
124 do
125 {
126 tmp.SetFullName( libFileName );
127 wxString sourceFilePath = tmp.GetFullPath();
128
129 // Track symbol pointers before parsing so we can detect which were replaced.
130 // When the parser encounters a duplicate name, it overwrites the existing
131 // symbol, so we need to update source tracking for those symbols too.
132 std::map<wxString, LIB_SYMBOL*> existingPtrs;
133
134 for( const auto& [ name, symbol ] : m_symbols )
135 existingPtrs[ name ] = symbol;
136
137 try
138 {
139 FILE_LINE_READER reader( sourceFilePath );
140 SCH_IO_KICAD_SEXPR_PARSER parser( &reader );
141
142 parser.ParseLib( m_symbols );
144
145 // Update source tracking for all symbols that came from this file.
146 // This includes both new symbols and symbols that were overwritten
147 // (when a duplicate name existed in a previously loaded file).
148 for( const auto& [ name, symbol ] : m_symbols )
149 {
150 auto it = existingPtrs.find( name );
151
152 if( it == existingPtrs.end() )
153 {
154 // New symbol from this file
155 m_symbolSourceFiles[ name ] = sourceFilePath;
156 }
157 else if( it->second != symbol )
158 {
159 // Symbol pointer changed - this file overwrote the previous version.
160 // Update tracking so we save to this file (the one whose version
161 // is actually in memory).
162 m_symbolSourceFiles[ name ] = sourceFilePath;
163 }
164 }
165
166 // Collect any parse warnings from this file
167 for( const wxString& warning : parser.GetParseWarnings() )
168 {
169 SetParseError( true );
170
171 if( !errorCache.IsEmpty() )
172 errorCache += wxT( "\n\n" );
173
174 errorCache += warning;
175 }
176 }
177 catch( const IO_ERROR& ioe )
178 {
179 // Mark that we had a parse error - saving would lose symbols
180 SetParseError( true );
181
182 if( !errorCache.IsEmpty() )
183 errorCache += wxT( "\n\n" );
184
185 errorCache += wxString::Format( _( "Unable to read file '%s'" ) + '\n', sourceFilePath );
186 errorCache += ioe.What();
187 }
188 } while( dir.GetNext( &libFileName ) );
189
190 if( !errorCache.IsEmpty() )
191 {
192 errorCache += _( "\n\nThe library cannot be saved until these errors are fixed manually." );
193 THROW_IO_ERROR( errorCache );
194 }
195 }
196
199 }
200
201 // Remember the file modification time of library file when the cache snapshot was made,
202 // so that in a networked environment we will reload the cache as needed.
204}
205
206
207void SCH_IO_KICAD_SEXPR_LIB_CACHE::Save( const std::optional<bool>& aOpt )
208{
209 if( !m_isModified )
210 return;
211
212 // If the library had a parse error during loading, we cannot safely save it.
213 // Only symbols before the parse error were loaded, so saving would permanently
214 // lose all symbols after the error point. See issue #22241.
215 if( HasParseError() )
216 {
217 THROW_IO_ERRORF( _( "Cannot save library '%s' because it had a parse error during loading.\n\n"
218 "Saving would permanently lose symbols that could not be loaded.\n"
219 "Please fix the library file manually before saving." ),
220 m_libFileName.GetFullPath() );
221 }
222
223 // Write through symlinks, don't replace them.
224 wxFileName fn = GetRealFile();
225
226 // Normalize the path: if it's a directory on the filesystem, ensure fn is marked as a
227 // directory so that IsDir() checks work correctly.
228 if( !fn.IsDir() && wxFileName::DirExists( fn.GetFullPath() ) )
229 fn.AssignDir( fn.GetFullPath() );
230
231 if( !fn.IsDir() )
232 {
233 auto formatter = std::make_unique<PRETTIFIED_FILE_OUTPUTFORMATTER>( fn.GetFullPath() );
234
235 formatLibraryHeader( *formatter.get() );
236
237 std::vector<LIB_SYMBOL*> orderedSymbols;
238
239 for( const auto& [ name, symbol ] : m_symbols )
240 {
241 if( symbol )
242 orderedSymbols.push_back( symbol );
243 }
244
245 // Library must be ordered by inheritance depth.
246 std::sort( orderedSymbols.begin(), orderedSymbols.end(),
247 []( const LIB_SYMBOL* aLhs, const LIB_SYMBOL* aRhs )
248 {
249 unsigned int lhDepth = aLhs->GetInheritanceDepth();
250 unsigned int rhDepth = aRhs->GetInheritanceDepth();
251
252 if( lhDepth == rhDepth )
253 return aLhs->GetName() < aRhs->GetName();
254
255 return lhDepth < rhDepth;
256 } );
257
258 for( LIB_SYMBOL* symbol : orderedSymbols )
259 SaveSymbol( symbol, *formatter.get() );
260
261 formatter->Print( ")" );
262 formatter->Finish();
263 formatter.reset();
264 }
265 else
266 {
267 if( !fn.DirExists() )
268 {
269 if( !fn.Mkdir( wxS_DIR_DEFAULT, wxPATH_MKDIR_FULL ) )
270 THROW_IO_ERRORF( _( "Cannot create symbol library path '%s'." ), fn.GetPath() );
271 }
272
273 // Detect renamed symbols whose old source file entries are now orphaned.
274 // Schedule the old files for deletion so they don't linger on disk.
275 for( auto it = m_symbolSourceFiles.begin(); it != m_symbolSourceFiles.end(); )
276 {
277 if( m_symbols.find( it->first ) == m_symbols.end() )
278 {
279 m_pendingFileDeletes.insert( it->second );
280 it = m_symbolSourceFiles.erase( it );
281 }
282 else
283 {
284 ++it;
285 }
286 }
287
288 // Group symbols by their source file to preserve multi-symbol files
289 std::map<wxString, std::vector<LIB_SYMBOL*>> symbolsByFile;
290
291 for( const auto& [ name, symbol ] : m_symbols )
292 {
293 auto it = m_symbolSourceFiles.find( name );
294
295 if( it != m_symbolSourceFiles.end() )
296 {
297 // Symbol has a known source file - group it with others from that file
298 symbolsByFile[ it->second ].push_back( symbol );
299 }
300 else
301 {
302 // New symbol without source file - create individual file
303 wxFileName saveFn( fn );
304 saveFn.SetName( EscapeString( name, CTX_FILENAME ) );
306
307 symbolsByFile[ saveFn.GetFullPath() ].push_back( symbol );
308 }
309 }
310
311 // Sort each file's symbols by inheritance depth
312 auto sortByInheritance = []( LIB_SYMBOL* aLhs, LIB_SYMBOL* aRhs )
313 {
314 unsigned int lhDepth = aLhs->GetInheritanceDepth();
315 unsigned int rhDepth = aRhs->GetInheritanceDepth();
316
317 if( lhDepth == rhDepth )
318 return aLhs->GetName() < aRhs->GetName();
319
320 return lhDepth < rhDepth;
321 };
322
323 // Write each file
324 for( auto& [ filePath, symbols ] : symbolsByFile )
325 {
326 wxFileName oldFn = filePath;
327
328 if( oldFn.GetPath() != m_libFileName.GetPath() )
329 oldFn.SetPath( m_libFileName.GetPath() );
330
331 std::sort( symbols.begin(), symbols.end(), sortByInheritance );
332
333 auto formatter = std::make_unique<PRETTIFIED_FILE_OUTPUTFORMATTER>( oldFn.GetFullPath() );
334
335 formatLibraryHeader( *formatter.get() );
336
337 for( LIB_SYMBOL* symbol : symbols )
338 SaveSymbol( symbol, *formatter.get() );
339
340 formatter->Print( ")" );
341 formatter->Finish();
342 formatter.reset();
343
344 // Update source file tracking for new symbols
345 for( LIB_SYMBOL* symbol : symbols )
346 m_symbolSourceFiles[ symbol->GetName() ] = filePath;
347 }
348
349 // Remove files for deleted symbols that are no longer needed
350 for( const wxString& deadFile : m_pendingFileDeletes )
351 {
352 if( symbolsByFile.find( deadFile ) == symbolsByFile.end() && wxFileExists( deadFile ) )
353 {
354 wxRemoveFile( deadFile );
355 }
356 }
357
358 m_pendingFileDeletes.clear();
359 }
360
362 m_isModified = false;
363}
364
365
367 const wxString& aLibName, bool aIncludeData )
368{
369 wxCHECK_RET( aSymbol, "Invalid LIB_SYMBOL pointer." );
370
371 // If we've requested to embed the fonts in the symbol, do so.
372 // Otherwise, clear the embedded fonts from the symbol. Embedded
373 // fonts will be used if available
374 if( aSymbol->GetAreFontsEmbedded() )
375 aSymbol->EmbedFonts();
376 else
378
379 std::vector<SCH_FIELD*> orderedFields;
380 std::string name = aFormatter.Quotew( aSymbol->GetLibId().GetLibItemName().wx_str() );
381 std::string unitName = aSymbol->GetLibId().GetLibItemName();
382
383 if( !aLibName.IsEmpty() )
384 {
385 name = aFormatter.Quotew( aLibName );
386
387 LIB_ID unitId;
388
389 wxCHECK2( unitId.Parse( aLibName ) < 0, /* do nothing */ );
390
391 unitName = unitId.GetLibItemName();
392 }
393
394 if( aSymbol->IsRoot() )
395 {
396 aFormatter.Print( "(symbol %s", name.c_str() );
397
398 if( aSymbol->IsGlobalPower() )
399 aFormatter.Print( "(power global)" );
400 else if( aSymbol->IsLocalPower() )
401 aFormatter.Print( "(power local)" );
402
403 // TODO: add uuid token here.
404
405 // TODO: add anchor position token here.
406
407 if( aSymbol->IsMultiBodyStyle() )
408 {
409 aFormatter.Print( "(body_styles " );
410
411 if( aSymbol->HasDeMorganBodyStyles() )
412 {
413 aFormatter.Print( "demorgan" );
414 }
415 else
416 {
417 for( const wxString& bodyStyle : aSymbol->GetBodyStyleNames() )
418 aFormatter.Print( "%s ", aFormatter.Quotew( bodyStyle ).c_str() );
419 }
420
421 aFormatter.Print( ")" );
422 }
423
424 if( !aSymbol->GetShowPinNumbers() )
425 aFormatter.Print( "(pin_numbers (hide yes))" );
426
427 if( aSymbol->GetPinNameOffset() != schIUScale.MilsToIU( DEFAULT_PIN_NAME_OFFSET )
428 || !aSymbol->GetShowPinNames() )
429 {
430 aFormatter.Print( "(pin_names" );
431
432 if( aSymbol->GetPinNameOffset() != schIUScale.MilsToIU( DEFAULT_PIN_NAME_OFFSET ) )
433 {
434 aFormatter.Print( "(offset %s)",
436 aSymbol->GetPinNameOffset() ).c_str() );
437 }
438
439 if( !aSymbol->GetShowPinNames() )
440 KICAD_FORMAT::FormatBool( &aFormatter, "hide", true );
441
442 aFormatter.Print( ")" );
443 }
444
445 KICAD_FORMAT::FormatBool( &aFormatter, "exclude_from_sim", aSymbol->GetExcludedFromSim() );
446 KICAD_FORMAT::FormatBool( &aFormatter, "in_bom", !aSymbol->GetExcludedFromBOM() );
447 KICAD_FORMAT::FormatBool( &aFormatter, "on_board", !aSymbol->GetExcludedFromBoard() );
448 KICAD_FORMAT::FormatBool( &aFormatter, "in_pos_files", !aSymbol->GetExcludedFromPosFiles() );
449
450 KICAD_FORMAT::FormatBool( &aFormatter, "duplicate_pin_numbers_are_jumpers",
452
453 const std::vector<std::set<wxString>>& jumperGroups = aSymbol->JumperPinGroups();
454
455 if( !jumperGroups.empty() )
456 {
457 aFormatter.Print( "(jumper_pin_groups" );
458
459 for( const std::set<wxString>& group : jumperGroups )
460 {
461 aFormatter.Print( "(" );
462
463 for( const wxString& padName : group )
464 aFormatter.Print( "%s ", aFormatter.Quotew( padName ).c_str() );
465
466 aFormatter.Print( ")" );
467 }
468
469 aFormatter.Print( ")" );
470 }
471
472 // TODO: add atomic token here.
473
474 // TODO: add required token here."
475
476 aSymbol->GetFields( orderedFields );
477
478 for( SCH_FIELD* field : orderedFields )
479 saveField( field, aFormatter );
480
481 // @todo At some point in the future the lock status (all units interchangeable) should
482 // be set deterministically. For now a custom lock property is used to preserve the
483 // locked flag state.
484 if( aSymbol->UnitsLocked() )
485 {
486 SCH_FIELD locked( nullptr, FIELD_T::USER, "ki_locked" );
487 saveField( &locked, aFormatter );
488 }
489
490 saveDcmInfoAsFields( aSymbol, aFormatter );
491
492 savePinMapData( aSymbol, aFormatter );
493
494 for( const LIB_SYMBOL_UNIT& unit : aSymbol->GetUnitDrawItems() )
495 {
496 // Add quotes and escape chars like ") to the UTF8 unitName string
497 name = aFormatter.Quotes( unitName );
498 name.pop_back(); // Remove last char: the quote ending the string.
499
500 aFormatter.Print( "(symbol %s_%d_%d\"",
501 name.c_str(),
502 unit.m_unit,
503 unit.m_bodyStyle );
504
505 // if the unit has a display name, write that
506 if( aSymbol->GetUnitDisplayNames().contains( unit.m_unit ) )
507 {
508 name = aSymbol->GetUnitDisplayNames().at( unit.m_unit );
509 aFormatter.Print( "(unit_name %s)", aFormatter.Quotes( name ).c_str() );
510 }
511
512 // Enforce item ordering
513 auto cmp =
514 []( const SCH_ITEM* a, const SCH_ITEM* b )
515 {
516 return *a < *b;
517 };
518
519 std::multiset<SCH_ITEM*, decltype( cmp )> save_map( cmp );
520
521 for( SCH_ITEM* item : unit.m_items )
522 save_map.insert( item );
523
524 for( SCH_ITEM* item : save_map )
525 saveSymbolDrawItem( item, aFormatter );
526
527 aFormatter.Print( ")" );
528 }
529
530 KICAD_FORMAT::FormatBool( &aFormatter, "embedded_fonts", aSymbol->GetAreFontsEmbedded() );
531
532 if( !aSymbol->EmbeddedFileMap().empty() )
533 aSymbol->WriteEmbeddedFiles( aFormatter, aIncludeData );
534 }
535 else
536 {
537 std::shared_ptr<LIB_SYMBOL> parent = aSymbol->GetParent().lock();
538
539 wxASSERT( parent );
540
541 // Prefer the recorded parent name over dereferencing the live parent pointer. The parent
542 // LIB_SYMBOL uses a null_deleter shared_ptr, so the weak_ptr's control block can outlive the
543 // parent object (for example when a derived symbol is copied to another library and the
544 // buffered parent is freed before this symbol is serialized). In that state GetParent().lock()
545 // can return a non-null but dangling pointer, and reading parent->GetName() is a use-after-
546 // free that crashes release builds while only tripping the assertion above in debug builds.
547 // The recorded parent name is a value member and is always safe to read.
548 wxString parentName = aSymbol->GetParentName();
549
550 if( parentName.IsEmpty() && parent )
551 parentName = parent->GetName();
552
553 aFormatter.Print( "(symbol %s (extends %s)",
554 name.c_str(),
555 aFormatter.Quotew( parentName ).c_str() );
556
557 aSymbol->GetFields( orderedFields );
558
559 for( SCH_FIELD* field : orderedFields )
560 saveField( field, aFormatter );
561
562 saveDcmInfoAsFields( aSymbol, aFormatter );
563
564 savePinMapData( aSymbol, aFormatter );
565
566 KICAD_FORMAT::FormatBool( &aFormatter, "embedded_fonts", aSymbol->GetAreFontsEmbedded() );
567
568 if( !aSymbol->EmbeddedFileMap().empty() )
569 aSymbol->WriteEmbeddedFiles( aFormatter, aIncludeData );
570 }
571
572 aFormatter.Print( ")" );
573}
574
575
577 OUTPUTFORMATTER& aFormatter )
578{
579 wxCHECK_RET( aSymbol, "Invalid LIB_SYMBOL pointer." );
580
581 if( !aSymbol->GetKeyWords().IsEmpty() )
582 {
583 SCH_FIELD keywords( nullptr, FIELD_T::USER, wxString( "ki_keywords" ) );
584 keywords.SetVisible( false );
585 keywords.SetText( aSymbol->GetKeyWords() );
586 saveField( &keywords, aFormatter );
587 }
588
589 wxArrayString fpFilters = aSymbol->GetFPFilters();
590
591 if( !fpFilters.IsEmpty() )
592 {
593 wxString tmp;
594
595 for( const wxString& filter : fpFilters )
596 {
597 // Spaces are not handled in fp filter names so escape spaces if any
598 wxString curr_filter = EscapeString( filter, ESCAPE_CONTEXT::CTX_NO_SPACE );
599
600 if( tmp.IsEmpty() )
601 tmp = curr_filter;
602 else
603 tmp += " " + curr_filter;
604 }
605
606 SCH_FIELD description( nullptr, FIELD_T::USER, wxString( "ki_fp_filters" ) );
607 description.SetVisible( false );
608 description.SetText( tmp );
609 saveField( &description, aFormatter );
610 }
611}
612
613
615{
616 wxCHECK_RET( aSymbol, "Invalid LIB_SYMBOL pointer." );
617
618 // Emit only the symbol's own bundle; derived symbols inheriting the parent's maps write
619 // nothing here so the inheritance is preserved on round-trip.
620 const std::vector<ASSOCIATED_FOOTPRINT>& associations = aSymbol->GetAssociatedFootprints();
621
622 if( !associations.empty() )
623 {
624 aFormatter.Print( "(associated_footprints" );
625
626 for( const ASSOCIATED_FOOTPRINT& assoc : associations )
627 {
628 aFormatter.Print( "(footprint %s",
629 aFormatter.Quotew( assoc.m_FootprintLibId.GetUniStringLibId() ).c_str() );
630
631 if( !assoc.m_MapName.IsEmpty() )
632 aFormatter.Print( "(map %s)", aFormatter.Quotew( assoc.m_MapName ).c_str() );
633
634 aFormatter.Print( ")" );
635 }
636
637 aFormatter.Print( ")" );
638 }
639
640 const std::vector<PIN_MAP>& maps = aSymbol->GetPinMaps().GetAll();
641
642 if( !maps.empty() )
643 {
644 aFormatter.Print( "(pin_maps" );
645
646 for( const PIN_MAP& map : maps )
647 {
648 aFormatter.Print( "(pin_map %s", aFormatter.Quotew( map.GetName() ).c_str() );
649
650 for( const PIN_MAP_ENTRY& entry : map.GetEntries() )
651 {
652 aFormatter.Print( "(entry %s %s)",
653 aFormatter.Quotew( entry.m_PinNumber ).c_str(),
654 aFormatter.Quotew( entry.m_PadNumber ).c_str() );
655 }
656
657 aFormatter.Print( ")" );
658 }
659
660 aFormatter.Print( ")" );
661 }
662}
663
664
666{
667 wxCHECK_RET( aItem, "Invalid SCH_ITEM pointer." );
668
669 switch( aItem->Type() )
670 {
671 case SCH_SHAPE_T:
672 {
673 SCH_SHAPE* shape = static_cast<SCH_SHAPE*>( aItem );
674 STROKE_PARAMS stroke = shape->GetStroke();
675 FILL_T fillMode = shape->GetFillMode();
676 COLOR4D fillColor = shape->GetFillColor();
677 bool isPrivate = shape->IsPrivate();
678
679 switch( shape->GetShape() )
680 {
681 case SHAPE_T::ARC:
682 formatArc( &aFormatter, shape, isPrivate, stroke, fillMode, fillColor, true );
683 break;
684
685 case SHAPE_T::CIRCLE:
686 formatCircle( &aFormatter, shape, isPrivate, stroke, fillMode, fillColor, true );
687 break;
688
690 formatRect( &aFormatter, shape, isPrivate, stroke, fillMode, fillColor, true );
691 break;
692
693 case SHAPE_T::BEZIER:
694 formatBezier(&aFormatter, shape, isPrivate, stroke, fillMode, fillColor, true );
695 break;
696
697 case SHAPE_T::POLY:
698 formatPoly( &aFormatter, shape, isPrivate, stroke, fillMode, fillColor, true );
699 break;
700
701 case SHAPE_T::ELLIPSE:
702 formatEllipse( &aFormatter, shape, isPrivate, stroke, fillMode, fillColor, true );
703 break;
704
706 formatEllipseArc( &aFormatter, shape, isPrivate, stroke, fillMode, fillColor, true );
707 break;
708
709 default:
711 }
712
713 break;
714 }
715
716 case SCH_PIN_T:
717 savePin( static_cast<SCH_PIN*>( aItem ), aFormatter );
718 break;
719
720 case SCH_TEXT_T:
721 saveText( static_cast<SCH_TEXT*>( aItem ), aFormatter );
722 break;
723
724 case SCH_TEXTBOX_T:
725 saveTextBox( static_cast<SCH_TEXTBOX*>( aItem ), aFormatter );
726 break;
727
728 default:
729 UNIMPLEMENTED_FOR( aItem->GetClass() );
730 }
731}
732
733
735{
736 wxCHECK_RET( aField && aField->Type() == SCH_FIELD_T, "Invalid SCH_FIELD object." );
737
738 wxString fieldName = aField->GetName();
739
740 if( aField->IsMandatory() )
741 fieldName = GetDefaultFieldName( aField->GetId(), UNTRANSLATED );
742
743 aFormatter.Print( "(property %s %s %s (at %s %s %s)",
744 aField->IsPrivate() ? "private" : "",
745 aFormatter.Quotew( fieldName ).c_str(),
746 aFormatter.Quotew( aField->GetText() ).c_str(),
749 fmt::format( "{:g}", aField->GetTextAngle().AsDegrees() ).c_str() );
750
751 KICAD_FORMAT::FormatBool( &aFormatter, "show_name", aField->IsNameShown() );
752
753 KICAD_FORMAT::FormatBool( &aFormatter, "do_not_autoplace", !aField->CanAutoplace() );
754
755 if( !aField->IsVisible() )
756 KICAD_FORMAT::FormatBool( &aFormatter, "hide", true );
757
758 aField->Format( &aFormatter, 0 );
759 KICAD_FORMAT::FormatCustomProperties( &aFormatter, *aField );
760 aFormatter.Print( ")" );
761}
762
763
765{
766 wxCHECK_RET( aPin && aPin->Type() == SCH_PIN_T, "Invalid SCH_PIN object." );
767
768 aPin->ClearFlags( IS_CHANGED );
769
770 aFormatter.Print( "(pin %s %s (at %s %s %s) (length %s)",
772 getPinShapeToken( aPin->GetShape() ),
777
778 if( !aPin->IsVisible() )
779 KICAD_FORMAT::FormatBool( &aFormatter, "hide", true );
780
781 // This follows the EDA_TEXT effects formatting for future expansion.
782 aFormatter.Print( "(name %s (effects (font (size %s %s))))",
783 aFormatter.Quotew( aPin->GetName() ).c_str(),
786
787 aFormatter.Print( "(number %s (effects (font (size %s %s))))",
788 aFormatter.Quotew( aPin->GetNumber() ).c_str(),
791
792
793 for( const std::pair<const wxString, SCH_PIN::ALT>& alt : aPin->GetAlternates() )
794 {
795 // There was a bug somewhere in the alternate pin code that allowed pin alternates with no
796 // name to be saved in library symbols. This strips any invalid alternates just in case
797 // that code resurfaces.
798 if( alt.second.m_Name.IsEmpty() )
799 continue;
800
801 aFormatter.Print( "(alternate %s %s %s)",
802 aFormatter.Quotew( alt.second.m_Name ).c_str(),
803 getPinElectricalTypeToken( alt.second.m_Type ),
804 getPinShapeToken( alt.second.m_Shape ) );
805 }
806
807 KICAD_FORMAT::FormatCustomProperties( &aFormatter, *aPin );
808 aFormatter.Print( ")" );
809}
810
811
813{
814 wxCHECK_RET( aText && aText->Type() == SCH_TEXT_T, "Invalid SCH_TEXT object." );
815
816 aFormatter.Print( "(text %s %s (at %s %s %d)",
817 aText->IsPrivate() ? "private" : "",
818 aFormatter.Quotew( aText->GetText() ).c_str(),
821 aText->GetTextAngle().AsTenthsOfADegree() );
822
823 aText->EDA_TEXT::Format( &aFormatter, 0 );
824 KICAD_FORMAT::FormatCustomProperties( &aFormatter, *aText );
825 aFormatter.Print( ")" );
826}
827
828
830{
831 wxCHECK_RET( aTextBox && aTextBox->Type() == SCH_TEXTBOX_T, "Invalid SCH_TEXTBOX object." );
832
833 aFormatter.Print( "(text_box %s %s",
834 aTextBox->IsPrivate() ? "private" : "",
835 aFormatter.Quotew( aTextBox->GetText() ).c_str() );
836
837 VECTOR2I pos = aTextBox->GetStart();
838 VECTOR2I size = aTextBox->GetEnd() - pos;
839
840 aFormatter.Print( "(at %s %s %s) (size %s %s) (margins %s %s %s %s)",
843 EDA_UNIT_UTILS::FormatAngle( aTextBox->GetTextAngle() ).c_str(),
850
851 aTextBox->GetStroke().Format( &aFormatter, schIUScale );
852 formatFill( &aFormatter, aTextBox->GetFillMode(), aTextBox->GetFillColor() );
853 aTextBox->EDA_TEXT::Format( &aFormatter, 0 );
854 KICAD_FORMAT::FormatCustomProperties( &aFormatter, *aTextBox );
855 aFormatter.Print( ")" );
856}
857
858
859void SCH_IO_KICAD_SEXPR_LIB_CACHE::DeleteSymbol( const wxString& aSymbolName )
860{
861 LIB_SYMBOL_MAP::iterator it = m_symbols.find( aSymbolName );
862
863 if( it == m_symbols.end() )
864 THROW_IO_ERRORF( _( "library %s does not contain a symbol named %s" ), m_libFileName.GetFullName(), aSymbolName );
865
866 LIB_SYMBOL* symbol = it->second;
867
868 auto recordSourceFileForDeletion = [this]( const wxString& aName )
869 {
870 auto srcIt = m_symbolSourceFiles.find( aName );
871
872 if( srcIt != m_symbolSourceFiles.end() )
873 {
874 m_pendingFileDeletes.insert( srcIt->second );
875 m_symbolSourceFiles.erase( srcIt );
876 }
877 };
878
879 if( symbol->IsRoot() )
880 {
881 LIB_SYMBOL* rootSymbol = symbol;
882
883 recordSourceFileForDeletion( aSymbolName );
884
885 // Remove the root symbol and all its children.
886 m_symbols.erase( it );
887
888 LIB_SYMBOL_MAP::iterator it1 = m_symbols.begin();
889
890 while( it1 != m_symbols.end() )
891 {
892 if( it1->second->IsDerived()
893 && it1->second->GetParent().lock() == rootSymbol->SharedPtr() )
894 {
895 recordSourceFileForDeletion( it1->first );
896 delete it1->second;
897 it1 = m_symbols.erase( it1 );
898 }
899 else
900 {
901 it1++;
902 }
903 }
904
905 delete rootSymbol;
906 }
907 else
908 {
909 recordSourceFileForDeletion( aSymbolName );
910 // Just remove the alias.
911 m_symbols.erase( it );
912 delete symbol;
913 }
914
916 m_isModified = true;
917}
918
919
921{
922 for( auto& [name, symbol] : m_symbols )
923 {
924 if( symbol->GetParentName().IsEmpty() )
925 continue;
926
927 auto it = m_symbols.find( symbol->GetParentName() );
928
929 if( it == m_symbols.end() )
930 {
931 wxString error;
932
933 error.Printf( _( "No parent for extended symbol %s found in library '%s'" ),
934 name.c_str(), m_libFileName.GetFullPath() );
935 THROW_IO_ERROR( error );
936 }
937
938 symbol->SetParent( it->second );
939 }
940}
941
942
944{
945 aFormatter.Print( "(kicad_symbol_lib (version %d) (generator \"kicad_symbol_editor\") "
946 "(generator_version \"%s\")",
948 GetMajorMinorVersion().c_str().AsChar() );
949}
950
951
953{
954 if( !m_libFileName.IsDir() )
955 return m_libFileName.FileExists();
956 else
957 return m_libFileName.DirExists();
958}
const char * name
constexpr EDA_IU_SCALE schIUScale
Definition base_units.h:123
wxString GetMajorMinorVersion()
Get only the major and minor version in a string major.minor.
int AsTenthsOfADegree() const
Definition eda_angle.h:118
double AsDegrees() const
Definition eda_angle.h:116
KICAD_T Type() const
Returns the type of object.
Definition eda_item.h:110
void ClearFlags(EDA_ITEM_FLAGS aMask=EDA_ITEM_ALL_FLAGS)
Definition eda_item.h:160
FILL_T GetFillMode() const
Definition eda_shape.h:148
SHAPE_T GetShape() const
Definition eda_shape.h:175
const VECTOR2I & GetEnd() const
Return the ending point of the graphic.
Definition eda_shape.h:325
const VECTOR2I & GetStart() const
Return the starting point of the graphic.
Definition eda_shape.h:275
COLOR4D GetFillColor() const
Definition eda_shape.h:159
wxString SHAPE_T_asString() const
virtual const wxString & GetText() const
Return the string associated with the text object.
Definition eda_text.h:118
virtual bool IsVisible() const
Definition eda_text.h:226
virtual void Format(OUTPUTFORMATTER *aFormatter, int aControlBits) const
Output the object to aFormatter in s-expression form.
virtual void SetVisible(bool aVisible)
Definition eda_text.cpp:342
virtual EDA_ANGLE GetTextAngle() const
Definition eda_text.h:178
void WriteEmbeddedFiles(OUTPUTFORMATTER &aOut, bool aWriteData) const
Output formatter for the embedded files.
void ClearEmbeddedFonts()
Remove all embedded fonts from the collection.
const std::map< wxString, std::shared_ptr< EMBEDDED_FILE > > & EmbeddedFileMap() const
Provide an iterable view of the file collection.
bool GetAreFontsEmbedded() const
A LINE_READER that reads from an open file.
Definition richio.h:157
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()
A color representation with 4 components: red, green, blue, alpha.
Definition color4d.h:101
A logical library item identifier and consists of various portions much like a URI.
Definition lib_id.h:45
int Parse(const UTF8 &aId, bool aFix=false)
Parse LIB_ID with the information from aId.
Definition lib_id.cpp:65
const UTF8 & GetLibItemName() const
Definition lib_id.h:98
Define a library symbol object.
Definition lib_symbol.h:119
const LIB_ID & GetLibId() const override
Definition lib_symbol.h:188
wxString GetKeyWords() const override
Definition lib_symbol.h:215
std::weak_ptr< LIB_SYMBOL > & GetParent()
Definition lib_symbol.h:150
void GetFields(std::vector< SCH_FIELD * > &aList, bool aVisibleOnly=false) const override
Populate a std::vector with SCH_FIELDs, sorted in ordinal order.
bool UnitsLocked() const
Check whether symbol units are interchangeable.
bool IsRoot() const override
For symbols derived from other symbols, IsRoot() indicates no derivation.
Definition lib_symbol.h:235
std::vector< struct LIB_SYMBOL_UNIT > GetUnitDrawItems()
Return a list of SCH_ITEM objects separated by unit and convert number.
std::map< int, wxString > & GetUnitDisplayNames()
Definition lib_symbol.h:870
bool IsMultiBodyStyle() const override
Definition lib_symbol.h:894
wxString GetName() const override
Definition lib_symbol.h:181
bool IsLocalPower() const override
wxArrayString GetFPFilters() const
Definition lib_symbol.h:247
std::shared_ptr< LIB_SYMBOL > SharedPtr() const
http://www.boost.org/doc/libs/1_55_0/libs/smart_ptr/sp_techniques.html#weak_without_shared.
Definition lib_symbol.h:128
const std::vector< wxString > & GetBodyStyleNames() const
bool HasDeMorganBodyStyles() const override
const PIN_MAP_SET & GetPinMaps() const
Pin-to-pad mapping (issue #2282).
Definition lib_symbol.h:261
EMBEDDED_FILES * GetEmbeddedFiles() override
bool IsGlobalPower() const override
const wxString & GetParentName() const
Definition lib_symbol.h:985
unsigned GetInheritanceDepth() const
Get the number of parents for this symbol.
bool GetDuplicatePinNumbersAreJumpers() const
Definition lib_symbol.h:873
std::vector< std::set< wxString > > & JumperPinGroups()
Each jumper pin group is a set of pin numbers that should be treated as internally connected.
Definition lib_symbol.h:880
void EmbedFonts() override
const std::vector< ASSOCIATED_FOOTPRINT > & GetAssociatedFootprints() const
Definition lib_symbol.h:265
An interface used to output 8 bit text in a convenient way.
Definition richio.h:294
std::string Quotew(const wxString &aWrapee) const
Definition richio.cpp:505
int PRINTF_FUNC_N Print(int nestLevel, const char *fmt,...)
Format and write text to the output stream.
Definition richio.cpp:432
virtual std::string Quotes(const std::string &aWrapee) const
Check aWrapee input string for a need to be quoted (e.g.
Definition richio.cpp:466
const std::vector< PIN_MAP > & GetAll() const
Definition pin_map.h:139
A named pin map.
Definition pin_map.h:65
bool IsMandatory() const
VECTOR2I GetPosition() const override
bool IsNameShown() const
Definition sch_field.h:228
virtual const wxString & GetText() const override
Return the string associated with the text object.
Definition sch_field.h:138
FIELD_T GetId() const
Definition sch_field.h:142
wxString GetName(bool aUseDefaultName=true) const
Return the field name (not translated).
bool CanAutoplace() const
Definition sch_field.h:239
void SetText(const wxString &aText) override
static void saveSymbolDrawItem(SCH_ITEM *aItem, OUTPUTFORMATTER &aFormatter)
SCH_IO_KICAD_SEXPR_LIB_CACHE(const wxString &aLibraryPath)
static void saveDcmInfoAsFields(LIB_SYMBOL *aSymbol, OUTPUTFORMATTER &aFormatter)
static void savePinMapData(LIB_SYMBOL *aSymbol, OUTPUTFORMATTER &aFormatter)
Write the symbol's own (non-inherited) pin maps and associated footprints (issue #2282).
static void SaveSymbol(LIB_SYMBOL *aSymbol, OUTPUTFORMATTER &aFormatter, const wxString &aLibName=wxEmptyString, bool aIncludeData=true)
static void saveTextBox(SCH_TEXTBOX *aTextBox, OUTPUTFORMATTER &aFormatter)
static void saveField(SCH_FIELD *aField, OUTPUTFORMATTER &aFormatter)
void formatLibraryHeader(OUTPUTFORMATTER &aFormatter)
void DeleteSymbol(const wxString &aName) override
static void savePin(SCH_PIN *aPin, OUTPUTFORMATTER &aFormatter)
static void saveText(SCH_TEXT *aText, OUTPUTFORMATTER &aFormatter)
void Save(const std::optional< bool > &aOpt=std::nullopt) override
Save the entire library to file m_libFileName;.
void updateParentSymbolLinks()
Update the parent symbol links for derived symbols.
Object to parser s-expression symbol library and schematic file formats.
const std::vector< wxString > & GetParseWarnings() const
Return any non-fatal parse warnings that occurred during parsing.
void ParseLib(LIB_SYMBOL_MAP &aSymbolLibMap)
void SetParseError(bool aHasError=true)
Set the parse error state.
bool HasParseError() const
LIB_SYMBOL_MAP m_symbols
wxFileName GetRealFile() const
long long GetLibModificationTime()
std::map< wxString, wxString > m_symbolSourceFiles
For folder-based libraries, track which source file each symbol was loaded from.
SCH_IO_LIB_CACHE(const wxString &aLibraryPath)
Base class for any item which can be embedded within the SCHEMATIC container class,...
Definition sch_item.h:165
bool IsPrivate() const
Definition sch_item.h:253
wxString GetClass() const override
Return the class name.
Definition sch_item.h:175
int GetNumberTextSize() const
Definition sch_pin.cpp:865
int GetLength() const
Definition sch_pin.cpp:397
const std::map< wxString, ALT > & GetAlternates() const
Definition sch_pin.h:217
bool IsVisible() const
Definition sch_pin.cpp:489
const wxString & GetName() const
Definition sch_pin.cpp:503
PIN_ORIENTATION GetOrientation() const
Definition sch_pin.cpp:362
VECTOR2I GetPosition() const override
Definition sch_pin.cpp:354
int GetNameTextSize() const
Definition sch_pin.cpp:839
const wxString & GetNumber() const
Definition sch_pin.h:142
GRAPHIC_PINSHAPE GetShape() const
Definition sch_pin.cpp:376
ELECTRICAL_PINTYPE GetType() const
Definition sch_pin.cpp:411
STROKE_PARAMS GetStroke() const override
Definition sch_shape.h:57
int GetMarginBottom() const
Definition sch_textbox.h:82
int GetMarginLeft() const
Definition sch_textbox.h:79
int GetMarginRight() const
Definition sch_textbox.h:81
int GetMarginTop() const
Definition sch_textbox.h:80
VECTOR2I GetPosition() const override
Definition sch_text.h:143
Simple container to manage line stroke parameters.
void Format(OUTPUTFORMATTER *out, const EDA_IU_SCALE &aIuScale) const
bool GetExcludedFromPosFiles(const SCH_SHEET_PATH *aInstance=nullptr, const wxString &aVariantName=wxEmptyString) const override
Definition symbol.h:227
int GetPinNameOffset() const
Definition symbol.h:159
virtual bool GetExcludedFromBOM(const SCH_SHEET_PATH *aInstance=nullptr, const wxString &aVariantName=wxEmptyString) const override
Definition symbol.h:197
virtual bool GetShowPinNames() const
Definition symbol.h:165
bool GetExcludedFromBoard(const SCH_SHEET_PATH *aInstance=nullptr, const wxString &aVariantName=wxEmptyString) const override
Definition symbol.h:212
virtual bool GetExcludedFromSim(const SCH_SHEET_PATH *aInstance=nullptr, const wxString &aVariantName=wxEmptyString) const override
Definition symbol.h:182
virtual bool GetShowPinNumbers() const
Definition symbol.h:171
wxString wx_str() const
Definition utf8.cpp:41
#define DEFAULT_PIN_NAME_OFFSET
The intersheets references prefix string.
#define _(s)
FILL_T
Definition eda_fill.h:29
#define IS_CHANGED
Item was edited, and modified.
@ ELLIPSE
Definition eda_shape.h:62
@ RECTANGLE
Use RECTANGLE instead of RECT to avoid collision in a Windows header.
Definition eda_shape.h:57
@ ELLIPSE_ARC
Definition eda_shape.h:63
static const std::string KiCadSymbolLibFileExtension
const wxChar *const traceSchLegacyPlugin
Flag to enable legacy schematic plugin debug output.
#define THROW_IO_ERROR(msg)
macro which captures the "call site" values of FILE_, __FUNCTION & LINE
#define THROW_IO_ERRORF(msg,...)
This file contains miscellaneous commonly used macros and functions.
#define UNIMPLEMENTED_FOR(type)
Definition macros.h:92
KICOMMON_API std::string FormatAngle(const EDA_ANGLE &aAngle)
Convert aAngle from board units to a string appropriate for writing to file.
KICOMMON_API std::string FormatInternalUnits(const EDA_IU_SCALE &aIuScale, int aValue, EDA_DATA_TYPE aDataType=EDA_DATA_TYPE::DISTANCE)
Converts aValue from internal units to a string appropriate for writing to file.
void FormatCustomProperties(OUTPUTFORMATTER *aOut, const EDA_ITEM &aItem)
Writes the item's custom properties as a series of (custom_property "key" "value")
void FormatBool(OUTPUTFORMATTER *aOut, const wxString &aKey, bool aValue)
Writes a boolean to the formatter, in the style (aKey [yes|no])
#define SEXPR_SYMBOL_LIB_FILE_VERSION
This file contains the file format version information for the s-expression schematic and symbol libr...
EDA_ANGLE getPinAngle(PIN_ORIENTATION aOrientation)
void formatArc(OUTPUTFORMATTER *aFormatter, EDA_SHAPE *aArc, bool aIsPrivate, const STROKE_PARAMS &aStroke, FILL_T aFillMode, const COLOR4D &aFillColor, bool aInvertY, const KIID &aUuid, bool aLocked)
void formatEllipseArc(OUTPUTFORMATTER *aFormatter, EDA_SHAPE *aEllipseArc, bool aIsPrivate, const STROKE_PARAMS &aStroke, FILL_T aFillMode, const COLOR4D &aFillColor, bool aInvertY, const KIID &aUuid, bool aLocked)
void formatCircle(OUTPUTFORMATTER *aFormatter, EDA_SHAPE *aCircle, bool aIsPrivate, const STROKE_PARAMS &aStroke, FILL_T aFillMode, const COLOR4D &aFillColor, bool aInvertY, const KIID &aUuid, bool aLocked)
void formatRect(OUTPUTFORMATTER *aFormatter, EDA_SHAPE *aRect, bool aIsPrivate, const STROKE_PARAMS &aStroke, FILL_T aFillMode, const COLOR4D &aFillColor, bool aInvertY, const KIID &aUuid, bool aLocked)
const char * getPinElectricalTypeToken(ELECTRICAL_PINTYPE aType)
void formatBezier(OUTPUTFORMATTER *aFormatter, EDA_SHAPE *aBezier, bool aIsPrivate, const STROKE_PARAMS &aStroke, FILL_T aFillMode, const COLOR4D &aFillColor, bool aInvertY, const KIID &aUuid, bool aLocked)
void formatEllipse(OUTPUTFORMATTER *aFormatter, EDA_SHAPE *aEllipse, bool aIsPrivate, const STROKE_PARAMS &aStroke, FILL_T aFillMode, const COLOR4D &aFillColor, bool aInvertY, const KIID &aUuid, bool aLocked)
void formatPoly(OUTPUTFORMATTER *aFormatter, EDA_SHAPE *aPolyLine, bool aIsPrivate, const STROKE_PARAMS &aStroke, FILL_T aFillMode, const COLOR4D &aFillColor, bool aInvertY, const KIID &aUuid, bool aLocked)
void formatFill(OUTPUTFORMATTER *aFormatter, FILL_T aFillMode, const COLOR4D &aFillColor)
Fill token formatting helper.
const char * getPinShapeToken(GRAPHIC_PINSHAPE aShape)
wxString EscapeString(const wxString &aSource, ESCAPE_CONTEXT aContext)
The Escape/Unescape routines use HTML-entity-reference-style encoding to handle characters which are:...
@ CTX_FILENAME
@ CTX_NO_SPACE
A first-class footprint choice on a LIB_SYMBOL, tied to a named pin map.
Definition pin_map.h:159
One symbol-pin to footprint-pad mapping inside a PIN_MAP.
Definition pin_map.h:42
wxString GetDefaultFieldName(FIELD_T aFieldId, TRANSLATION aTranslation)
Return a default symbol field name for a mandatory field type.
@ USER
The field ID hasn't been set yet; field is invalid.
@ UNTRANSLATED
wxLogTrace helper definitions.
@ SCH_FIELD_T
Definition typeinfo.h:146
@ SCH_SHAPE_T
Definition typeinfo.h:145
@ SCH_TEXT_T
Definition typeinfo.h:147
@ SCH_TEXTBOX_T
Definition typeinfo.h:148
@ SCH_PIN_T
Definition typeinfo.h:149
VECTOR2< int32_t > VECTOR2I
Definition vector2d.h:683