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 aExcludeFromPosFiles, const std::map<wxString, wxString>& aPinMap,
95 const std::map<wxString, wxString>& aFieldsMap ) :
96 m_ref( aRef ),
97 m_footprint( aFootprint ),
98 m_value( aValue ),
99 m_DNP( aDNP ),
100 m_excludeFromBOM( aExcludeFromBOM ),
101 m_excludeFromPosFiles( aExcludeFromPosFiles ),
102 m_pinMap( aPinMap ),
103 m_fieldsMap( aFieldsMap )
104 {}
105
106 wxString m_ref;
107 wxString m_footprint;
108 wxString m_value;
109 bool m_DNP;
112 std::map<wxString, wxString> m_pinMap;
113 std::map<wxString, wxString> m_fieldsMap;
114 };
115
117 using PCB_FOOTPRINTS_MAP = std::map<wxString, std::shared_ptr<PCB_FP_DATA>>;
118
119 using CHANGELIST_ITEM = std::pair<SCH_REFERENCE, std::shared_ptr<PCB_FP_DATA>>;
120
121 BACK_ANNOTATE( SCH_EDIT_FRAME* aFrame, REPORTER& aReporter, bool aRelinkFootprints,
122 bool aProcessFootprints, bool aProcessValues, bool aProcessReferences,
123 bool aProcessNetNames, bool aProcessAttributes, bool aProcessOtherFields,
124 bool aPreferUnitSwaps, bool aPreferPinSwaps, bool aDryRun );
125
126 ~BACK_ANNOTATE() = default;
127
134 bool FetchNetlistFromPCB( std::string& aNetlist );
135
136 void PushNewLinksToPCB();
137
144 bool BackAnnotateSymbols( const std::string& aNetlist );
145
146private:
153 void getPcbModulesFromString( const std::string& aPayload );
154
156 void getChangeList();
157
164
168 void applyChangelist();
169
173 std::set<wxString> applyPinSwaps( SCH_SYMBOL* aSymbol, const SCH_REFERENCE& aReference, const PCB_FP_DATA& aFpData,
174 SCH_COMMIT* aCommit );
175
176 void processNetNameChange( SCH_COMMIT* aCommit, const wxString& aRef, SCH_PIN* aPin,
177 const SCH_CONNECTION* aConnection, const wxString& aOldName, const wxString& aNewName );
178
179private:
181
192
196 std::deque<CHANGELIST_ITEM> m_changelist;
198
199 int m_changesCount; // Number of user-level changes
200};
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:71
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:69
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.
PCB_FP_DATA(const wxString &aRef, const wxString &aFootprint, const wxString &aValue, bool aDNP, bool aExcludeFromBOM, bool aExcludeFromPosFiles, const std::map< wxString, wxString > &aPinMap, const std::map< wxString, wxString > &aFieldsMap)
std::map< wxString, wxString > m_pinMap
std::map< wxString, wxString > m_fieldsMap