29#include <drc_rules_lexer.h>
34using namespace DRCRULE_T;
38 DRC_RULES_LEXER( aSource.ToStdString(), aSourceDescr ),
39 m_requiredVersion( 0 ),
47 DRC_RULES_LEXER( aFile, aFilename ),
48 m_requiredVersion( 0 ),
58 wxString first = aMessage.BeforeFirst(
'|', &rest );
62 wxString msg = wxString::Format(
_(
"ERROR: <a href='%d:%d'>%s</a>%s" ), CurLineNumber(),
63 CurOffset(), first, rest );
69 wxString msg = wxString::Format(
_(
"ERROR: %s%s" ), first, rest );
80 wxString msg = wxString::Format(
_(
"The '%s' keyword has been deprecated. "
81 "Please use '%s' instead." ),
94 for( T token = NextTok(); token != T_EOF; token = NextTok() )
99 if( token == T_RIGHT )
110 bool haveVersion =
false;
115 for( T token = NextTok(); token != T_EOF; token = NextTok() )
117 if( token != T_LEFT )
122 if( !haveVersion && token != T_version )
148 msg.Printf(
_(
"Unrecognized item '%s'.| Expected version number." ),
155 msg.Printf(
_(
"Unrecognized item '%s'." ),
172 msg.Printf(
_(
"Unrecognized item '%s'.| Expected %s." ), FromUTF8(),
173 wxT(
"rule or version" ) );
187 std::vector<std::shared_ptr<COMPONENT_CLASS_ASSIGNMENT_RULE>>& aRules,
REPORTER* aReporter )
189 bool haveVersion =
false;
194 for( T token = NextTok(); token != T_EOF; token = NextTok() )
196 if( token != T_LEFT )
201 if( !haveVersion && token != T_version )
227 msg.Printf(
_(
"Unrecognized item '%s'.| Expected version number." ), FromUTF8() );
233 msg.Printf(
_(
"Unrecognized item '%s'." ), FromUTF8() );
240 case T_assign_component_class:
244 case T_EOF:
reportError(
_(
"Incomplete statement." ) );
break;
247 msg.Printf(
_(
"Unrecognized item '%s'.| Expected %s." ), FromUTF8(),
248 wxT(
"assign_component_class or version" ) );
263 std::shared_ptr<DRC_RULE> rule = std::make_shared<DRC_RULE>();
268 if( !IsSymbol( token ) )
271 rule->m_Name = FromUTF8();
273 for( token = NextTok(); token != T_RIGHT && token != T_EOF; token = NextTok() )
275 if( token != T_LEFT )
295 if( IsSymbol( token ) )
298 rule->m_Condition->Compile(
m_reporter, CurLineNumber(), CurOffset() );
302 msg.Printf(
_(
"Unrecognized item '%s'.| Expected quoted expression." ),
309 reportError( wxString::Format(
_(
"Unrecognized item '%s'." ), FromUTF8() ) );
319 rule->m_LayerCondition =
parseLayer( &rule->m_LayerSource );
331 msg.Printf(
_(
"Unrecognized item '%s'.| Expected %s." ), FromUTF8(),
332 wxT(
"constraint, condition, or disallow" ) );
347 std::shared_ptr<DRC_RULE_CONDITION> condition;
352 if( !IsSymbol( token ) )
355 wxString componentClass = FromUTF8();
357 for( token = NextTok(); token != T_RIGHT && token != T_EOF; token = NextTok() )
359 if( token != T_LEFT )
375 if( IsSymbol( token ) )
377 condition = std::make_shared<DRC_RULE_CONDITION>( FromUTF8() );
379 if( !condition->Compile(
m_reporter, CurLineNumber(), CurOffset() ) )
381 reportError( wxString::Format(
_(
"Could not parse expression '%s'." ),
387 msg.Printf(
_(
"Unrecognized item '%s'.| Expected quoted expression." ),
394 reportError( wxString::Format(
_(
"Unrecognized item '%s'." ), FromUTF8() ) );
400 case T_EOF:
reportError(
_(
"Incomplete statement." ) );
return nullptr;
403 msg.Printf(
_(
"Unrecognized item '%s'.| Expected %s." ), FromUTF8(),
404 wxT(
"condition" ) );
413 return std::make_shared<COMPONENT_CLASS_ASSIGNMENT_RULE>( componentClass,
414 std::move( condition ) );
427 if( token == T_mechanical_clearance )
430 token = T_physical_clearance;
432 else if( token == T_mechanical_hole_clearance )
434 reportDeprecation( wxT(
"mechanical_hole_clearance" ), wxT(
"physical_hole_clearance" ) );
435 token = T_physical_hole_clearance;
437 else if( token == T_hole )
442 else if( (
int) token ==
DSN_RIGHT || token == T_EOF )
444 msg.Printf(
_(
"Missing constraint type.| Expected %s." ),
445 wxT(
"assertion, clearance, hole_clearance, edge_clearance, "
446 "physical_clearance, physical_hole_clearance, courtyard_clearance, "
447 "silk_clearance, hole_size, hole_to_hole, track_width, annular_width, "
448 "via_diameter, disallow, zone_connection, thermal_relief_gap, "
449 "thermal_spoke_width, min_resolved_spokes, length, skew, via_count, "
450 "diff_pair_gap or diff_pair_uncoupled" ) );
487 msg.Printf(
_(
"Unrecognized item '%s'.| Expected %s." ), FromUTF8(),
488 wxT(
"assertion, clearance, hole_clearance, edge_clearance, "
489 "physical_clearance, physical_hole_clearance, courtyard_clearance, "
490 "silk_clearance, hole_size, hole_to_hole, track_width, track_angle, track_segment_length, annular_width, "
491 "disallow, zone_connection, thermal_relief_gap, thermal_spoke_width, "
492 "min_resolved_spokes, length, skew, via_count, via_diameter, "
493 "diff_pair_gap or diff_pair_uncoupled" ) );
499 msg.Printf(
_(
"Rule already has a '%s' constraint." ), FromUTF8() );
509 for( token = NextTok(); token != T_RIGHT; token = NextTok() )
512 token = GetCurStrAsToken();
532 msg.Printf(
_(
"Unrecognized item '%s'.| Expected %s." ), FromUTF8(),
533 wxT(
"track, via, micro_via, buried_via, pad, zone, text, graphic, "
534 "hole, or footprint." ) );
551 token = GetCurStrAsToken();
556 case T_thermal_reliefs: c.
m_ZoneConnection = ZONE_CONNECTION::THERMAL;
break;
564 msg.Printf(
_(
"Unrecognized item '%s'.| Expected %s." ), FromUTF8(),
565 "solid, thermal_reliefs or none." );
587 value = (int) strtol( CurText(),
nullptr, 10 );
609 if( IsSymbol( token ) )
616 msg.Printf(
_(
"Unrecognized item '%s'.| Expected quoted expression." ), FromUTF8() );
622 reportError( wxString::Format(
_(
"Unrecognized item '%s'." ), FromUTF8() ) );
630 for( token = NextTok(); token != T_RIGHT && token != T_EOF; token = NextTok() )
632 if( token != T_LEFT )
639 case T_within_diff_pairs:
642 reportError(
_(
"within_diff_pairs option invalid for constraint type." ) );
650 reportError( wxString::Format(
_(
"Unrecognized item '%s'." ), FromUTF8() ) );
669 reportError( wxString::Format(
_(
"Unrecognized item '%s'." ), FromUTF8() ) );
690 reportError( wxString::Format(
_(
"Unrecognized item '%s'." ), FromUTF8() ) );
710 reportError( wxString::Format(
_(
"Unrecognized item '%s'." ), FromUTF8() ) );
721 msg.Printf(
_(
"Unrecognized item '%s'.| Expected %s." ),
723 wxT(
"min, max, or opt" ) );
738 auto errorHandler = [&](
const wxString& aMessage,
int aOffset )
741 wxString first = aMessage.BeforeFirst(
'|', &rest );
745 wxString msg = wxString::Format(
_(
"ERROR: <a href='%d:%d'>%s</a>%s" ),
746 CurLineNumber(), CurOffset() + aOffset, first, rest );
752 wxString msg = wxString::Format(
_(
"ERROR: %s%s" ), first, rest );
755 CurOffset() + aOffset );
764 aResult = evaluator.
Result();
771 int token = NextTok();
778 else if( token == T_outer )
780 *aSource = GetTokenString( token );
783 else if( token == T_inner )
785 *aSource = GetTokenString( token );
790 wxString layerName = FromUTF8();
793 for(
unsigned ii = 0; ii < layerMap.GetCount(); ++ii )
795 wxPGChoiceEntry& entry = layerMap[ii];
797 if( entry.GetText().Matches( layerName ) )
799 *aSource = layerName;
806 reportError( wxString::Format(
_(
"Unrecognized layer '%s'." ), layerName ) );
813 reportError( wxString::Format(
_(
"Unrecognized item '%s'." ), FromUTF8() ) );
828 if( (
int) token ==
DSN_RIGHT || token == T_EOF )
842 msg.Printf(
_(
"Unrecognized item '%s'.| Expected %s." ),
844 wxT(
"ignore, warning, error, or exclusion" ) );
BASE_SET & set(size_t pos)
DRC_RULE_CONDITION * m_Test
void SetOption(OPTIONS option)
ZONE_CONNECTION m_ZoneConnection
std::shared_ptr< COMPONENT_CLASS_ASSIGNMENT_RULE > parseComponentClassAssignment()
void parseValueWithUnits(const wxString &aExpr, int &aResult, bool aUnitless=false)
void Parse(std::vector< std::shared_ptr< DRC_RULE > > &aRules, REPORTER *aReporter)
void ParseComponentClassAssignmentRules(std::vector< std::shared_ptr< COMPONENT_CLASS_ASSIGNMENT_RULE > > &aRules, REPORTER *aReporter)
std::shared_ptr< DRC_RULE > parseDRC_RULE()
LSET parseLayer(wxString *aSource)
void parseConstraint(DRC_RULE *aRule)
void reportError(const wxString &aMessage)
DRC_RULES_PARSER(const wxString &aSource, const wxString &aSourceDescr)
void reportDeprecation(const wxString &oldToken, const wxString newToken)
bool Compile(REPORTER *aReporter, int aSourceLine=0, int aSourceOffset=0)
void AddConstraint(DRC_CONSTRAINT &aConstraint)
std::optional< DRC_CONSTRAINT > FindConstraint(DRC_CONSTRAINT_T aType)
static ENUM_MAP< T > & Instance()
LSET is a set of PCB_LAYER_IDs.
static LSET ExternalCuMask()
Return a mask holding the Front and Bottom layers.
static LSET AllLayersMask()
static LSET InternalCuMask()
Return a complete set of internal copper layers which is all Cu layers except F_Cu and B_Cu.
static LSET AllCuMask(int aCuLayerCount=MAX_CU_LAYERS)
Return a mask holding the requested number of Cu PCB_LAYER_IDs.
bool Evaluate(const wxString &aExpr)
void SetErrorCallback(std::function< void(const wxString &aMessage, int aOffset)> aCallback)
A pure virtual class used to derive REPORTER objects from.
virtual bool HasMessage() const =0
Returns true if the reporter client is non-empty.
virtual REPORTER & Report(const wxString &aText, SEVERITY aSeverity=RPT_SEVERITY_UNDEFINED)
Report a string with a given severity.
@ DRC_DISALLOW_FOOTPRINTS
@ DRC_DISALLOW_MICRO_VIAS
@ ANNULAR_WIDTH_CONSTRAINT
@ COURTYARD_CLEARANCE_CONSTRAINT
@ VIA_DIAMETER_CONSTRAINT
@ ZONE_CONNECTION_CONSTRAINT
@ DIFF_PAIR_GAP_CONSTRAINT
@ SILK_CLEARANCE_CONSTRAINT
@ EDGE_CLEARANCE_CONSTRAINT
@ MIN_RESOLVED_SPOKES_CONSTRAINT
@ TRACK_SEGMENT_LENGTH_CONSTRAINT
@ TEXT_THICKNESS_CONSTRAINT
@ PHYSICAL_HOLE_CLEARANCE_CONSTRAINT
@ THERMAL_SPOKE_WIDTH_CONSTRAINT
@ CONNECTION_WIDTH_CONSTRAINT
@ THERMAL_RELIEF_GAP_CONSTRAINT
@ MAX_UNCOUPLED_CONSTRAINT
@ HOLE_CLEARANCE_CONSTRAINT
@ PHYSICAL_CLEARANCE_CONSTRAINT
@ HOLE_TO_HOLE_CONSTRAINT
#define DRC_RULE_FILE_VERSION
#define THROW_PARSE_ERROR(aProblem, aSource, aInputLine, aLineNumber, aByteIndex)
PCB_LAYER_ID ToLAYER_ID(int aLayer)