KiCad PCB EDA Suite
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
drc_test_provider_disallow.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 The KiCad Developers.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, you may find one here:
18 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
19 * or you may search the http://www.gnu.org website for the version 2 license,
20 * or you may write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
22 */
23
24#include <atomic>
25#include <common.h>
27#include <drc/drc_rtree.h>
28#include <drc/drc_engine.h>
29#include <drc/drc_item.h>
30#include <drc/drc_rule.h>
32#include <pad.h>
33#include <progress_reporter.h>
34#include <thread_pool.h>
35#include <zone.h>
36#include <pcb_track.h>
37#include <mutex>
38
39
40/*
41 "Disallow" test. Goes through all items, matching types/conditions drop errors.
42 Errors generated:
43 - DRCE_ALLOWED_ITEMS
44 - DRCE_TEXT_ON_EDGECUTS
45*/
46
48{
49public:
51 {
52 }
53
55 {
56 }
57
58 virtual bool Run() override;
59
60 virtual const wxString GetName() const override
61 {
62 return wxT( "disallow" );
63 };
64
65 virtual const wxString GetDescription() const override
66 {
67 return wxT( "Tests for disallowed items (e.g. keepouts)" );
68 }
69};
70
71
73{
74 if( !reportPhase( _( "Checking keepouts & disallow constraints..." ) ) )
75 return false; // DRC cancelled
76
77 BOARD* board = m_drcEngine->GetBoard();
79
80 // First build out the board's cache of copper-keepout to copper-zone caches. This is where
81 // the bulk of the time is spent, and we can do this in parallel.
82 //
83 std::vector<ZONE*> antiCopperKeepouts;
84 std::vector<ZONE*> copperZones;
85 std::vector<std::pair<ZONE*, ZONE*>> toCache;
86 std::atomic<size_t> done( 1 );
87 int totalCount = 0;
88 std::unique_ptr<DRC_RTREE> antiTrackKeepouts = std::make_unique<DRC_RTREE>();
89
91 [&]( BOARD_ITEM* item ) -> bool
92 {
93 ZONE* zone = static_cast<ZONE*>( item );
94
95 if( zone->GetIsRuleArea() && zone->GetDoNotAllowZoneFills() )
96 {
97 antiCopperKeepouts.push_back( zone );
98 }
99 else if( zone->GetIsRuleArea() && zone->GetDoNotAllowTracks() )
100 {
101 for( PCB_LAYER_ID layer : zone->GetLayerSet() )
102 antiTrackKeepouts->Insert( zone, layer );
103 }
104 else if( zone->IsOnCopperLayer() )
105 {
106 copperZones.push_back( zone );
107 }
108
109 totalCount++;
110
111 return true;
112 } );
113
114 for( ZONE* ruleArea : antiCopperKeepouts )
115 {
116 for( ZONE* copperZone : copperZones )
117 {
118 toCache.push_back( { ruleArea, copperZone } );
119 totalCount++;
120 }
121 }
122
123 auto query_areas =
124 [&]( std::pair<ZONE* /* rule area */, ZONE* /* copper zone */> areaZonePair ) -> size_t
125 {
126 if( m_drcEngine->IsCancelled() )
127 return 0;
128
129 ZONE* ruleArea = areaZonePair.first;
130 ZONE* copperZone = areaZonePair.second;
131 BOX2I areaBBox = ruleArea->GetBoundingBox();
132 BOX2I copperBBox = copperZone->GetBoundingBox();
133 bool isInside = false;
134
135 if( copperZone->IsFilled() && areaBBox.Intersects( copperBBox ) )
136 {
137 // Collisions include touching, so we need to deflate outline by enough to
138 // exclude it. This is particularly important for detecting copper fills as
139 // they will be exactly touching along the entire exclusion border.
140 SHAPE_POLY_SET areaPoly = ruleArea->Outline()->CloneDropTriangulation();
141 areaPoly.Fracture();
142 areaPoly.Deflate( epsilon, CORNER_STRATEGY::ALLOW_ACUTE_CORNERS, ARC_LOW_DEF );
143
144 DRC_RTREE* zoneRTree = board->m_CopperZoneRTreeCache[ copperZone ].get();
145
146 if( zoneRTree )
147 {
148 for( size_t ii = 0; ii < ruleArea->GetLayerSet().size(); ++ii )
149 {
150 if( ruleArea->GetLayerSet().test( ii ) )
151 {
152 PCB_LAYER_ID layer = PCB_LAYER_ID( ii );
153
154 if( zoneRTree->QueryColliding( areaBBox, &areaPoly, layer ) )
155 {
156 isInside = true;
157 break;
158 }
159
160 if( m_drcEngine->IsCancelled() )
161 return 0;
162 }
163 }
164 }
165 }
166
167 if( m_drcEngine->IsCancelled() )
168 return 0;
169
170 PTR_PTR_LAYER_CACHE_KEY key = { ruleArea, copperZone, UNDEFINED_LAYER };
171
172 {
173 std::unique_lock<std::shared_mutex> writeLock( board->m_CachesMutex );
174 board->m_IntersectsAreaCache[ key ] = isInside;
175 }
176
177 done.fetch_add( 1 );
178
179 return 1;
180 };
181
183 std::vector<std::future<size_t>> returns;
184
185 returns.reserve( toCache.size() );
186
187 for( const std::pair<ZONE*, ZONE*>& areaZonePair : toCache )
188 returns.emplace_back( tp.submit( query_areas, areaZonePair ) );
189
190 for( const std::future<size_t>& ret : returns )
191 {
192 std::future_status status = ret.wait_for( std::chrono::milliseconds( 250 ) );
193
194 while( status != std::future_status::ready )
195 {
196 reportProgress( done, toCache.size() );
197 status = ret.wait_for( std::chrono::milliseconds( 250 ) );
198 }
199 }
200
201 if( m_drcEngine->IsCancelled() )
202 return false;
203
204 // Now go through all the board objects calling the DRC_ENGINE to run the actual disallow
205 // tests. These should be reasonably quick using the caches generated above.
206 //
207 const int progressDelta = 250;
208 int ii = static_cast<int>( toCache.size() );
209
210 auto checkTextOnEdgeCuts =
211 [&]( BOARD_ITEM* item )
212 {
213 if( item->Type() == PCB_FIELD_T
214 || item->Type() == PCB_TEXT_T
215 || item->Type() == PCB_TEXTBOX_T
216 || BaseType( item->Type() ) == PCB_DIMENSION_T )
217 {
218 if( item->GetLayer() == Edge_Cuts )
219 {
220 std::shared_ptr<DRC_ITEM> drc = DRC_ITEM::Create( DRCE_TEXT_ON_EDGECUTS );
221 drc->SetItems( item );
222 reportViolation( drc, item->GetPosition(), Edge_Cuts );
223 }
224 }
225 };
226
227 auto checkAntiTrackKeepout =
228 [&]( PCB_TRACK* track, ZONE* keepout )
229 {
230 std::shared_ptr<SHAPE> shape = track->GetEffectiveShape();
231 int dummyActual;
232 VECTOR2I pos;
233
234 if( keepout->Outline()->Collide( shape.get(), board->m_DRCMaxClearance,
235 &dummyActual, &pos ) )
236 {
237 std::shared_ptr<DRC_ITEM> drcItem = DRC_ITEM::Create( DRCE_ALLOWED_ITEMS );
238
239 drcItem->SetItems( track );
240 reportViolation( drcItem, pos, track->GetLayerSet().ExtractLayer() );
241 }
242 };
243
244 auto checkDisallow =
245 [&]( BOARD_ITEM* item )
246 {
248 nullptr, UNDEFINED_LAYER );
249
250 if( constraint.m_DisallowFlags && constraint.GetSeverity() != RPT_SEVERITY_IGNORE )
251 {
252 std::shared_ptr<DRC_ITEM> drcItem = DRC_ITEM::Create( DRCE_ALLOWED_ITEMS );
253 PCB_LAYER_ID layer = item->GetLayerSet().ExtractLayer();
254 wxString msg;
255
256 // Implicit rules reported in checkAntiTrackKeepout
257 if( constraint.GetParentRule()->m_Implicit )
258 return;
259
260 msg.Printf( drcItem->GetErrorText() + wxS( " (%s)" ), constraint.GetName() );
261
262 drcItem->SetErrorMessage( msg );
263 drcItem->SetItems( item );
264 drcItem->SetViolatingRule( constraint.GetParentRule() );
265
266 reportViolation( drcItem, item->GetPosition(), layer );
267 }
268 };
269
271 [&]( BOARD_ITEM* item ) -> bool
272 {
274 checkTextOnEdgeCuts( item );
275
277 {
278 if( ZONE* zone = dynamic_cast<ZONE*>( item ) )
279 {
280 if( zone->GetIsRuleArea() && zone->HasKeepoutParametersSet() )
281 return true;
282 }
283
284 item->ClearFlags( HOLE_PROXY ); // Just in case
285
286 if( item->Type() == PCB_TRACE_T || item->Type() == PCB_ARC_T )
287 {
288 PCB_TRACK* track = static_cast<PCB_TRACK*>( item );
289 PCB_LAYER_ID layer = track->GetLayer();
290
291 antiTrackKeepouts->QueryColliding( track, layer, layer,
292 // Filter:
293 [&]( BOARD_ITEM* other ) -> bool
294 {
295 return true;
296 },
297 // Visitor:
298 [&]( BOARD_ITEM* other ) -> bool
299 {
300 checkAntiTrackKeepout( track, static_cast<ZONE*>( other ) );
301 return !m_drcEngine->IsCancelled();
302 },
304 }
305
306 checkDisallow( item );
307
308 if( item->HasHole() )
309 {
310 item->SetFlags( HOLE_PROXY );
311 checkDisallow( item );
312 item->ClearFlags( HOLE_PROXY );
313 }
314 }
315
316 if( !reportProgress( ii++, totalCount, progressDelta ) )
317 return false;
318
319 return true;
320 } );
321
323
324 return !m_drcEngine->IsCancelled();
325}
326
327
328namespace detail
329{
331}
constexpr int ARC_LOW_DEF
Definition: base_units.h:119
int GetDRCEpsilon() const
Return an epsilon which accounts for rounding errors, etc.
A base class for any item which can be embedded within the BOARD container class, and therefore insta...
Definition: board_item.h:78
virtual PCB_LAYER_ID GetLayer() const
Return the primary layer this item is on.
Definition: board_item.h:229
Information pertinent to a Pcbnew printed circuit board.
Definition: board.h:297
int m_DRCMaxPhysicalClearance
Definition: board.h:1350
int m_DRCMaxClearance
Definition: board.h:1349
std::unordered_map< ZONE *, std::unique_ptr< DRC_RTREE > > m_CopperZoneRTreeCache
Definition: board.h:1341
BOARD_DESIGN_SETTINGS & GetDesignSettings() const
Definition: board.cpp:946
std::shared_mutex m_CachesMutex
Definition: board.h:1334
std::unordered_map< PTR_PTR_LAYER_CACHE_KEY, bool > m_IntersectsAreaCache
Definition: board.h:1338
constexpr bool Intersects(const BOX2< Vec > &aRect) const
Definition: box2.h:311
wxString GetName() const
Definition: drc_rule.h:160
int m_DisallowFlags
Definition: drc_rule.h:191
SEVERITY GetSeverity() const
Definition: drc_rule.h:173
DRC_RULE * GetParentRule() const
Definition: drc_rule.h:156
BOARD * GetBoard() const
Definition: drc_engine.h:96
bool IsErrorLimitExceeded(int error_code)
DRC_CONSTRAINT EvalRules(DRC_CONSTRAINT_T aConstraintType, const BOARD_ITEM *a, const BOARD_ITEM *b, PCB_LAYER_ID aLayer, REPORTER *aReporter=nullptr)
Definition: drc_engine.cpp:693
bool IsCancelled() const
static std::shared_ptr< DRC_ITEM > Create(int aErrorCode)
Constructs a DRC_ITEM for the given error code.
Definition: drc_item.cpp:393
Implement an R-tree for fast spatial and layer indexing of connectable items.
Definition: drc_rtree.h:48
int QueryColliding(BOARD_ITEM *aRefItem, PCB_LAYER_ID aRefLayer, PCB_LAYER_ID aTargetLayer, std::function< bool(BOARD_ITEM *)> aFilter=nullptr, std::function< bool(BOARD_ITEM *)> aVisitor=nullptr, int aClearance=0) const
This is a fast test which essentially does bounding-box overlap given a worst-case clearance.
Definition: drc_rtree.h:214
bool m_Implicit
Definition: drc_rule.h:115
virtual const wxString GetName() const override
virtual bool Run() override
Run this provider against the given PCB with configured options (if any).
virtual const wxString GetDescription() const override
Represent a DRC "provider" which runs some DRC functions over a BOARD and spits out DRC_ITEM and posi...
virtual bool reportPhase(const wxString &aStageName)
virtual void reportViolation(std::shared_ptr< DRC_ITEM > &item, const VECTOR2I &aMarkerPos, int aMarkerLayer, DRC_CUSTOM_MARKER_HANDLER *aCustomHandler=nullptr)
int forEachGeometryItem(const std::vector< KICAD_T > &aTypes, const LSET &aLayers, const std::function< bool(BOARD_ITEM *)> &aFunc)
DRC_ENGINE * m_drcEngine
virtual void reportRuleStatistics()
virtual bool reportProgress(size_t aCount, size_t aSize, size_t aDelta=1)
static LSET AllLayersMask()
Definition: lset.cpp:601
PCB_LAYER_ID ExtractLayer() const
Find the first set PCB_LAYER_ID.
Definition: lset.cpp:526
virtual LSET GetLayerSet() const override
Return a std::bitset of all layers on which the item physically resides.
Definition: pcb_track.cpp:1206
std::shared_ptr< SHAPE > GetEffectiveShape(PCB_LAYER_ID aLayer=UNDEFINED_LAYER, FLASHING aFlash=FLASHING::DEFAULT) const override
Some pad shapes can be complex (rounded/chamfered rectangle), even without considering custom shapes.
Definition: pcb_track.cpp:2098
Represent a set of closed polygons.
void Fracture()
Convert a set of polygons with holes to a single outline with "slits"/"fractures" connecting the oute...
void Deflate(int aAmount, CORNER_STRATEGY aCornerStrategy, int aMaxError)
SHAPE_POLY_SET CloneDropTriangulation() const
Handle a list of polygons defining a copper zone.
Definition: zone.h:74
bool GetIsRuleArea() const
Accessors to parameters used in Rule Area zones:
Definition: zone.h:752
const BOX2I GetBoundingBox() const override
Definition: zone.cpp:648
bool GetDoNotAllowTracks() const
Definition: zone.h:770
bool IsFilled() const
Definition: zone.h:292
SHAPE_POLY_SET * Outline()
Definition: zone.h:368
virtual LSET GetLayerSet() const override
Return a std::bitset of all layers on which the item physically resides.
Definition: zone.h:136
bool GetDoNotAllowZoneFills() const
Definition: zone.h:768
bool IsOnCopperLayer() const override
Definition: zone.cpp:521
The common library.
@ DRCE_TEXT_ON_EDGECUTS
Definition: drc_item.h:42
@ DRCE_ALLOWED_ITEMS
Definition: drc_item.h:41
@ DISALLOW_CONSTRAINT
Definition: drc_rule.h:66
#define _(s)
#define HOLE_PROXY
Indicates the BOARD_ITEM is a proxy for its hole.
PCB_LAYER_ID
A quick note on layer IDs:
Definition: layer_ids.h:60
@ Edge_Cuts
Definition: layer_ids.h:112
@ UNDEFINED_LAYER
Definition: layer_ids.h:61
static DRC_REGISTER_TEST_PROVIDER< DRC_TEST_PROVIDER_ANNULAR_WIDTH > dummy
@ RPT_SEVERITY_IGNORE
const double epsilon
thread_pool & GetKiCadThreadPool()
Get a reference to the current thread pool.
Definition: thread_pool.cpp:30
static thread_pool * tp
Definition: thread_pool.cpp:28
BS::thread_pool thread_pool
Definition: thread_pool.h:31
constexpr KICAD_T BaseType(const KICAD_T aType)
Return the underlying type of the given type.
Definition: typeinfo.h:250
@ PCB_TEXTBOX_T
class PCB_TEXTBOX, wrapped text on a layer
Definition: typeinfo.h:93
@ PCB_ZONE_T
class ZONE, a copper pour area
Definition: typeinfo.h:107
@ PCB_TEXT_T
class PCB_TEXT, text on a layer
Definition: typeinfo.h:92
@ PCB_FIELD_T
class PCB_FIELD, text associated with a footprint property
Definition: typeinfo.h:90
@ PCB_ARC_T
class PCB_ARC, an arc track segment on a copper layer
Definition: typeinfo.h:98
@ PCB_DIMENSION_T
class PCB_DIMENSION_BASE: abstract dimension meta-type
Definition: typeinfo.h:100
@ PCB_TRACE_T
class PCB_TRACK, a track segment (segment on a copper layer)
Definition: typeinfo.h:96