KiCad PCB EDA Suite
Loading...
Searching...
No Matches
netlist_exporter_xml.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) 1992-2013 jp.charras at wanadoo.fr
5 * Copyright (C) 2013-2017 SoftPLC Corporation, Dick Hollenbeck <[email protected]>
6 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version 2
11 * of the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, you may find one here:
20 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
21 * or you may search the http://www.gnu.org website for the version 2 license,
22 * or you may write to the Free Software Foundation, Inc.,
23 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
24 */
25
27
28#include <build_version.h>
29#include <common.h> // for ExpandTextVars
30#include <sch_base_frame.h>
31#include <symbol_library.h>
32#include <string_utils.h>
33#include <connection_graph.h>
34#include <core/kicad_algo.h>
35#include <wx/wfstream.h>
36#include <xnode.h> // also nests: <wx/xml/xml.h>
37#include <nlohmann/json.hpp>
38#include <project_sch.h>
39
40#include <symbol_lib_table.h>
41
42#include <set>
43
44static bool sortPinsByNumber( SCH_PIN* aPin1, SCH_PIN* aPin2 );
45
46bool NETLIST_EXPORTER_XML::WriteNetlist( const wxString& aOutFileName, unsigned aNetlistOptions,
47 REPORTER& aReporter )
48{
49 // output the XML format netlist.
50
51 // declare the stream ourselves to use the buffered FILE api
52 // instead of letting wx use the syscall variant
53 wxFFileOutputStream stream( aOutFileName );
54
55 if( !stream.IsOk() )
56 return false;
57
58 wxXmlDocument xdoc;
59 xdoc.SetRoot( makeRoot( GNL_ALL | aNetlistOptions ) );
60
61 return xdoc.Save( stream, 2 /* indent bug, today was ignored by wxXml lib */ );
62}
63
64
66{
67 XNODE* xroot = node( wxT( "export" ) );
68
69 xroot->AddAttribute( wxT( "version" ), wxT( "E" ) );
70
71 if( aCtl & GNL_HEADER )
72 // add the "design" header
73 xroot->AddChild( makeDesignHeader() );
74
75 if( aCtl & GNL_SYMBOLS )
76 xroot->AddChild( makeSymbols( aCtl ) );
77
78 if( aCtl & GNL_PARTS )
79 xroot->AddChild( makeLibParts() );
80
81 if( aCtl & GNL_LIBRARIES )
82 // must follow makeGenericLibParts()
83 xroot->AddChild( makeLibraries() );
84
85 if( aCtl & GNL_NETS )
86 xroot->AddChild( makeListOfNets( aCtl ) );
87
88 return xroot;
89}
90
91
93
94
96 const SCH_SHEET_PATH& aSheet,
97 const SCH_SHEET_LIST& aSheetList )
98{
99 wxString value;
100 wxString footprint;
101 wxString datasheet;
102 wxString description;
103 wxString candidate;
104 nlohmann::ordered_map<wxString, wxString> fields;
105
106 if( aSymbol->GetUnitCount() > 1 )
107 {
108 // Sadly, each unit of a symbol can have its own unique fields. This
109 // block finds the unit with the lowest number having a non blank field
110 // value and records it. Therefore user is best off setting fields
111 // into only the first unit. But this scavenger algorithm will find
112 // any non blank fields in all units and use the first non-blank field
113 // for each unique field name.
114
115 wxString ref = aSymbol->GetRef( &aSheet );
116
117 int minUnit = aSymbol->GetUnitSelection( &aSheet );
118
119 for( const SCH_SHEET_PATH& sheet : aSheetList )
120 {
121 for( SCH_ITEM* item : sheet.LastScreen()->Items().OfType( SCH_SYMBOL_T ) )
122 {
123 SCH_SYMBOL* symbol2 = static_cast<SCH_SYMBOL*>( item );
124
125 wxString ref2 = symbol2->GetRef( &sheet );
126
127 if( ref2.CmpNoCase( ref ) != 0 )
128 continue;
129
130 int unit = symbol2->GetUnitSelection( &aSheet );
131
132 // The lowest unit number wins. User should only set fields in any one unit.
133
134 // Value
135 candidate = symbol2->GetValue( m_resolveTextVars, &sheet, false );
136
137 if( !candidate.IsEmpty() && ( unit < minUnit || value.IsEmpty() ) )
138 value = candidate;
139
140 // Footprint
141 candidate = symbol2->GetFootprintFieldText( m_resolveTextVars, &sheet, false );
142
143 if( !candidate.IsEmpty() && ( unit < minUnit || footprint.IsEmpty() ) )
144 footprint = candidate;
145
146 // Datasheet
147 candidate = m_resolveTextVars
148 ? symbol2->GetField( DATASHEET_FIELD )->GetShownText( &sheet, false )
149 : symbol2->GetField( DATASHEET_FIELD )->GetText();
150
151 if( !candidate.IsEmpty() && ( unit < minUnit || datasheet.IsEmpty() ) )
152 datasheet = candidate;
153
154 // Description
155 candidate = m_resolveTextVars
156 ? symbol2->GetField( DESCRIPTION_FIELD )->GetShownText( &sheet, false )
157 : symbol2->GetField( DESCRIPTION_FIELD )->GetText();
158
159 if( !candidate.IsEmpty() && ( unit < minUnit || description.IsEmpty() ) )
160 description = candidate;
161
162 // All non-mandatory fields
163 for( SCH_FIELD& field : symbol2->GetFields() )
164 {
165 if( field.IsMandatory() || field.IsPrivate() )
166 continue;
167
168 if( unit < minUnit || fields.count( field.GetName() ) == 0 )
169 {
171 fields[field.GetName()] = field.GetShownText( &aSheet, false );
172 else
173 fields[field.GetName()] = field.GetText();
174 }
175 }
176
177 minUnit = std::min( unit, minUnit );
178 }
179 }
180 }
181 else
182 {
183 value = aSymbol->GetValue( m_resolveTextVars, &aSheet, false );
184 footprint = aSymbol->GetFootprintFieldText( m_resolveTextVars, &aSheet, false );
185
186 SCH_FIELD* datasheetField = aSymbol->GetField( DATASHEET_FIELD );
187 SCH_FIELD* descriptionField = aSymbol->GetField( DESCRIPTION_FIELD );
188
189 // Datasheet
191 datasheet = datasheetField->GetShownText( &aSheet, false );
192 else
193 datasheet = datasheetField->GetText();
194
195 // Description
197 description = descriptionField->GetShownText( &aSheet, false );
198 else
199 description = descriptionField->GetText();
200
201 for( SCH_FIELD& field : aSymbol->GetFields() )
202 {
203 if( field.IsMandatory() || field.IsPrivate() )
204 continue;
205
207 fields[field.GetName()] = field.GetShownText( &aSheet, false );
208 else
209 fields[field.GetName()] = field.GetText();
210 }
211 }
212
213 fields[GetCanonicalFieldName( FOOTPRINT_FIELD )] = footprint;
215 fields[GetCanonicalFieldName( DESCRIPTION_FIELD )] = description;
216
217 // Do not output field values blank in netlist:
218 if( value.size() )
219 aNode->AddChild( node( wxT( "value" ), UnescapeString( value ) ) );
220 else // value field always written in netlist
221 aNode->AddChild( node( wxT( "value" ), wxT( "~" ) ) );
222
223 if( footprint.size() )
224 aNode->AddChild( node( wxT( "footprint" ), UnescapeString( footprint ) ) );
225
226 if( datasheet.size() )
227 aNode->AddChild( node( wxT( "datasheet" ), UnescapeString( datasheet ) ) );
228
229 if( description.size() )
230 aNode->AddChild( node( wxT( "description" ), UnescapeString( description ) ) );
231
232 XNODE* xfields;
233 aNode->AddChild( xfields = node( wxT( "fields" ) ) );
234
235 for( const auto& [ fieldName, fieldValue ] : fields )
236 {
237 XNODE* xfield = node( wxT( "field" ), UnescapeString( fieldValue ) );
238 xfield->AddAttribute( wxT( "name" ), UnescapeString( fieldName ) );
239 xfields->AddChild( xfield );
240 }
241}
242
243
245{
246 XNODE* xcomps = node( wxT( "components" ) );
247
249 m_libParts.clear();
250
251 SCH_SHEET_PATH currentSheet = m_schematic->CurrentSheet();
252 SCH_SHEET_LIST sheetList = m_schematic->Hierarchy();
253
254 // Output is xml, so there is no reason to remove spaces from the field values.
255 // And XML element names need not be translated to various languages.
256
257 for( const SCH_SHEET_PATH& sheet : sheetList )
258 {
259 // Change schematic CurrentSheet in each iteration to allow hierarchical
260 // resolution of text variables in sheet fields.
262
263 auto cmp =
264 [sheet]( SCH_SYMBOL* a, SCH_SYMBOL* b )
265 {
266 return ( StrNumCmp( a->GetRef( &sheet, false ),
267 b->GetRef( &sheet, false ), true ) < 0 );
268 };
269
270 std::set<SCH_SYMBOL*, decltype( cmp )> ordered_symbols( cmp );
271 std::multiset<SCH_SYMBOL*, decltype( cmp )> extra_units( cmp );
272
273 for( SCH_ITEM* item : sheet.LastScreen()->Items().OfType( SCH_SYMBOL_T ) )
274 {
275 SCH_SYMBOL* symbol = static_cast<SCH_SYMBOL*>( item );
276 auto test = ordered_symbols.insert( symbol );
277
278 if( !test.second )
279 {
280 if( ( *( test.first ) )->m_Uuid > symbol->m_Uuid )
281 {
282 extra_units.insert( *( test.first ) );
283 ordered_symbols.erase( test.first );
284 ordered_symbols.insert( symbol );
285 }
286 else
287 {
288 extra_units.insert( symbol );
289 }
290 }
291 }
292
293 for( EDA_ITEM* item : ordered_symbols )
294 {
295 SCH_SYMBOL* symbol = findNextSymbol( item, sheet );
296 bool forBOM = aCtl & GNL_OPT_BOM;
297 bool forBoard = aCtl & GNL_OPT_KICAD;
298
299 if( !symbol )
300 continue;
301
302 if( forBOM && ( sheet.GetExcludedFromBOM() || symbol->GetExcludedFromBOM() ) )
303 continue;
304
305 if( forBoard && ( sheet.GetExcludedFromBoard() || symbol->GetExcludedFromBoard() ) )
306 continue;
307
308 // Output the symbol's elements in order of expected access frequency. This may
309 // not always look best, but it will allow faster execution under XSL processing
310 // systems which do sequential searching within an element.
311
312 XNODE* xcomp; // current symbol being constructed
313 xcomps->AddChild( xcomp = node( wxT( "comp" ) ) );
314
315 xcomp->AddAttribute( wxT( "ref" ), symbol->GetRef( &sheet ) );
316 addSymbolFields( xcomp, symbol, sheet, sheetList );
317
318 XNODE* xlibsource;
319 xcomp->AddChild( xlibsource = node( wxT( "libsource" ) ) );
320
321 // "logical" library name, which is in anticipation of a better search algorithm
322 // for parts based on "logical_lib.part" and where logical_lib is merely the library
323 // name minus path and extension.
324 wxString libName;
325 wxString partName;
326
327 if( symbol->UseLibIdLookup() )
328 {
329 libName = symbol->GetLibId().GetUniStringLibNickname();
330 partName = symbol->GetLibId().GetUniStringLibItemName();
331 }
332 else
333 {
334 partName = symbol->GetSchSymbolLibraryName();
335 }
336
337 xlibsource->AddAttribute( wxT( "lib" ), libName );
338
339 // We only want the symbol name, not the full LIB_ID.
340 xlibsource->AddAttribute( wxT( "part" ), partName );
341
342 xlibsource->AddAttribute( wxT( "description" ), symbol->GetDescription() );
343
344 /* Add the symbol properties. */
345 XNODE* xproperty;
346
347 std::vector<SCH_FIELD>& fields = symbol->GetFields();
348
349 for( SCH_FIELD& field : fields )
350 {
351 if( field.IsMandatory() || field.IsPrivate() )
352 continue;
353
354 xcomp->AddChild( xproperty = node( wxT( "property" ) ) );
355 xproperty->AddAttribute( wxT( "name" ), field.GetCanonicalName() );
356
358 xproperty->AddAttribute( wxT( "value" ), field.GetShownText( &sheet, false ) );
359 else
360 xproperty->AddAttribute( wxT( "value" ), field.GetText() );
361 }
362
363 for( const SCH_FIELD& sheetField : sheet.Last()->GetFields() )
364 {
365 xcomp->AddChild( xproperty = node( wxT( "property" ) ) );
366 xproperty->AddAttribute( wxT( "name" ), sheetField.GetCanonicalName() );
367
369 // do not allow GetShownText() to add any prefix useful only when displaying
370 // the field on screen
371 xproperty->AddAttribute( wxT( "value" ), sheetField.GetShownText( &sheet, false ) );
372 else
373 xproperty->AddAttribute( wxT( "value" ), sheetField.GetText() );
374 }
375
376 if( symbol->GetExcludedFromBOM() || sheet.GetExcludedFromBOM() )
377 {
378 xcomp->AddChild( xproperty = node( wxT( "property" ) ) );
379 xproperty->AddAttribute( wxT( "name" ), wxT( "exclude_from_bom" ) );
380 }
381
382 if( symbol->GetExcludedFromBoard() || sheet.GetExcludedFromBoard() )
383 {
384 xcomp->AddChild( xproperty = node( wxT( "property" ) ) );
385 xproperty->AddAttribute( wxT( "name" ), wxT( "exclude_from_board" ) );
386 }
387
388 if( symbol->GetDNP() || sheet.GetDNP() )
389 {
390 xcomp->AddChild( xproperty = node( wxT( "property" ) ) );
391 xproperty->AddAttribute( wxT( "name" ), wxT( "dnp" ) );
392 }
393
394 if( const std::unique_ptr<LIB_SYMBOL>& part = symbol->GetLibSymbolRef() )
395 {
396 if( part->GetKeyWords().size() )
397 {
398 xcomp->AddChild( xproperty = node( wxT( "property" ) ) );
399 xproperty->AddAttribute( wxT( "name" ), wxT( "ki_keywords" ) );
400 xproperty->AddAttribute( wxT( "value" ), part->GetKeyWords() );
401 }
402
403 if( !part->GetFPFilters().IsEmpty() )
404 {
405 wxString filters;
406
407 for( const wxString& filter : part->GetFPFilters() )
408 filters += ' ' + filter;
409
410 xcomp->AddChild( xproperty = node( wxT( "property" ) ) );
411 xproperty->AddAttribute( wxT( "name" ), wxT( "ki_fp_filters" ) );
412 xproperty->AddAttribute( wxT( "value" ), filters.Trim( false ) );
413 }
414 }
415
416 XNODE* xsheetpath;
417 xcomp->AddChild( xsheetpath = node( wxT( "sheetpath" ) ) );
418
419 xsheetpath->AddAttribute( wxT( "names" ), sheet.PathHumanReadable() );
420 xsheetpath->AddAttribute( wxT( "tstamps" ), sheet.PathAsString() );
421
422 // Node for component class
423 std::vector<wxString> compClassNames =
424 getComponentClassNamesForAllSymbolUnits( symbol, sheet, sheetList );
425
426 if( compClassNames.size() > 0 )
427 {
428 XNODE* xcompclasslist;
429 xcomp->AddChild( xcompclasslist = node( wxT( "component_classes" ) ) );
430
431 for( const wxString& compClass : compClassNames )
432 {
433 xcompclasslist->AddChild( node( wxT( "class" ), UnescapeString( compClass ) ) );
434 }
435 }
436
437 XNODE* xunits; // Node for extra units
438 xcomp->AddChild( xunits = node( wxT( "tstamps" ) ) );
439
440 auto range = extra_units.equal_range( symbol );
441 wxString uuid;
442
443 // Output a series of children with all UUIDs associated with the REFDES
444 for( auto it = range.first; it != range.second; ++it )
445 {
446 uuid = ( *it )->m_Uuid.AsString();
447
448 // Add a space between UUIDs, if not in KICAD mode (i.e.
449 // using wxXmlDocument::Save()). KICAD MODE has its own XNODE::Format function.
450 if( !( aCtl & GNL_OPT_KICAD ) ) // i.e. for .xml format
451 uuid += ' ';
452
453 xunits->AddChild( new XNODE( wxXML_TEXT_NODE, wxEmptyString, uuid ) );
454 }
455
456 // Output the primary UUID
457 uuid = symbol->m_Uuid.AsString();
458 xunits->AddChild( new XNODE( wxXML_TEXT_NODE, wxEmptyString, uuid ) );
459 }
460 }
461
462 m_schematic->SetCurrentSheet( currentSheet );
463
464 return xcomps;
465}
466
467
469 SCH_SYMBOL* aSymbol, const SCH_SHEET_PATH& aSymbolSheet, const SCH_SHEET_LIST& aSheetList )
470{
471 std::unordered_set<wxString> compClassNames = aSymbol->GetComponentClassNames( &aSymbolSheet );
472 int primaryUnit = aSymbol->GetUnitSelection( &aSymbolSheet );
473
474 if( aSymbol->GetUnitCount() > 1 )
475 {
476 wxString ref = aSymbol->GetRef( &aSymbolSheet );
477
478 for( const SCH_SHEET_PATH& sheet : aSheetList )
479 {
480 for( SCH_ITEM* item : sheet.LastScreen()->Items().OfType( SCH_SYMBOL_T ) )
481 {
482 SCH_SYMBOL* symbol2 = static_cast<SCH_SYMBOL*>( item );
483
484 wxString ref2 = symbol2->GetRef( &sheet );
485 int otherUnit = symbol2->GetUnitSelection( &sheet );
486
487 if( ref2.CmpNoCase( ref ) != 0 )
488 continue;
489
490 if( otherUnit == primaryUnit )
491 continue;
492
493 std::unordered_set<wxString> otherClassNames =
494 symbol2->GetComponentClassNames( &sheet );
495 compClassNames.insert( otherClassNames.begin(), otherClassNames.end() );
496 }
497 }
498 }
499
500 std::vector<wxString> sortedCompClassNames( compClassNames.begin(), compClassNames.end() );
501 std::sort( sortedCompClassNames.begin(), sortedCompClassNames.end(),
502 []( const wxString& str1, const wxString& str2 )
503 {
504 return str1.Cmp( str2 ) < 0;
505 } );
506
507 return sortedCompClassNames;
508}
509
510
512{
513 SCH_SCREEN* screen;
514 XNODE* xdesign = node( wxT( "design" ) );
515 XNODE* xtitleBlock;
516 XNODE* xsheet;
517 XNODE* xcomment;
518 XNODE* xtextvar;
519 wxString sheetTxt;
520 wxFileName sourceFileName;
521
522 // the root sheet is a special sheet, call it source
523 xdesign->AddChild( node( wxT( "source" ), m_schematic->GetFileName() ) );
524
525 xdesign->AddChild( node( wxT( "date" ), GetISO8601CurrentDateTime() ) );
526
527 // which Eeschema tool
528 xdesign->AddChild( node( wxT( "tool" ), wxT( "Eeschema " ) + GetBuildVersion() ) );
529
530 const std::map<wxString, wxString>& properties = m_schematic->Prj().GetTextVars();
531
532 for( const std::pair<const wxString, wxString>& prop : properties )
533 {
534 xdesign->AddChild( xtextvar = node( wxT( "textvar" ), prop.second ) );
535 xtextvar->AddAttribute( wxT( "name" ), prop.first );
536 }
537
538 /*
539 * Export the sheets information
540 */
541 unsigned sheetIndex = 1; // Human readable index
542
543 for( const SCH_SHEET_PATH& sheet : m_schematic->Hierarchy() )
544 {
545 screen = sheet.LastScreen();
546
547 xdesign->AddChild( xsheet = node( wxT( "sheet" ) ) );
548
549 // get the string representation of the sheet index number.
550 sheetTxt.Printf( wxT( "%u" ), sheetIndex++ );
551 xsheet->AddAttribute( wxT( "number" ), sheetTxt );
552 xsheet->AddAttribute( wxT( "name" ), sheet.PathHumanReadable() );
553 xsheet->AddAttribute( wxT( "tstamps" ), sheet.PathAsString() );
554
555 TITLE_BLOCK tb = screen->GetTitleBlock();
556 PROJECT* prj = &m_schematic->Prj();
557
558 xsheet->AddChild( xtitleBlock = node( wxT( "title_block" ) ) );
559
560 xtitleBlock->AddChild( node( wxT( "title" ), ExpandTextVars( tb.GetTitle(), prj ) ) );
561 xtitleBlock->AddChild( node( wxT( "company" ), ExpandTextVars( tb.GetCompany(), prj ) ) );
562 xtitleBlock->AddChild( node( wxT( "rev" ), ExpandTextVars( tb.GetRevision(), prj ) ) );
563 xtitleBlock->AddChild( node( wxT( "date" ), ExpandTextVars( tb.GetDate(), prj ) ) );
564
565 // We are going to remove the fileName directories.
566 sourceFileName = wxFileName( screen->GetFileName() );
567 xtitleBlock->AddChild( node( wxT( "source" ), sourceFileName.GetFullName() ) );
568
569 xtitleBlock->AddChild( xcomment = node( wxT( "comment" ) ) );
570 xcomment->AddAttribute( wxT( "number" ), wxT( "1" ) );
571 xcomment->AddAttribute( wxT( "value" ), ExpandTextVars( tb.GetComment( 0 ), prj ) );
572
573 xtitleBlock->AddChild( xcomment = node( wxT( "comment" ) ) );
574 xcomment->AddAttribute( wxT( "number" ), wxT( "2" ) );
575 xcomment->AddAttribute( wxT( "value" ), ExpandTextVars( tb.GetComment( 1 ), prj ) );
576
577 xtitleBlock->AddChild( xcomment = node( wxT( "comment" ) ) );
578 xcomment->AddAttribute( wxT( "number" ), wxT( "3" ) );
579 xcomment->AddAttribute( wxT( "value" ), ExpandTextVars( tb.GetComment( 2 ), prj ) );
580
581 xtitleBlock->AddChild( xcomment = node( wxT( "comment" ) ) );
582 xcomment->AddAttribute( wxT( "number" ), wxT( "4" ) );
583 xcomment->AddAttribute( wxT( "value" ), ExpandTextVars( tb.GetComment( 3 ), prj ) );
584
585 xtitleBlock->AddChild( xcomment = node( wxT( "comment" ) ) );
586 xcomment->AddAttribute( wxT( "number" ), wxT( "5" ) );
587 xcomment->AddAttribute( wxT( "value" ), ExpandTextVars( tb.GetComment( 4 ), prj ) );
588
589 xtitleBlock->AddChild( xcomment = node( wxT( "comment" ) ) );
590 xcomment->AddAttribute( wxT( "number" ), wxT( "6" ) );
591 xcomment->AddAttribute( wxT( "value" ), ExpandTextVars( tb.GetComment( 5 ), prj ) );
592
593 xtitleBlock->AddChild( xcomment = node( wxT( "comment" ) ) );
594 xcomment->AddAttribute( wxT( "number" ), wxT( "7" ) );
595 xcomment->AddAttribute( wxT( "value" ), ExpandTextVars( tb.GetComment( 6 ), prj ) );
596
597 xtitleBlock->AddChild( xcomment = node( wxT( "comment" ) ) );
598 xcomment->AddAttribute( wxT( "number" ), wxT( "8" ) );
599 xcomment->AddAttribute( wxT( "value" ), ExpandTextVars( tb.GetComment( 7 ), prj ) );
600
601 xtitleBlock->AddChild( xcomment = node( wxT( "comment" ) ) );
602 xcomment->AddAttribute( wxT( "number" ), wxT( "9" ) );
603 xcomment->AddAttribute( wxT( "value" ), ExpandTextVars( tb.GetComment( 8 ), prj ) );
604 }
605
606 return xdesign;
607}
608
609
611{
612 XNODE* xlibs = node( wxT( "libraries" ) ); // auto_ptr
614
615 for( std::set<wxString>::iterator it = m_libraries.begin(); it!=m_libraries.end(); ++it )
616 {
617 wxString libNickname = *it;
618 XNODE* xlibrary;
619
620 if( symbolLibTable->HasLibrary( libNickname ) )
621 {
622 xlibs->AddChild( xlibrary = node( wxT( "library" ) ) );
623 xlibrary->AddAttribute( wxT( "logical" ), libNickname );
624 xlibrary->AddChild( node( wxT( "uri" ), symbolLibTable->GetFullURI( libNickname ) ) );
625 }
626
627 // @todo: add more fun stuff here
628 }
629
630 return xlibs;
631}
632
633
635{
636 XNODE* xlibparts = node( wxT( "libparts" ) ); // auto_ptr
637 std::vector<SCH_FIELD*> fieldList;
638
639 m_libraries.clear();
640
641 for( LIB_SYMBOL* lcomp : m_libParts )
642 {
643 wxString libNickname = lcomp->GetLibId().GetLibNickname();;
644
645 // The library nickname will be empty if the cache library is used.
646 if( !libNickname.IsEmpty() )
647 m_libraries.insert( libNickname ); // inserts symbol's library if unique
648
649 XNODE* xlibpart;
650 xlibparts->AddChild( xlibpart = node( wxT( "libpart" ) ) );
651 xlibpart->AddAttribute( wxT( "lib" ), libNickname );
652 xlibpart->AddAttribute( wxT( "part" ), lcomp->GetName() );
653
654 //----- show the important properties -------------------------
655 if( !lcomp->GetDescription().IsEmpty() )
656 xlibpart->AddChild( node( wxT( "description" ), lcomp->GetDescription() ) );
657
658 if( !lcomp->GetDatasheetField().GetText().IsEmpty() )
659 xlibpart->AddChild( node( wxT( "docs" ), lcomp->GetDatasheetField().GetText() ) );
660
661 // Write the footprint list
662 if( lcomp->GetFPFilters().GetCount() )
663 {
664 XNODE* xfootprints;
665 xlibpart->AddChild( xfootprints = node( wxT( "footprints" ) ) );
666
667 for( unsigned i = 0; i < lcomp->GetFPFilters().GetCount(); ++i )
668 xfootprints->AddChild( node( wxT( "fp" ), lcomp->GetFPFilters()[i] ) );
669 }
670
671 //----- show the fields here ----------------------------------
672 fieldList.clear();
673 lcomp->GetFields( fieldList );
674
675 XNODE* xfields;
676 xlibpart->AddChild( xfields = node( "fields" ) );
677
678 for( const SCH_FIELD* field : fieldList )
679 {
680 XNODE* xfield;
681 xfields->AddChild( xfield = node( wxT( "field" ), field->GetText() ) );
682 xfield->AddAttribute( wxT( "name" ), field->GetCanonicalName() );
683 }
684
685 //----- show the pins here ------------------------------------
686 std::vector<SCH_PIN*> pinList = lcomp->GetPins( 0, 0 );
687
688 /*
689 * We must erase redundant Pins references in pinList
690 * These redundant pins exist because some pins are found more than one time when a
691 * symbol has multiple parts per package or has 2 representations (DeMorgan conversion).
692 * For instance, a 74ls00 has DeMorgan conversion, with different pin shapes, and
693 * therefore each pin appears 2 times in the list. Common pins (VCC, GND) can also be
694 * found more than once.
695 */
696 sort( pinList.begin(), pinList.end(), sortPinsByNumber );
697
698 for( int ii = 0; ii < (int)pinList.size()-1; ii++ )
699 {
700 if( pinList[ii]->GetNumber() == pinList[ii+1]->GetNumber() )
701 { // 2 pins have the same number, remove the redundant pin at index i+1
702 pinList.erase(pinList.begin() + ii + 1);
703 ii--;
704 }
705 }
706
707 if( pinList.size() )
708 {
709 XNODE* pins;
710
711 xlibpart->AddChild( pins = node( wxT( "pins" ) ) );
712
713 for( unsigned i=0; i<pinList.size(); ++i )
714 {
715 XNODE* pin;
716
717 pins->AddChild( pin = node( wxT( "pin" ) ) );
718 pin->AddAttribute( wxT( "num" ), pinList[i]->GetShownNumber() );
719 pin->AddAttribute( wxT( "name" ), pinList[i]->GetShownName() );
720 pin->AddAttribute( wxT( "type" ), pinList[i]->GetCanonicalElectricalTypeName() );
721
722 // caution: construction work site here, drive slowly
723 }
724 }
725 }
726
727 return xlibparts;
728}
729
730
732{
733 XNODE* xnets = node( wxT( "nets" ) ); // auto_ptr if exceptions ever get used.
734 wxString netCodeTxt;
735 wxString netName;
736 wxString ref;
737
738 XNODE* xnet = nullptr;
739
740 /* output:
741 <net code="123" name="/cfcard.sch/WAIT#" class="signal">
742 <node ref="R23" pin="1"/>
743 <node ref="U18" pin="12"/>
744 </net>
745 */
746
747 struct NET_NODE
748 {
749 NET_NODE( SCH_PIN* aPin, const SCH_SHEET_PATH& aSheet ) :
750 m_Pin( aPin ),
751 m_Sheet( aSheet )
752 {}
753
754 SCH_PIN* m_Pin;
755 SCH_SHEET_PATH m_Sheet;
756 };
757
758 struct NET_RECORD
759 {
760 NET_RECORD( const wxString& aName ) :
761 m_Name( aName ),
762 m_HasNoConnect( false )
763 {};
764
765 wxString m_Name;
766 wxString m_Class;
767 bool m_HasNoConnect;
768 std::vector<NET_NODE> m_Nodes;
769 };
770
771 std::vector<NET_RECORD*> nets;
772
773 for( const auto& [ key, subgraphs ] : m_schematic->ConnectionGraph()->GetNetMap() )
774 {
775 wxString net_name = key.Name;
776 NET_RECORD* net_record = nullptr;
777
778 if( !( aCtl & GNL_OPT_KICAD ) )
779 net_name = UnescapeString( net_name );
780
781 if( subgraphs.empty() )
782 continue;
783
784 nets.emplace_back( new NET_RECORD( net_name ) );
785 net_record = nets.back();
786
787 for( CONNECTION_SUBGRAPH* subgraph : subgraphs )
788 {
789 bool nc = subgraph->GetNoConnect() && subgraph->GetNoConnect()->Type() == SCH_NO_CONNECT_T;
790 const SCH_SHEET_PATH& sheet = subgraph->GetSheet();
791
792 if( net_record->m_Class.IsEmpty() && subgraph->GetDriver() )
793 {
794 if( subgraph->GetDriver()->GetEffectiveNetClass() )
795 {
796 net_record->m_Class = subgraph->GetDriver()->GetEffectiveNetClass()->GetName();
797 net_record->m_Class = UnescapeString( net_record->m_Class );
798 }
799 }
800
801 if( nc )
802 net_record->m_HasNoConnect = true;
803
804 for( SCH_ITEM* item : subgraph->GetItems() )
805 {
806 if( item->Type() == SCH_PIN_T )
807 {
808 SCH_PIN* pin = static_cast<SCH_PIN*>( item );
809 SCH_SYMBOL* symbol = dynamic_cast<SCH_SYMBOL*>( pin->GetParentSymbol() );
810 bool forBOM = aCtl & GNL_OPT_BOM;
811 bool forBoard = aCtl & GNL_OPT_KICAD;
812
813 if( !symbol )
814 continue;
815
816 if( forBOM && ( sheet.GetExcludedFromBOM() || symbol->GetExcludedFromBOM() ) )
817 continue;
818
819 if( forBoard && ( sheet.GetExcludedFromBoard() || symbol->GetExcludedFromBoard() ) )
820 continue;
821
822 net_record->m_Nodes.emplace_back( pin, sheet );
823 }
824 }
825 }
826 }
827
828 // Netlist ordering: Net name, then ref des, then pin name
829 std::sort( nets.begin(), nets.end(),
830 []( const NET_RECORD* a, const NET_RECORD*b )
831 {
832 return StrNumCmp( a->m_Name, b->m_Name ) < 0;
833 } );
834
835 for( int i = 0; i < (int) nets.size(); ++i )
836 {
837 NET_RECORD* net_record = nets[i];
838 bool added = false;
839 XNODE* xnode;
840
841 // Netlist ordering: Net name, then ref des, then pin name
842 std::sort( net_record->m_Nodes.begin(), net_record->m_Nodes.end(),
843 []( const NET_NODE& a, const NET_NODE& b )
844 {
845 wxString refA = a.m_Pin->GetParentSymbol()->GetRef( &a.m_Sheet );
846 wxString refB = b.m_Pin->GetParentSymbol()->GetRef( &b.m_Sheet );
847
848 if( refA == refB )
849 return a.m_Pin->GetShownNumber() < b.m_Pin->GetShownNumber();
850
851 return refA < refB;
852 } );
853
854 // Some duplicates can exist, for example on multi-unit parts with duplicated pins across
855 // units. If the user connects the pins on each unit, they will appear on separate
856 // subgraphs. Remove those here:
857 alg::remove_duplicates( net_record->m_Nodes,
858 []( const NET_NODE& a, const NET_NODE& b )
859 {
860 wxString refA = a.m_Pin->GetParentSymbol()->GetRef( &a.m_Sheet );
861 wxString refB = b.m_Pin->GetParentSymbol()->GetRef( &b.m_Sheet );
862
863 return refA == refB && a.m_Pin->GetShownNumber() == b.m_Pin->GetShownNumber();
864 } );
865
866 // Determine if all pins in the net are stacked (nets with only one pin are implicitly
867 // taken to be stacked)
868 bool allNetPinsStacked = true;
869
870 if( net_record->m_Nodes.size() > 1 )
871 {
872 SCH_PIN* firstPin = net_record->m_Nodes.begin()->m_Pin;
873 allNetPinsStacked =
874 std::all_of( net_record->m_Nodes.begin() + 1, net_record->m_Nodes.end(),
875 [=]( auto& node )
876 {
877 return firstPin->GetParent() == node.m_Pin->GetParent()
878 && firstPin->GetPosition() == node.m_Pin->GetPosition()
879 && firstPin->GetName() == node.m_Pin->GetName();
880 } );
881 }
882
883 for( const NET_NODE& netNode : net_record->m_Nodes )
884 {
885 wxString refText = netNode.m_Pin->GetParentSymbol()->GetRef( &netNode.m_Sheet );
886 wxString pinText = netNode.m_Pin->GetShownNumber();
887
888 // Skip power symbols and virtual symbols
889 if( refText[0] == wxChar( '#' ) )
890 continue;
891
892 if( !added )
893 {
894 netCodeTxt.Printf( wxT( "%d" ), i + 1 );
895
896 xnets->AddChild( xnet = node( wxT( "net" ) ) );
897 xnet->AddAttribute( wxT( "code" ), netCodeTxt );
898 xnet->AddAttribute( wxT( "name" ), net_record->m_Name );
899 xnet->AddAttribute( wxT( "class" ), net_record->m_Class );
900
901 added = true;
902 }
903
904 xnet->AddChild( xnode = node( wxT( "node" ) ) );
905 xnode->AddAttribute( wxT( "ref" ), refText );
906 xnode->AddAttribute( wxT( "pin" ), pinText );
907
908 wxString pinName = netNode.m_Pin->GetShownName();
909 wxString pinType = netNode.m_Pin->GetCanonicalElectricalTypeName();
910
911 if( !pinName.IsEmpty() )
912 xnode->AddAttribute( wxT( "pinfunction" ), pinName );
913
914 if( net_record->m_HasNoConnect
915 && ( net_record->m_Nodes.size() == 1 || allNetPinsStacked ) )
916 pinType += wxT( "+no_connect" );
917
918 xnode->AddAttribute( wxT( "pintype" ), pinType );
919 }
920 }
921
922 for( NET_RECORD* record : nets )
923 delete record;
924
925 return xnets;
926}
927
928
929XNODE* NETLIST_EXPORTER_XML::node( const wxString& aName,
930 const wxString& aTextualContent /* = wxEmptyString*/ )
931{
932 XNODE* n = new XNODE( wxXML_ELEMENT_NODE, aName );
933
934 if( aTextualContent.Len() > 0 ) // excludes wxEmptyString, the parameter's default value
935 n->AddChild( new XNODE( wxXML_TEXT_NODE, wxEmptyString, aTextualContent ) );
936
937 return n;
938}
939
940
941static bool sortPinsByNumber( SCH_PIN* aPin1, SCH_PIN* aPin2 )
942{
943 // return "lhs < rhs"
944 return StrNumCmp( aPin1->GetShownNumber(), aPin2->GetShownNumber(), true ) < 0;
945}
wxString GetBuildVersion()
Get the full KiCad version string.
const NET_MAP & GetNetMap() const
A subgraph is a set of items that are electrically connected on a single sheet.
A base class for most all the KiCad significant classes used in schematics and boards.
Definition: eda_item.h:89
const KIID m_Uuid
Definition: eda_item.h:490
virtual const wxString & GetText() const
Return the string associated with the text object.
Definition: eda_text.h:98
wxString AsString() const
Definition: kiid.cpp:246
const wxString GetUniStringLibItemName() const
Get strings for display messages in dialogs.
Definition: lib_id.h:112
const wxString GetUniStringLibNickname() const
Definition: lib_id.h:88
Define a library symbol object.
Definition: lib_symbol.h:84
bool HasLibrary(const wxString &aNickname, bool aCheckEnabled=false) const
Test for the existence of aNickname in the library table.
wxString GetFullURI(const wxString &aLibNickname, bool aExpandEnvVars=true) const
Return the full URI of the library mapped to aLibNickname.
SCH_SYMBOL * findNextSymbol(EDA_ITEM *aItem, const SCH_SHEET_PATH &aSheetPath)
Check if the given symbol should be processed for netlisting.
std::set< LIB_SYMBOL *, LIB_SYMBOL_LESS_THAN > m_libParts
unique library symbols used. LIB_SYMBOL items are sorted by names
UNIQUE_STRINGS m_referencesAlreadyFound
Used for "multiple symbols per package" symbols to avoid processing a lib symbol more than once.
SCHEMATIC_IFACE * m_schematic
The schematic we're generating a netlist for.
XNODE * makeDesignHeader()
Fill out a project "design" header into an XML node.
XNODE * makeLibraries()
Fill out an XML node with a list of used libraries and returns it.
bool WriteNetlist(const wxString &aOutFileName, unsigned aNetlistOptions, REPORTER &aReporter) override
Write generic netlist to aOutFileName.
XNODE * node(const wxString &aName, const wxString &aTextualContent=wxEmptyString)
A convenience function that creates a new XNODE with an optional textual child.
XNODE * makeListOfNets(unsigned aCtl)
Fill out an XML node with a list of nets and returns it.
void addSymbolFields(XNODE *aNode, SCH_SYMBOL *aSymbol, const SCH_SHEET_PATH &aSheet, const SCH_SHEET_LIST &aSheetList)
Holder for multi-unit symbol fields.
std::vector< wxString > getComponentClassNamesForAllSymbolUnits(SCH_SYMBOL *aSymbol, const SCH_SHEET_PATH &aSymbolSheet, const SCH_SHEET_LIST &aSheetList)
Finds all component class names attached to any sub-unit of a given symbol.
XNODE * makeSymbols(unsigned aCtl)
XNODE * makeRoot(unsigned aCtl=GNL_ALL)
Build the entire document tree for the generic export.
std::set< wxString > m_libraries
XNODE * makeLibParts()
Fill out an XML node with the unique library parts and returns it.
static SYMBOL_LIB_TABLE * SchSymbolLibTable(PROJECT *aProject)
Accessor for project symbol library table.
Container for project specific data.
Definition: project.h:64
virtual std::map< wxString, wxString > & GetTextVars() const
Definition: project.cpp:95
A pure virtual class used to derive REPORTER objects from.
Definition: reporter.h:72
virtual void SetCurrentSheet(const SCH_SHEET_PATH &aPath)=0
virtual wxString GetFileName() const =0
virtual CONNECTION_GRAPH * ConnectionGraph() const =0
virtual SCH_SHEET_PATH & CurrentSheet() const =0
virtual PROJECT & Prj() const =0
virtual SCH_SHEET_LIST Hierarchy() const =0
Instances are attached to a symbol or sheet and provide a place for the symbol's value,...
Definition: sch_field.h:51
wxString GetShownText(const SCH_SHEET_PATH *aPath, bool aAllowExtraText, int aDepth=0) const
Definition: sch_field.cpp:214
Base class for any item which can be embedded within the SCHEMATIC container class,...
Definition: sch_item.h:167
wxString GetShownNumber() const
Definition: sch_pin.cpp:518
const wxString & GetFileName() const
Definition: sch_screen.h:143
const TITLE_BLOCK & GetTitleBlock() const
Definition: sch_screen.h:154
A container for handling SCH_SHEET_PATH objects in a flattened hierarchy.
Handle access to a stack of flattened SCH_SHEET objects by way of a path for creating a flattened sch...
bool GetExcludedFromBOM() const
const SCH_SHEET * GetSheet(unsigned aIndex) const
bool GetExcludedFromBoard() const
Schematic symbol object.
Definition: sch_symbol.h:77
wxString GetDescription() const override
Definition: sch_symbol.cpp:260
bool UseLibIdLookup() const
Definition: sch_symbol.h:183
wxString GetSchSymbolLibraryName() const
Definition: sch_symbol.cpp:242
void GetFields(std::vector< SCH_FIELD * > &aVector, bool aVisibleOnly) override
Populate a std::vector with SCH_FIELDs.
Definition: sch_symbol.cpp:954
SCH_FIELD * GetField(MANDATORY_FIELD_T aFieldType)
Return a mandatory field in this symbol.
Definition: sch_symbol.cpp:906
const wxString GetValue(bool aResolve, const SCH_SHEET_PATH *aPath, bool aAllowExtraText) const override
Definition: sch_symbol.cpp:874
const wxString GetFootprintFieldText(bool aResolve, const SCH_SHEET_PATH *aPath, bool aAllowExtraText) const
Definition: sch_symbol.cpp:890
const LIB_ID & GetLibId() const override
Definition: sch_symbol.h:166
int GetUnitSelection(const SCH_SHEET_PATH *aSheet) const
Return the instance-specific unit selection for the given sheet path.
Definition: sch_symbol.cpp:832
int GetUnitCount() const override
Return the number of units per package of the symbol.
Definition: sch_symbol.cpp:434
std::unique_ptr< LIB_SYMBOL > & GetLibSymbolRef()
Definition: sch_symbol.h:185
std::unordered_set< wxString > GetComponentClassNames(const SCH_SHEET_PATH *aPath) const
Returns the component classes this symbol belongs in.
const wxString GetRef(const SCH_SHEET_PATH *aSheet, bool aIncludeUnit=false) const override
Definition: sch_symbol.cpp:704
bool GetExcludedFromBoard() const
Definition: symbol.h:181
bool GetExcludedFromBOM() const
Definition: symbol.h:175
bool GetDNP() const
Set or clear the 'Do Not Populate' flag.
Definition: symbol.h:186
Hold the information shown in the lower right corner of a plot, printout, or editing view.
Definition: title_block.h:41
const wxString & GetCompany() const
Definition: title_block.h:96
const wxString & GetRevision() const
Definition: title_block.h:86
const wxString & GetDate() const
Definition: title_block.h:76
const wxString & GetComment(int aIdx) const
Definition: title_block.h:107
const wxString & GetTitle() const
Definition: title_block.h:63
void Clear()
Erase the record.
Hold an XML or S-expression element.
Definition: xnode.h:43
wxString ExpandTextVars(const wxString &aSource, const PROJECT *aProject, int aFlags)
Definition: common.cpp:59
The common library.
void remove_duplicates(_Container &__c)
Deletes all duplicate values from __c.
Definition: kicad_algo.h:183
static bool sortPinsByNumber(SCH_PIN *aPin1, SCH_PIN *aPin2)
#define GNL_ALL
@ GNL_PARTS
@ GNL_LIBRARIES
@ GNL_OPT_KICAD
@ GNL_SYMBOLS
@ GNL_HEADER
@ GNL_OPT_BOM
@ GNL_NETS
int StrNumCmp(const wxString &aString1, const wxString &aString2, bool aIgnoreCase)
Compare two strings with alphanumerical content.
wxString UnescapeString(const wxString &aSource)
wxString GetISO8601CurrentDateTime()
Definition for symbol library class.
wxString GetCanonicalFieldName(int idx)
@ DATASHEET_FIELD
name of datasheet
@ FOOTPRINT_FIELD
Field Name Module PCB, i.e. "16DIP300".
@ DESCRIPTION_FIELD
Field Description of part, i.e. "1/4W 1% Metal Film Resistor".
@ SCH_NO_CONNECT_T
Definition: typeinfo.h:160
@ SCH_SYMBOL_T
Definition: typeinfo.h:172
@ SCH_PIN_T
Definition: typeinfo.h:153