KiCad PCB EDA Suite
Loading...
Searching...
No Matches
connectivity_data.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) 2013-2017 CERN
5 * Copyright (C) 2018-2023 KiCad Developers, see AUTHORS.txt for contributors.
6 * @author Maciej Suminski <[email protected]>
7 * @author Tomasz Wlostowski <[email protected]>
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version 2
12 * of the License, or (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, you may find one here:
21 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
22 * or you may search the http://www.gnu.org website for the version 2 license,
23 * or you may write to the Free Software Foundation, Inc.,
24 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
25 */
26
27#ifndef __CONNECTIVITY_DATA_H
28#define __CONNECTIVITY_DATA_H
29
30#include <core/typeinfo.h>
31#include <core/spinlock.h>
32
33#include <memory>
34#include <mutex>
35#include <vector>
36#include <wx/string.h>
37
38#include <math/vector2d.h>
41#include <zone.h>
42
43class FROM_TO_CACHE;
44class CN_CLUSTER;
46class CN_EDGE;
47class BOARD;
48class BOARD_COMMIT;
50class BOARD_ITEM;
51class ZONE;
52class RN_DATA;
53class RN_NET;
54class PCB_TRACK;
55class PCB_VIA;
56class PAD;
57class FOOTPRINT;
59
60
62{
63 int net;
66};
67
68
70{
73};
74
75
80{
83};
84
85
86// a wrapper class encompassing the connectivity computation algorithm and the
88{
89public:
92
93 CONNECTIVITY_DATA( std::shared_ptr<CONNECTIVITY_DATA> aGlobalConnectivity,
94 const std::vector<BOARD_ITEM*>& aLocalItems, bool aSkipRatsnestUpdate = false );
95
100 bool Build( BOARD* aBoard, PROGRESS_REPORTER* aReporter = nullptr );
101
106 void Build( std::shared_ptr<CONNECTIVITY_DATA>& aGlobalConnectivity,
107 const std::vector<BOARD_ITEM*>& aLocalItems );
108
115 bool Add( BOARD_ITEM* aItem );
116
123 bool Remove( BOARD_ITEM* aItem );
124
131 bool Update( BOARD_ITEM* aItem );
132
140 void Move( const VECTOR2I& aDelta );
141
146 void ClearRatsnest();
147
152 int GetNetCount() const;
153
158 RN_NET* GetRatsnestForNet( int aNet );
159
165 void PropagateNets( BOARD_COMMIT* aCommit = nullptr );
166
171 void FillIsolatedIslandsMap( std::map<ZONE*, std::map<PCB_LAYER_ID, ISOLATED_ISLANDS>>& aMap,
172 bool aConnectivityAlreadyRebuilt = false );
173
179 void RecalculateRatsnest( BOARD_COMMIT* aCommit = nullptr );
180
185 unsigned int GetUnconnectedCount( bool aVisibileOnly ) const;
186
187 bool IsConnectedOnLayer( const BOARD_CONNECTED_ITEM* aItem, int aLayer,
188 const std::initializer_list<KICAD_T>& aTypes = {} ) const;
189
190 unsigned int GetNodeCount( int aNet = -1 ) const;
191
192 unsigned int GetPadCount( int aNet = -1 ) const;
193
194 const std::vector<PCB_TRACK*> GetConnectedTracks( const BOARD_CONNECTED_ITEM* aItem ) const;
195
196 const std::vector<PAD*> GetConnectedPads( const BOARD_CONNECTED_ITEM* aItem ) const;
197
198 void GetConnectedPads( const BOARD_CONNECTED_ITEM* aItem, std::set<PAD*>* pads ) const;
199
200 void GetConnectedPadsAndVias( const BOARD_CONNECTED_ITEM* aItem, std::vector<PAD*>* pads,
201 std::vector<PCB_VIA*>* vias );
202
213 const std::vector<BOARD_CONNECTED_ITEM*>
214 GetConnectedItemsAtAnchor( const BOARD_CONNECTED_ITEM* aItem, const VECTOR2I& aAnchor,
215 const std::vector<KICAD_T>& aTypes, const int& aMaxError = 0 ) const;
216
217 void RunOnUnconnectedEdges( std::function<bool( CN_EDGE& )> aFunc );
218
219 bool TestTrackEndpointDangling( PCB_TRACK* aTrack, bool aIgnoreTracksInPads,
220 VECTOR2I* aPos = nullptr ) const;
221
227 void ClearLocalRatsnest();
228
232 void HideLocalRatsnest();
233
238 void ComputeLocalRatsnest( const std::vector<BOARD_ITEM*>& aItems,
239 const CONNECTIVITY_DATA* aDynamicData,
240 VECTOR2I aInternalOffset = { 0, 0 } );
241
242 const std::vector<RN_DYNAMIC_LINE>& GetLocalRatsnest() const { return m_dynamicRatsnest; }
243
250 const std::vector<BOARD_CONNECTED_ITEM*>
251 GetConnectedItems( const BOARD_CONNECTED_ITEM* aItem, const std::vector<KICAD_T>& aTypes,
252 bool aIgnoreNetcodes = false ) const;
253
260 const std::vector<BOARD_CONNECTED_ITEM*>
261 GetNetItems( int aNetCode, const std::vector<KICAD_T>& aTypes ) const;
262
263 void BlockRatsnestItems( const std::vector<BOARD_ITEM*>& aItems );
264
265 std::shared_ptr<CN_CONNECTIVITY_ALGO> GetConnectivityAlgo() const { return m_connAlgo; }
266
267 KISPINLOCK& GetLock() { return m_lock; }
268
269 void MarkItemNetAsDirty( BOARD_ITEM* aItem );
270 void RemoveInvalidRefs();
271
272 void SetProgressReporter( PROGRESS_REPORTER* aReporter );
273
274 const NET_SETTINGS* GetNetSettings() const;
275
276 bool HasNetNameForNetCode( int nc ) const { return m_netcodeMap.count( nc ) > 0; }
277 const wxString& GetNetNameForNetCode( int nc ) const { return m_netcodeMap.at( nc ); }
278
280 void RefreshNetcodeMap( BOARD* aBoard );
281
282#ifndef SWIG
283 const std::vector<CN_EDGE> GetRatsnestForItems( const std::vector<BOARD_ITEM*>& aItems );
284
285 const std::vector<CN_EDGE> GetRatsnestForPad( const PAD* aPad );
286
287 const std::vector<CN_EDGE> GetRatsnestForComponent( FOOTPRINT* aComponent,
288 bool aSkipInternalConnections = false );
289#endif
290
291 std::shared_ptr<FROM_TO_CACHE> GetFromToCache() { return m_fromToCache; }
292
293private:
294
299 void internalRecalculateRatsnest( BOARD_COMMIT* aCommit = nullptr );
300 void updateRatsnest();
301
302 void addRatsnestCluster( const std::shared_ptr<CN_CLUSTER>& aCluster );
303
304private:
305 std::shared_ptr<CN_CONNECTIVITY_ALGO> m_connAlgo;
306
307 std::shared_ptr<FROM_TO_CACHE> m_fromToCache;
308 std::vector<RN_DYNAMIC_LINE> m_dynamicRatsnest;
309 std::vector<RN_NET*> m_nets;
310
313
315
317
319 std::weak_ptr<NET_SETTINGS> m_netSettings;
320
322 std::map<int, wxString> m_netcodeMap;
323};
324
325#endif
A base class derived from BOARD_ITEM for items that can be connected and have a net,...
A base class for any item which can be embedded within the BOARD container class, and therefore insta...
Definition: board_item.h:80
Information pertinent to a Pcbnew printed circuit board.
Definition: board.h:290
CN_EDGE represents a point-to-point connection, whether realized or unrealized (ie: tracks etc.
void FillIsolatedIslandsMap(std::map< ZONE *, std::map< PCB_LAYER_ID, ISOLATED_ISLANDS > > &aMap, bool aConnectivityAlreadyRebuilt=false)
Fill the isolate islands list for each layer of each zone.
void RecalculateRatsnest(BOARD_COMMIT *aCommit=nullptr)
Function RecalculateRatsnest() Updates the ratsnest for the board.
void ClearLocalRatsnest()
Function ClearLocalRatsnest() Erases the temporary, selection-based ratsnest (i.e.
PROGRESS_REPORTER * m_progressReporter
const std::vector< RN_DYNAMIC_LINE > & GetLocalRatsnest() const
unsigned int GetPadCount(int aNet=-1) const
void MarkItemNetAsDirty(BOARD_ITEM *aItem)
std::weak_ptr< NET_SETTINGS > m_netSettings
Used to get netclass data when drawing ratsnests.
void PropagateNets(BOARD_COMMIT *aCommit=nullptr)
Propagates the net codes from the source pads to the tracks/vias.
KISPINLOCK & GetLock()
void RunOnUnconnectedEdges(std::function< bool(CN_EDGE &)> aFunc)
std::vector< RN_DYNAMIC_LINE > m_dynamicRatsnest
bool m_skipRatsnestUpdate
Used to suppress ratsnest calculations on dynamic ratsnests.
const std::vector< CN_EDGE > GetRatsnestForPad(const PAD *aPad)
RN_NET * GetRatsnestForNet(int aNet)
Function GetRatsnestForNet() Returns the ratsnest, expressed as a set of graph edges for a given net.
const std::vector< BOARD_CONNECTED_ITEM * > GetConnectedItemsAtAnchor(const BOARD_CONNECTED_ITEM *aItem, const VECTOR2I &aAnchor, const std::vector< KICAD_T > &aTypes, const int &aMaxError=0) const
Function GetConnectedItemsAtAnchor() Returns a list of items connected to a source item aItem at posi...
const wxString & GetNetNameForNetCode(int nc) const
void ClearRatsnest()
Function Clear() Erases the connectivity database.
bool Remove(BOARD_ITEM *aItem)
Function Remove() Removes an item from the connectivity data.
void GetConnectedPadsAndVias(const BOARD_CONNECTED_ITEM *aItem, std::vector< PAD * > *pads, std::vector< PCB_VIA * > *vias)
const NET_SETTINGS * GetNetSettings() const
void ComputeLocalRatsnest(const std::vector< BOARD_ITEM * > &aItems, const CONNECTIVITY_DATA *aDynamicData, VECTOR2I aInternalOffset={ 0, 0 })
Function ComputeLocalRatsnest() Calculates the temporary (usually selection-based) ratsnest for the s...
bool TestTrackEndpointDangling(PCB_TRACK *aTrack, bool aIgnoreTracksInPads, VECTOR2I *aPos=nullptr) const
unsigned int GetNodeCount(int aNet=-1) const
void SetProgressReporter(PROGRESS_REPORTER *aReporter)
void BlockRatsnestItems(const std::vector< BOARD_ITEM * > &aItems)
bool IsConnectedOnLayer(const BOARD_CONNECTED_ITEM *aItem, int aLayer, const std::initializer_list< KICAD_T > &aTypes={}) const
const std::vector< PCB_TRACK * > GetConnectedTracks(const BOARD_CONNECTED_ITEM *aItem) const
const std::vector< CN_EDGE > GetRatsnestForComponent(FOOTPRINT *aComponent, bool aSkipInternalConnections=false)
const std::vector< BOARD_CONNECTED_ITEM * > GetNetItems(int aNetCode, const std::vector< KICAD_T > &aTypes) const
Function GetNetItems() Returns the list of items that belong to a certain net.
bool Add(BOARD_ITEM *aItem)
Function Add() Adds an item to the connectivity data.
std::shared_ptr< CN_CONNECTIVITY_ALGO > m_connAlgo
bool Build(BOARD *aBoard, PROGRESS_REPORTER *aReporter=nullptr)
Function Build() Builds the connectivity database for the board aBoard.
const std::vector< BOARD_CONNECTED_ITEM * > GetConnectedItems(const BOARD_CONNECTED_ITEM *aItem, const std::vector< KICAD_T > &aTypes, bool aIgnoreNetcodes=false) const
Function GetConnectedItems() Returns a list of items connected to a source item aItem.
std::shared_ptr< FROM_TO_CACHE > m_fromToCache
const std::vector< PAD * > GetConnectedPads(const BOARD_CONNECTED_ITEM *aItem) const
unsigned int GetUnconnectedCount(bool aVisibileOnly) const
bool HasNetNameForNetCode(int nc) const
std::map< int, wxString > m_netcodeMap
Used to map netcode to net name.
void internalRecalculateRatsnest(BOARD_COMMIT *aCommit=nullptr)
Updates the ratsnest for the board without locking the connectivity mutex.
void RefreshNetcodeMap(BOARD *aBoard)
Refresh the map of netcodes to net names.
void HideLocalRatsnest()
Hides the temporary, selection-based ratsnest lines.
const std::vector< CN_EDGE > GetRatsnestForItems(const std::vector< BOARD_ITEM * > &aItems)
void addRatsnestCluster(const std::shared_ptr< CN_CLUSTER > &aCluster)
std::vector< RN_NET * > m_nets
std::shared_ptr< FROM_TO_CACHE > GetFromToCache()
bool Update(BOARD_ITEM *aItem)
Function Update() Updates the connectivity data for an item.
void Move(const VECTOR2I &aDelta)
Moves the connectivity list anchors.
int GetNetCount() const
Function GetNetCount() Returns the total number of nets in the connectivity database.
std::shared_ptr< CN_CONNECTIVITY_ALGO > GetConnectivityAlgo() const
A trivial spinlock implementation with no optimization.
Definition: spinlock.h:30
NET_SETTINGS stores various net-related settings in a project context.
Definition: net_settings.h:39
Definition: pad.h:54
A progress reporter interface for use in multi-threaded environments.
Describe ratsnest for a single net.
Definition: ratsnest_data.h:63
Handle a list of polygons defining a copper zone.
Definition: zone.h:73
PROPAGATE_MODE
Controls how nets are propagated through clusters.
@ SKIP_CONFLICTS
Clusters with conflicting drivers are not updated (default)
@ RESOLVE_CONFLICTS
Clusters with conflicting drivers are updated to the most popular net.
BOARD_CONNECTED_ITEM * b
BOARD_CONNECTED_ITEM * a
int net
VECTOR2I anchorB
VECTOR2I anchorA