KiCad PCB EDA Suite
Loading...
Searching...
No Matches
sch_io_kicad_sexpr.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 (C) 2020 CERN
5 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
6 *
7 * @author Wayne Stambaugh <[email protected]>
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version 2
12 * of the License, or (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program. If not, see <https://www.gnu.org/licenses/>.
21 */
22
23#include <algorithm>
24
25#include <fmt/format.h>
26#include <magic_enum.hpp>
27
28#include <wx/dir.h>
29#include <wx/log.h>
30#include <wx/mstream.h>
31
32#include <base_units.h>
33#include <bitmap_base.h>
34#include <common.h> // ExpandTextVars
36#include <build_version.h>
37#include <sch_selection.h>
38#include <font/fontconfig.h>
41#include <progress_reporter.h>
42#include <schematic.h>
43#include <schematic_lexer.h>
44#include <sch_bitmap.h>
45#include <sch_bus_entry.h>
46#include <sch_edit_frame.h> // SYMBOL_ORIENTATION_T
47#include <sch_group.h>
52#include <sch_junction.h>
53#include <sch_line.h>
54#include <sch_no_connect.h>
55#include <sch_pin.h>
56#include <sch_rule_area.h>
57#include <sch_screen.h>
58#include <sch_shape.h>
59#include <sch_netchain.h>
60#include <sch_sheet.h>
61#include <sch_sheet_pin.h>
62#include <sch_symbol.h>
63#include <sch_table.h>
64#include <sch_tablecell.h>
65#include <sch_text.h>
66#include <sch_textbox.h>
67#include <string_utils.h>
68#include <trace_helpers.h>
69#include <reporter.h>
70#include <connection_graph.h>
71
72using namespace TSCHEMATIC_T;
73
74
75#define SCH_PARSE_ERROR( text, reader, pos ) \
76 THROW_PARSE_ERROR( text, reader.GetSource(), reader.Line(), \
77 reader.LineNumber(), pos - reader.Line() )
78
79
80SCH_IO_KICAD_SEXPR::SCH_IO_KICAD_SEXPR() : SCH_IO( wxS( "Eeschema s-expression" ) )
81{
82 init( nullptr );
83}
84
85
90
91
93 const std::map<std::string, UTF8>* aProperties )
94{
95 if( m_schematic != aSchematic )
96 m_loadedRootSheets.clear();
97
98 m_version = 0;
99 m_appending = false;
100 m_sheetLoad = aProperties && aProperties->count( "hierarchical_sheet_load" );
101 m_rootSheet = nullptr;
102 m_schematic = aSchematic;
103 m_cache = nullptr;
104 m_out = nullptr;
105}
106
107
108SCH_SHEET* SCH_IO_KICAD_SEXPR::LoadSchematicFile( const wxString& aFileName, SCHEMATIC* aSchematic,
109 SCH_SHEET* aAppendToMe,
110 const std::map<std::string, UTF8>* aProperties )
111{
112 wxASSERT( !aFileName || aSchematic != nullptr );
113
114 SCH_SHEET* sheet;
115
116 wxFileName fn = aFileName;
117
118 // Collect the font substitution warnings (RAII - automatically reset on scope exit)
120
121 // Unfortunately child sheet file names the legacy schematic file format are not fully
122 // qualified and are always appended to the project path. The aFileName attribute must
123 // always be an absolute path so the project path can be used for load child sheet files.
124 wxASSERT( fn.IsAbsolute() );
125
126 if( aAppendToMe )
127 {
128 wxLogTrace( traceSchPlugin, "Append \"%s\" to sheet \"%s\".",
129 aFileName, aAppendToMe->GetFileName() );
130
131 wxFileName normedFn = aAppendToMe->GetFileName();
132
133 if( !normedFn.IsAbsolute() )
134 {
135 if( aFileName.Right( normedFn.GetFullPath().Length() ) == normedFn.GetFullPath() )
136 m_path = aFileName.Left( aFileName.Length() - normedFn.GetFullPath().Length() );
137 }
138
139 if( m_path.IsEmpty() )
140 m_path = aSchematic->Project().GetProjectPath();
141
142 wxLogTrace( traceSchPlugin, "Normalized append path \"%s\".", m_path );
143 }
144 else
145 {
146 m_path = aSchematic->Project().GetProjectPath();
147 }
148
149 m_currentPath.push( m_path );
150 init( aSchematic, aProperties );
151 m_appending = aAppendToMe != nullptr;
152
153 if( aAppendToMe == nullptr )
154 {
155 // Clean up any allocated memory if an exception occurs loading the schematic.
156 std::unique_ptr<SCH_SHEET> newSheet = std::make_unique<SCH_SHEET>( aSchematic );
157
158 wxFileName relPath( aFileName );
159
160 // Do not use wxPATH_UNIX as option in MakeRelativeTo(). It can create incorrect
161 // relative paths on Windows, because paths have a disk identifier (C:, D: ...)
162 relPath.MakeRelativeTo( aSchematic->Project().GetProjectPath() );
163
164 newSheet->SetFileName( relPath.GetFullPath() );
165 m_rootSheet = newSheet.get();
166 loadHierarchy( SCH_SHEET_PATH(), newSheet.get() );
167
168 // If we got here, the schematic loaded successfully.
169 sheet = newSheet.release();
170 m_rootSheet = nullptr; // Quiet Coverity warning.
171 m_loadedRootSheets.push_back( sheet );
172 }
173 else
174 {
175 wxCHECK_MSG( aSchematic->IsValid(), nullptr, "Can't append to a schematic with no root!" );
176 m_rootSheet = &aSchematic->Root();
177 sheet = aAppendToMe;
178 loadHierarchy( SCH_SHEET_PATH(), sheet );
179 }
180
181 wxASSERT( m_currentPath.size() == 1 ); // only the project path should remain
182
183 m_currentPath.pop(); // Clear the path stack for next call to Load
184
185 return sheet;
186}
187
188
189// Everything below this comment is recursive. Modify with care.
190
191void SCH_IO_KICAD_SEXPR::loadHierarchy( const SCH_SHEET_PATH& aParentSheetPath, SCH_SHEET* aSheet )
192{
193 m_currentSheetPath.push_back( aSheet );
194
195 SCH_SCREEN* screen = nullptr;
196
197 if( !aSheet->GetScreen() )
198 {
199 // SCH_SCREEN objects store the full path and file name where the SCH_SHEET object only
200 // stores the file name and extension. Add the project path to the file name and
201 // extension to compare when calling SCH_SHEET::SearchHierarchy().
202 // Resolve text variables in the filename. The field keeps the raw text for portability.
203 wxFileName fileName = m_schematic ? ExpandTextVars( aSheet->GetFileName(), &m_schematic->Project(), INTERNAL )
204 : aSheet->GetFileName();
205
206 if( !fileName.IsAbsolute() )
207 fileName.MakeAbsolute( m_currentPath.top() );
208
209 // Save the current path so that it gets restored when descending and ascending the
210 // sheet hierarchy which allows for sheet schematic files to be nested in folders
211 // relative to the last path a schematic was loaded from.
212 wxLogTrace( traceSchPlugin, "Saving path '%s'", m_currentPath.top() );
213 m_currentPath.push( fileName.GetPath() );
214 wxLogTrace( traceSchPlugin, "Current path '%s'", m_currentPath.top() );
215 wxLogTrace( traceSchPlugin, "Loading '%s'", fileName.GetFullPath() );
216
217 SCH_SHEET_PATH ancestorSheetPath = aParentSheetPath;
218
219 while( !ancestorSheetPath.empty() )
220 {
221 if( ancestorSheetPath.LastScreen()->GetFileName() == fileName.GetFullPath() )
222 {
223 if( !m_error.IsEmpty() )
224 m_error += "\n";
225
226 m_error += wxString::Format( _( "Could not load sheet '%s' because it already "
227 "appears as a direct ancestor in the schematic "
228 "hierarchy." ),
229 fileName.GetFullPath() );
230
231 fileName = wxEmptyString;
232
233 break;
234 }
235
236 ancestorSheetPath.pop_back();
237 }
238
239 if( ancestorSheetPath.empty() )
240 {
241 // Existing schematics could be either in the root sheet path or the current sheet
242 // load path so we have to check both.
243 if( !m_rootSheet->SearchHierarchy( fileName.GetFullPath(), &screen ) )
244 m_currentSheetPath.at( 0 )->SearchHierarchy( fileName.GetFullPath(), &screen );
245
246 // When loading multiple top-level sheets that reference the same sub-sheet file,
247 // the screen may have already been loaded by a previous top-level sheet.
248 if( !screen )
249 {
250 for( SCH_SHEET* prevRoot : m_loadedRootSheets )
251 {
252 if( prevRoot->SearchHierarchy( fileName.GetFullPath(), &screen ) )
253 break;
254 }
255 }
256 }
257
258 if( screen )
259 {
260 aSheet->SetScreen( screen );
261 aSheet->GetScreen()->SetParent( m_schematic );
262 // Do not need to load the sub-sheets - this has already been done.
263 }
264 else
265 {
266 aSheet->SetScreen( new SCH_SCREEN( m_schematic ) );
267 aSheet->GetScreen()->SetFileName( fileName.GetFullPath() );
268
269 try
270 {
271 loadFile( fileName.GetFullPath(), aSheet );
272 }
273 catch( const IO_ERROR& ioe )
274 {
275 // If there is a problem loading the root sheet, there is no recovery.
276 if( aSheet == m_rootSheet )
277 throw;
278
279 // For all subsheets, queue up the error message for the caller.
280 if( !m_error.IsEmpty() )
281 m_error += "\n";
282
283 m_error += ioe.What();
284 }
285
286 if( fileName.FileExists() )
287 {
288 aSheet->GetScreen()->SetFileReadOnly( !fileName.IsFileWritable() );
289 aSheet->GetScreen()->SetFileExists( true );
290 }
291 else
292 {
293 aSheet->GetScreen()->SetFileReadOnly( !fileName.IsDirWritable() );
294 aSheet->GetScreen()->SetFileExists( false );
295 }
296
297 SCH_SHEET_PATH currentSheetPath = aParentSheetPath;
298 currentSheetPath.push_back( aSheet );
299
300 // This was moved out of the try{} block so that any sheet definitions that
301 // the plugin fully parsed before the exception was raised will be loaded.
302 for( SCH_ITEM* aItem : aSheet->GetScreen()->Items().OfType( SCH_SHEET_T ) )
303 {
304 wxCHECK2( aItem->Type() == SCH_SHEET_T, /* do nothing */ );
305 SCH_SHEET* sheet = static_cast<SCH_SHEET*>( aItem );
306
307 // Recursion starts here.
308 loadHierarchy( currentSheetPath, sheet );
309 }
310 }
311
312 m_currentPath.pop();
313 wxLogTrace( traceSchPlugin, "Restoring path \"%s\"", m_currentPath.top() );
314 }
315
316 m_currentSheetPath.pop_back();
317}
318
319
320void SCH_IO_KICAD_SEXPR::loadFile( const wxString& aFileName, SCH_SHEET* aSheet )
321{
322 FILE_LINE_READER reader( aFileName );
323
324 size_t lineCount = 0;
325
327 {
328 m_progressReporter->Report( wxString::Format( _( "Loading %s..." ), aFileName ) );
329
330 if( !m_progressReporter->KeepRefreshing() )
332
333 while( reader.ReadLine() )
334 lineCount++;
335
336 reader.Rewind();
337 }
338
339 SCH_IO_KICAD_SEXPR_PARSER parser( &reader, m_progressReporter, lineCount, m_rootSheet,
341
342 parser.ParseSchematic( aSheet );
343
344 // Net chains live at the root-sheet level. Sub-sheet parses always produce empty maps,
345 // so applying them would wipe the chains restored from the root file.
346 if( m_schematic && m_schematic->ConnectionGraph() && aSheet == m_rootSheet )
347 {
348 m_schematic->ConnectionGraph()->SetNetChainNetClassOverrides( parser.GetNetChainNetClasses() );
349 m_schematic->ConnectionGraph()->SetNetChainColorOverrides( parser.GetNetChainColors() );
350
351 std::map<wxString, CONNECTION_GRAPH::CHAIN_TERMINAL_REFS> termRefs;
352
353 for( const auto& [name, terms] : parser.GetNetChainTerminalRefs() )
354 {
355 termRefs[name] = { { terms.first.ref, terms.first.pin }, { terms.second.ref, terms.second.pin } };
356 }
357
358 m_schematic->ConnectionGraph()->SetNetChainTerminalRefOverrides( termRefs );
359 m_schematic->ConnectionGraph()->SetNetChainMemberNetOverrides( parser.GetNetChainMemberNets() );
360 }
361}
362
363
364void SCH_IO_KICAD_SEXPR::LoadContent( LINE_READER& aReader, SCH_SHEET* aSheet, int aFileVersion )
365{
366 wxCHECK( aSheet, /* void */ );
367
368 SCH_IO_KICAD_SEXPR_PARSER parser( &aReader );
369
370 parser.ParseSchematic( aSheet, true, aFileVersion );
371
372 if( m_schematic && m_schematic->ConnectionGraph() && aSheet == m_rootSheet )
373 {
374 m_schematic->ConnectionGraph()->SetNetChainNetClassOverrides( parser.GetNetChainNetClasses() );
375 m_schematic->ConnectionGraph()->SetNetChainColorOverrides( parser.GetNetChainColors() );
376
377 std::map<wxString, CONNECTION_GRAPH::CHAIN_TERMINAL_REFS> termRefs;
378
379 for( const auto& [name, terms] : parser.GetNetChainTerminalRefs() )
380 {
381 termRefs[name] = { { terms.first.ref, terms.first.pin }, { terms.second.ref, terms.second.pin } };
382 }
383
384 m_schematic->ConnectionGraph()->SetNetChainTerminalRefOverrides( termRefs );
385 m_schematic->ConnectionGraph()->SetNetChainMemberNetOverrides( parser.GetNetChainMemberNets() );
386 }
387}
388
389
390void SCH_IO_KICAD_SEXPR::SaveSchematicFile( const wxString& aFileName, SCH_SHEET* aSheet,
391 SCHEMATIC* aSchematic,
392 const std::map<std::string, UTF8>* aProperties )
393{
394 wxCHECK_RET( aSheet != nullptr, "NULL SCH_SHEET object." );
395 wxCHECK_RET( !aFileName.IsEmpty(), "No schematic file name defined." );
396
397 wxString sanityResult = aSheet->GetScreen()->GroupsSanityCheck();
398
399 if( sanityResult != wxEmptyString && m_queryUserCallback )
400 {
401 if( !m_queryUserCallback( _( "Internal Group Data Error" ), wxICON_ERROR,
402 wxString::Format( _( "Please report this bug. Error validating group "
403 "structure: %s\n\nSave anyway?" ),
404 sanityResult ),
405 _( "Save Anyway" ) ) )
406 {
407 return;
408 }
409 }
410
411 wxFileName fn = aFileName;
412
413 // File names should be absolute. Don't assume everything relative to the project path
414 // works properly.
415 wxASSERT( fn.IsAbsolute() );
416
417 PRETTIFIED_FILE_OUTPUTFORMATTER formatter( fn.GetFullPath() );
418 FormatSchematicToFormatter( &formatter, aSheet, aSchematic, aProperties );
419 formatter.Finish();
420
421 if( aSheet->GetScreen() )
422 aSheet->GetScreen()->SetFileExists( true );
423}
424
425
427 SCHEMATIC* aSchematic,
428 const std::map<std::string, UTF8>* aProperties )
429{
430 wxCHECK_RET( aSheet != nullptr, "NULL SCH_SHEET object." );
431
432 init( aSchematic, aProperties );
433
434 m_out = aOut;
435
436 Format( aSheet );
437
438 m_out = nullptr;
439}
440
441
443{
444 wxCHECK_RET( aSheet != nullptr, "NULL SCH_SHEET* object." );
445 wxCHECK_RET( m_schematic != nullptr, "NULL SCHEMATIC* object." );
446
447 SCH_SHEET_LIST sheets = m_schematic->Hierarchy();
448 SCH_SCREEN* screen = aSheet->GetScreen();
449
450 wxCHECK( screen, /* void */ );
451
452 // If we've requested to embed the fonts in the schematic, do so.
453 // Otherwise, clear the embedded fonts from the schematic. Embedded
454 // fonts will be used if available
455 if( m_schematic->GetAreFontsEmbedded() )
456 m_schematic->EmbedFonts();
457 else
458 m_schematic->GetEmbeddedFiles()->ClearEmbeddedFonts();
459
460 m_out->Print( "(kicad_sch (version %d) (generator \"eeschema\") (generator_version %s)",
462 m_out->Quotew( GetMajorMinorVersion() ).c_str() );
463
465
466 screen->GetPageSettings().Format( m_out );
467 screen->GetTitleBlock().Format( m_out );
468
469 // Save cache library.
470 m_out->Print( "(lib_symbols" );
471
472 for( const auto& [ libItemName, libSymbol ] : screen->GetLibSymbols() )
473 SCH_IO_KICAD_SEXPR_LIB_CACHE::SaveSymbol( libSymbol, *m_out, libItemName );
474
475 m_out->Print( ")" );
476
477 // Enforce item ordering
478 auto cmp =
479 []( const SCH_ITEM* a, const SCH_ITEM* b )
480 {
481 if( a->Type() != b->Type() )
482 return a->Type() < b->Type();
483
484 return a->m_Uuid < b->m_Uuid;
485 };
486
487 std::multiset<SCH_ITEM*, decltype( cmp )> save_map( cmp );
488
489 for( SCH_ITEM* item : screen->Items() )
490 {
491 // Markers are not saved, so keep them from being considered below
492 if( item->Type() != SCH_MARKER_T )
493 save_map.insert( item );
494 }
495
496 for( SCH_ITEM* item : save_map )
497 {
498 switch( item->Type() )
499 {
500 case SCH_SYMBOL_T:
501 saveSymbol( static_cast<SCH_SYMBOL*>( item ), *m_schematic, sheets, false );
502 break;
503
504 case SCH_BITMAP_T:
505 saveBitmap( static_cast<SCH_BITMAP&>( *item ) );
506 break;
507
508 case SCH_SHEET_T:
509 saveSheet( static_cast<SCH_SHEET*>( item ), sheets );
510 break;
511
512 case SCH_JUNCTION_T:
513 saveJunction( static_cast<SCH_JUNCTION*>( item ) );
514 break;
515
516 case SCH_NO_CONNECT_T:
517 saveNoConnect( static_cast<SCH_NO_CONNECT*>( item ) );
518 break;
519
522 saveBusEntry( static_cast<SCH_BUS_ENTRY_BASE*>( item ) );
523 break;
524
525 case SCH_LINE_T:
526 saveLine( static_cast<SCH_LINE*>( item ) );
527 break;
528
529 case SCH_SHAPE_T:
530 saveShape( static_cast<SCH_SHAPE*>( item ) );
531 break;
532
533 case SCH_RULE_AREA_T:
534 saveRuleArea( static_cast<SCH_RULE_AREA*>( item ) );
535 break;
536
537 case SCH_TEXT_T:
538 case SCH_LABEL_T:
540 case SCH_HIER_LABEL_T:
542 saveText( static_cast<SCH_TEXT*>( item ) );
543 break;
544
545 case SCH_TEXTBOX_T:
546 saveTextBox( static_cast<SCH_TEXTBOX*>( item ) );
547 break;
548
549 case SCH_TABLE_T:
550 saveTable( static_cast<SCH_TABLE*>( item ) );
551 break;
552
553 case SCH_GROUP_T:
554 saveGroup( static_cast<SCH_GROUP*>( item ) );
555 break;
556
557 default:
558 wxASSERT( "Unexpected schematic object type in SCH_IO_KICAD_SEXPR::Format()" );
559 }
560 }
561
562 // Net chains are schematic-wide state, so they must be written
563 // by exactly one sheet file. Anchor the write to the schematic's first top-level sheet to
564 // match the embedded files convention below.
565 if( m_schematic->GetTopLevelSheet( 0 ) == aSheet )
566 {
567 m_schematic->NetChains().RefreshTerminalReferences();
568
569 for( const auto& sigPtr : m_schematic->NetChains().GetCommittedNetChains() )
570 {
571 if( !sigPtr )
572 continue;
573
574 const SCH_NETCHAIN& sig = *sigPtr;
575
576 if( sig.GetTerminalRef( 0 ).IsEmpty() || sig.GetTerminalRef( 1 ).IsEmpty() )
577 continue;
578
579 m_out->Print( "(net_chain %s", m_out->Quotew( sig.GetName() ).c_str() );
580
581 m_out->Print( " (from %s %s)", m_out->Quotew( sig.GetTerminalRef( 0 ) ).c_str(),
582 m_out->Quotew( sig.GetTerminalPinNum( 0 ) ).c_str() );
583 m_out->Print( " (to %s %s)", m_out->Quotew( sig.GetTerminalRef( 1 ) ).c_str(),
584 m_out->Quotew( sig.GetTerminalPinNum( 1 ) ).c_str() );
585
586 if( !sig.GetNetClass().IsEmpty() )
587 m_out->Print( " (net_class %s)", m_out->Quotew( sig.GetNetClass() ).c_str() );
588
590 {
591 const KIGFX::COLOR4D& c = sig.GetColor();
592 m_out->Print( " (color %d %d %d %s)",
593 KiROUND( c.r * 255.0 ),
594 KiROUND( c.g * 255.0 ),
595 KiROUND( c.b * 255.0 ),
596 FormatDouble2Str( c.a ).c_str() );
597 }
598
599 // Synthetic subgraph names are not stable across runs, so they are
600 // skipped when persisting the member-net list.
601 std::vector<wxString> persistableNets;
602
603 for( const wxString& n : sig.GetNets() )
604 {
606 persistableNets.push_back( n );
607 }
608
609 if( !persistableNets.empty() )
610 {
611 m_out->Print( " (nets" );
612
613 for( const wxString& n : persistableNets )
614 m_out->Print( " %s", m_out->Quotew( n ).c_str() );
615
616 m_out->Print( ")" );
617 }
618
619 m_out->Print( ")" );
620 }
621 }
622
623 if( aSheet->HasRootInstance() )
624 {
625 std::vector< SCH_SHEET_INSTANCE> instances;
626
627 instances.emplace_back( aSheet->GetRootInstance() );
628 saveInstances( instances );
629 }
630
631 // Embedded fonts and files belong to the schematic, not to any individual sheet, so they
632 // must round-trip independently of per-sheet root-instance bookkeeping (which can legitimately
633 // be missing for some top-level sheets in flat hierarchies). Anchor the write to the
634 // schematic's first top-level sheet so a single, predictable file owns the data.
635 if( m_schematic->GetTopLevelSheet( 0 ) == aSheet )
636 {
637 KICAD_FORMAT::FormatBool( m_out, "embedded_fonts", m_schematic->GetAreFontsEmbedded() );
638
639 if( !m_schematic->GetEmbeddedFiles()->IsEmpty() )
640 m_schematic->WriteEmbeddedFiles( *m_out, true );
641 }
642
643 m_out->Print( ")" );
644}
645
646
647void SCH_IO_KICAD_SEXPR::Format( SCH_SELECTION* aSelection, SCH_SHEET_PATH* aSelectionPath,
648 SCHEMATIC& aSchematic, OUTPUTFORMATTER* aFormatter,
649 bool aForClipboard )
650{
651 wxCHECK( aSelection && aSelectionPath && aFormatter, /* void */ );
652
653 SCH_SHEET_LIST sheets = aSchematic.Hierarchy();
654
655 m_schematic = &aSchematic;
656 m_out = aFormatter;
657
658 std::map<wxString, LIB_SYMBOL*> libSymbols;
659 SCH_SCREEN* screen = aSelection->GetScreen();
660 std::set<SCH_TABLE*> promotedTables;
661
662 for( EDA_ITEM* item : *aSelection )
663 {
664 if( item->Type() != SCH_SYMBOL_T )
665 continue;
666
667 SCH_SYMBOL* symbol = static_cast<SCH_SYMBOL*>( item );
668
669 wxString libSymbolLookup = symbol->GetLibId().Format().wx_str();
670
671 if( !symbol->UseLibIdLookup() )
672 libSymbolLookup = symbol->GetSchSymbolLibraryName();
673
674 auto it = screen->GetLibSymbols().find( libSymbolLookup );
675
676 if( it != screen->GetLibSymbols().end() )
677 libSymbols[ libSymbolLookup ] = it->second;
678 }
679
680 if( !libSymbols.empty() )
681 {
682 m_out->Print( "(lib_symbols" );
683
684 for( const auto& [name, libSymbol] : libSymbols )
686
687 m_out->Print( ")" );
688 }
689
690 for( EDA_ITEM* edaItem : *aSelection )
691 {
692 if( !edaItem->IsSCH_ITEM() )
693 continue;
694
695 SCH_ITEM* item = static_cast<SCH_ITEM*>( edaItem );
696
697 switch( item->Type() )
698 {
699 case SCH_SYMBOL_T:
700 saveSymbol( static_cast<SCH_SYMBOL*>( item ), aSchematic, sheets, aForClipboard, aSelectionPath );
701 break;
702
703 case SCH_BITMAP_T:
704 saveBitmap( static_cast<SCH_BITMAP&>( *item ) );
705 break;
706
707 case SCH_SHEET_T:
708 saveSheet( static_cast<SCH_SHEET*>( item ), sheets );
709 break;
710
711 case SCH_JUNCTION_T:
712 saveJunction( static_cast<SCH_JUNCTION*>( item ) );
713 break;
714
715 case SCH_NO_CONNECT_T:
716 saveNoConnect( static_cast<SCH_NO_CONNECT*>( item ) );
717 break;
718
721 saveBusEntry( static_cast<SCH_BUS_ENTRY_BASE*>( item ) );
722 break;
723
724 case SCH_LINE_T:
725 saveLine( static_cast<SCH_LINE*>( item ) );
726 break;
727
728 case SCH_SHAPE_T:
729 saveShape( static_cast<SCH_SHAPE*>( item ) );
730 break;
731
732 case SCH_RULE_AREA_T:
733 saveRuleArea( static_cast<SCH_RULE_AREA*>( item ) );
734 break;
735
736 case SCH_TEXT_T:
737 case SCH_LABEL_T:
739 case SCH_HIER_LABEL_T:
741 saveText( static_cast<SCH_TEXT*>( item ) );
742 break;
743
744 case SCH_TEXTBOX_T:
745 saveTextBox( static_cast<SCH_TEXTBOX*>( item ) );
746 break;
747
748 case SCH_TABLECELL_T:
749 {
750 SCH_TABLE* table = static_cast<SCH_TABLE*>( item->GetParent() );
751
752 if( promotedTables.count( table ) )
753 break;
754
755 table->SetFlags( SKIP_STRUCT );
756 saveTable( table );
757 table->ClearFlags( SKIP_STRUCT );
758 promotedTables.insert( table );
759 break;
760 }
761
762 case SCH_TABLE_T:
763 item->ClearFlags( SKIP_STRUCT );
764 saveTable( static_cast<SCH_TABLE*>( item ) );
765 break;
766
767 case SCH_GROUP_T:
768 saveGroup( static_cast<SCH_GROUP*>( item ) );
769 break;
770
771 default:
772 wxASSERT( "Unexpected schematic object type in SCH_IO_KICAD_SEXPR::Format()" );
773 }
774 }
775}
776
777
779{
780 if( aOverride.IsDefault() )
781 return;
782
783 const char* mode = "library_default";
784
785 switch( aOverride.m_Mode )
786 {
787 case PIN_MAP_OVERRIDE_MODE::USE_LIBRARY_DEFAULT: mode = "library_default"; break;
788 case PIN_MAP_OVERRIDE_MODE::USE_NAMED_MAP: mode = "named_map"; break;
789 case PIN_MAP_OVERRIDE_MODE::FORCE_IDENTITY: mode = "identity"; break;
790 case PIN_MAP_OVERRIDE_MODE::DELEGATE_TO_UNIT_1: mode = "delegate"; break;
791 }
792
793 aOut->Print( "(pin_map_override (mode %s)", mode );
794
795 if( aOverride.m_Mode == PIN_MAP_OVERRIDE_MODE::USE_NAMED_MAP && !aOverride.m_ActiveMapName.IsEmpty() )
796 aOut->Print( "(map %s)", aOut->Quotew( aOverride.m_ActiveMapName ).c_str() );
797
798 for( const PIN_MAP_ENTRY& edit : aOverride.m_Edits )
799 {
800 aOut->Print( "(edit %s %s)", aOut->Quotew( edit.m_PinNumber ).c_str(),
801 aOut->Quotew( edit.m_PadNumber ).c_str() );
802 }
803
804 aOut->Print( ")" );
805}
806
807
808void SCH_IO_KICAD_SEXPR::saveSymbol( SCH_SYMBOL* aSymbol, const SCHEMATIC& aSchematic,
809 const SCH_SHEET_LIST& aSheetList, bool aForClipboard,
810 const SCH_SHEET_PATH* aRelativePath )
811{
812 wxCHECK_RET( aSymbol != nullptr && m_out != nullptr, "" );
813
814 std::string libName;
815
816 wxString symbol_name = aSymbol->GetLibId().Format();
817
818 if( symbol_name.size() )
819 {
820 libName = toUTFTildaText( symbol_name );
821 }
822 else
823 {
824 libName = "_NONAME_";
825 }
826
827 EDA_ANGLE angle;
828 int orientation = aSymbol->GetOrientation() & ~( SYM_MIRROR_X | SYM_MIRROR_Y );
829
830 if( orientation == SYM_ORIENT_90 )
831 angle = ANGLE_90;
832 else if( orientation == SYM_ORIENT_180 )
833 angle = ANGLE_180;
834 else if( orientation == SYM_ORIENT_270 )
835 angle = ANGLE_270;
836 else
837 angle = ANGLE_0;
838
839 m_out->Print( "(symbol" );
840
841 if( !aSymbol->UseLibIdLookup() )
842 {
843 m_out->Print( "(lib_name %s)",
844 m_out->Quotew( aSymbol->GetSchSymbolLibraryName() ).c_str() );
845 }
846
847 m_out->Print( "(lib_id %s) (at %s %s %s)",
848 m_out->Quotew( aSymbol->GetLibId().Format().wx_str() ).c_str(),
850 aSymbol->GetPosition().x ).c_str(),
852 aSymbol->GetPosition().y ).c_str(),
853 EDA_UNIT_UTILS::FormatAngle( angle ).c_str() );
854
855 bool mirrorX = aSymbol->GetOrientation() & SYM_MIRROR_X;
856 bool mirrorY = aSymbol->GetOrientation() & SYM_MIRROR_Y;
857
858 if( mirrorX || mirrorY )
859 {
860 m_out->Print( "(mirror %s %s)",
861 mirrorX ? "x" : "",
862 mirrorY ? "y" : "" );
863 }
864
865 // The symbol unit is always set to the ordianal instance regardless of the current sheet
866 // instance to prevent file churn.
867 SCH_SYMBOL_INSTANCE ordinalInstance;
868
869 ordinalInstance.m_Reference = aSymbol->GetPrefix();
870
871 const SCH_SCREEN* parentScreen = static_cast<const SCH_SCREEN*>( aSymbol->GetParent() );
872
873 wxASSERT( parentScreen );
874
875 if( parentScreen && m_schematic )
876 {
877 std::optional<SCH_SHEET_PATH> ordinalPath =
878 m_schematic->Hierarchy().GetOrdinalPath( parentScreen );
879
880 // Design blocks are saved from a temporary sheet & screen which will not be found in
881 // the schematic, and will therefore have no ordinal path.
882 // wxASSERT( ordinalPath );
883
884 if( ordinalPath )
885 aSymbol->GetInstance( ordinalInstance, ordinalPath->Path() );
886 else if( aSymbol->GetInstances().size() )
887 ordinalInstance = aSymbol->GetInstances()[0];
888 }
889
890 int unit = ordinalInstance.m_Unit;
891
892 if( aForClipboard && aRelativePath )
893 {
894 SCH_SYMBOL_INSTANCE unitInstance;
895
896 if( aSymbol->GetInstance( unitInstance, aRelativePath->Path() ) )
897 unit = unitInstance.m_Unit;
898 }
899
900 m_out->Print( "(unit %d)", unit );
901 m_out->Print( "(body_style %d)", aSymbol->GetBodyStyle() );
902
903 KICAD_FORMAT::FormatBool( m_out, "exclude_from_sim", aSymbol->GetExcludedFromSim() );
904 KICAD_FORMAT::FormatBool( m_out, "in_bom", !aSymbol->GetExcludedFromBOM() );
905 KICAD_FORMAT::FormatBool( m_out, "on_board", !aSymbol->GetExcludedFromBoard() );
906 KICAD_FORMAT::FormatBool( m_out, "in_pos_files", !aSymbol->GetExcludedFromPosFiles() );
907 KICAD_FORMAT::FormatBool( m_out, "dnp", aSymbol->GetDNP() );
909 // Persist passthrough mode as enum string for tri-state support, but omit when DEFAULT
910 // to avoid file churn and keep files compact/back-compatible.
912 {
913 using magic_enum::enum_name;
914 std::string name = std::string( enum_name( aSymbol->GetPassthroughMode() ) );
915 // enum names are UPPER_CASE; write lowercase tokens
916 std::transform( name.begin(), name.end(), name.begin(), []( unsigned char c ){ return (char) std::tolower( c ); } );
917 m_out->Print( "(passthrough %s)", name.c_str() );
918 }
919
920 if( aSymbol->IsLocked() )
921 KICAD_FORMAT::FormatBool( m_out, "locked", true );
922
923 AUTOPLACE_ALGO fieldsAutoplaced = aSymbol->GetFieldsAutoplaced();
924
925 if( fieldsAutoplaced == AUTOPLACE_AUTO || fieldsAutoplaced == AUTOPLACE_MANUAL )
926 KICAD_FORMAT::FormatBool( m_out, "fields_autoplaced", true );
927
929
930 std::vector<SCH_FIELD*> orderedFields;
931 aSymbol->GetFields( orderedFields, false );
932
933 for( SCH_FIELD* field : orderedFields )
934 {
935 FIELD_T id = field->GetId();
936 wxString value = field->GetText();
937
938 if( !aForClipboard && aSymbol->GetInstances().size() )
939 {
940 // The instance fields are always set to the default instance regardless of the
941 // sheet instance to prevent file churn.
942 if( id == FIELD_T::REFERENCE )
943 field->SetText( ordinalInstance.m_Reference );
944 }
945 else if( aForClipboard && aSymbol->GetInstances().size() && aRelativePath
946 && ( id == FIELD_T::REFERENCE ) )
947 {
948 SCH_SYMBOL_INSTANCE instance;
949
950 if( aSymbol->GetInstance( instance, aRelativePath->Path() ) )
951 field->SetText( instance.m_Reference );
952 }
953
954 try
955 {
956 saveField( field );
957 }
958 catch( ... )
959 {
960 // Restore the changed field text on write error.
961 if( id == FIELD_T::REFERENCE )
962 field->SetText( value );
963
964 throw;
965 }
966
967 if( id == FIELD_T::REFERENCE )
968 field->SetText( value );
969 }
970
971 for( const std::unique_ptr<SCH_PIN>& pin : aSymbol->GetRawPins() )
972 {
973 // There was a bug introduced somewhere in the original alternated pin code that would
974 // set the alternate pin to the default pin name which caused a number of library symbol
975 // comparison issues. Clearing the alternate pin resolves this issue.
976 if( pin->GetAlt().IsEmpty() || ( pin->GetAlt() == pin->GetBaseName() ) )
977 {
978 m_out->Print( "(pin %s", m_out->Quotew( pin->GetNumber() ).c_str() );
980 m_out->Print( ")" );
981 }
982 else
983 {
984 m_out->Print( "(pin %s", m_out->Quotew( pin->GetNumber() ).c_str() );
986 m_out->Print( "(alternate %s))", m_out->Quotew( pin->GetAlt() ).c_str() );
987 }
988 }
989
990 if( !aSymbol->GetInstances().empty() )
991 {
992 std::map<KIID, std::vector<SCH_SYMBOL_INSTANCE>> projectInstances;
993
994 m_out->Print( "(instances" );
995
996 wxString projectName;
997
998 for( const SCH_SYMBOL_INSTANCE& inst : aSymbol->GetInstances() )
999 {
1000 // During a check-point save, the symbol might not yet have instance data. Just skip
1001 // it; don't assert.
1002 if( inst.m_Path.empty() )
1003 continue;
1004
1005 // If the instance data is part of this design but no longer has an associated sheet
1006 // path, don't save it. This prevents large amounts of orphaned instance data for the
1007 // current project from accumulating in the schematic files.
1008 KIID_PATH pathToCheck = aSchematic.NormalizeInstancePath( inst.m_Path );
1009
1010 // The autosave timer serializes a live schematic whose symbol instances a concurrent
1011 // edit can leave transiently pathless, so a size-checked source can still copy empty
1012 // here. Indexing an empty path dereferences null (Sentry KICAD-173B), so skip it.
1013 if( pathToCheck.empty() )
1014 continue;
1015
1016 bool belongsToThisProject = aSchematic.IsInstancePathInProject( pathToCheck );
1017
1018 bool isOrphaned = belongsToThisProject && !aSheetList.GetSheetPathByKIIDPath( pathToCheck );
1019
1020 // Keep all instance data when copying to the clipboard. They may be needed on paste.
1021 if( !aForClipboard && isOrphaned )
1022 continue;
1023
1024 // Group by project - use the first real sheet KIID (after stripping virtual root)
1025 KIID projectKey = pathToCheck[0];
1026 auto it = projectInstances.find( projectKey );
1027
1028 if( it == projectInstances.end() )
1029 projectInstances[ projectKey ] = { inst };
1030 else
1031 it->second.emplace_back( inst );
1032 }
1033
1034 for( auto& [uuid, instances] : projectInstances )
1035 {
1036 wxCHECK2( instances.size(), continue );
1037
1038 // Sort project instances by KIID_PATH.
1039 std::sort( instances.begin(), instances.end(),
1040 []( SCH_SYMBOL_INSTANCE& aLhs, SCH_SYMBOL_INSTANCE& aRhs )
1041 {
1042 return aLhs.m_Path < aRhs.m_Path;
1043 } );
1044
1045 if( aSchematic.IsTopLevelSheetUuid( uuid ) )
1046 projectName = m_schematic->Project().GetProjectName();
1047 else
1048 projectName = instances[0].m_ProjectName;
1049
1050 m_out->Print( "(project %s", m_out->Quotew( projectName ).c_str() );
1051
1052 for( const SCH_SYMBOL_INSTANCE& instance : instances )
1053 {
1054 wxString path;
1055 KIID_PATH tmp = instance.m_Path;
1056
1057 if( aForClipboard && aRelativePath )
1058 tmp.MakeRelativeTo( aRelativePath->Path() );
1059
1060 path = tmp.AsString();
1061
1062 m_out->Print( "(path %s (reference %s) (unit %d)",
1063 m_out->Quotew( path ).c_str(),
1064 m_out->Quotew( instance.m_Reference ).c_str(),
1065 instance.m_Unit );
1066
1067 if( !instance.m_Variants.empty() )
1068 {
1069 for( const auto&[name, variant] : instance.m_Variants )
1070 {
1071 // A variant without differentials resolves identically to no variant,
1072 // writing it only keeps deleted variants alive across sessions.
1073 if( !variant.HasDifferentials( *aSymbol ) )
1074 continue;
1075
1076 m_out->Print( "(variant (name %s)", m_out->Quotew( name ).c_str() );
1077
1078 if( variant.m_DNP != aSymbol->GetDNP() )
1079 KICAD_FORMAT::FormatBool( m_out, "dnp", variant.m_DNP );
1080
1081 if( variant.m_ExcludedFromSim != aSymbol->GetExcludedFromSim() )
1082 KICAD_FORMAT::FormatBool( m_out, "exclude_from_sim", variant.m_ExcludedFromSim );
1083
1084 if( variant.m_ExcludedFromBOM != aSymbol->GetExcludedFromBOM() )
1085 KICAD_FORMAT::FormatBool( m_out, "in_bom", !variant.m_ExcludedFromBOM );
1086
1087 if( variant.m_ExcludedFromBoard != aSymbol->GetExcludedFromBoard() )
1088 KICAD_FORMAT::FormatBool( m_out, "on_board", !variant.m_ExcludedFromBoard );
1089
1090 if( variant.m_ExcludedFromPosFiles != aSymbol->GetExcludedFromPosFiles() )
1091 KICAD_FORMAT::FormatBool( m_out, "in_pos_files", !variant.m_ExcludedFromPosFiles );
1092
1093 for( const auto&[fname, fvalue] : variant.m_Fields )
1094 {
1095 m_out->Print( "(field (name %s) (value %s))",
1096 m_out->Quotew( fname ).c_str(), m_out->Quotew( fvalue ).c_str() );
1097 }
1098
1099 if( variant.m_SymbolOverride )
1100 {
1101 m_out->Print( "(symbol_override %s)",
1102 m_out->Quotew( variant.m_SymbolOverride->Format().wx_str() ).c_str() );
1103 }
1104
1105 formatPinMapOverride( m_out, variant.m_PinMapOverride );
1106
1107 m_out->Print( ")" ); // Closes `variant` token.
1108 }
1109 }
1110
1111 m_out->Print( ")" ); // Closes `path` token.
1112 }
1113
1114 m_out->Print( ")" ); // Closes `project`.
1115 }
1116
1117 m_out->Print( ")" ); // Closes `instances`.
1118 }
1119
1121 m_out->Print( ")" ); // Closes `symbol`.
1122}
1123
1124
1126{
1127 wxCHECK_RET( aField != nullptr && m_out != nullptr, "" );
1128
1129 // Always write the untranslated name. SCH_FIELD::GetUntranslatedName() returns the
1130 // untranslated mandatory-field token, the untranslated directive-label token ("Netclass"),
1131 // or the user-supplied name. Using GetName() here would emit the translated form for label
1132 // fields, which broke cross-language collaboration (issue #24403).
1133 wxString fieldName = aField->GetUntranslatedName();
1134
1135 m_out->Print( "(property %s %s %s (at %s %s %s)",
1136 aField->IsPrivate() ? "private" : "",
1137 m_out->Quotew( fieldName ).c_str(),
1138 m_out->Quotew( aField->GetText() ).c_str(),
1140 aField->GetPosition().x ).c_str(),
1142 aField->GetPosition().y ).c_str(),
1143 EDA_UNIT_UTILS::FormatAngle( aField->GetTextAngle() ).c_str() );
1144
1145 if( !aField->IsVisible() )
1146 KICAD_FORMAT::FormatBool( m_out, "hide", true );
1147
1148 KICAD_FORMAT::FormatBool( m_out, "show_name", aField->IsNameShown() );
1149
1150 KICAD_FORMAT::FormatBool( m_out, "do_not_autoplace", !aField->CanAutoplace() );
1151
1152 if( !aField->IsDefaultFormatting()
1153 || ( aField->GetTextHeight() != schIUScale.MilsToIU( DEFAULT_SIZE_TEXT ) ) )
1154 {
1155 aField->Format( m_out, 0 );
1156 }
1157
1159 m_out->Print( ")" ); // Closes `property` token
1160}
1161
1162
1164{
1165 wxCHECK_RET( m_out != nullptr, "" );
1166
1167 const REFERENCE_IMAGE& refImage = aBitmap.GetReferenceImage();
1168 const BITMAP_BASE& bitmapBase = refImage.GetImage();
1169
1170 const wxImage* image = bitmapBase.GetImageData();
1171
1172 wxCHECK_RET( image != nullptr, "wxImage* is NULL" );
1173
1174 m_out->Print( "(image (at %s %s)",
1176 refImage.GetPosition().x ).c_str(),
1178 refImage.GetPosition().y ).c_str() );
1179
1180 double scale = refImage.GetImageScale();
1181
1182 // 20230121 or older file format versions assumed 300 image PPI at load/save.
1183 // Let's keep compatibility by changing image scale.
1184 if( SEXPR_SCHEMATIC_FILE_VERSION <= 20230121 )
1185 scale = scale * 300.0 / bitmapBase.GetPPI();
1186
1187 if( scale != 1.0 )
1188 m_out->Print( "%s", fmt::format("(scale {:g})", refImage.GetImageScale()).c_str() );
1189
1191
1192 if( aBitmap.IsLocked() )
1193 KICAD_FORMAT::FormatBool( m_out, "locked", true );
1194
1195 wxMemoryOutputStream stream;
1196 bitmapBase.SaveImageData( stream );
1197
1198 KICAD_FORMAT::FormatStreamData( *m_out, *stream.GetOutputStreamBuffer() );
1199
1201 m_out->Print( ")" ); // Closes image token.
1202}
1203
1204
1206{
1207 wxCHECK_RET( aSheet != nullptr && m_out != nullptr, "" );
1208
1209 m_out->Print( "(sheet (at %s %s) (size %s %s)",
1211 aSheet->GetPosition().x ).c_str(),
1213 aSheet->GetPosition().y ).c_str(),
1215 aSheet->GetSize().x ).c_str(),
1217 aSheet->GetSize().y ).c_str() );
1218
1219 KICAD_FORMAT::FormatBool( m_out, "exclude_from_sim", aSheet->GetExcludedFromSim() );
1220 KICAD_FORMAT::FormatBool( m_out, "in_bom", !aSheet->GetExcludedFromBOM() );
1221 KICAD_FORMAT::FormatBool( m_out, "on_board", !aSheet->GetExcludedFromBoard() );
1222 KICAD_FORMAT::FormatBool( m_out, "dnp", aSheet->GetDNP() );
1223
1224 if( aSheet->IsLocked() )
1225 KICAD_FORMAT::FormatBool( m_out, "locked", true );
1226
1227 AUTOPLACE_ALGO fieldsAutoplaced = aSheet->GetFieldsAutoplaced();
1228
1229 if( fieldsAutoplaced == AUTOPLACE_AUTO || fieldsAutoplaced == AUTOPLACE_MANUAL )
1230 KICAD_FORMAT::FormatBool( m_out, "fields_autoplaced", true );
1231
1232 STROKE_PARAMS stroke( aSheet->GetBorderWidth(), LINE_STYLE::SOLID, aSheet->GetBorderColor() );
1233
1234 stroke.SetWidth( aSheet->GetBorderWidth() );
1235 stroke.Format( m_out, schIUScale );
1236
1237 m_out->Print( "(fill (color %d %d %d %s))",
1238 KiROUND( aSheet->GetBackgroundColor().r * 255.0 ),
1239 KiROUND( aSheet->GetBackgroundColor().g * 255.0 ),
1240 KiROUND( aSheet->GetBackgroundColor().b * 255.0 ),
1241 FormatDouble2Str( aSheet->GetBackgroundColor().a ).c_str() );
1242
1244
1245 for( SCH_FIELD& field : aSheet->GetFields() )
1246 saveField( &field );
1247
1248 for( const SCH_SHEET_PIN* pin : aSheet->GetPins() )
1249 {
1250 m_out->Print( "(pin %s %s (at %s %s %s)",
1251 EscapedUTF8( pin->GetText() ).c_str(),
1252 getSheetPinShapeToken( pin->GetShape() ),
1254 pin->GetPosition().x ).c_str(),
1256 pin->GetPosition().y ).c_str(),
1257 EDA_UNIT_UTILS::FormatAngle( getSheetPinAngle( pin->GetSide() ) ).c_str() );
1258
1260
1261 pin->Format( m_out, 0 );
1262
1263 m_out->Print( ")" ); // Closes pin token.
1264 }
1265
1266 // Save all sheet instances here except the root sheet instance.
1267 std::vector< SCH_SHEET_INSTANCE > sheetInstances = aSheet->GetInstances();
1268
1269 auto it = sheetInstances.begin();
1270
1271 while( it != sheetInstances.end() )
1272 {
1273 if( it->m_Path.size() == 0 )
1274 it = sheetInstances.erase( it );
1275 else
1276 it++;
1277 }
1278
1279 if( !sheetInstances.empty() )
1280 {
1281 m_out->Print( "(instances" );
1282
1283 KIID lastProjectUuid;
1284 bool inProjectClause = false;
1285
1286 for( size_t i = 0; i < sheetInstances.size(); i++ )
1287 {
1288 // If the instance data is part of this design but no longer has an associated sheet
1289 // path, don't save it. This prevents large amounts of orphaned instance data for the
1290 // current project from accumulating in the schematic files.
1291 //
1292 // Keep all instance data when copying to the clipboard. It may be needed on paste.
1293 bool belongsToThisProject = m_schematic->IsInstancePathInProject( sheetInstances[i].m_Path );
1294
1295 if( belongsToThisProject && !aSheetList.GetSheetPathByKIIDPath( sheetInstances[i].m_Path, false ) )
1296 {
1297 if( inProjectClause && ( ( i + 1 == sheetInstances.size() )
1298 || lastProjectUuid != sheetInstances[i+1].m_Path[0] ) )
1299 {
1300 m_out->Print( ")" ); // Closes `project` token.
1301 inProjectClause = false;
1302 }
1303
1304 continue;
1305 }
1306
1307 if( lastProjectUuid != sheetInstances[i].m_Path[0] )
1308 {
1309 wxString projectName;
1310
1311 if( belongsToThisProject )
1312 projectName = m_schematic->Project().GetProjectName();
1313 else
1314 projectName = sheetInstances[i].m_ProjectName;
1315
1316 lastProjectUuid = sheetInstances[i].m_Path[0];
1317 m_out->Print( "(project %s", m_out->Quotew( projectName ).c_str() );
1318 inProjectClause = true;
1319 }
1320
1321 wxString path = sheetInstances[i].m_Path.AsString();
1322
1323 m_out->Print( "(path %s (page %s)",
1324 m_out->Quotew( path ).c_str(),
1325 m_out->Quotew( sheetInstances[i].m_PageNumber ).c_str() );
1326
1327 if( !sheetInstances[i].m_Variants.empty() )
1328 {
1329 for( const auto&[name, variant] : sheetInstances[i].m_Variants )
1330 {
1331 // A variant without differentials resolves identically to no variant,
1332 // writing it only keeps deleted variants alive across sessions.
1333 if( !variant.HasDifferentials( *aSheet ) )
1334 continue;
1335
1336 m_out->Print( "(variant (name %s)", m_out->Quotew( name ).c_str() );
1337
1338 if( variant.m_DNP != aSheet->GetDNP() )
1339 KICAD_FORMAT::FormatBool( m_out, "dnp", variant.m_DNP );
1340
1341 if( variant.m_ExcludedFromSim != aSheet->GetExcludedFromSim() )
1342 KICAD_FORMAT::FormatBool( m_out, "exclude_from_sim", variant.m_ExcludedFromSim );
1343
1344 if( variant.m_ExcludedFromBOM != aSheet->GetExcludedFromBOM() )
1345 KICAD_FORMAT::FormatBool( m_out, "in_bom", !variant.m_ExcludedFromBOM );
1346
1347 for( const auto&[fname, fvalue] : variant.m_Fields )
1348 {
1349 m_out->Print( "(field (name %s) (value %s))",
1350 m_out->Quotew( fname ).c_str(), m_out->Quotew( fvalue ).c_str() );
1351 }
1352
1353 m_out->Print( ")" ); // Closes `variant` token.
1354 }
1355 }
1356
1357 m_out->Print( ")" ); // Closes `path` token.
1358
1359 if( inProjectClause && ( ( i + 1 == sheetInstances.size() )
1360 || lastProjectUuid != sheetInstances[i+1].m_Path[0] ) )
1361 {
1362 m_out->Print( ")" ); // Closes `project` token.
1363 inProjectClause = false;
1364 }
1365 }
1366
1367 m_out->Print( ")" ); // Closes `instances` token.
1368 }
1369
1371 m_out->Print( ")" ); // Closes sheet token.
1372}
1373
1374
1376{
1377 wxCHECK_RET( aJunction != nullptr && m_out != nullptr, "" );
1378
1379 m_out->Print( "(junction (at %s %s) (diameter %s) (color %d %d %d %s)",
1381 aJunction->GetPosition().x ).c_str(),
1383 aJunction->GetPosition().y ).c_str(),
1385 aJunction->GetDiameter() ).c_str(),
1386 KiROUND( aJunction->GetColor().r * 255.0 ),
1387 KiROUND( aJunction->GetColor().g * 255.0 ),
1388 KiROUND( aJunction->GetColor().b * 255.0 ),
1389 FormatDouble2Str( aJunction->GetColor().a ).c_str() );
1390
1391 KICAD_FORMAT::FormatUuid( m_out, aJunction->m_Uuid );
1392
1393 if( aJunction->IsLocked() )
1394 KICAD_FORMAT::FormatBool( m_out, "locked", true );
1395
1397 m_out->Print( ")" );
1398}
1399
1400
1402{
1403 wxCHECK_RET( aNoConnect != nullptr && m_out != nullptr, "" );
1404
1405 m_out->Print( "(no_connect (at %s %s)",
1407 aNoConnect->GetPosition().x ).c_str(),
1409 aNoConnect->GetPosition().y ).c_str() );
1410
1411 KICAD_FORMAT::FormatUuid( m_out, aNoConnect->m_Uuid );
1412
1413 if( aNoConnect->IsLocked() )
1414 KICAD_FORMAT::FormatBool( m_out, "locked", true );
1415
1417 m_out->Print( ")" );
1418}
1419
1420
1422{
1423 wxCHECK_RET( aBusEntry != nullptr && m_out != nullptr, "" );
1424
1425 // Bus to bus entries are converted to bus line segments.
1426 if( aBusEntry->GetClass() == "SCH_BUS_BUS_ENTRY" )
1427 {
1428 SCH_LINE busEntryLine( aBusEntry->GetPosition(), LAYER_BUS );
1429
1430 busEntryLine.SetEndPoint( aBusEntry->GetEnd() );
1431 saveLine( &busEntryLine );
1432 return;
1433 }
1434
1435 m_out->Print( "(bus_entry (at %s %s) (size %s %s)",
1437 aBusEntry->GetPosition().x ).c_str(),
1439 aBusEntry->GetPosition().y ).c_str(),
1441 aBusEntry->GetSize().x ).c_str(),
1443 aBusEntry->GetSize().y ).c_str() );
1444
1445 aBusEntry->GetStroke().Format( m_out, schIUScale );
1446 KICAD_FORMAT::FormatUuid( m_out, aBusEntry->m_Uuid );
1447
1448 if( aBusEntry->IsLocked() )
1449 KICAD_FORMAT::FormatBool( m_out, "locked", true );
1450
1452 m_out->Print( ")" );
1453}
1454
1455
1457{
1458 wxCHECK_RET( aShape != nullptr && m_out != nullptr, "" );
1459
1460 // Rule areas handle locked at their own level via saveRuleArea(), so don't duplicate it
1461 // inside the shape sub-expression.
1462 bool writeLocked = aShape->Type() != SCH_RULE_AREA_T && aShape->IsLocked();
1463
1464 switch( aShape->GetShape() )
1465 {
1466 case SHAPE_T::ARC:
1467 formatArc( m_out, aShape, false, aShape->GetStroke(), aShape->GetFillMode(),
1468 aShape->GetFillColor(), false, aShape->m_Uuid, writeLocked );
1469 break;
1470
1471 case SHAPE_T::CIRCLE:
1472 formatCircle( m_out, aShape, false, aShape->GetStroke(), aShape->GetFillMode(),
1473 aShape->GetFillColor(), false, aShape->m_Uuid, writeLocked );
1474 break;
1475
1476 case SHAPE_T::RECTANGLE:
1477 formatRect( m_out, aShape, false, aShape->GetStroke(), aShape->GetFillMode(),
1478 aShape->GetFillColor(), false, aShape->m_Uuid, writeLocked );
1479 break;
1480
1481 case SHAPE_T::BEZIER:
1482 formatBezier( m_out, aShape, false, aShape->GetStroke(), aShape->GetFillMode(),
1483 aShape->GetFillColor(), false, aShape->m_Uuid, writeLocked );
1484 break;
1485
1486 case SHAPE_T::POLY:
1487 formatPoly( m_out, aShape, false, aShape->GetStroke(), aShape->GetFillMode(),
1488 aShape->GetFillColor(), false, aShape->m_Uuid, writeLocked );
1489 break;
1490
1491 case SHAPE_T::ELLIPSE:
1492 formatEllipse( m_out, aShape, false, aShape->GetStroke(), aShape->GetFillMode(), aShape->GetFillColor(), false,
1493 aShape->m_Uuid, writeLocked );
1494 break;
1495
1497 formatEllipseArc( m_out, aShape, false, aShape->GetStroke(), aShape->GetFillMode(), aShape->GetFillColor(),
1498 false, aShape->m_Uuid, writeLocked );
1499 break;
1500
1501 default:
1503 }
1504}
1505
1506
1508{
1509 wxCHECK_RET( aRuleArea != nullptr && m_out != nullptr, "" );
1510
1511 m_out->Print( "(rule_area " );
1512
1513 if( aRuleArea->IsLocked() )
1514 KICAD_FORMAT::FormatBool( m_out, "locked", true );
1515
1516 KICAD_FORMAT::FormatBool( m_out, "exclude_from_sim", aRuleArea->GetExcludedFromSim() );
1517 KICAD_FORMAT::FormatBool( m_out, "in_bom", !aRuleArea->GetExcludedFromBOM() );
1518 KICAD_FORMAT::FormatBool( m_out, "on_board", !aRuleArea->GetExcludedFromBoard() );
1519 KICAD_FORMAT::FormatBool( m_out, "dnp", aRuleArea->GetDNP() );
1520
1521 saveShape( aRuleArea );
1522
1524 m_out->Print( ")" );
1525}
1526
1527
1529{
1530 wxCHECK_RET( aLine != nullptr && m_out != nullptr, "" );
1531
1532 wxString lineType;
1533
1534 STROKE_PARAMS line_stroke = aLine->GetStroke();
1535
1536 switch( aLine->GetLayer() )
1537 {
1538 case LAYER_BUS: lineType = "bus"; break;
1539 case LAYER_WIRE: lineType = "wire"; break;
1540 case LAYER_NOTES: lineType = "polyline"; break;
1541 default:
1542 UNIMPLEMENTED_FOR( LayerName( aLine->GetLayer() ) );
1543 }
1544
1545 m_out->Print( "(%s (pts (xy %s %s) (xy %s %s))",
1546 TO_UTF8( lineType ),
1548 aLine->GetStartPoint().x ).c_str(),
1550 aLine->GetStartPoint().y ).c_str(),
1552 aLine->GetEndPoint().x ).c_str(),
1554 aLine->GetEndPoint().y ).c_str() );
1555
1556 line_stroke.Format( m_out, schIUScale );
1557
1558 if( aLine->GetLayer() == LAYER_NOTES )
1559 {
1560 aLine->GetStartEnding().Format( m_out, schIUScale, "start_shape" );
1561 aLine->GetEndEnding().Format( m_out, schIUScale, "end_shape" );
1562 }
1563
1565
1566 if( aLine->IsLocked() )
1567 KICAD_FORMAT::FormatBool( m_out, "locked", true );
1568
1570 m_out->Print( ")" );
1571}
1572
1573
1575{
1576 wxCHECK_RET( aText != nullptr && m_out != nullptr, "" );
1577
1578 // Note: label is nullptr SCH_TEXT, but not for SCH_LABEL_XXX,
1579 SCH_LABEL_BASE* label = dynamic_cast<SCH_LABEL_BASE*>( aText );
1580
1581 m_out->Print( "(%s %s",
1582 getTextTypeToken( aText->Type() ),
1583 m_out->Quotew( aText->GetText() ).c_str() );
1584
1585 if( aText->Type() == SCH_TEXT_T )
1586 KICAD_FORMAT::FormatBool( m_out, "exclude_from_sim", aText->GetExcludedFromSim() );
1587
1588 if( aText->Type() == SCH_DIRECTIVE_LABEL_T )
1589 {
1590 SCH_DIRECTIVE_LABEL* flag = static_cast<SCH_DIRECTIVE_LABEL*>( aText );
1591
1592 m_out->Print( "(length %s)",
1594 flag->GetPinLength() ).c_str() );
1595 }
1596
1597 EDA_ANGLE angle = aText->GetTextAngle();
1598
1599 if( label )
1600 {
1601 if( label->Type() == SCH_GLOBAL_LABEL_T
1602 || label->Type() == SCH_HIER_LABEL_T
1603 || label->Type() == SCH_DIRECTIVE_LABEL_T )
1604 {
1605 m_out->Print( "(shape %s)", getSheetPinShapeToken( label->GetShape() ) );
1606 }
1607
1608 // The angle of the text is always 0 or 90 degrees for readibility reasons,
1609 // but the item itself can have more rotation (-90 and 180 deg)
1610 switch( label->GetSpinStyle() )
1611 {
1612 default:
1613 case SPIN_STYLE::LEFT: angle += ANGLE_180; break;
1614 case SPIN_STYLE::UP: break;
1615 case SPIN_STYLE::RIGHT: break;
1616 case SPIN_STYLE::BOTTOM: angle += ANGLE_180; break;
1617 }
1618 }
1619
1620 m_out->Print( "(at %s %s %s)",
1622 aText->GetPosition().x ).c_str(),
1624 aText->GetPosition().y ).c_str(),
1625 EDA_UNIT_UTILS::FormatAngle( angle ).c_str() );
1626
1627 if( label && !label->GetFields().empty() )
1628 {
1629 AUTOPLACE_ALGO fieldsAutoplaced = label->GetFieldsAutoplaced();
1630
1631 if( fieldsAutoplaced == AUTOPLACE_AUTO || fieldsAutoplaced == AUTOPLACE_MANUAL )
1632 KICAD_FORMAT::FormatBool( m_out, "fields_autoplaced", true );
1633 }
1634
1635 aText->EDA_TEXT::Format( m_out, 0 );
1637
1638 if( aText->IsLocked() )
1639 KICAD_FORMAT::FormatBool( m_out, "locked", true );
1640
1641 if( label )
1642 {
1643 for( SCH_FIELD& field : label->GetFields() )
1644 saveField( &field );
1645 }
1646
1648 m_out->Print( ")" ); // Closes text token.
1649}
1650
1651
1653{
1654 wxCHECK_RET( aTextBox != nullptr && m_out != nullptr, "" );
1655
1656 m_out->Print( "(%s %s",
1657 aTextBox->Type() == SCH_TABLECELL_T ? "table_cell" : "text_box",
1658 m_out->Quotew( aTextBox->GetText() ).c_str() );
1659
1660 KICAD_FORMAT::FormatBool( m_out, "exclude_from_sim", aTextBox->GetExcludedFromSim() );
1661
1662 VECTOR2I pos = aTextBox->GetStart();
1663 VECTOR2I size = aTextBox->GetEnd() - pos;
1664
1665 m_out->Print( "(at %s %s %s) (size %s %s) (margins %s %s %s %s)",
1668 EDA_UNIT_UTILS::FormatAngle( aTextBox->GetTextAngle() ).c_str(),
1675
1676 if( SCH_TABLECELL* cell = dynamic_cast<SCH_TABLECELL*>( aTextBox ) )
1677 m_out->Print( "(span %d %d)", cell->GetColSpan(), cell->GetRowSpan() );
1678
1679 if( aTextBox->Type() != SCH_TABLECELL_T )
1680 aTextBox->GetStroke().Format( m_out, schIUScale );
1681
1682 formatFill( m_out, aTextBox->GetFillMode(), aTextBox->GetFillColor() );
1683 aTextBox->EDA_TEXT::Format( m_out, 0 );
1685
1686 if( aTextBox->IsLocked() )
1687 KICAD_FORMAT::FormatBool( m_out, "locked", true );
1688
1690 m_out->Print( ")" );
1691}
1692
1693
1695{
1696 if( aTable->GetFlags() & SKIP_STRUCT )
1697 {
1698 aTable = static_cast<SCH_TABLE*>( aTable->Clone() );
1699
1700 int minCol = aTable->GetColCount();
1701 int maxCol = -1;
1702 int minRow = aTable->GetRowCount();
1703 int maxRow = -1;
1704
1705 for( int row = 0; row < aTable->GetRowCount(); ++row )
1706 {
1707 for( int col = 0; col < aTable->GetColCount(); ++col )
1708 {
1709 SCH_TABLECELL* cell = aTable->GetCell( row, col );
1710
1711 if( cell->IsSelected() )
1712 {
1713 minRow = std::min( minRow, row );
1714 maxRow = std::max( maxRow, row );
1715 minCol = std::min( minCol, col );
1716 maxCol = std::max( maxCol, col );
1717 }
1718 else
1719 {
1720 cell->SetFlags( STRUCT_DELETED );
1721 }
1722 }
1723 }
1724
1725 wxCHECK_MSG( maxCol >= minCol && maxRow >= minRow, /*void*/, wxT( "No selected cells!" ) );
1726
1727 int destRow = 0;
1728
1729 for( int row = minRow; row <= maxRow; row++ )
1730 aTable->SetRowHeight( destRow++, aTable->GetRowHeight( row ) );
1731
1732 int destCol = 0;
1733
1734 for( int col = minCol; col <= maxCol; col++ )
1735 aTable->SetColWidth( destCol++, aTable->GetColWidth( col ) );
1736
1737 aTable->DeleteMarkedCells();
1738 aTable->SetColCount( ( maxCol - minCol ) + 1 );
1739 }
1740
1741 wxCHECK_RET( aTable != nullptr && m_out != nullptr, "" );
1742
1743 m_out->Print( "(table (column_count %d)", aTable->GetColCount() );
1744
1745 m_out->Print( "(border" );
1746 KICAD_FORMAT::FormatBool( m_out, "external", aTable->StrokeExternal() );
1748
1749 if( aTable->StrokeExternal() || aTable->StrokeHeaderSeparator() )
1750 aTable->GetBorderStroke().Format( m_out, schIUScale );
1751
1752 m_out->Print( ")" ); // Close `border` token.
1753
1754 m_out->Print( "(separators" );
1755 KICAD_FORMAT::FormatBool( m_out, "rows", aTable->StrokeRows() );
1756 KICAD_FORMAT::FormatBool( m_out, "cols", aTable->StrokeColumns() );
1757
1758 if( aTable->StrokeRows() || aTable->StrokeColumns() )
1760
1761 m_out->Print( ")" ); // Close `separators` token.
1762
1763 m_out->Print( "(column_widths" );
1764
1765 for( int col = 0; col < aTable->GetColCount(); ++col )
1766 {
1767 m_out->Print( " %s",
1768 EDA_UNIT_UTILS::FormatInternalUnits( schIUScale, aTable->GetColWidth( col ) ).c_str() );
1769 }
1770
1771 m_out->Print( ")" );
1772
1773 m_out->Print( "(row_heights" );
1774
1775 for( int row = 0; row < aTable->GetRowCount(); ++row )
1776 {
1777 m_out->Print( " %s",
1778 EDA_UNIT_UTILS::FormatInternalUnits( schIUScale, aTable->GetRowHeight( row ) ).c_str() );
1779 }
1780
1781 m_out->Print( ")" );
1782
1784
1785 if( aTable->IsLocked() )
1786 KICAD_FORMAT::FormatBool( m_out, "locked", true );
1787
1788 m_out->Print( "(cells" );
1789
1790 for( SCH_TABLECELL* cell : aTable->GetCells() )
1791 saveTextBox( cell );
1792
1793 m_out->Print( ")" ); // Close `cells` token.
1794
1796 m_out->Print( ")" ); // Close `table` token.
1797
1798 if( aTable->GetFlags() & SKIP_STRUCT )
1799 delete aTable;
1800}
1801
1802
1804{
1805 // Don't write empty groups
1806 if( aGroup->GetItems().empty() )
1807 return;
1808
1809 m_out->Print( "(group %s", m_out->Quotew( aGroup->GetName() ).c_str() );
1810
1812
1813 if( aGroup->IsLocked() )
1814 KICAD_FORMAT::FormatBool( m_out, "locked", true );
1815
1816 if( aGroup->HasDesignBlockLink() )
1817 m_out->Print( "(lib_id \"%s\")", aGroup->GetDesignBlockLibId().Format().c_str() );
1818
1819 wxArrayString memberIds;
1820
1821 for( EDA_ITEM* member : aGroup->GetItems() )
1822 memberIds.Add( member->m_Uuid.AsString() );
1823
1824 memberIds.Sort();
1825
1826 m_out->Print( "(members" );
1827
1828 for( const wxString& memberId : memberIds )
1829 m_out->Print( " %s", m_out->Quotew( memberId ).c_str() );
1830
1831 m_out->Print( ")" ); // Close `members` token.
1832
1834 m_out->Print( ")" ); // Close `group` token.
1835}
1836
1837
1838void SCH_IO_KICAD_SEXPR::saveInstances( const std::vector<SCH_SHEET_INSTANCE>& aInstances )
1839{
1840 if( aInstances.size() )
1841 {
1842 m_out->Print( "(sheet_instances" );
1843
1844 for( const SCH_SHEET_INSTANCE& instance : aInstances )
1845 {
1846 wxString path = instance.m_Path.AsString();
1847
1848 if( path.IsEmpty() )
1849 path = wxT( "/" ); // Root path
1850
1851 m_out->Print( "(path %s (page %s))",
1852 m_out->Quotew( path ).c_str(),
1853 m_out->Quotew( instance.m_PageNumber ).c_str() );
1854 }
1855
1856 m_out->Print( ")" ); // Close sheet instances token.
1857 }
1858}
1859
1860
1861void SCH_IO_KICAD_SEXPR::cacheLib( const wxString& aLibraryFileName,
1862 const std::map<std::string, UTF8>* aProperties )
1863{
1864 // Suppress font substitution warnings (RAII - automatically restored on scope exit)
1865 FONTCONFIG_REPORTER_SCOPE fontconfigScope( nullptr );
1866
1867 if( !m_cache || !m_cache->IsFile( aLibraryFileName ) || m_cache->IsFileChanged() )
1868 {
1869 int oldModifyHash = 1;
1870 bool isNewCache = false;
1871
1872 if( m_cache )
1873 oldModifyHash = m_cache->m_modHash;
1874 else
1875 isNewCache = true;
1876
1877 // a spectacular episode in memory management:
1878 delete m_cache;
1879 m_cache = new SCH_IO_KICAD_SEXPR_LIB_CACHE( aLibraryFileName );
1880
1881 if( !isBuffering( aProperties ) || ( isNewCache && m_cache->isLibraryPathValid() ) )
1882 {
1883 m_cache->Load();
1884 m_cache->m_modHash = oldModifyHash + 1;
1885 }
1886 }
1887}
1888
1889
1890bool SCH_IO_KICAD_SEXPR::isBuffering( const std::map<std::string, UTF8>* aProperties )
1891{
1892 return ( aProperties && aProperties->contains( SCH_IO_KICAD_SEXPR::PropBuffering ) );
1893}
1894
1895
1897{
1898 if( m_cache )
1899 return m_cache->GetModifyHash();
1900
1901 // If the cache hasn't been loaded, it hasn't been modified.
1902 return 0;
1903}
1904
1905
1906void SCH_IO_KICAD_SEXPR::EnumerateSymbolLib( wxArrayString& aSymbolNameList,
1907 const wxString& aLibraryPath,
1908 const std::map<std::string, UTF8>* aProperties )
1909{
1910 bool powerSymbolsOnly = ( aProperties && aProperties->contains( SYMBOL_LIBRARY_ADAPTER::PropPowerSymsOnly ) );
1911
1912 cacheLib( aLibraryPath, aProperties );
1913
1914 if( !isBuffering( aProperties ) && !m_cache->isLibraryPathValid() )
1915 THROW_IO_ERRORF( _( "Library '%s' not found." ), aLibraryPath );
1916
1917 const LIB_SYMBOL_MAP& symbols = m_cache->m_symbols;
1918
1919 for( LIB_SYMBOL_MAP::const_iterator it = symbols.begin(); it != symbols.end(); ++it )
1920 {
1921 if( !powerSymbolsOnly || it->second->IsPower() )
1922 aSymbolNameList.Add( it->first );
1923 }
1924}
1925
1926
1927void SCH_IO_KICAD_SEXPR::EnumerateSymbolLib( std::vector<LIB_SYMBOL*>& aSymbolList,
1928 const wxString& aLibraryPath,
1929 const std::map<std::string, UTF8>* aProperties )
1930{
1931 bool powerSymbolsOnly = ( aProperties && aProperties->contains( SYMBOL_LIBRARY_ADAPTER::PropPowerSymsOnly ) );
1932
1933 cacheLib( aLibraryPath, aProperties );
1934
1935 if( !isBuffering( aProperties ) && !m_cache->isLibraryPathValid() )
1936 THROW_IO_ERRORF( _( "Library '%s' not found." ), aLibraryPath );
1937
1938 const LIB_SYMBOL_MAP& symbols = m_cache->m_symbols;
1939
1940 for( LIB_SYMBOL_MAP::const_iterator it = symbols.begin(); it != symbols.end(); ++it )
1941 {
1942 if( !powerSymbolsOnly || it->second->IsPower() )
1943 aSymbolList.push_back( it->second );
1944 }
1945}
1946
1947
1948LIB_SYMBOL* SCH_IO_KICAD_SEXPR::LoadSymbol( const wxString& aLibraryPath,
1949 const wxString& aSymbolName,
1950 const std::map<std::string, UTF8>* aProperties )
1951{
1952 cacheLib( aLibraryPath, aProperties );
1953
1954 LIB_SYMBOL_MAP::const_iterator it = m_cache->m_symbols.find( aSymbolName );
1955
1956 // We no longer escape '/' in symbol names, but we used to.
1957 if( it == m_cache->m_symbols.end() && aSymbolName.Contains( '/' ) )
1958 it = m_cache->m_symbols.find( EscapeString( aSymbolName, CTX_LEGACY_LIBID ) );
1959
1960 if( it == m_cache->m_symbols.end() && aSymbolName.Contains( wxT( "{slash}" ) ) )
1961 {
1962 wxString unescaped = aSymbolName;
1963 unescaped.Replace( wxT( "{slash}" ), wxT( "/" ) );
1964 it = m_cache->m_symbols.find( unescaped );
1965 }
1966
1967 if( it == m_cache->m_symbols.end() )
1968 return nullptr;
1969
1970 return it->second;
1971}
1972
1973
1974void SCH_IO_KICAD_SEXPR::SaveSymbol( const wxString& aLibraryPath, std::unique_ptr<LIB_SYMBOL> aSymbol,
1975 const std::map<std::string, UTF8>* aProperties )
1976{
1977 cacheLib( aLibraryPath, aProperties );
1978
1979 m_cache->AddSymbol( std::move( aSymbol ) );
1980
1981 if( !isBuffering( aProperties ) )
1982 m_cache->Save();
1983}
1984
1985
1986void SCH_IO_KICAD_SEXPR::DeleteSymbol( const wxString& aLibraryPath, const wxString& aSymbolName,
1987 const std::map<std::string, UTF8>* aProperties )
1988{
1989 cacheLib( aLibraryPath, aProperties );
1990
1991 m_cache->DeleteSymbol( aSymbolName );
1992
1993 if( !isBuffering( aProperties ) )
1994 m_cache->Save();
1995}
1996
1997
1998void SCH_IO_KICAD_SEXPR::CreateLibrary( const wxString& aLibraryPath,
1999 const std::map<std::string, UTF8>* aProperties )
2000{
2001 wxFileName fn( aLibraryPath );
2002
2003 // Normalize the path: if it's a directory on the filesystem, ensure fn is marked as a
2004 // directory so that IsDir() checks work correctly. wxFileName::IsDir() only checks if
2005 // the path string ends with a separator, not if the path is actually a directory.
2006 if( !fn.IsDir() && wxFileName::DirExists( fn.GetFullPath() ) )
2007 fn.AssignDir( fn.GetFullPath() );
2008
2009 if( !fn.IsDir() && fn.FileExists() )
2010 THROW_IO_ERRORF( _( "Symbol library file '%s' already exists." ), fn.GetFullPath() );
2011
2012 if( fn.IsDir() && fn.DirExists() )
2013 THROW_IO_ERRORF( _( "Symbol library path '%s' already exists." ), fn.GetPath() );
2014
2015 delete m_cache;
2016 m_cache = new SCH_IO_KICAD_SEXPR_LIB_CACHE( aLibraryPath );
2017 m_cache->SetModified();
2018 m_cache->Save();
2019 m_cache->Load(); // update m_writable and m_timestamp
2020}
2021
2022
2023bool SCH_IO_KICAD_SEXPR::DeleteLibrary( const wxString& aLibraryPath,
2024 const std::map<std::string, UTF8>* aProperties )
2025{
2026 wxFileName fn = aLibraryPath;
2027
2028 // Normalize the path: if it's a directory on the filesystem, ensure fn is marked as a
2029 // directory so that IsDir() checks work correctly.
2030 if( !fn.IsDir() && wxFileName::DirExists( fn.GetFullPath() ) )
2031 fn.AssignDir( fn.GetFullPath() );
2032
2033 if( !fn.FileExists() && !fn.DirExists() )
2034 return false;
2035
2036 // Some of the more elaborate wxRemoveFile() crap puts up its own wxLog dialog
2037 // we don't want that. we want bare metal portability with no UI here.
2038 if( !fn.IsDir() )
2039 {
2040 if( wxRemove( aLibraryPath ) )
2041 THROW_IO_ERRORF( _( "Symbol library file '%s' cannot be deleted." ), aLibraryPath.GetData() );
2042 }
2043 else
2044 {
2045 // This may be overly agressive. Perhaps in the future we should remove all of the *.kicad_sym
2046 // files and only delete the folder if it's empty.
2047 if( !fn.Rmdir( wxPATH_RMDIR_RECURSIVE ) )
2048 THROW_IO_ERRORF( _( "Symbol library folder '%s' cannot be deleted." ), fn.GetPath() );
2049 }
2050
2051 if( m_cache && m_cache->IsFile( aLibraryPath ) )
2052 {
2053 delete m_cache;
2054 m_cache = nullptr;
2055 }
2056
2057 return true;
2058}
2059
2060
2061void SCH_IO_KICAD_SEXPR::SaveLibrary( const wxString& aLibraryPath, const std::map<std::string, UTF8>* aProperties )
2062{
2063 if( !m_cache )
2064 m_cache = new SCH_IO_KICAD_SEXPR_LIB_CACHE( aLibraryPath );
2065
2066 wxString oldFileName = m_cache->GetFileName();
2067
2068 if( !m_cache->IsFile( aLibraryPath ) )
2069 m_cache->SetFileName( aLibraryPath );
2070
2071 // This is a forced save.
2072 m_cache->SetModified();
2073 m_cache->Save();
2074
2075 m_cache->SetFileName( oldFileName );
2076}
2077
2078
2079bool SCH_IO_KICAD_SEXPR::CanReadLibrary( const wxString& aLibraryPath ) const
2080{
2081 // Check if the path is a directory containing at least one .kicad_sym file
2082 if( wxFileName::DirExists( aLibraryPath ) )
2083 {
2084 wxDir dir( aLibraryPath );
2085
2086 if( dir.IsOpened() )
2087 {
2088 wxString filename;
2089 wxString filespec = wxT( "*." ) + wxString( FILEEXT::KiCadSymbolLibFileExtension );
2090
2091 if( dir.GetFirst( &filename, filespec, wxDIR_FILES ) )
2092 return true;
2093 }
2094
2095 return false;
2096 }
2097
2098 // Check for proper extension
2099 if( !SCH_IO::CanReadLibrary( aLibraryPath ) )
2100 return false;
2101
2102 // Above just checks for proper extension; now check that it actually exists
2103 wxFileName fn( aLibraryPath );
2104 return fn.IsOk() && fn.FileExists();
2105}
2106
2107
2108bool SCH_IO_KICAD_SEXPR::IsLibraryWritable( const wxString& aLibraryPath )
2109{
2110 wxFileName fn( aLibraryPath );
2111
2112 if( fn.FileExists() )
2113 return fn.IsFileWritable();
2114
2115 return fn.IsDirWritable();
2116}
2117
2118
2119void SCH_IO_KICAD_SEXPR::GetAvailableSymbolFields( std::vector<wxString>& aNames )
2120{
2121 if( !m_cache )
2122 return;
2123
2124 const LIB_SYMBOL_MAP& symbols = m_cache->m_symbols;
2125
2126 std::set<wxString> fieldNames;
2127
2128 for( LIB_SYMBOL_MAP::const_iterator it = symbols.begin(); it != symbols.end(); ++it )
2129 {
2130 std::map<wxString, wxString> chooserFields;
2131 it->second->GetChooserFields( chooserFields );
2132
2133 for( const auto& [name, value] : chooserFields )
2134 fieldNames.insert( name );
2135 }
2136
2137 std::copy( fieldNames.begin(), fieldNames.end(), std::back_inserter( aNames ) );
2138}
2139
2140
2141void SCH_IO_KICAD_SEXPR::GetDefaultSymbolFields( std::vector<wxString>& aNames )
2142{
2143 GetAvailableSymbolFields( aNames );
2144}
2145
2146
2147std::vector<LIB_SYMBOL*> SCH_IO_KICAD_SEXPR::ParseLibSymbols( std::string& aSymbolText, std::string aSource,
2148 int aFileVersion )
2149{
2150 LIB_SYMBOL* newSymbol = nullptr;
2151 LIB_SYMBOL_MAP map;
2152
2153 std::vector<LIB_SYMBOL*> newSymbols;
2154 std::unique_ptr<STRING_LINE_READER> reader = std::make_unique<STRING_LINE_READER>( aSymbolText,
2155 aSource );
2156
2157 do
2158 {
2159 SCH_IO_KICAD_SEXPR_PARSER parser( reader.get() );
2160
2161 newSymbol = parser.ParseSymbol( map, aFileVersion );
2162
2163 if( newSymbol )
2164 newSymbols.emplace_back( newSymbol );
2165
2166 reader.reset( new STRING_LINE_READER( *reader ) );
2167 }
2168 while( newSymbol );
2169
2170 return newSymbols;
2171}
2172
2173
2175{
2176 SCH_IO_KICAD_SEXPR_LIB_CACHE::SaveSymbol( symbol, formatter );
2177}
2178
2179
2180const char* SCH_IO_KICAD_SEXPR::PropBuffering = "buffering";
const char * name
constexpr EDA_IU_SCALE schIUScale
Definition base_units.h:123
constexpr BOX2I KiROUND(const BOX2D &aBoxD)
Definition box2.h:995
wxString GetMajorMinorVersion()
Get only the major and minor version in a string major.minor.
This class handle bitmap images in KiCad.
Definition bitmap_base.h:45
bool SaveImageData(wxOutputStream &aOutStream) const
Write the bitmap data to aOutStream.
int GetPPI() const
wxImage * GetImageData()
Definition bitmap_base.h:64
const LIB_ID & GetDesignBlockLibId() const
Definition eda_group.h:88
std::unordered_set< EDA_ITEM * > & GetItems()
Definition eda_group.h:64
wxString GetName() const
Definition eda_group.h:61
bool HasDesignBlockLink() const
Definition eda_group.h:85
A base class for most all the KiCad significant classes used in schematics and boards.
Definition eda_item.h:98
void SetFlags(EDA_ITEM_FLAGS aMask)
Definition eda_item.h:158
const KIID m_Uuid
Definition eda_item.h:597
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
bool IsSelected() const
Definition eda_item.h:134
EDA_ITEM * GetParent() const
Definition eda_item.h:112
virtual void SetParent(EDA_ITEM *aParent)
Definition eda_item.cpp:153
EDA_ITEM_FLAGS GetFlags() const
Definition eda_item.h:167
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
bool IsDefaultFormatting() 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 int GetTextHeight() const
Definition eda_text.h:307
virtual void Format(OUTPUTFORMATTER *aFormatter, int aControlBits) const
Output the object to aFormatter in s-expression form.
virtual EDA_ANGLE GetTextAngle() const
Definition eda_text.h:178
EE_TYPE OfType(KICAD_T aType) const
Definition sch_rtree.h:248
A LINE_READER that reads from an open file.
Definition richio.h:157
void Rewind()
Rewind the file and resets the line number back to zero.
Definition richio.h:206
char * ReadLine() override
Read a line of text into the buffer and increments the line number counter.
Definition richio.cpp:202
RAII class to set and restore the fontconfig reporter.
Definition reporter.h:385
PROGRESS_REPORTER * m_progressReporter
Progress reporter to track the progress of the operation, may be nullptr.
Definition io_base.h:241
virtual bool CanReadLibrary(const wxString &aFileName) const
Checks if this IO object can read the specified library file/directory.
Definition io_base.cpp:71
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
double r
Red component.
Definition color4d.h:390
double g
Green component.
Definition color4d.h:391
double a
Alpha component.
Definition color4d.h:393
static const COLOR4D UNSPECIFIED
For legacy support; used as a value to indicate color hasn't been set yet.
Definition color4d.h:399
double b
Blue component.
Definition color4d.h:392
bool MakeRelativeTo(const KIID_PATH &aPath)
Definition kiid.cpp:378
wxString AsString() const
Definition kiid.cpp:423
Definition kiid.h:46
UTF8 Format() const
Definition lib_id.cpp:132
Define a library symbol object.
Definition lib_symbol.h:119
void Format(OUTPUTFORMATTER *aOut, const EDA_IU_SCALE &aIuScale, const char *aToken) const
An abstract class from which implementation specific LINE_READERs may be derived to read single lines...
Definition richio.h:65
static LOAD_INFO_REPORTER & GetInstance()
Definition reporter.cpp:351
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
void Format(OUTPUTFORMATTER *aFormatter) const
Output the page class to aFormatter in s-expression form.
bool Finish() override
Runs prettification over the buffered bytes, writes them to the sibling temp file,...
Definition richio.cpp:710
virtual const wxString GetProjectPath() const
Return the full path of the project.
Definition project.cpp:183
A REFERENCE_IMAGE is a wrapper around a BITMAP_IMAGE that is displayed in an editor as a reference fo...
VECTOR2I GetPosition() const
const BITMAP_BASE & GetImage() const
Get the underlying image.
double GetImageScale() const
Holds all the data relating to one schematic.
Definition schematic.h:148
bool IsTopLevelSheetUuid(const KIID &aUuid) const
Check if a UUID names one of this schematic's top level sheets.
SCH_SHEET_LIST Hierarchy() const
Return the full schematic flattened hierarchical sheet list.
PROJECT & Project() const
Return a reference to the project this schematic is part of.
Definition schematic.h:170
bool IsValid() const
A simple test if the schematic is loaded, not a complete one.
Definition schematic.h:288
SCH_SHEET & Root() const
Definition schematic.h:199
KIID_PATH NormalizeInstancePath(const KIID_PATH &aPath) const
Strip the leading virtual root from a stored instance path, which SCH_SHEET_PATH::Path() omits but st...
bool IsInstancePathInProject(const KIID_PATH &aPath) const
Test whether an instance path is rooted in this schematic's top level sheets.
Object to handle a bitmap image that can be inserted in a schematic.
Definition sch_bitmap.h:36
REFERENCE_IMAGE & GetReferenceImage()
Definition sch_bitmap.h:50
Base class for a bus or wire entry.
VECTOR2I GetSize() const
VECTOR2I GetPosition() const override
virtual STROKE_PARAMS GetStroke() const override
VECTOR2I GetEnd() 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
wxString GetUntranslatedName() const
Get the untranslated field name for storage, variable look-up, etc.
bool CanAutoplace() const
Definition sch_field.h:239
A set of SCH_ITEMs (i.e., without duplicates).
Definition sch_group.h:48
A cache assistant for the KiCad s-expression symbol libraries.
static void SaveSymbol(LIB_SYMBOL *aSymbol, OUTPUTFORMATTER &aFormatter, const wxString &aLibName=wxEmptyString, bool aIncludeData=true)
Object to parser s-expression symbol library and schematic file formats.
const std::map< wxString, wxString > & GetNetChainNetClasses() const
const std::map< wxString, COLOR4D > & GetNetChainColors() const
void ParseSchematic(SCH_SHEET *aSheet, bool aIsCopyablyOnly=false, int aFileVersion=SEXPR_SCHEMATIC_FILE_VERSION)
Parse the internal LINE_READER object into aSheet.
const std::map< wxString, CHAIN_TERMINALS > & GetNetChainTerminalRefs() const
LIB_SYMBOL * ParseSymbol(LIB_SYMBOL_MAP &aSymbolLibMap, int aFileVersion=SEXPR_SYMBOL_LIB_FILE_VERSION)
Parse internal LINE_READER object into symbols and return all found.
const std::map< wxString, std::set< wxString > > & GetNetChainMemberNets() const
wxString m_path
Root project path for loading child sheets.
void GetDefaultSymbolFields(std::vector< wxString > &aNames) override
Retrieves a list of (custom) field names that should be shown by default for this library in the symb...
void saveShape(SCH_SHAPE *aShape)
void SaveSchematicFile(const wxString &aFileName, SCH_SHEET *aSheet, SCHEMATIC *aSchematic, const std::map< std::string, UTF8 > *aProperties=nullptr) override
Write aSchematic to a storage file in a format that this SCH_IO implementation knows about,...
void SaveLibrary(const wxString &aLibraryPath, const std::map< std::string, UTF8 > *aProperties=nullptr) override
SCH_SHEET_PATH m_currentSheetPath
void saveGroup(SCH_GROUP *aGroup)
void LoadContent(LINE_READER &aReader, SCH_SHEET *aSheet, int aVersion=SEXPR_SCHEMATIC_FILE_VERSION)
void EnumerateSymbolLib(wxArrayString &aSymbolNameList, const wxString &aLibraryPath, const std::map< std::string, UTF8 > *aProperties=nullptr) override
Populate a list of LIB_SYMBOL alias names contained within the library aLibraryPath.
void FormatSchematicToFormatter(OUTPUTFORMATTER *aOut, SCH_SHEET *aSheet, SCHEMATIC *aSchematic, const std::map< std::string, UTF8 > *aProperties=nullptr)
Serialize a schematic sheet to an OUTPUTFORMATTER without file I/O or Prettify.
bool m_appending
Schematic load append status.
std::vector< SCH_SHEET * > m_loadedRootSheets
Root sheets from previous LoadSchematicFile() calls, enabling screen reuse across top-level sheets th...
int m_version
Version of file being loaded.
void loadFile(const wxString &aFileName, SCH_SHEET *aSheet)
static void FormatLibSymbol(LIB_SYMBOL *aPart, OUTPUTFORMATTER &aFormatter)
void DeleteSymbol(const wxString &aLibraryPath, const wxString &aSymbolName, const std::map< std::string, UTF8 > *aProperties=nullptr) override
Delete the entire LIB_SYMBOL associated with aAliasName from the library aLibraryPath.
void loadHierarchy(const SCH_SHEET_PATH &aParentSheetPath, SCH_SHEET *aSheet)
static std::vector< LIB_SYMBOL * > ParseLibSymbols(std::string &aSymbolText, std::string aSource, int aFileVersion=SEXPR_SCHEMATIC_FILE_VERSION)
OUTPUTFORMATTER * m_out
The formatter for saving SCH_SCREEN objects.
SCH_SHEET * LoadSchematicFile(const wxString &aFileName, SCHEMATIC *aSchematic, SCH_SHEET *aAppendToMe=nullptr, const std::map< std::string, UTF8 > *aProperties=nullptr) override
Load information from some input file format that this SCH_IO implementation knows about,...
LIB_SYMBOL * LoadSymbol(const wxString &aLibraryPath, const wxString &aAliasName, const std::map< std::string, UTF8 > *aProperties=nullptr) override
Load a LIB_SYMBOL object having aPartName from the aLibraryPath containing a library format that this...
wxString m_error
For throwing exceptions or errors on partial loads.
void saveInstances(const std::vector< SCH_SHEET_INSTANCE > &aSheets)
bool isBuffering(const std::map< std::string, UTF8 > *aProperties)
static const char * PropBuffering
The property used internally by the plugin to enable cache buffering which prevents the library file ...
SCH_SHEET * m_rootSheet
The root sheet of the schematic being loaded.
void cacheLib(const wxString &aLibraryFileName, const std::map< std::string, UTF8 > *aProperties)
void saveRuleArea(SCH_RULE_AREA *aRuleArea)
void saveField(SCH_FIELD *aField)
SCH_IO_KICAD_SEXPR_LIB_CACHE * m_cache
void Format(SCH_SHEET *aSheet)
bool IsLibraryWritable(const wxString &aLibraryPath) override
Return true if the library at aLibraryPath is writable.
void init(SCHEMATIC *aSchematic, const std::map< std::string, UTF8 > *aProperties=nullptr)
initialize PLUGIN like a constructor would.
bool DeleteLibrary(const wxString &aLibraryPath, const std::map< std::string, UTF8 > *aProperties=nullptr) override
Delete an existing library and returns true, or if library does not exist returns false,...
void saveBitmap(const SCH_BITMAP &aBitmap)
void saveText(SCH_TEXT *aText)
void saveSheet(SCH_SHEET *aSheet, const SCH_SHEET_LIST &aSheetList)
SCHEMATIC * m_schematic
init() reads this before assigning it.
int GetModifyHash() const override
Return the modification hash from the library cache.
bool m_sheetLoad
Loading a sheet into an open schematic.
bool CanReadLibrary(const wxString &aLibraryPath) const override
Checks if this IO object can read the specified library file/directory.
void saveLine(SCH_LINE *aLine)
void saveNoConnect(SCH_NO_CONNECT *aNoConnect)
void saveTable(SCH_TABLE *aTable)
std::stack< wxString > m_currentPath
Stack to maintain nested sheet paths.
void CreateLibrary(const wxString &aLibraryPath, const std::map< std::string, UTF8 > *aProperties=nullptr) override
Create a new empty library at aLibraryPath empty.
void SaveSymbol(const wxString &aLibraryPath, std::unique_ptr< LIB_SYMBOL > aSymbol, const std::map< std::string, UTF8 > *aProperties=nullptr) override
Write aSymbol to an existing library located at aLibraryPath.
void saveJunction(SCH_JUNCTION *aJunction)
std::function< bool(wxString aTitle, int aIcon, wxString aMsg, wxString aAction)> m_queryUserCallback
void saveTextBox(SCH_TEXTBOX *aText)
void saveSymbol(SCH_SYMBOL *aSymbol, const SCHEMATIC &aSchematic, const SCH_SHEET_LIST &aSheetList, bool aForClipboard, const SCH_SHEET_PATH *aRelativePath=nullptr)
void saveBusEntry(SCH_BUS_ENTRY_BASE *aBusEntry)
void GetAvailableSymbolFields(std::vector< wxString > &aNames) override
Retrieves a list of (custom) field names that are present on symbols in this library.
SCH_IO(const wxString &aName)
Definition sch_io.h:407
Base class for any item which can be embedded within the SCHEMATIC container class,...
Definition sch_item.h:165
int GetBodyStyle() const
Definition sch_item.h:247
bool IsLocked() const override
Definition sch_item.cpp:158
bool IsPrivate() const
Definition sch_item.h:253
SCH_LAYER_ID GetLayer() const
Return the layer this item is on.
Definition sch_item.h:345
AUTOPLACE_ALGO GetFieldsAutoplaced() const
Return whether the fields have been automatically placed.
Definition sch_item.h:636
wxString GetClass() const override
Return the class name.
Definition sch_item.h:175
COLOR4D GetColor() const
int GetDiameter() const
VECTOR2I GetPosition() const override
SPIN_STYLE GetSpinStyle() const
LABEL_FLAG_SHAPE GetShape() const
Definition sch_label.h:178
std::vector< SCH_FIELD > & GetFields()
Definition sch_label.h:210
Segment description base class to describe items which have 2 end points (track, wire,...
Definition sch_line.h:39
virtual STROKE_PARAMS GetStroke() const override
Definition sch_line.h:198
const LINE_ENDING & GetEndEnding() const
Definition sch_line.h:204
VECTOR2I GetEndPoint() const
Definition sch_line.h:145
VECTOR2I GetStartPoint() const
Definition sch_line.h:136
const LINE_ENDING & GetStartEnding() const
Definition sch_line.h:201
void SetEndPoint(const VECTOR2I &aPosition)
Definition sch_line.h:146
A net chain is a collection of nets that are connected together through passive components.
const std::set< wxString > & GetNets() const
const wxString & GetTerminalRef(int aIdx) const
const wxString & GetNetClass() const
const KIGFX::COLOR4D & GetColor() const
const wxString & GetName() const
static bool IsPersistableNet(const wxString &aNet)
Synthetic keys do not survive a reload, so only named nets are written out.
const wxString & GetTerminalPinNum(int aIdx) const
VECTOR2I GetPosition() const override
bool GetExcludedFromSim(const SCH_SHEET_PATH *aInstance=nullptr, const wxString &aVariantName=wxEmptyString) const override
bool GetExcludedFromBOM(const SCH_SHEET_PATH *aInstance=nullptr, const wxString &aVariantName=wxEmptyString) const override
bool GetDNP(const SCH_SHEET_PATH *aInstance=nullptr, const wxString &aVariantName=wxEmptyString) const override
Set or clear the 'Do Not Populate' flag.
bool GetExcludedFromBoard(const SCH_SHEET_PATH *aInstance=nullptr, const wxString &aVariantName=wxEmptyString) const override
const PAGE_INFO & GetPageSettings() const
Definition sch_screen.h:140
const std::map< wxString, LIB_SYMBOL * > & GetLibSymbols() const
Fetch a list of unique LIB_SYMBOL object pointers required to properly render each SCH_SYMBOL in this...
Definition sch_screen.h:503
EE_RTREE & Items()
Get the full RTree, usually for iterating.
Definition sch_screen.h:118
const wxString & GetFileName() const
Definition sch_screen.h:153
void SetFileName(const wxString &aFileName)
Set the file name for this screen to aFileName.
TITLE_BLOCK & GetTitleBlock()
Definition sch_screen.h:164
wxString GroupsSanityCheck(bool repair=false)
Consistency check of internal m_groups structure.
KIID m_uuid
A unique identifier for each schematic file.
Definition sch_screen.h:744
void SetFileReadOnly(bool aIsReadOnly)
Definition sch_screen.h:155
void SetFileExists(bool aFileExists)
Definition sch_screen.h:158
SCH_SCREEN * GetScreen()
STROKE_PARAMS GetStroke() const override
Definition sch_shape.h:57
A container for handling SCH_SHEET_PATH objects in a flattened hierarchy.
std::optional< SCH_SHEET_PATH > GetSheetPathByKIIDPath(const KIID_PATH &aPath, bool aIncludeLastSheet=true) const
Finds a SCH_SHEET_PATH that matches the provided KIID_PATH.
Handle access to a stack of flattened SCH_SHEET objects by way of a path for creating a flattened sch...
bool empty() const
Forwarded method from std::vector.
KIID_PATH Path() const
Get the sheet path as an KIID_PATH.
SCH_SCREEN * LastScreen()
void push_back(SCH_SHEET *aSheet)
Forwarded method from std::vector.
void pop_back()
Forwarded method from std::vector.
Define a sheet pin (label) used in sheets to create hierarchical schematics.
Sheet symbol placed in a schematic, and is the entry point for a sub schematic.
Definition sch_sheet.h:48
wxString GetFileName() const
Return the filename corresponding to this sheet.
Definition sch_sheet.h:384
bool HasRootInstance() const
Check to see if this sheet has a root sheet instance.
std::vector< SCH_FIELD > & GetFields()
Return a reference to the vector holding the sheet's fields.
Definition sch_sheet.h:91
bool GetExcludedFromBOM(const SCH_SHEET_PATH *aInstance=nullptr, const wxString &aVariantName=wxEmptyString) const override
bool GetExcludedFromSim(const SCH_SHEET_PATH *aInstance=nullptr, const wxString &aVariantName=wxEmptyString) const override
VECTOR2I GetSize() const
Definition sch_sheet.h:147
SCH_SCREEN * GetScreen() const
Definition sch_sheet.h:145
VECTOR2I GetPosition() const override
Definition sch_sheet.h:504
void SetScreen(SCH_SCREEN *aScreen)
Set the SCH_SCREEN associated with this sheet to aScreen.
const SCH_SHEET_INSTANCE & GetRootInstance() const
Return the root sheet instance data.
KIGFX::COLOR4D GetBorderColor() const
Definition sch_sheet.h:153
bool GetDNP(const SCH_SHEET_PATH *aInstance=nullptr, const wxString &aVariantName=wxEmptyString) const override
Set or clear the 'Do Not Populate' flags.
bool GetExcludedFromBoard(const SCH_SHEET_PATH *aInstance=nullptr, const wxString &aVariantName=wxEmptyString) const override
Definition sch_sheet.h:475
int GetBorderWidth() const
Definition sch_sheet.h:150
std::vector< SCH_SHEET_PIN * > & GetPins()
Definition sch_sheet.h:241
const std::vector< SCH_SHEET_INSTANCE > & GetInstances() const
Definition sch_sheet.h:519
KIGFX::COLOR4D GetBackgroundColor() const
Definition sch_sheet.h:156
Schematic symbol object.
Definition sch_symbol.h:75
PASSTHROUGH_MODE GetPassthroughMode() const
Definition sch_symbol.h:894
bool GetExcludedFromSim(const SCH_SHEET_PATH *aInstance=nullptr, const wxString &aVariantName=wxEmptyString) const override
std::vector< std::unique_ptr< SCH_PIN > > & GetRawPins()
Definition sch_symbol.h:692
const std::vector< SCH_SYMBOL_INSTANCE > & GetInstances() const
Definition sch_symbol.h:134
bool UseLibIdLookup() const
Definition sch_symbol.h:181
wxString GetSchSymbolLibraryName() const
PIN_MAP_INSTANCE_OVERRIDE GetPinMapOverride(const SCH_SHEET_PATH *aInstance=nullptr, const wxString &aVariantName=wxEmptyString) const
bool GetExcludedFromBOM(const SCH_SHEET_PATH *aInstance=nullptr, const wxString &aVariantName=wxEmptyString) const override
void GetFields(std::vector< SCH_FIELD * > &aVector, bool aVisibleOnly) const override
Populate a std::vector with SCH_FIELDs, sorted in ordinal order.
VECTOR2I GetPosition() const override
Definition sch_symbol.h:934
const LIB_ID & GetLibId() const override
Definition sch_symbol.h:164
bool GetExcludedFromPosFiles(const SCH_SHEET_PATH *aInstance=nullptr, const wxString &aVariantName=wxEmptyString) const override
bool GetInstance(SCH_SYMBOL_INSTANCE &aInstance, const KIID_PATH &aSheetPath, bool aTestFromEnd=false) const
bool GetExcludedFromBoard(const SCH_SHEET_PATH *aInstance=nullptr, const wxString &aVariantName=wxEmptyString) const override
int GetOrientation() const override
Get the display symbol orientation.
virtual bool GetDNP(const SCH_SHEET_PATH *aInstance=nullptr, const wxString &aVariantName=wxEmptyString) const override
Set or clear the 'Do Not Populate' flag.
wxString GetPrefix() const
Definition sch_symbol.h:239
void SetRowHeight(int aRow, int aHeight)
Definition sch_table.h:138
const STROKE_PARAMS & GetSeparatorsStroke() const
Definition sch_table.h:76
void SetColCount(int aCount)
Definition sch_table.h:118
bool StrokeExternal() const
Definition sch_table.h:52
int GetRowHeight(int aRow) const
Definition sch_table.h:140
void SetColWidth(int aCol, int aWidth)
Definition sch_table.h:128
std::vector< SCH_TABLECELL * > GetCells() const
Definition sch_table.h:158
int GetColWidth(int aCol) const
Definition sch_table.h:130
const STROKE_PARAMS & GetBorderStroke() const
Definition sch_table.h:58
int GetColCount() const
Definition sch_table.h:119
bool StrokeHeaderSeparator() const
Definition sch_table.h:55
void DeleteMarkedCells()
Definition sch_table.h:183
SCH_TABLECELL * GetCell(int aRow, int aCol) const
Definition sch_table.h:148
bool StrokeColumns() const
Definition sch_table.h:98
EDA_ITEM * Clone() const override
Create a duplicate of this item with linked list members set to NULL.
Definition sch_table.h:232
bool StrokeRows() const
Definition sch_table.h:101
int GetRowCount() const
Definition sch_table.h:121
int GetMarginBottom() const
Definition sch_textbox.h:82
int GetMarginLeft() const
Definition sch_textbox.h:79
bool GetExcludedFromSim(const SCH_SHEET_PATH *aInstance=nullptr, const wxString &aVariantName=wxEmptyString) const override
int GetMarginRight() const
Definition sch_textbox.h:81
int GetMarginTop() const
Definition sch_textbox.h:80
bool GetExcludedFromSim(const SCH_SHEET_PATH *aInstance=nullptr, const wxString &aVariantName=wxEmptyString) const override
Definition sch_text.h:86
VECTOR2I GetPosition() const override
Definition sch_text.h:143
Is a LINE_READER that reads from a multiline 8 bit wide std::string.
Definition richio.h:225
Simple container to manage line stroke parameters.
void SetWidth(int aWidth)
void Format(OUTPUTFORMATTER *out, const EDA_IU_SCALE &aIuScale) const
static const char * PropPowerSymsOnly
virtual void Format(OUTPUTFORMATTER *aFormatter) const
Output the object to aFormatter in s-expression form.
const char * c_str() const
Definition utf8.h:104
wxString wx_str() const
Definition utf8.cpp:41
wxString ExpandTextVars(const wxString &aSource, const PROJECT *aProject, RESOLUTION_CONTEXT aContext)
Definition common.cpp:60
@ INTERNAL
Definition common.h:92
#define _(s)
static constexpr EDA_ANGLE ANGLE_0
Definition eda_angle.h:422
static constexpr EDA_ANGLE ANGLE_90
Definition eda_angle.h:424
static constexpr EDA_ANGLE ANGLE_270
Definition eda_angle.h:427
static constexpr EDA_ANGLE ANGLE_180
Definition eda_angle.h:426
#define STRUCT_DELETED
flag indication structures to be erased
#define SKIP_STRUCT
flag indicating that the structure should be ignored
@ 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
#define DEFAULT_SIZE_TEXT
This is the "default-of-the-default" hardcoded text size; individual application define their own def...
Definition eda_text.h:84
static const std::string KiCadSymbolLibFileExtension
const wxChar *const traceSchPlugin
Flag to enable legacy schematic plugin debug output.
#define THROW_IO_ERRORF(msg,...)
#define THROW_IO_CANCELLED()
wxString LayerName(int aLayer)
Returns the default display name for a given layer.
Definition layer_id.cpp:31
@ LAYER_WIRE
Definition layer_ids.h:474
@ LAYER_NOTES
Definition layer_ids.h:489
@ LAYER_BUS
Definition layer_ids.h:475
#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 FormatUuid(OUTPUTFORMATTER *aOut, const KIID &aUuid)
void FormatStreamData(OUTPUTFORMATTER &aOut, const wxStreamBuffer &aStream)
Write binary data to the formatter as base 64 encoded string.
void FormatBool(OUTPUTFORMATTER *aOut, const wxString &aKey, bool aValue)
Writes a boolean to the formatter, in the style (aKey [yes|no])
#define SEXPR_SCHEMATIC_FILE_VERSION
Schematic file version.
Class to handle a set of SCH_ITEMs.
static void formatPinMapOverride(OUTPUTFORMATTER *aOut, const PIN_MAP_INSTANCE_OVERRIDE &aOverride)
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)
const char * getSheetPinShapeToken(LABEL_FLAG_SHAPE aShape)
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 * getTextTypeToken(KICAD_T 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)
EDA_ANGLE getSheetPinAngle(SHEET_SIDE aSide)
void formatFill(OUTPUTFORMATTER *aFormatter, FILL_T aFillMode, const COLOR4D &aFillColor)
Fill token formatting helper.
AUTOPLACE_ALGO
Definition sch_item.h:68
@ AUTOPLACE_MANUAL
Definition sch_item.h:71
@ AUTOPLACE_AUTO
Definition sch_item.h:70
std::string toUTFTildaText(const wxString &txt)
Convert a wxString to UTF8 and replace any control characters with a ~, where a control character is ...
static wxString projectKey(const wxString &aFullPath)
const int scale
std::string FormatDouble2Str(double aValue)
Print a float number without using scientific notation and no trailing 0 This function is intended in...
std::string EscapedUTF8(const wxString &aString)
Return an 8 bit UTF8 string given aString in Unicode form.
wxString EscapeString(const wxString &aSource, ESCAPE_CONTEXT aContext)
The Escape/Unescape routines use HTML-entity-reference-style encoding to handle characters which are:...
#define TO_UTF8(wxstring)
Convert a wxString to a UTF8 encoded C string for all wxWidgets build modes.
@ CTX_LEGACY_LIBID
One symbol-pin to footprint-pad mapping inside a PIN_MAP.
Definition pin_map.h:42
Per-instance override of the active pin map and a sparse delta on top.
Definition pin_map.h:200
std::vector< PIN_MAP_ENTRY > m_Edits
Definition pin_map.h:203
bool IsDefault() const
Definition pin_map.h:210
PIN_MAP_OVERRIDE_MODE m_Mode
Definition pin_map.h:201
A simple container for sheet instance information.
A simple container for schematic symbol instance information.
@ SYM_ORIENT_270
Definition symbol.h:38
@ SYM_MIRROR_Y
Definition symbol.h:40
@ SYM_ORIENT_180
Definition symbol.h:37
@ SYM_MIRROR_X
Definition symbol.h:39
@ SYM_ORIENT_90
Definition symbol.h:36
std::map< wxString, LIB_SYMBOL *, LibSymbolMapSort > LIB_SYMBOL_MAP
FIELD_T
The set of all field indices assuming an array like sequence that a SCH_COMPONENT or LIB_PART can hol...
@ REFERENCE
Field Reference of part, i.e. "IC21".
std::string path
KIBIS_PIN * pin
wxLogTrace helper definitions.
@ SCH_GROUP_T
Definition typeinfo.h:169
@ SCH_TABLE_T
Definition typeinfo.h:161
@ SCH_LINE_T
Definition typeinfo.h:159
@ SCH_NO_CONNECT_T
Definition typeinfo.h:156
@ SCH_SYMBOL_T
Definition typeinfo.h:168
@ SCH_TABLECELL_T
Definition typeinfo.h:162
@ SCH_DIRECTIVE_LABEL_T
Definition typeinfo.h:167
@ SCH_LABEL_T
Definition typeinfo.h:163
@ SCH_SHEET_T
Definition typeinfo.h:171
@ SCH_MARKER_T
Definition typeinfo.h:154
@ SCH_SHAPE_T
Definition typeinfo.h:145
@ SCH_RULE_AREA_T
Definition typeinfo.h:166
@ SCH_HIER_LABEL_T
Definition typeinfo.h:165
@ SCH_BUS_BUS_ENTRY_T
Definition typeinfo.h:158
@ SCH_TEXT_T
Definition typeinfo.h:147
@ SCH_BUS_WIRE_ENTRY_T
Definition typeinfo.h:157
@ SCH_BITMAP_T
Definition typeinfo.h:160
@ SCH_TEXTBOX_T
Definition typeinfo.h:148
@ SCH_GLOBAL_LABEL_T
Definition typeinfo.h:164
@ SCH_JUNCTION_T
Definition typeinfo.h:155
VECTOR2< int32_t > VECTOR2I
Definition vector2d.h:683
Definition of file extensions used in Kicad.