KiCad PCB EDA Suite
Loading...
Searching...
No Matches
backannotate.h
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) 2019 Alexander Shuklin <[email protected]>
5 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
19 */
20
21#pragma once
22
23#include <deque>
24#include <map>
25#include <set>
26#include <memory>
27#include <vector>
28#include <sch_reference_list.h>
29#include <template_fieldnames.h>
30#include <wx/string.h>
31
32// Forward declarations
33class REPORTER;
34class SCH_SHEET_LIST;
35class SCH_EDIT_FRAME;
36class SCH_COMMIT;
37
39{
40 wxString m_ref;
42 std::map<wxString, wxString> m_schNetsByPin;
43 std::vector<wxString> m_unitPinNumbers;
44};
45
47{
48 size_t m_firstIndex = 0;
49 size_t m_secondIndex = 0;
50 int m_firstUnit = 0;
51 int m_secondUnit = 0;
52};
53
55{
56 bool m_mappingOk = false;
57 bool m_identity = true;
58 std::vector<BACKANNOTATE_UNIT_SWAP_STEP> m_steps;
59 std::set<size_t> m_swappedCandidateIndices;
60};
61
69 const std::vector<BACKANNOTATE_UNIT_SWAP_CANDIDATE>& aCandidates,
70 const std::map<wxString, wxString>& aPcbPinMap );
71
86{
87public:
92 {
93 PCB_FP_DATA( const wxString& aRef, const wxString& aFootprint, const wxString& aValue, bool aDNP,
94 bool aExcludeFromBOM, bool aExcludeFromSim, bool aExcludeFromPosFiles,
95 const std::map<wxString, wxString>& aPinMap,
96 const std::map<wxString, wxString>& aFieldsMap ) :
97 m_ref( aRef ),
98 m_footprint( aFootprint ),
99 m_value( aValue ),
100 m_DNP( aDNP ),
101 m_excludeFromBOM( aExcludeFromBOM ),
102 m_excludeFromSim( aExcludeFromSim ),
103 m_excludeFromPosFiles( aExcludeFromPosFiles ),
104 m_pinMap( aPinMap ),
105 m_fieldsMap( aFieldsMap )
106 {}
107
108 wxString m_ref;
109 wxString m_footprint;
110 wxString m_value;
111 bool m_DNP;
115 std::map<wxString, wxString> m_pinMap;
116 std::map<wxString, wxString> m_fieldsMap;
117 };
118
120 using PCB_FOOTPRINTS_MAP = std::map<wxString, std::shared_ptr<PCB_FP_DATA>>;
121
122 using CHANGELIST_ITEM = std::pair<SCH_REFERENCE, std::shared_ptr<PCB_FP_DATA>>;
123
124 BACK_ANNOTATE( SCH_EDIT_FRAME* aFrame, REPORTER& aReporter, bool aRelinkFootprints,
125 bool aProcessFootprints, bool aProcessValues, bool aProcessReferences,
126 bool aProcessNetNames, bool aProcessAttributes, bool aProcessOtherFields,
127 bool aPreferUnitSwaps, bool aPreferPinSwaps, bool aDryRun );
128
129 ~BACK_ANNOTATE() = default;
130
137 bool FetchNetlistFromPCB( std::string& aNetlist );
138
139 void PushNewLinksToPCB();
140
147 bool BackAnnotateSymbols( const std::string& aNetlist );
148
149private:
156 void getPcbModulesFromString( const std::string& aPayload );
157
159 void getChangeList();
160
167
171 void applyChangelist();
172
176 std::set<wxString> applyPinSwaps( SCH_SYMBOL* aSymbol, const SCH_REFERENCE& aReference, const PCB_FP_DATA& aFpData,
177 SCH_COMMIT* aCommit );
178
179 void processNetNameChange( SCH_COMMIT* aCommit, const wxString& aRef, SCH_PIN* aPin,
180 const SCH_CONNECTION* aConnection, const wxString& aOldName, const wxString& aNewName );
181
182private:
184
195
199 std::deque<CHANGELIST_ITEM> m_changelist;
201
202 int m_changesCount; // Number of user-level changes
203};
BACKANNOTATE_UNIT_SWAP_PLAN PlanBackannotateUnitSwaps(const std::vector< BACKANNOTATE_UNIT_SWAP_CANDIDATE > &aCandidates, const std::map< wxString, wxString > &aPcbPinMap)
Compute a pure unit-swap plan from schematic-side unit definitions and the final PCB pin map.
~BACK_ANNOTATE()=default
bool BackAnnotateSymbols(const std::string &aNetlist)
Run back annotation algorithm.
SCH_MULTI_UNIT_REFERENCE_MAP m_multiUnitsRefs
std::deque< CHANGELIST_ITEM > m_changelist
std::pair< SCH_REFERENCE, std::shared_ptr< PCB_FP_DATA > > CHANGELIST_ITEM
bool m_processReferences
bool m_processFootprints
bool m_processOtherFields
void getPcbModulesFromString(const std::string &aPayload)
Parse netlist sent over KiWay express mail interface and fill m_pcbModules.
SCH_EDIT_FRAME * m_frame
void checkForUnusedSymbols()
Check if some symbols are not represented in PCB footprints and vice versa.
SCH_REFERENCE_LIST m_refs
bool FetchNetlistFromPCB(std::string &aNetlist)
Get netlist from the Pcbnew.
PCB_FOOTPRINTS_MAP m_pcbFootprints
std::map< wxString, std::shared_ptr< PCB_FP_DATA > > PCB_FOOTPRINTS_MAP
void processNetNameChange(SCH_COMMIT *aCommit, const wxString &aRef, SCH_PIN *aPin, const SCH_CONNECTION *aConnection, const wxString &aOldName, const wxString &aNewName)
REPORTER & m_reporter
bool m_processAttributes
BACK_ANNOTATE(SCH_EDIT_FRAME *aFrame, REPORTER &aReporter, bool aRelinkFootprints, bool aProcessFootprints, bool aProcessValues, bool aProcessReferences, bool aProcessNetNames, bool aProcessAttributes, bool aProcessOtherFields, bool aPreferUnitSwaps, bool aPreferPinSwaps, bool aDryRun)
std::set< wxString > applyPinSwaps(SCH_SYMBOL *aSymbol, const SCH_REFERENCE &aReference, const PCB_FP_DATA &aFpData, SCH_COMMIT *aCommit)
Handle footprint pad net swaps with symbol pin swaps where possible.
bool m_matchByReference
void PushNewLinksToPCB()
void applyChangelist()
Apply changelist to the schematic.
A pure virtual class used to derive REPORTER objects from.
Definition reporter.h:73
Each graphical item can have a SCH_CONNECTION describing its logical connection (to a bus or net).
Schematic editor (Eeschema) main window.
Container to create a flattened list of symbols because in a complex hierarchy, a symbol can be used ...
A helper to define a symbol's reference designator in a schematic.
A container for handling SCH_SHEET_PATH objects in a flattened hierarchy.
Schematic symbol object.
Definition sch_symbol.h:75
std::map< wxString, SCH_REFERENCE_LIST > SCH_MULTI_UNIT_REFERENCE_MAP
Container to map reference designators for multi-unit parts.
std::vector< wxString > m_unitPinNumbers
std::map< wxString, wxString > m_schNetsByPin
std::vector< BACKANNOTATE_UNIT_SWAP_STEP > m_steps
std::set< size_t > m_swappedCandidateIndices
Container for Pcbnew footprint data.Map to hold NETLIST footprints data.
std::map< wxString, wxString > m_pinMap
PCB_FP_DATA(const wxString &aRef, const wxString &aFootprint, const wxString &aValue, bool aDNP, bool aExcludeFromBOM, bool aExcludeFromSim, bool aExcludeFromPosFiles, const std::map< wxString, wxString > &aPinMap, const std::map< wxString, wxString > &aFieldsMap)
std::map< wxString, wxString > m_fieldsMap