KiCad PCB EDA Suite
Loading...
Searching...
No Matches
drc_rule.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 The KiCad Developers, see AUTHORS.txt for contributors.
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, see <https://www.gnu.org/licenses/>.
18 */
19
20#ifndef DRC_RULE_H
21#define DRC_RULE_H
22
23#include <bitset>
24#include <kiid.h>
25#include <core/typeinfo.h>
26#include <optional>
27#include <core/minoptmax.h>
28#include <layer_ids.h>
29#include <lset.h>
30#include <eda_units.h>
31#include <zones.h>
33#include <wx/intl.h>
35
36class BOARD_ITEM;
37class PCBEXPR_UCODE;
38class DRC_CONSTRAINT;
40
41namespace kiapi::board
42{
43 class CustomRule;
44 class CustomRuleConstraint;
45}
46
47
93
94
109
110
120
121
124
125
127{
128public:
129 DRC_RULE();
130 DRC_RULE( const wxString& aName );
131
132 virtual ~DRC_RULE();
133
134 virtual bool AppliesTo( const BOARD_ITEM* a, const BOARD_ITEM* b = nullptr ) const
135 {
136 return true;
137 };
138
139 void AddConstraint( DRC_CONSTRAINT& aConstraint );
140 std::optional<DRC_CONSTRAINT> FindConstraint( DRC_CONSTRAINT_T aType );
141
142 static wxString FormatRuleFromProto( const kiapi::board::CustomRule& aRule,
143 wxString* aErrorText = nullptr );
144
146
147 void SetImplicitSource( const DRC_IMPLICIT_SOURCE aImplicitSource ) { m_implicitSource = aImplicitSource; }
148
150
151public:
155 wxString m_Name;
159 std::vector<DRC_CONSTRAINT> m_Constraints;
161
162private:
164};
165
166
168{
169public:
171 const wxString& aName = wxEmptyString ) :
172 m_Type( aType ),
173 m_Value(),
174 m_DisallowFlags( 0 ),
176 m_Test( nullptr ),
177 m_ImplicitMin( false ),
178 m_name( aName ),
179 m_parentRule( nullptr )
180 {
181 }
182
183 enum class OPTIONS : std::size_t
184 {
188
189 // Keep this last value - used to statically size the options bitset
191 };
192
193 bool IsNull() const
194 {
195 return m_Type == NULL_CONSTRAINT;
196 }
197
198 bool IsUnary() const;
199
200 const MINOPTMAX<int>& GetValue() const { return m_Value; }
202
203 void SetParentRule( DRC_RULE *aParentRule ) { m_parentRule = aParentRule; }
205
206 void SetName( const wxString& aName ) { m_name = aName; }
207
208 wxString GetName() const
209 {
210 if( m_parentRule )
211 {
212 if( m_parentRule->IsImplicit() )
213 return m_parentRule->m_Name;
214 else
215 return wxString::Format( _( "rule '%s'" ), m_parentRule->m_Name );
216 }
217
218 return m_name;
219 }
220
222 {
223 if( m_parentRule )
224 return m_parentRule->m_Severity;
225 else
227 }
228
229 void SetOption( OPTIONS option ) { m_options.set( static_cast<std::size_t>( option ), true ); }
230
231 void ClearOption( OPTIONS option ) { m_options.set( static_cast<std::size_t>( option ), false ); }
232
233 bool GetOption( OPTIONS option ) const
234 {
235 return m_options.test( static_cast<std::size_t>( option ) );
236 }
237
238 void SetOptionsFromOther( const DRC_CONSTRAINT& aOther ) { m_options = aOther.m_options; }
239
240 void ToProto( kiapi::board::CustomRuleConstraint& aProto ) const;
241
242public:
249
250 // Reference layer for NET_CHAIN_RETURN_PATH_CONSTRAINT. Empty means "no
251 // reference layer specified". Stored as a user-visible layer name so it
252 // can survive save/load without layer-id renumbering.
254
255 // Optional reference-zone net for NET_CHAIN_RETURN_PATH_CONSTRAINT. Empty
256 // accepts any zone on the reference layer; non-empty filters zones by net
257 // name (wildcards via WildCompareString).
259
260private:
261 wxString m_name; // For just-in-time constraints
262 DRC_RULE* m_parentRule; // For constraints found in rules
263 std::bitset<static_cast<int>( OPTIONS::NUM_OPTIONS )> m_options; // Constraint-specific option bits
264 // (indexed from DRC_CONSTRAINT::OPTIONS)
265};
266
267
268const DRC_CONSTRAINT* GetConstraint( const BOARD_ITEM* aItem, const BOARD_ITEM* bItem,
269 int aConstraint, PCB_LAYER_ID aLayer,
270 wxString* aRuleName = nullptr );
271
272
278bool IsComponentClassSelector( const wxString& aToken );
279
280
281#endif // DRC_RULE_H
A base class for any item which can be embedded within the BOARD container class, and therefore insta...
Definition board_item.h:84
DRC_RULE_CONDITION * m_Test
Definition drc_rule.h:247
wxString GetName() const
Definition drc_rule.h:208
void ToProto(kiapi::board::CustomRuleConstraint &aProto) const
Definition drc_rule.cpp:415
int m_DisallowFlags
Definition drc_rule.h:245
SEVERITY GetSeverity() const
Definition drc_rule.h:221
void SetOption(OPTIONS option)
Definition drc_rule.h:229
DRC_RULE * m_parentRule
Definition drc_rule.h:262
void SetParentRule(DRC_RULE *aParentRule)
Definition drc_rule.h:203
MINOPTMAX< int > & Value()
Definition drc_rule.h:201
const MINOPTMAX< int > & GetValue() const
Definition drc_rule.h:200
ZONE_CONNECTION m_ZoneConnection
Definition drc_rule.h:246
void SetName(const wxString &aName)
Definition drc_rule.h:206
MINOPTMAX< int > m_Value
Definition drc_rule.h:244
wxString m_ReferenceLayer
Definition drc_rule.h:253
DRC_CONSTRAINT_T m_Type
Definition drc_rule.h:243
bool IsUnary() const
Definition drc_rule.cpp:87
void SetOptionsFromOther(const DRC_CONSTRAINT &aOther)
Definition drc_rule.h:238
wxString m_name
Definition drc_rule.h:261
bool GetOption(OPTIONS option) const
Definition drc_rule.h:233
DRC_RULE * GetParentRule() const
Definition drc_rule.h:204
void ClearOption(OPTIONS option)
Definition drc_rule.h:231
DRC_CONSTRAINT(DRC_CONSTRAINT_T aType=NULL_CONSTRAINT, const wxString &aName=wxEmptyString)
Definition drc_rule.h:170
bool m_ImplicitMin
Definition drc_rule.h:248
std::bitset< static_cast< int >(OPTIONS::NUM_OPTIONS)> m_options
Definition drc_rule.h:263
wxString m_ReferenceNet
Definition drc_rule.h:258
bool IsNull() const
Definition drc_rule.h:193
SEVERITY m_Severity
Definition drc_rule.h:160
bool m_Unary
Definition drc_rule.h:152
DRC_RULE_CONDITION * m_Condition
Definition drc_rule.h:158
bool IsImplicit() const
Definition drc_rule.h:145
LSET m_LayerCondition
Definition drc_rule.h:157
static wxString FormatRuleFromProto(const kiapi::board::CustomRule &aRule, wxString *aErrorText=nullptr)
Definition drc_rule.cpp:121
virtual bool AppliesTo(const BOARD_ITEM *a, const BOARD_ITEM *b=nullptr) const
Definition drc_rule.h:134
KIID m_ImplicitItemId
Definition drc_rule.h:153
std::vector< DRC_CONSTRAINT > m_Constraints
Definition drc_rule.h:159
BOARD_ITEM * m_ImplicitItem
Definition drc_rule.h:154
wxString m_Name
Definition drc_rule.h:155
void AddConstraint(DRC_CONSTRAINT &aConstraint)
Definition drc_rule.cpp:68
wxString m_LayerSource
Definition drc_rule.h:156
void SetImplicitSource(const DRC_IMPLICIT_SOURCE aImplicitSource)
Definition drc_rule.h:147
virtual ~DRC_RULE()
Definition drc_rule.cpp:62
DRC_IMPLICIT_SOURCE GetImplicitSource() const
Definition drc_rule.h:149
std::optional< DRC_CONSTRAINT > FindConstraint(DRC_CONSTRAINT_T aType)
Definition drc_rule.cpp:75
DRC_IMPLICIT_SOURCE m_implicitSource
Definition drc_rule.h:163
Definition kiid.h:46
LSET is a set of PCB_LAYER_IDs.
Definition lset.h:37
const DRC_CONSTRAINT * GetConstraint(const BOARD_ITEM *aItem, const BOARD_ITEM *bItem, int aConstraint, PCB_LAYER_ID aLayer, wxString *aRuleName=nullptr)
constexpr int DRC_DISALLOW_BB_VIAS
Definition drc_rule.h:123
DRC_IMPLICIT_SOURCE
Definition drc_rule.h:112
bool IsComponentClassSelector(const wxString &aToken)
${Class:X} inside a DRC rule is a component-class selector consumed by testFootprintSelector(),...
Definition drc_rule.cpp:31
DRC_DISALLOW_T
Definition drc_rule.h:96
@ DRC_DISALLOW_PADS
Definition drc_rule.h:102
@ DRC_DISALLOW_BURIED_VIAS
Definition drc_rule.h:100
@ DRC_DISALLOW_BLIND_VIAS
Definition drc_rule.h:99
@ DRC_DISALLOW_TEXTS
Definition drc_rule.h:104
@ DRC_DISALLOW_ZONES
Definition drc_rule.h:103
@ DRC_DISALLOW_HOLES
Definition drc_rule.h:106
@ DRC_DISALLOW_GRAPHICS
Definition drc_rule.h:105
@ DRC_DISALLOW_THROUGH_VIAS
Definition drc_rule.h:97
@ DRC_DISALLOW_FOOTPRINTS
Definition drc_rule.h:107
@ DRC_DISALLOW_TRACKS
Definition drc_rule.h:101
@ DRC_DISALLOW_MICRO_VIAS
Definition drc_rule.h:98
DRC_CONSTRAINT_T
Definition drc_rule.h:49
@ ANNULAR_WIDTH_CONSTRAINT
Definition drc_rule.h:63
@ BRIDGED_MASK_CONSTRAINT
Definition drc_rule.h:88
@ COURTYARD_CLEARANCE_CONSTRAINT
Definition drc_rule.h:57
@ VIA_DIAMETER_CONSTRAINT
Definition drc_rule.h:72
@ ZONE_CONNECTION_CONSTRAINT
Definition drc_rule.h:64
@ DIFF_PAIR_GAP_CONSTRAINT
Definition drc_rule.h:78
@ NET_CHAIN_LENGTH_CONSTRAINT
Definition drc_rule.h:74
@ VIA_DANGLING_CONSTRAINT
Definition drc_rule.h:87
@ SOLDER_MASK_SLIVER_CONSTRAINT
Definition drc_rule.h:89
@ NET_CHAIN_STUB_LENGTH_CONSTRAINT
Definition drc_rule.h:75
@ DISALLOW_CONSTRAINT
Definition drc_rule.h:71
@ TRACK_WIDTH_CONSTRAINT
Definition drc_rule.h:61
@ SILK_CLEARANCE_CONSTRAINT
Definition drc_rule.h:58
@ EDGE_CLEARANCE_CONSTRAINT
Definition drc_rule.h:55
@ MIN_RESOLVED_SPOKES_CONSTRAINT
Definition drc_rule.h:67
@ TRACK_SEGMENT_LENGTH_CONSTRAINT
Definition drc_rule.h:62
@ TEXT_THICKNESS_CONSTRAINT
Definition drc_rule.h:60
@ LENGTH_CONSTRAINT
Definition drc_rule.h:73
@ VIA_COUNT_CONSTRAINT
Definition drc_rule.h:81
@ NET_CHAIN_RETURN_PATH_CONSTRAINT
Definition drc_rule.h:76
@ PHYSICAL_HOLE_CLEARANCE_CONSTRAINT
Definition drc_rule.h:83
@ CLEARANCE_CONSTRAINT
Definition drc_rule.h:51
@ MICROVIA_ASPECT_RATIO_CONSTRAINT
Definition drc_rule.h:91
@ NULL_CONSTRAINT
Definition drc_rule.h:50
@ THERMAL_SPOKE_WIDTH_CONSTRAINT
Definition drc_rule.h:66
@ CONNECTION_WIDTH_CONSTRAINT
Definition drc_rule.h:85
@ THERMAL_RELIEF_GAP_CONSTRAINT
Definition drc_rule.h:65
@ MAX_UNCOUPLED_CONSTRAINT
Definition drc_rule.h:79
@ ASSERTION_CONSTRAINT
Definition drc_rule.h:84
@ SKEW_CONSTRAINT
Definition drc_rule.h:77
@ MICROVIA_STACK_DEPTH_CONSTRAINT
Definition drc_rule.h:90
@ HOLE_CLEARANCE_CONSTRAINT
Definition drc_rule.h:53
@ SOLDER_PASTE_ABS_MARGIN_CONSTRAINT
Definition drc_rule.h:69
@ SOLDER_MASK_EXPANSION_CONSTRAINT
Definition drc_rule.h:68
@ TRACK_ANGLE_CONSTRAINT
Definition drc_rule.h:86
@ HOLE_SIZE_CONSTRAINT
Definition drc_rule.h:56
@ TEXT_HEIGHT_CONSTRAINT
Definition drc_rule.h:59
@ CREEPAGE_CONSTRAINT
Definition drc_rule.h:52
@ DIFF_PAIR_INTRA_SKEW_CONSTRAINT
Definition drc_rule.h:80
@ PHYSICAL_CLEARANCE_CONSTRAINT
Definition drc_rule.h:82
@ SOLDER_PASTE_REL_MARGIN_CONSTRAINT
Definition drc_rule.h:70
@ HOLE_TO_HOLE_CONSTRAINT
Definition drc_rule.h:54
constexpr int DRC_DISALLOW_VIAS
Definition drc_rule.h:122
#define _(s)
@ NONE
Definition eda_fill.h:42
PCB_LAYER_ID
A quick note on layer IDs:
Definition layer_ids.h:56
SEVERITY
@ RPT_SEVERITY_UNDEFINED
Represents a single line in the tuning profile configuration grid.
ZONE_CONNECTION
How pads are covered by copper in zone.
Definition zones.h:43