KiCad PCB EDA Suite
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
eeschema_jobs_handler.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) 2022 Mark Roszko <mark.roszko@gmail.com>
5 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
6 *
7 * This program is free software: you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation, either version 3 of the License, or (at your
10 * option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program. If not, see <http://www.gnu.org/licenses/>.
19 */
20
22#include <common.h>
23#include <pgm_base.h>
24#include <cli/exit_codes.h>
25#include <sch_plotter.h>
31#include <jobs/job_sch_erc.h>
34#include <schematic.h>
35#include <wx/dir.h>
36#include <wx/file.h>
37#include <memory>
38#include <connection_graph.h>
39#include "eeschema_helpers.h"
40#include <filename_resolver.h>
41#include <kiway.h>
42#include <sch_painter.h>
43#include <locale_io.h>
44#include <erc/erc.h>
45#include <erc/erc_report.h>
49#include <paths.h>
50#include <reporter.h>
51#include <string_utils.h>
52
54
55#include <sch_file_versions.h>
57
58#include <netlist.h>
68
69#include <fields_data_model.h>
70
75
76
78 JOB_DISPATCHER( aKiway ),
79 m_cliSchematic( nullptr )
80{
81 Register( "bom",
82 std::bind( &EESCHEMA_JOBS_HANDLER::JobExportBom, this, std::placeholders::_1 ),
83 [aKiway]( JOB* job, wxWindow* aParent ) -> bool
84 {
85 JOB_EXPORT_SCH_BOM* bomJob = dynamic_cast<JOB_EXPORT_SCH_BOM*>( job );
86
87 SCH_EDIT_FRAME* editFrame =
88 static_cast<SCH_EDIT_FRAME*>( aKiway->Player( FRAME_SCH, false ) );
89
90 wxCHECK( bomJob && editFrame, false );
91
92 DIALOG_SYMBOL_FIELDS_TABLE dlg( editFrame, bomJob );
93 return dlg.ShowModal() == wxID_OK;
94 } );
95 Register( "pythonbom",
96 std::bind( &EESCHEMA_JOBS_HANDLER::JobExportPythonBom, this, std::placeholders::_1 ),
97 []( JOB* job, wxWindow* aParent ) -> bool
98 {
99 return true;
100 } );
101 Register( "netlist",
102 std::bind( &EESCHEMA_JOBS_HANDLER::JobExportNetlist, this, std::placeholders::_1 ),
103 [aKiway]( JOB* job, wxWindow* aParent ) -> bool
104 {
105 JOB_EXPORT_SCH_NETLIST* netJob = dynamic_cast<JOB_EXPORT_SCH_NETLIST*>( job );
106
107 SCH_EDIT_FRAME* editFrame =
108 static_cast<SCH_EDIT_FRAME*>( aKiway->Player( FRAME_SCH, false ) );
109
110 wxCHECK( netJob && editFrame, false );
111
112 DIALOG_EXPORT_NETLIST dlg( editFrame, aParent, netJob );
113 return dlg.ShowModal() == wxID_OK;
114 } );
115 Register( "plot",
116 std::bind( &EESCHEMA_JOBS_HANDLER::JobExportPlot, this, std::placeholders::_1 ),
117 [aKiway]( JOB* job, wxWindow* aParent ) -> bool
118 {
119 JOB_EXPORT_SCH_PLOT* plotJob = dynamic_cast<JOB_EXPORT_SCH_PLOT*>( job );
120
121 SCH_EDIT_FRAME* editFrame =
122 static_cast<SCH_EDIT_FRAME*>( aKiway->Player( FRAME_SCH, false ) );
123
124 wxCHECK( plotJob && editFrame, false );
125
126 DIALOG_PLOT_SCHEMATIC dlg( editFrame, aParent, plotJob );
127 return dlg.ShowModal() == wxID_OK;
128 } );
129 Register( "symupgrade",
130 std::bind( &EESCHEMA_JOBS_HANDLER::JobSymUpgrade, this, std::placeholders::_1 ),
131 []( JOB* job, wxWindow* aParent ) -> bool
132 {
133 return true;
134 } );
135 Register( "symsvg",
136 std::bind( &EESCHEMA_JOBS_HANDLER::JobSymExportSvg, this, std::placeholders::_1 ),
137 []( JOB* job, wxWindow* aParent ) -> bool
138 {
139 return true;
140 } );
141 Register( "erc", std::bind( &EESCHEMA_JOBS_HANDLER::JobSchErc, this, std::placeholders::_1 ),
142 []( JOB* job, wxWindow* aParent ) -> bool
143 {
144 JOB_SCH_ERC* ercJob = dynamic_cast<JOB_SCH_ERC*>( job );
145
146 wxCHECK( ercJob, false );
147
148 DIALOG_ERC_JOB_CONFIG dlg( aParent, ercJob );
149 return dlg.ShowModal() == wxID_OK;
150 } );
151}
152
153
155{
156 SCHEMATIC* sch = nullptr;
157
158 if( !Pgm().IsGUI() && Pgm().GetSettingsManager().IsProjectOpenNotDummy() )
159 {
161 wxString schPath = aPath;
162
163 if( schPath.IsEmpty() )
164 {
165 wxFileName path = project.GetProjectFullName();
167 path.MakeAbsolute();
168 schPath = path.GetFullPath();
169 }
170
171 if( !m_cliSchematic )
172 m_cliSchematic = EESCHEMA_HELPERS::LoadSchematic( schPath, true, false, &project );
173
174 sch = m_cliSchematic;
175 }
176 else if( Pgm().IsGUI() && Pgm().GetSettingsManager().IsProjectOpen() )
177 {
178 SCH_EDIT_FRAME* editFrame = static_cast<SCH_EDIT_FRAME*>( m_kiway->Player( FRAME_SCH,
179 false ) );
180
181 if( editFrame )
182 sch = &editFrame->Schematic();
183 }
184 else if( !aPath.IsEmpty() )
185 {
186 sch = EESCHEMA_HELPERS::LoadSchematic( aPath, true, false );
187 }
188
189 if( !sch )
190 m_reporter->Report( _( "Failed to load schematic\n" ), RPT_SEVERITY_ERROR );
191
192 return sch;
193}
194
196 const wxString& aTheme, SCHEMATIC* aSch,
197 const wxString& aDrawingSheetOverride )
198{
200 aRenderSettings->LoadColors( cs );
201 aRenderSettings->m_ShowHiddenPins = false;
202 aRenderSettings->m_ShowHiddenFields = false;
203 aRenderSettings->m_ShowPinAltIcons = false;
204
205 aRenderSettings->SetDefaultPenWidth( aSch->Settings().m_DefaultLineWidth );
206 aRenderSettings->m_LabelSizeRatio = aSch->Settings().m_LabelSizeRatio;
207 aRenderSettings->m_TextOffsetRatio = aSch->Settings().m_TextOffsetRatio;
208 aRenderSettings->m_PinSymbolSize = aSch->Settings().m_PinSymbolSize;
209
210 aRenderSettings->SetDashLengthRatio( aSch->Settings().m_DashedLineDashRatio );
211 aRenderSettings->SetGapLengthRatio( aSch->Settings().m_DashedLineGapRatio );
212
213 // Load the drawing sheet from the filename stored in BASE_SCREEN::m_DrawingSheetFileName.
214 // If empty, or not existing, the default drawing sheet is loaded.
215
216 auto loadSheet =
217 [&]( const wxString& path ) -> bool
218 {
219 wxString msg;
220 FILENAME_RESOLVER resolve;
221 resolve.SetProject( &aSch->Prj() );
222 resolve.SetProgramBase( &Pgm() );
223
224 wxString absolutePath = resolve.ResolvePath( path, wxGetCwd(),
225 aSch->GetEmbeddedFiles() );
226
227 if( !DS_DATA_MODEL::GetTheInstance().LoadDrawingSheet( absolutePath, &msg ) )
228 {
229 m_reporter->Report( wxString::Format( _( "Error loading drawing sheet '%s'." ),
230 path )
231 + wxS( "\n" ) + msg + wxS( "\n" ),
233 return false;
234 }
235
236 return true;
237 };
238
239 // try to load the override first
240 if( !aDrawingSheetOverride.IsEmpty() && loadSheet( aDrawingSheetOverride ) )
241 return;
242
243 // no override or failed override continues here
244 loadSheet( aSch->Settings().m_SchDrawingSheetFileName );
245}
246
247
249{
250 JOB_EXPORT_SCH_PLOT* aPlotJob = dynamic_cast<JOB_EXPORT_SCH_PLOT*>( aJob );
251
252 wxCHECK( aPlotJob, CLI::EXIT_CODES::ERR_UNKNOWN );
253
254 SCHEMATIC* sch = getSchematic( aPlotJob->m_filename );
255
256 if( !sch )
258
259 aJob->SetTitleBlock( sch->RootScreen()->GetTitleBlock() );
260 sch->Prj().ApplyTextVars( aJob->GetVarOverrides() );
261
262 std::unique_ptr<SCH_RENDER_SETTINGS> renderSettings = std::make_unique<SCH_RENDER_SETTINGS>();
263 InitRenderSettings( renderSettings.get(), aPlotJob->m_theme, sch, aPlotJob->m_drawingSheet );
264 renderSettings->SetDefaultFont( aPlotJob->m_defaultFont );
265 renderSettings->SetMinPenWidth( aPlotJob->m_minPenWidth );
266
267 std::unique_ptr<SCH_PLOTTER> schPlotter = std::make_unique<SCH_PLOTTER>( sch );
268
269 PLOT_FORMAT format = PLOT_FORMAT::PDF;
270
271 switch( aPlotJob->m_plotFormat )
272 {
273 case SCH_PLOT_FORMAT::DXF: format = PLOT_FORMAT::DXF; break;
274 case SCH_PLOT_FORMAT::PDF: format = PLOT_FORMAT::PDF; break;
275 case SCH_PLOT_FORMAT::SVG: format = PLOT_FORMAT::SVG; break;
276 case SCH_PLOT_FORMAT::POST: format = PLOT_FORMAT::POST; break;
277 case SCH_PLOT_FORMAT::HPGL: format = PLOT_FORMAT::HPGL; break;
278 }
279
280 HPGL_PAGE_SIZE hpglPageSize = HPGL_PAGE_SIZE::DEFAULT;
281
282 switch( aPlotJob->m_HPGLPaperSizeSelect )
283 {
284 case JOB_HPGL_PAGE_SIZE::DEFAULT: hpglPageSize = HPGL_PAGE_SIZE::DEFAULT; break;
285 case JOB_HPGL_PAGE_SIZE::SIZE_A: hpglPageSize = HPGL_PAGE_SIZE::SIZE_A; break;
286 case JOB_HPGL_PAGE_SIZE::SIZE_A0: hpglPageSize = HPGL_PAGE_SIZE::SIZE_A0; break;
287 case JOB_HPGL_PAGE_SIZE::SIZE_A1: hpglPageSize = HPGL_PAGE_SIZE::SIZE_A1; break;
288 case JOB_HPGL_PAGE_SIZE::SIZE_A2: hpglPageSize = HPGL_PAGE_SIZE::SIZE_A2; break;
289 case JOB_HPGL_PAGE_SIZE::SIZE_A3: hpglPageSize = HPGL_PAGE_SIZE::SIZE_A3; break;
290 case JOB_HPGL_PAGE_SIZE::SIZE_A4: hpglPageSize = HPGL_PAGE_SIZE::SIZE_A4; break;
291 case JOB_HPGL_PAGE_SIZE::SIZE_A5: hpglPageSize = HPGL_PAGE_SIZE::SIZE_A5; break;
292 case JOB_HPGL_PAGE_SIZE::SIZE_B: hpglPageSize = HPGL_PAGE_SIZE::SIZE_B; break;
293 case JOB_HPGL_PAGE_SIZE::SIZE_C: hpglPageSize = HPGL_PAGE_SIZE::SIZE_C; break;
294 case JOB_HPGL_PAGE_SIZE::SIZE_D: hpglPageSize = HPGL_PAGE_SIZE::SIZE_D; break;
295 case JOB_HPGL_PAGE_SIZE::SIZE_E: hpglPageSize = HPGL_PAGE_SIZE::SIZE_E; break;
296 }
297
298 HPGL_PLOT_ORIGIN_AND_UNITS hpglOrigin = HPGL_PLOT_ORIGIN_AND_UNITS::USER_FIT_PAGE;
299
300 switch( aPlotJob->m_HPGLPlotOrigin )
301 {
302 case JOB_HPGL_PLOT_ORIGIN_AND_UNITS::PLOTTER_BOT_LEFT:
303 hpglOrigin = HPGL_PLOT_ORIGIN_AND_UNITS::PLOTTER_BOT_LEFT;
304 break;
305 case JOB_HPGL_PLOT_ORIGIN_AND_UNITS::PLOTTER_CENTER:
306 hpglOrigin = HPGL_PLOT_ORIGIN_AND_UNITS::PLOTTER_CENTER;
307 break;
308 case JOB_HPGL_PLOT_ORIGIN_AND_UNITS::USER_FIT_CONTENT:
309 hpglOrigin = HPGL_PLOT_ORIGIN_AND_UNITS::USER_FIT_CONTENT;
310 break;
311 case JOB_HPGL_PLOT_ORIGIN_AND_UNITS::USER_FIT_PAGE:
312 hpglOrigin = HPGL_PLOT_ORIGIN_AND_UNITS::USER_FIT_PAGE;
313 break;
314 }
315
316 int pageSizeSelect = PageFormatReq::PAGE_SIZE_AUTO;
317
318 switch( aPlotJob->m_pageSizeSelect )
319 {
320 case JOB_PAGE_SIZE::PAGE_SIZE_A: pageSizeSelect = PageFormatReq::PAGE_SIZE_A; break;
321 case JOB_PAGE_SIZE::PAGE_SIZE_A4: pageSizeSelect = PageFormatReq::PAGE_SIZE_A4; break;
322 case JOB_PAGE_SIZE::PAGE_SIZE_AUTO: pageSizeSelect = PageFormatReq::PAGE_SIZE_AUTO; break;
323 }
324
325 wxString outPath = aPlotJob->GetFullOutputPath( &sch->Prj() );
326
327 if( !PATHS::EnsurePathExists( outPath, !aPlotJob->GetOutputPathIsDirectory() ) )
328 {
329 m_reporter->Report( _( "Failed to create output directory\n" ), RPT_SEVERITY_ERROR );
331 }
332
333 SCH_PLOT_OPTS plotOpts;
334 plotOpts.m_blackAndWhite = aPlotJob->m_blackAndWhite;
335 plotOpts.m_HPGLPaperSizeSelect = hpglPageSize;
336 plotOpts.m_HPGLPenSize = aPlotJob->m_HPGLPenSize;
337 plotOpts.m_HPGLPlotOrigin = hpglOrigin;
338 plotOpts.m_PDFPropertyPopups = aPlotJob->m_PDFPropertyPopups;
340 plotOpts.m_PDFMetadata = aPlotJob->m_PDFMetadata;
341
342 if( aPlotJob->GetOutputPathIsDirectory() )
343 {
344 plotOpts.m_outputDirectory = outPath;
345 plotOpts.m_outputFile = wxEmptyString;
346 }
347 else
348 {
349 plotOpts.m_outputDirectory = wxEmptyString;
350 plotOpts.m_outputFile = outPath;
351 }
352
353 plotOpts.m_pageSizeSelect = pageSizeSelect;
354 plotOpts.m_plotAll = aPlotJob->m_plotAll;
355 plotOpts.m_plotDrawingSheet = aPlotJob->m_plotDrawingSheet;
356 plotOpts.m_plotPages = aPlotJob->m_plotPages;
357 plotOpts.m_theme = aPlotJob->m_theme;
358 plotOpts.m_useBackgroundColor = aPlotJob->m_useBackgroundColor;
359
360 schPlotter->Plot( format, plotOpts, renderSettings.get(), m_reporter );
361
364
365 return CLI::EXIT_CODES::OK;
366}
367
368
370{
371 JOB_EXPORT_SCH_NETLIST* aNetJob = dynamic_cast<JOB_EXPORT_SCH_NETLIST*>( aJob );
372
373 wxCHECK( aNetJob, CLI::EXIT_CODES::ERR_UNKNOWN );
374
375 SCHEMATIC* sch = getSchematic( aNetJob->m_filename );
376
377 if( !sch )
379
380 aJob->SetTitleBlock( sch->RootScreen()->GetTitleBlock() );
381 sch->Prj().ApplyTextVars( aJob->GetVarOverrides() );
382
383 // Annotation warning check
384 SCH_REFERENCE_LIST referenceList;
385 sch->Hierarchy().GetSymbols( referenceList );
386
387 if( referenceList.GetCount() > 0 )
388 {
389 if( referenceList.CheckAnnotation(
390 []( ERCE_T, const wxString&, SCH_REFERENCE*, SCH_REFERENCE* )
391 {
392 // We're only interested in the end result -- either errors or not
393 } )
394 > 0 )
395 {
396 m_reporter->Report( _( "Warning: schematic has annotation errors, please use the "
397 "schematic editor to fix them\n" ),
399 }
400 }
401
402 // Test duplicate sheet names:
403 ERC_TESTER erc( sch );
404
405 if( erc.TestDuplicateSheetNames( false ) > 0 )
406 m_reporter->Report( _( "Warning: duplicate sheet names.\n" ), RPT_SEVERITY_WARNING );
407
408 std::unique_ptr<NETLIST_EXPORTER_BASE> helper;
409 unsigned netlistOption = 0;
410
411 wxString fileExt;
412
413 switch( aNetJob->format )
414 {
417 helper = std::make_unique<NETLIST_EXPORTER_KICAD>( sch );
418 break;
419
422 helper = std::make_unique<NETLIST_EXPORTER_ORCADPCB2>( sch );
423 break;
424
427 helper = std::make_unique<NETLIST_EXPORTER_CADSTAR>( sch );
428 break;
429
433 helper = std::make_unique<NETLIST_EXPORTER_SPICE>( sch );
434 break;
435
438 helper = std::make_unique<NETLIST_EXPORTER_SPICE_MODEL>( sch );
439 break;
440
442 fileExt = wxS( "xml" );
443 helper = std::make_unique<NETLIST_EXPORTER_XML>( sch );
444 break;
445
447 fileExt = wxS( "asc" );
448 helper = std::make_unique<NETLIST_EXPORTER_PADS>( sch );
449 break;
450
452 fileExt = wxS( "txt" );
453 helper = std::make_unique<NETLIST_EXPORTER_ALLEGRO>( sch );
454 break;
455
456 default:
457 m_reporter->Report( _( "Unknown netlist format.\n" ), RPT_SEVERITY_ERROR );
459 }
460
461 if( aNetJob->GetConfiguredOutputPath().IsEmpty() )
462 {
463 wxFileName fn = sch->GetFileName();
464 fn.SetName( fn.GetName() );
465 fn.SetExt( fileExt );
466
467 aNetJob->SetConfiguredOutputPath( fn.GetFullName() );
468 }
469
470 wxString outPath = aNetJob->GetFullOutputPath( &sch->Prj() );
471
472 if( !PATHS::EnsurePathExists( outPath, true ) )
473 {
474 m_reporter->Report( _( "Failed to create output directory\n" ), RPT_SEVERITY_ERROR );
476 }
477
478 bool res = helper->WriteNetlist( outPath, netlistOption, *m_reporter );
479
480 if( !res )
482
483 return CLI::EXIT_CODES::OK;
484}
485
486
488{
489 JOB_EXPORT_SCH_BOM* aBomJob = dynamic_cast<JOB_EXPORT_SCH_BOM*>( aJob );
490
491 wxCHECK( aBomJob, CLI::EXIT_CODES::ERR_UNKNOWN );
492
493 SCHEMATIC* sch = getSchematic( aBomJob->m_filename );
494
495 if( !sch )
497
498 aJob->SetTitleBlock( sch->RootScreen()->GetTitleBlock() );
499 sch->Prj().ApplyTextVars( aJob->GetVarOverrides() );
500
501 // Annotation warning check
502 SCH_REFERENCE_LIST referenceList;
503 sch->Hierarchy().GetSymbols( referenceList, false, false );
504
505 if( referenceList.GetCount() > 0 )
506 {
507 SCH_REFERENCE_LIST copy = referenceList;
508
509 // Check annotation splits references...
510 if( copy.CheckAnnotation(
511 []( ERCE_T, const wxString&, SCH_REFERENCE*, SCH_REFERENCE* )
512 {
513 // We're only interested in the end result -- either errors or not
514 } )
515 > 0 )
516 {
518 _( "Warning: schematic has annotation errors, please use the schematic "
519 "editor to fix them\n" ),
521 }
522 }
523
524 // Test duplicate sheet names:
525 ERC_TESTER erc( sch );
526
527 if( erc.TestDuplicateSheetNames( false ) > 0 )
528 m_reporter->Report( _( "Warning: duplicate sheet names.\n" ), RPT_SEVERITY_WARNING );
529
530 // Build our data model
531 FIELDS_EDITOR_GRID_DATA_MODEL dataModel( referenceList, nullptr );
532
533 // Mandatory fields + quantity virtual field first
534 for( FIELD_T fieldId : MANDATORY_FIELDS )
535 {
536 dataModel.AddColumn( GetCanonicalFieldName( fieldId ),
537 GetDefaultFieldName( fieldId, DO_TRANSLATE ), false );
538 }
539
540 // User field names in symbols second
541 std::set<wxString> userFieldNames;
542
543 for( size_t i = 0; i < referenceList.GetCount(); ++i )
544 {
545 SCH_SYMBOL* symbol = referenceList[i].GetSymbol();
546
547 for( SCH_FIELD& field : symbol->GetFields() )
548 {
549 if( !field.IsMandatory() && !field.IsPrivate() )
550 userFieldNames.insert( field.GetName() );
551 }
552 }
553
554 for( const wxString& fieldName : userFieldNames )
555 dataModel.AddColumn( fieldName, GetTextVars( fieldName ), true );
556
557 // Add any templateFieldNames which aren't already present in the userFieldNames
558 for( const TEMPLATE_FIELDNAME& templateFieldname :
560 {
561 if( userFieldNames.count( templateFieldname.m_Name ) == 0 )
562 {
563 dataModel.AddColumn( templateFieldname.m_Name, GetTextVars( templateFieldname.m_Name ),
564 false );
565 }
566 }
567
568 BOM_PRESET preset;
569
570 // Load a preset if one is specified
571 if( !aBomJob->m_bomPresetName.IsEmpty() )
572 {
573 // Find the preset
574 const BOM_PRESET* schPreset = nullptr;
575
576 for( const BOM_PRESET& p : BOM_PRESET::BuiltInPresets() )
577 {
578 if( p.name == aBomJob->m_bomPresetName )
579 {
580 schPreset = &p;
581 break;
582 }
583 }
584
585 for( const BOM_PRESET& p : sch->Settings().m_BomPresets )
586 {
587 if( p.name == aBomJob->m_bomPresetName )
588 {
589 schPreset = &p;
590 break;
591 }
592 }
593
594 if( !schPreset )
595 {
596 m_reporter->Report( wxString::Format( _( "BOM preset '%s' not found" ) + wxS( "\n" ),
597 aBomJob->m_bomPresetName ),
599
601 }
602
603 preset = *schPreset;
604 }
605 else
606 {
607 size_t i = 0;
608
609 for( const wxString& fieldName : aBomJob->m_fieldsOrdered )
610 {
611 // Handle wildcard. We allow the wildcard anywhere in the list, but it needs to respect
612 // fields that come before and after the wildcard.
613 if( fieldName == wxS( "*" ) )
614 {
615 for( const BOM_FIELD& modelField : dataModel.GetFieldsOrdered() )
616 {
617 struct BOM_FIELD field;
618
619 field.name = modelField.name;
620 field.show = true;
621 field.groupBy = false;
622 field.label = field.name;
623
624 bool fieldAlreadyPresent = false;
625
626 for( BOM_FIELD& presetField : preset.fieldsOrdered )
627 {
628 if( presetField.name == field.name )
629 {
630 fieldAlreadyPresent = true;
631 break;
632 }
633 }
634
635 bool fieldLaterInList = false;
636
637 for( const wxString& fieldInList : aBomJob->m_fieldsOrdered )
638 {
639 if( fieldInList == field.name )
640 {
641 fieldLaterInList = true;
642 break;
643 }
644 }
645
646 if( !fieldAlreadyPresent && !fieldLaterInList )
647 preset.fieldsOrdered.emplace_back( field );
648 }
649
650 continue;
651 }
652
653 struct BOM_FIELD field;
654
655 field.name = fieldName;
656 field.show = !fieldName.StartsWith( wxT( "__" ), &field.name );
657 field.groupBy = alg::contains( aBomJob->m_fieldsGroupBy, field.name );
658
659 if( ( aBomJob->m_fieldsLabels.size() > i ) && !aBomJob->m_fieldsLabels[i].IsEmpty() )
660 field.label = aBomJob->m_fieldsLabels[i];
661 else if( IsTextVar( field.name ) )
662 field.label = GetTextVars( field.name );
663 else
664 field.label = field.name;
665
666 preset.fieldsOrdered.emplace_back( field );
667 i++;
668 }
669
670 preset.sortAsc = aBomJob->m_sortAsc;
671 preset.sortField = aBomJob->m_sortField;
672 preset.filterString = aBomJob->m_filterString;
673 preset.groupSymbols = ( aBomJob->m_fieldsGroupBy.size() > 0 );
674 preset.excludeDNP = aBomJob->m_excludeDNP;
676 }
677
678 dataModel.ApplyBomPreset( preset );
679
680 if( aBomJob->GetConfiguredOutputPath().IsEmpty() )
681 {
682 wxFileName fn = sch->GetFileName();
683 fn.SetName( fn.GetName() );
684 fn.SetExt( FILEEXT::CsvFileExtension );
685
686 aBomJob->SetConfiguredOutputPath( fn.GetFullName() );
687 }
688
689 wxString outPath = aBomJob->GetFullOutputPath( &sch->Prj() );
690
691 if( !PATHS::EnsurePathExists( outPath, true ) )
692 {
693 m_reporter->Report( _( "Failed to create output directory\n" ), RPT_SEVERITY_ERROR );
695 }
696
697 wxFile f;
698
699 if( !f.Open( outPath, wxFile::write ) )
700 {
701 m_reporter->Report( wxString::Format( _( "Unable to open destination '%s'" ), outPath ),
703
705 }
706
707 BOM_FMT_PRESET fmt;
708
709 // Load a format preset if one is specified
710 if( !aBomJob->m_bomFmtPresetName.IsEmpty() )
711 {
712 // Find the preset
713 std::optional<BOM_FMT_PRESET> schFmtPreset;
714
716 {
717 if( p.name == aBomJob->m_bomFmtPresetName )
718 {
719 schFmtPreset = p;
720 break;
721 }
722 }
723
724 for( const BOM_FMT_PRESET& p : sch->Settings().m_BomFmtPresets )
725 {
726 if( p.name == aBomJob->m_bomFmtPresetName )
727 {
728 schFmtPreset = p;
729 break;
730 }
731 }
732
733 if( !schFmtPreset )
734 {
735 m_reporter->Report( wxString::Format( _( "BOM format preset '%s' not found" )
736 + wxS( "\n" ),
737 aBomJob->m_bomFmtPresetName ),
739
741 }
742
743 fmt = *schFmtPreset;
744 }
745 else
746 {
747 fmt.fieldDelimiter = aBomJob->m_fieldDelimiter;
748 fmt.stringDelimiter = aBomJob->m_stringDelimiter;
749 fmt.refDelimiter = aBomJob->m_refDelimiter;
751 fmt.keepTabs = aBomJob->m_keepTabs;
752 fmt.keepLineBreaks = aBomJob->m_keepLineBreaks;
753 }
754
755 bool res = f.Write( dataModel.Export( fmt ) );
756
757 if( !res )
759
760 m_reporter->Report( wxString::Format( _( "Wrote bill of materials to '%s'." ), outPath ),
762
763 return CLI::EXIT_CODES::OK;
764}
765
766
768{
769 JOB_EXPORT_SCH_PYTHONBOM* aNetJob = dynamic_cast<JOB_EXPORT_SCH_PYTHONBOM*>( aJob );
770
771 wxCHECK( aNetJob, CLI::EXIT_CODES::ERR_UNKNOWN );
772
773 SCHEMATIC* sch = getSchematic( aNetJob->m_filename );
774
775 if( !sch )
777
778 aJob->SetTitleBlock( sch->RootScreen()->GetTitleBlock() );
779 sch->Prj().ApplyTextVars( aJob->GetVarOverrides() );
780
781 // Annotation warning check
782 SCH_REFERENCE_LIST referenceList;
783 sch->Hierarchy().GetSymbols( referenceList );
784
785 if( referenceList.GetCount() > 0 )
786 {
787 if( referenceList.CheckAnnotation(
788 []( ERCE_T, const wxString&, SCH_REFERENCE*, SCH_REFERENCE* )
789 {
790 // We're only interested in the end result -- either errors or not
791 } )
792 > 0 )
793 {
794 m_reporter->Report( _( "Warning: schematic has annotation errors, please use the "
795 "schematic editor to fix them\n" ),
797 }
798 }
799
800 // Test duplicate sheet names:
801 ERC_TESTER erc( sch );
802
803 if( erc.TestDuplicateSheetNames( false ) > 0 )
804 m_reporter->Report( _( "Warning: duplicate sheet names.\n" ), RPT_SEVERITY_WARNING );
805
806 std::unique_ptr<NETLIST_EXPORTER_XML> xmlNetlist =
807 std::make_unique<NETLIST_EXPORTER_XML>( sch );
808
809 if( aNetJob->GetConfiguredOutputPath().IsEmpty() )
810 {
811 wxFileName fn = sch->GetFileName();
812 fn.SetName( fn.GetName() + "-bom" );
813 fn.SetExt( FILEEXT::XmlFileExtension );
814
815 aNetJob->SetConfiguredOutputPath( fn.GetFullName() );
816 }
817
818 wxString outPath = aNetJob->GetFullOutputPath( &sch->Prj() );
819
820 if( !PATHS::EnsurePathExists( outPath, true ) )
821 {
822 m_reporter->Report( _( "Failed to create output directory\n" ), RPT_SEVERITY_ERROR );
824 }
825
826 bool res = xmlNetlist->WriteNetlist( outPath, GNL_OPT_BOM, *m_reporter );
827
828 if( !res )
830
831 m_reporter->Report( wxString::Format( _( "Wrote bill of materials to '%s'." ), outPath ),
833
834 return CLI::EXIT_CODES::OK;
835}
836
837
839 SCH_RENDER_SETTINGS* aRenderSettings,
840 LIB_SYMBOL* symbol )
841{
842 wxCHECK( symbol, CLI::EXIT_CODES::ERR_UNKNOWN );
843
844 LIB_SYMBOL_SPTR parent;
845 LIB_SYMBOL* symbolToPlot = symbol;
846
847 // if the symbol is an alias, then the draw items are stored in the root symbol
848 if( symbol->IsDerived() )
849 {
850 parent = symbol->GetRootSymbol();
851
852 wxCHECK( parent, CLI::EXIT_CODES::ERR_UNKNOWN );
853
854 symbolToPlot = parent.get();
855 }
856
857 // iterate from unit 1, unit 0 would be "all units" which we don't want
858 for( int unit = 1; unit < symbol->GetUnitCount() + 1; unit++ )
859 {
860 for( int bodyStyle = 1; bodyStyle < ( symbol->HasAlternateBodyStyle() ? 2 : 1 ) + 1;
861 ++bodyStyle )
862 {
863 wxString filename;
864 wxFileName fn;
865
866 fn.SetPath( aSvgJob->m_outputDirectory );
867 fn.SetExt( FILEEXT::SVGFileExtension );
868
869 filename = symbol->GetName();
870
871 for( wxChar c : wxFileName::GetForbiddenChars( wxPATH_DOS ) )
872 filename.Replace( c, ' ' );
873
874 // Even single units get a unit number in the filename. This simplifies the
875 // handling of the files as they have a uniform pattern.
876 // Also avoids aliasing 'sym', unit 2 and 'sym_unit2', unit 1 to the same file.
877 filename += wxString::Format( "_unit%d", unit );
878
879 if( bodyStyle == 2 )
880 filename += wxS( "_demorgan" );
881
882 fn.SetName( filename );
883 m_reporter->Report( wxString::Format( _( "Plotting symbol '%s' unit %d to '%s'\n" ),
884 symbol->GetName(), unit, fn.GetFullPath() ),
886
887 // Get the symbol bounding box to fit the plot page to it
888 BOX2I symbolBB = symbol->Flatten()->GetUnitBoundingBox(
889 unit, bodyStyle, !aSvgJob->m_includeHiddenFields );
890 PAGE_INFO pageInfo( PAGE_INFO::Custom );
891 pageInfo.SetHeightMils( schIUScale.IUToMils( symbolBB.GetHeight() * 1.2 ) );
892 pageInfo.SetWidthMils( schIUScale.IUToMils( symbolBB.GetWidth() * 1.2 ) );
893
894 SVG_PLOTTER* plotter = new SVG_PLOTTER();
895 plotter->SetRenderSettings( aRenderSettings );
896 plotter->SetPageSettings( pageInfo );
897 plotter->SetColorMode( !aSvgJob->m_blackAndWhite );
898
899 VECTOR2I plot_offset = symbolBB.GetCenter();
900 const double scale = 1.0;
901
902 // Currently, plot units are in decimal
903 plotter->SetViewport( plot_offset, schIUScale.IU_PER_MILS / 10, scale, false );
904
905 plotter->SetCreator( wxT( "Eeschema-SVG" ) );
906
907 if( !plotter->OpenFile( fn.GetFullPath() ) )
908 {
909 m_reporter->Report( wxString::Format( _( "Unable to open destination '%s'" )
910 + wxS( "\n" ),
911 fn.GetFullPath() ),
913
914 delete plotter;
916 }
917
918 LOCALE_IO toggle;
919 SCH_PLOT_OPTS plotOpts;
920
921 plotter->StartPlot( wxT( "1" ) );
922
923 bool background = true;
924 VECTOR2I offset( pageInfo.GetWidthIU( schIUScale.IU_PER_MILS ) / 2,
925 pageInfo.GetHeightIU( schIUScale.IU_PER_MILS ) / 2 );
926
927 // note, we want the fields from the original symbol pointer (in case of non-alias)
928 symbolToPlot->Plot( plotter, background, plotOpts, unit, bodyStyle, offset, false );
929 symbol->PlotFields( plotter, background, plotOpts, unit, bodyStyle, offset, false );
930
931 symbolToPlot->Plot( plotter, !background, plotOpts, unit, bodyStyle, offset, false );
932 symbol->PlotFields( plotter, !background, plotOpts, unit, bodyStyle, offset, false );
933
934 plotter->EndPlot();
935 delete plotter;
936 }
937 }
938
941
942 return CLI::EXIT_CODES::OK;
943}
944
945
947{
948 JOB_SYM_EXPORT_SVG* svgJob = dynamic_cast<JOB_SYM_EXPORT_SVG*>( aJob );
949
950 wxCHECK( svgJob, CLI::EXIT_CODES::ERR_UNKNOWN );
951
952 wxFileName fn( svgJob->m_libraryPath );
953 fn.MakeAbsolute();
954
955 SCH_IO_KICAD_SEXPR_LIB_CACHE schLibrary( fn.GetFullPath() );
956
957 try
958 {
959 schLibrary.Load();
960 }
961 catch( ... )
962 {
963 m_reporter->Report( _( "Unable to load library\n" ), RPT_SEVERITY_ERROR );
965 }
966
967 LIB_SYMBOL* symbol = nullptr;
968
969 if( !svgJob->m_symbol.IsEmpty() )
970 {
971 // See if the selected symbol exists
972 symbol = schLibrary.GetSymbol( svgJob->m_symbol );
973
974 if( !symbol )
975 {
976 m_reporter->Report( _( "There is no symbol selected to save." ) + wxS( "\n" ),
979 }
980 }
981
982 if( !svgJob->m_outputDirectory.IsEmpty() && !wxDir::Exists( svgJob->m_outputDirectory ) )
983 {
984 wxFileName::Mkdir( svgJob->m_outputDirectory );
985 }
986
987 SCH_RENDER_SETTINGS renderSettings;
989 renderSettings.LoadColors( cs );
991 renderSettings.m_ShowHiddenPins = svgJob->m_includeHiddenPins;
992 renderSettings.m_ShowHiddenFields = svgJob->m_includeHiddenFields;
993
994 int exitCode = CLI::EXIT_CODES::OK;
995
996 if( symbol )
997 {
998 exitCode = doSymExportSvg( svgJob, &renderSettings, symbol );
999 }
1000 else
1001 {
1002 // Just plot all the symbols we can
1003 const LIB_SYMBOL_MAP& libSymMap = schLibrary.GetSymbolMap();
1004
1005 for( const auto& [name, libSymbol] : libSymMap )
1006 {
1007 exitCode = doSymExportSvg( svgJob, &renderSettings, libSymbol );
1008
1009 if( exitCode != CLI::EXIT_CODES::OK )
1010 break;
1011 }
1012 }
1013
1014 return exitCode;
1015}
1016
1017
1019{
1020 JOB_SYM_UPGRADE* upgradeJob = dynamic_cast<JOB_SYM_UPGRADE*>( aJob );
1021
1022 wxCHECK( upgradeJob, CLI::EXIT_CODES::ERR_UNKNOWN );
1023
1024 wxFileName fn( upgradeJob->m_libraryPath );
1025 fn.MakeAbsolute();
1026
1027 SCH_IO_MGR::SCH_FILE_T fileType = SCH_IO_MGR::GuessPluginTypeFromLibPath( fn.GetFullPath() );
1028
1029 if( !upgradeJob->m_outputLibraryPath.IsEmpty() )
1030 {
1031 if( wxFile::Exists( upgradeJob->m_outputLibraryPath ) )
1032 {
1033 m_reporter->Report( _( "Output path must not conflict with existing path\n" ),
1035
1037 }
1038 }
1039 else if( fileType != SCH_IO_MGR::SCH_KICAD )
1040 {
1041 m_reporter->Report( _( "Output path must be specified to convert legacy and non-KiCad "
1042 "libraries\n" ),
1044
1046 }
1047
1048 if( fileType == SCH_IO_MGR::SCH_KICAD )
1049 {
1050 SCH_IO_KICAD_SEXPR_LIB_CACHE schLibrary( fn.GetFullPath() );
1051
1052 try
1053 {
1054 schLibrary.Load();
1055 }
1056 catch( ... )
1057 {
1058 m_reporter->Report( _( "Unable to load library\n" ), RPT_SEVERITY_ERROR );
1060 }
1061
1062 bool shouldSave =
1063 upgradeJob->m_force
1065
1066 if( shouldSave )
1067 {
1068 m_reporter->Report( _( "Saving symbol library in updated format\n" ),
1070
1071 try
1072 {
1073 if( !upgradeJob->m_outputLibraryPath.IsEmpty() )
1074 {
1075 schLibrary.SetFileName( upgradeJob->m_outputLibraryPath );
1076 }
1077
1078 schLibrary.SetModified();
1079 schLibrary.Save();
1080 }
1081 catch( ... )
1082 {
1083 m_reporter->Report( ( "Unable to save library\n" ), RPT_SEVERITY_ERROR );
1085 }
1086 }
1087 else
1088 {
1089 m_reporter->Report( _( "Symbol library was not updated\n" ), RPT_SEVERITY_ERROR );
1090 }
1091 }
1092 else
1093 {
1094 if( !SCH_IO_MGR::ConvertLibrary( nullptr, fn.GetAbsolutePath(),
1095 upgradeJob->m_outputLibraryPath ) )
1096 {
1097 m_reporter->Report( ( "Unable to convert library\n" ), RPT_SEVERITY_ERROR );
1099 }
1100 }
1101
1102 return CLI::EXIT_CODES::OK;
1103}
1104
1105
1106
1108{
1109 JOB_SCH_ERC* ercJob = dynamic_cast<JOB_SCH_ERC*>( aJob );
1110
1111 wxCHECK( ercJob, CLI::EXIT_CODES::ERR_UNKNOWN );
1112
1113 SCHEMATIC* sch = getSchematic( ercJob->m_filename );
1114
1115 if( !sch )
1117
1118 aJob->SetTitleBlock( sch->RootScreen()->GetTitleBlock() );
1119 sch->Prj().ApplyTextVars( aJob->GetVarOverrides() );
1120
1121 if( ercJob->GetConfiguredOutputPath().IsEmpty() )
1122 {
1123 wxFileName fn = sch->GetFileName();
1124 fn.SetName( fn.GetName() + wxS( "-erc" ) );
1125
1127 fn.SetExt( FILEEXT::JsonFileExtension );
1128 else
1129 fn.SetExt( FILEEXT::ReportFileExtension );
1130
1131 ercJob->SetConfiguredOutputPath( fn.GetFullName() );
1132 }
1133
1134 wxString outPath = ercJob->GetFullOutputPath( &sch->Prj() );
1135
1136 if( !PATHS::EnsurePathExists( outPath, true ) )
1137 {
1138 m_reporter->Report( _( "Failed to create output directory\n" ), RPT_SEVERITY_ERROR );
1140 }
1141
1142 EDA_UNITS units;
1143
1144 switch( ercJob->m_units )
1145 {
1146 case JOB_SCH_ERC::UNITS::INCH: units = EDA_UNITS::INCH; break;
1147 case JOB_SCH_ERC::UNITS::MILS: units = EDA_UNITS::MILS; break;
1148 case JOB_SCH_ERC::UNITS::MM: units = EDA_UNITS::MM; break;
1149 default: units = EDA_UNITS::MM; break;
1150 }
1151
1152 std::shared_ptr<SHEETLIST_ERC_ITEMS_PROVIDER> markersProvider =
1153 std::make_shared<SHEETLIST_ERC_ITEMS_PROVIDER>( sch );
1154
1155 ERC_TESTER ercTester( sch );
1156
1157 std::unique_ptr<DS_PROXY_VIEW_ITEM> drawingSheet( getDrawingSheetProxyView( sch ) );
1158 ercTester.RunTests( drawingSheet.get(), nullptr, m_kiway->KiFACE( KIWAY::FACE_CVPCB ),
1159 &sch->Prj(), m_progressReporter );
1160
1161 markersProvider->SetSeverities( ercJob->m_severity );
1162
1163 m_reporter->Report( wxString::Format( _( "Found %d violations\n" ),
1164 markersProvider->GetCount() ),
1166
1167 ERC_REPORT reportWriter( sch, units );
1168
1169 bool wroteReport = false;
1170
1172 wroteReport = reportWriter.WriteJsonReport( outPath );
1173 else
1174 wroteReport = reportWriter.WriteTextReport( outPath );
1175
1176 if( !wroteReport )
1177 {
1178 m_reporter->Report( wxString::Format( _( "Unable to save ERC report to %s\n" ), outPath ),
1181 }
1182
1183 m_reporter->Report( wxString::Format( _( "Saved ERC Report to %s\n" ), outPath ),
1185
1186 if( ercJob->m_exitCodeViolations )
1187 {
1188 if( markersProvider->GetCount() > 0 )
1190 }
1191
1193}
1194
1195
1197{
1198 DS_PROXY_VIEW_ITEM* drawingSheet =
1200 &aSch->Prj(), &aSch->RootScreen()->GetTitleBlock(),
1201 aSch->GetProperties() );
1202
1203 drawingSheet->SetPageNumber( TO_UTF8( aSch->RootScreen()->GetPageNumber() ) );
1204 drawingSheet->SetSheetCount( aSch->RootScreen()->GetPageCount() );
1205 drawingSheet->SetFileName( TO_UTF8( aSch->RootScreen()->GetFileName() ) );
1208 drawingSheet->SetIsFirstPage( aSch->RootScreen()->GetVirtualPageNumber() == 1 );
1209
1210 drawingSheet->SetSheetName( "" );
1211 drawingSheet->SetSheetPath( "" );
1212
1213 return drawingSheet;
1214}
const char * name
Definition: DXF_plotter.cpp:59
constexpr EDA_IU_SCALE schIUScale
Definition: base_units.h:110
int GetPageCount() const
Definition: base_screen.h:72
int GetVirtualPageNumber() const
Definition: base_screen.h:75
const wxString & GetPageNumber() const
Definition: base_screen.cpp:70
constexpr size_type GetWidth() const
Definition: box2.h:214
constexpr const Vec GetCenter() const
Definition: box2.h:230
constexpr size_type GetHeight() const
Definition: box2.h:215
Color settings are a bit different than most of the settings objects in that there can be more than o...
int ShowModal() override
bool LoadDrawingSheet(const wxString &aFullFileName, wxString *aMsg, bool aAppend=false)
Populate the list with a custom layout or the default layout if no custom layout is available.
static DS_DATA_MODEL & GetTheInstance()
Return the instance of DS_DATA_MODEL used in the application.
void SetSheetPath(const std::string &aSheetPath)
Set the sheet path displayed in the title block.
void SetSheetCount(int aSheetCount)
Change the sheet-count number displayed in the title block.
void SetPageNumber(const std::string &aPageNumber)
Change the page number displayed in the title block.
void SetSheetName(const std::string &aSheetName)
Set the sheet name displayed in the title block.
void SetPageBorderColorLayer(int aLayerId)
Override the layer used to pick the color of the page border (normally LAYER_GRID)
void SetIsFirstPage(bool aIsFirstPage)
Change if this is first page.
void SetFileName(const std::string &aFileName)
Set the file name displayed in the title block.
void SetColorLayer(int aLayerId)
Can be used to override which layer ID is used for drawing sheet item colors.
static SCHEMATIC * LoadSchematic(const wxString &aFileName, bool aSetActive, bool aForceDefaultProject, PROJECT *aProject=nullptr)
void InitRenderSettings(SCH_RENDER_SETTINGS *aRenderSettings, const wxString &aTheme, SCHEMATIC *aSch, const wxString &aDrawingSheetOverride=wxEmptyString)
Configure the SCH_RENDER_SETTINGS object with the correct data to be used with plotting.
SCHEMATIC * getSchematic(const wxString &aPath)
DS_PROXY_VIEW_ITEM * getDrawingSheetProxyView(SCHEMATIC *aSch)
EESCHEMA_JOBS_HANDLER(KIWAY *aKiway)
int doSymExportSvg(JOB_SYM_EXPORT_SVG *aSvgJob, SCH_RENDER_SETTINGS *aRenderSettings, LIB_SYMBOL *symbol)
bool WriteJsonReport(const wxString &aFullFileName)
Writes a JSON formatted ERC Report to the given file path.
Definition: erc_report.cpp:120
bool WriteTextReport(const wxString &aFullFileName)
Writes the text report also available via GetTextReport directly to a given file path.
Definition: erc_report.cpp:106
Definition: erc.h:52
void RunTests(DS_PROXY_VIEW_ITEM *aDrawingSheet, SCH_EDIT_FRAME *aEditFrame, KIFACE *aCvPcb, PROJECT *aProject, PROGRESS_REPORTER *aProgressReporter)
Definition: erc.cpp:1792
void ApplyBomPreset(const BOM_PRESET &preset)
wxString Export(const BOM_FMT_PRESET &settings)
void AddColumn(const wxString &aFieldName, const wxString &aLabel, bool aAddedByUser)
std::vector< BOM_FIELD > GetFieldsOrdered()
Provide an extensible class to resolve 3D model paths.
void SetProgramBase(PGM_BASE *aBase)
Set a pointer to the application's PGM_BASE instance used to extract the local env vars.
wxString ResolvePath(const wxString &aFileName, const wxString &aWorkingPath, const EMBEDDED_FILES *aFiles)
Determine the full path of the given file name.
bool SetProject(const PROJECT *aProject, bool *flgChanged=nullptr)
Set the current KiCad project directory as the first entry in the model path list.
void Register(const std::string &aJobTypeName, std::function< int(JOB *job)> aHandler, std::function< bool(JOB *job, wxWindow *aParent)> aConfigHandler)
PROGRESS_REPORTER * m_progressReporter
REPORTER * m_reporter
std::vector< wxString > m_fieldsLabels
std::vector< wxString > m_fieldsOrdered
std::vector< wxString > m_fieldsGroupBy
JOB_PAGE_SIZE m_pageSizeSelect
SCH_PLOT_FORMAT m_plotFormat
JOB_HPGL_PLOT_ORIGIN_AND_UNITS m_HPGLPlotOrigin
std::vector< wxString > m_plotPages
JOB_HPGL_PAGE_SIZE m_HPGLPaperSizeSelect
bool m_exitCodeViolations
Definition: job_rc.h:53
int m_severity
Definition: job_rc.h:50
UNITS m_units
Definition: job_rc.h:49
OUTPUT_FORMAT m_format
Definition: job_rc.h:51
wxString m_filename
Definition: job_rc.h:48
wxString m_outputLibraryPath
wxString m_libraryPath
An simple container class that lets us dispatch output jobs to kifaces.
Definition: job.h:182
void SetConfiguredOutputPath(const wxString &aPath)
Sets the configured output path for the job, this path is always saved to file.
Definition: job.cpp:153
wxString GetFullOutputPath(PROJECT *aProject) const
Returns the full output path for the job, taking into account the configured output path,...
Definition: job.cpp:100
bool GetOutputPathIsDirectory() const
Definition: job.h:247
wxString GetConfiguredOutputPath() const
Returns the configured output path for the job.
Definition: job.h:226
void SetTitleBlock(const TITLE_BLOCK &aTitleBlock)
Definition: job.h:197
const std::map< wxString, wxString > & GetVarOverrides() const
Definition: job.h:190
void SetDefaultPenWidth(int aWidth)
void SetGapLengthRatio(double aRatio)
void SetDashLengthRatio(double aRatio)
A minimalistic software bus for communications between various DLLs/DSOs (DSOs) within the same KiCad...
Definition: kiway.h:285
virtual KIWAY_PLAYER * Player(FRAME_T aFrameType, bool doCreate=true, wxTopLevelWindow *aParent=nullptr)
Return the KIWAY_PLAYER* given a FRAME_T.
Definition: kiway.cpp:406
virtual KIFACE * KiFACE(FACE_T aFaceId, bool doLoad=true)
Return the KIFACE* given a FACE_T.
Definition: kiway.cpp:201
@ FACE_CVPCB
Definition: kiway.h:294
Define a library symbol object.
Definition: lib_symbol.h:85
bool IsDerived() const
Definition: lib_symbol.h:207
void Plot(PLOTTER *aPlotter, bool aBackground, const SCH_PLOT_OPTS &aPlotOpts, int aUnit, int aBodyStyle, const VECTOR2I &aOffset, bool aDimmed) override
Plot the item to aPlotter.
Definition: lib_symbol.cpp:635
bool HasAlternateBodyStyle() const override
Test if symbol has more than one body conversion type (DeMorgan).
void PlotFields(PLOTTER *aPlotter, bool aBackground, const SCH_PLOT_OPTS &aPlotOpts, int aUnit, int aBodyStyle, const VECTOR2I &aOffset, bool aDimmed)
Plot symbol fields.
Definition: lib_symbol.cpp:677
wxString GetName() const override
Definition: lib_symbol.h:149
int GetUnitCount() const override
std::unique_ptr< LIB_SYMBOL > Flatten() const
Return a flattened symbol inheritance to the caller.
Definition: lib_symbol.cpp:342
LIB_SYMBOL_SPTR GetRootSymbol() const
Get the parent symbol that does not have another parent.
Definition: lib_symbol.cpp:274
Instantiate the current locale within a scope in which you are expecting exceptions to be thrown.
Definition: locale_io.h:49
Describe the page size and margins of a paper page on which to eventually print or plot.
Definition: page_info.h:59
int GetHeightIU(double aIUScale) const
Gets the page height in IU.
Definition: page_info.h:162
static const wxChar Custom[]
"User" defined page type
Definition: page_info.h:82
void SetHeightMils(double aHeightInMils)
Definition: page_info.cpp:261
int GetWidthIU(double aIUScale) const
Gets the page width in IU.
Definition: page_info.h:153
void SetWidthMils(double aWidthInMils)
Definition: page_info.cpp:247
static bool EnsurePathExists(const wxString &aPath, bool aPathToFile=false)
Attempts to create a given path if it does not exist.
Definition: paths.cpp:482
virtual SETTINGS_MANAGER & GetSettingsManager() const
Definition: pgm_base.h:125
virtual bool OpenFile(const wxString &aFullFilename)
Open or create the plot file aFullFilename.
Definition: plotter.cpp:75
virtual void SetPageSettings(const PAGE_INFO &aPageSettings)
Definition: plotter.h:138
void SetRenderSettings(RENDER_SETTINGS *aSettings)
Definition: plotter.h:135
virtual void SetCreator(const wxString &aCreator)
Definition: plotter.h:157
virtual void SetColorMode(bool aColorMode)
Plot in B/W or color.
Definition: plotter.h:132
Container for project specific data.
Definition: project.h:64
virtual void ApplyTextVars(const std::map< wxString, wxString > &aVarsMap)
Applies the given var map, it will create or update existing vars.
Definition: project.cpp:101
virtual REPORTER & Report(const wxString &aText, SEVERITY aSeverity=RPT_SEVERITY_UNDEFINED)
Report a string with a given severity.
Definition: reporter.h:102
virtual bool HasMessageOfSeverity(int aSeverityMask) const
Returns true if the reporter has one or more messages matching the specified severity mask.
Definition: reporter.h:140
wxString m_SchDrawingSheetFileName
std::vector< BOM_PRESET > m_BomPresets
std::vector< BOM_FMT_PRESET > m_BomFmtPresets
Holds all the data relating to one schematic.
Definition: schematic.h:69
PROJECT & Prj() const
Return a reference to the project this schematic is part of.
Definition: schematic.h:84
wxString GetFileName() const
Helper to retrieve the filename from the root sheet screen.
Definition: schematic.cpp:300
SCHEMATIC_SETTINGS & Settings() const
Definition: schematic.cpp:306
SCH_SHEET_LIST Hierarchy() const
Return the full schematic flattened hierarchical sheet list.
Definition: schematic.cpp:208
EMBEDDED_FILES * GetEmbeddedFiles() override
Definition: schematic.cpp:871
SCH_SCREEN * RootScreen() const
Helper to retrieve the screen of the root sheet.
Definition: schematic.cpp:202
const std::map< wxString, wxString > * GetProperties()
Definition: schematic.h:87
Schematic editor (Eeschema) main window.
SCHEMATIC & Schematic() const
A cache assistant for the KiCad s-expression symbol libraries.
void Save(const std::optional< bool > &aOpt=std::nullopt) override
Save the entire library to file m_libFileName;.
virtual LIB_SYMBOL * GetSymbol(const wxString &aName)
void SetFileName(const wxString &aFileName)
const LIB_SYMBOL_MAP & GetSymbolMap() const
void SetModified(bool aModified=true)
static bool ConvertLibrary(std::map< std::string, UTF8 > *aOldFileProps, const wxString &aOldFilePath, const wxString &aNewFilepath)
Convert a schematic symbol library to the latest KiCad format.
Definition: sch_io_mgr.cpp:205
static SCH_FILE_T GuessPluginTypeFromLibPath(const wxString &aLibPath, int aCtl=0)
Return a plugin type given a symbol library using the file extension of aLibPath.
Definition: sch_io_mgr.cpp:140
Container to create a flattened list of symbols because in a complex hierarchy, a symbol can be used ...
size_t GetCount() const
int CheckAnnotation(ANNOTATION_ERROR_HANDLER aErrorHandler)
Check for annotations errors.
A helper to define a symbol's reference designator in a schematic.
void LoadColors(const COLOR_SETTINGS *aSettings) override
const PAGE_INFO & GetPageSettings() const
Definition: sch_screen.h:134
const wxString & GetFileName() const
Definition: sch_screen.h:147
const TITLE_BLOCK & GetTitleBlock() const
Definition: sch_screen.h:158
void GetSymbols(SCH_REFERENCE_LIST &aReferences, bool aIncludePowerSymbols=true, bool aForceIncludeOrphanSymbols=false) const
Add a SCH_REFERENCE object to aReferences for each symbol in the list of sheets.
Schematic symbol object.
Definition: sch_symbol.h:75
void GetFields(std::vector< SCH_FIELD * > &aVector, bool aVisibleOnly) const override
Populate a std::vector with SCH_FIELDs, sorted in ordinal order.
Definition: sch_symbol.cpp:841
COLOR_SETTINGS * GetColorSettings(const wxString &aName="user")
Retrieve a color settings object that applications can read colors from.
PROJECT & Prj() const
A helper while we are not MDI-capable – return the one and only project.
virtual bool StartPlot(const wxString &aPageNumber) override
Create SVG file header.
virtual void SetViewport(const VECTOR2I &aOffset, double aIusPerDecimil, double aScale, bool aMirror) override
Set the plot offset and scaling for the current plot.
virtual bool EndPlot() override
const std::vector< TEMPLATE_FIELDNAME > & GetTemplateFieldNames()
Return a template field name list for read only access.
bool IsTextVar(const wxString &aSource)
Returns true if the string is a text var, e.g starts with ${.
Definition: common.cpp:133
wxString GetTextVars(const wxString &aSource)
Returns any variables unexpanded, e.g.
Definition: common.cpp:121
The common library.
#define DEFAULT_LINE_WIDTH_MILS
The default wire width in mils. (can be changed in preference menu)
#define _(s)
EDA_UNITS
Definition: eda_units.h:46
ERCE_T
ERC error codes.
Definition: erc_settings.h:37
@ FRAME_SCH
Definition: frame_type.h:34
static const std::string CadstarNetlistFileExtension
static const std::string NetlistFileExtension
static const std::string ReportFileExtension
static const std::string JsonFileExtension
static const std::string XmlFileExtension
static const std::string KiCadSchematicFileExtension
static const std::string OrCadPcb2NetlistFileExtension
static const std::string CsvFileExtension
static const std::string SpiceFileExtension
static const std::string SVGFileExtension
@ LAYER_SCHEMATIC_DRAWINGSHEET
Definition: layer_ids.h:484
@ LAYER_SCHEMATIC_PAGE_LIMITS
Definition: layer_ids.h:485
std::shared_ptr< LIB_SYMBOL > LIB_SYMBOL_SPTR
shared pointer to LIB_SYMBOL
Definition: lib_symbol.h:52
static const int ERR_ARGS
Definition: exit_codes.h:31
static const int OK
Definition: exit_codes.h:30
static const int ERR_RC_VIOLATIONS
Rules check violation count was greater than 0.
Definition: exit_codes.h:37
static const int ERR_INVALID_INPUT_FILE
Definition: exit_codes.h:33
static const int SUCCESS
Definition: exit_codes.h:29
static const int ERR_INVALID_OUTPUT_CONFLICT
Definition: exit_codes.h:34
static const int ERR_UNKNOWN
Definition: exit_codes.h:32
bool contains(const _Container &__container, _Value __value)
Returns true if the container contains the given value.
Definition: kicad_algo.h:100
@ GNL_OPT_BOM
SETTINGS_MANAGER * GetSettingsManager()
PGM_BASE & Pgm()
The global program "get" accessor.
Definition: pgm_base.cpp:1071
see class PGM_BASE
PLOT_FORMAT
The set of supported output plot formats.
Definition: plotter.h:65
Plotting engines similar to ps (PostScript, Gerber, svg)
@ RPT_SEVERITY_WARNING
@ RPT_SEVERITY_ERROR
@ RPT_SEVERITY_INFO
@ RPT_SEVERITY_ACTION
#define SEXPR_SYMBOL_LIB_FILE_VERSION
This file contains the file format version information for the s-expression schematic and symbol libr...
HPGL_PAGE_SIZE
Definition: sch_plotter.h:64
HPGL_PLOT_ORIGIN_AND_UNITS
Definition: sch_plotter.h:47
const int scale
MODEL3D_FORMAT_TYPE fileType(const char *aFileName)
#define TO_UTF8(wxstring)
Convert a wxString to a UTF8 encoded C string for all wxWidgets build modes.
Definition: string_utils.h:403
wxString label
Definition: bom_settings.h:33
bool groupBy
Definition: bom_settings.h:35
wxString name
Definition: bom_settings.h:32
wxString fieldDelimiter
Definition: bom_settings.h:83
static std::vector< BOM_FMT_PRESET > BuiltInPresets()
wxString stringDelimiter
Definition: bom_settings.h:84
wxString refRangeDelimiter
Definition: bom_settings.h:86
wxString refDelimiter
Definition: bom_settings.h:85
wxString sortField
Definition: bom_settings.h:54
bool groupSymbols
Definition: bom_settings.h:57
std::vector< BOM_FIELD > fieldsOrdered
Definition: bom_settings.h:53
bool includeExcludedFromBOM
Definition: bom_settings.h:59
static std::vector< BOM_PRESET > BuiltInPresets()
bool excludeDNP
Definition: bom_settings.h:58
bool sortAsc
Definition: bom_settings.h:55
wxString filterString
Definition: bom_settings.h:56
constexpr int IUToMils(int iu) const
Definition: base_units.h:99
const double IU_PER_MILS
Definition: base_units.h:77
std::vector< wxString > m_plotPages
Definition: sch_plotter.h:84
wxString m_theme
Definition: sch_plotter.h:94
bool m_PDFPropertyPopups
Definition: sch_plotter.h:91
wxString m_outputDirectory
Definition: sch_plotter.h:96
HPGL_PLOT_ORIGIN_AND_UNITS m_HPGLPlotOrigin
Definition: sch_plotter.h:99
wxString m_outputFile
Definition: sch_plotter.h:97
int m_pageSizeSelect
Definition: sch_plotter.h:87
bool m_PDFMetadata
Definition: sch_plotter.h:93
bool m_blackAndWhite
Definition: sch_plotter.h:86
HPGL_PAGE_SIZE m_HPGLPaperSizeSelect
Definition: sch_plotter.h:90
double m_HPGLPenSize
Definition: sch_plotter.h:89
bool m_PDFHierarchicalLinks
Definition: sch_plotter.h:92
bool m_useBackgroundColor
Definition: sch_plotter.h:88
bool m_plotDrawingSheet
Definition: sch_plotter.h:83
Hold a name of a symbol's field, field value, and default visibility.
std::map< wxString, LIB_SYMBOL *, LibSymbolMapSort > LIB_SYMBOL_MAP
wxString GetDefaultFieldName(FIELD_T aFieldId, bool aTranslateForHI)
Return a default symbol field name for a mandatory field type.
#define DO_TRANSLATE
#define MANDATORY_FIELDS
FIELD_T
The set of all field indices assuming an array like sequence that a SCH_COMPONENT or LIB_PART can hol...
wxString GetCanonicalFieldName(FIELD_T aFieldType)
VECTOR3I res
Definition of file extensions used in Kicad.