Add a compile error for ill-defined rules, and more performance.

Also adds const-safety to GetBoard().
This commit is contained in:
Jeff Young 2021-08-16 10:53:27 +01:00
parent 2ad6650e13
commit 1a252b4f96
16 changed files with 186 additions and 112 deletions

View File

@ -109,7 +109,7 @@ static const wxString formatOpName( int op )
} }
bool VALUE::EqualTo( const VALUE* b ) const bool VALUE::EqualTo( CONTEXT* aCtx, const VALUE* b ) const
{ {
if( m_type == VT_UNDEFINED || b->m_type == VT_UNDEFINED ) if( m_type == VT_UNDEFINED || b->m_type == VT_UNDEFINED )
return false; return false;
@ -130,12 +130,12 @@ bool VALUE::EqualTo( const VALUE* b ) const
} }
bool VALUE::NotEqualTo( const VALUE* b ) const bool VALUE::NotEqualTo( CONTEXT* aCtx, const VALUE* b ) const
{ {
if( m_type == VT_UNDEFINED || b->m_type == VT_UNDEFINED ) if( m_type == VT_UNDEFINED || b->m_type == VT_UNDEFINED )
return false; return false;
return !EqualTo( b ); return !EqualTo( aCtx, b );
} }
@ -1162,10 +1162,10 @@ void UOP::Exec( CONTEXT* ctx )
result = arg1Value > arg2Value ? 1 : 0; result = arg1Value > arg2Value ? 1 : 0;
break; break;
case TR_OP_EQUAL: case TR_OP_EQUAL:
result = arg1 && arg2 && arg1->EqualTo( arg2 ) ? 1 : 0; result = arg1 && arg2 && arg1->EqualTo( ctx, arg2 ) ? 1 : 0;
break; break;
case TR_OP_NOT_EQUAL: case TR_OP_NOT_EQUAL:
result = arg1 && arg2 && arg1->NotEqualTo( arg2 ) ? 1 : 0; result = arg1 && arg2 && arg1->NotEqualTo( ctx, arg2 ) ? 1 : 0;
break; break;
case TR_OP_BOOL_AND: case TR_OP_BOOL_AND:
result = arg1Value != 0.0 && arg2Value != 0.0 ? 1 : 0; result = arg1Value != 0.0 && arg2Value != 0.0 ? 1 : 0;

View File

@ -309,7 +309,8 @@ public:
/** /**
* Return the #BOARD in which this #BOARD_ITEM resides, or NULL if none. * Return the #BOARD in which this #BOARD_ITEM resides, or NULL if none.
*/ */
virtual BOARD* GetBoard() const; virtual const BOARD* GetBoard() const;
virtual BOARD* GetBoard();
/** /**
* Return the name of the PCB layer on which the item resides. * Return the name of the PCB layer on which the item resides.

View File

@ -216,10 +216,10 @@ public:
return m_valueStr; return m_valueStr;
} }
virtual bool EqualTo( const VALUE* b ) const; virtual bool EqualTo( CONTEXT* aCtx, const VALUE* b ) const;
// NB: this is not an inverse of EqualTo as they both return false for undefined values. // NB: this is not an inverse of EqualTo as they both return false for undefined values.
virtual bool NotEqualTo( const VALUE* b ) const; virtual bool NotEqualTo( CONTEXT* aCtx, const VALUE* b ) const;
VAR_TYPE_T GetType() const { return m_type; }; VAR_TYPE_T GetType() const { return m_type; };
@ -274,15 +274,12 @@ public:
virtual ~CONTEXT() virtual ~CONTEXT()
{ {
for( VALUE* value : m_ownedValues )
delete value;
} }
VALUE* AllocValue() VALUE* AllocValue()
{ {
VALUE* value = new VALUE(); m_ownedValues.emplace_back();
m_ownedValues.push_back( value ); return &m_ownedValues.back();
return value;
} }
void Push( VALUE* v ) void Push( VALUE* v )
@ -316,7 +313,7 @@ public:
void ReportError( const wxString& aErrorMsg ); void ReportError( const wxString& aErrorMsg );
private: private:
std::vector<VALUE*> m_ownedValues; std::vector<VALUE> m_ownedValues;
VALUE* m_stack[100]; // std::stack not performant enough VALUE* m_stack[100]; // std::stack not performant enough
int m_stackPtr; int m_stackPtr;

View File

@ -211,7 +211,7 @@ public:
void IncrementTimeStamp(); void IncrementTimeStamp();
int GetTimeStamp() { return m_timeStamp; } int GetTimeStamp() const { return m_timeStamp; }
/** /**
* Find out if the board is being used to hold a single footprint for editing/viewing. * Find out if the board is being used to hold a single footprint for editing/viewing.

View File

@ -47,10 +47,24 @@ wxString BOARD_ITEM::ShowShape( SHAPE_T aShape )
} }
BOARD* BOARD_ITEM::GetBoard() const const BOARD* BOARD_ITEM::GetBoard() const
{ {
if( Type() == PCB_T ) if( Type() == PCB_T )
return (BOARD*) this; return static_cast<const BOARD*>( this );
BOARD_ITEM* parent = GetParent();
if( parent )
return parent->GetBoard();
return nullptr;
}
BOARD* BOARD_ITEM::GetBoard()
{
if( Type() == PCB_T )
return static_cast<BOARD*>( this );
BOARD_ITEM* parent = GetParent(); BOARD_ITEM* parent = GetParent();
@ -72,7 +86,7 @@ bool BOARD_ITEM::IsLocked() const
wxString BOARD_ITEM::GetLayerName() const wxString BOARD_ITEM::GetLayerName() const
{ {
BOARD* board = GetBoard(); const BOARD* board = GetBoard();
if( board ) if( board )
return board->GetLayerName( m_layer ); return board->GetLayerName( m_layer );
@ -84,8 +98,8 @@ wxString BOARD_ITEM::GetLayerName() const
wxString BOARD_ITEM::layerMaskDescribe() const wxString BOARD_ITEM::layerMaskDescribe() const
{ {
BOARD* board = GetBoard(); const BOARD* board = GetBoard();
LSET layers = GetLayerSet(); LSET layers = GetLayerSet();
// Try to be smart and useful. Check all copper first. // Try to be smart and useful. Check all copper first.
if( layers[F_Cu] && layers[B_Cu] ) if( layers[F_Cu] && layers[B_Cu] )

View File

@ -49,11 +49,14 @@ void DRC_RULE::AddConstraint( DRC_CONSTRAINT& aConstraint )
m_Constraints.push_back( aConstraint ); m_Constraints.push_back( aConstraint );
} }
OPT<DRC_CONSTRAINT> DRC_RULE::FindConstraint( DRC_CONSTRAINT_T aType ) OPT<DRC_CONSTRAINT> DRC_RULE::FindConstraint( DRC_CONSTRAINT_T aType )
{ {
for( auto &c : m_Constraints) for( DRC_CONSTRAINT& c : m_Constraints)
{
if( c.m_Type == aType ) if( c.m_Type == aType )
return c; return c;
}
return OPT<DRC_CONSTRAINT>(); return OPT<DRC_CONSTRAINT>();
} }

View File

@ -231,7 +231,7 @@ DRC_RULE* DRC_RULES_PARSER::parseDRC_RULE()
default: default:
msg.Printf( _( "Unrecognized item '%s'.| Expected %s." ), FromUTF8(), msg.Printf( _( "Unrecognized item '%s'.| Expected %s." ), FromUTF8(),
"'constraint', 'condition', 'disallow'" ); "constraint, condition or disallow" );
reportError( msg ); reportError( msg );
parseUnknown(); parseUnknown();
} }
@ -246,51 +246,55 @@ DRC_RULE* DRC_RULES_PARSER::parseDRC_RULE()
void DRC_RULES_PARSER::parseConstraint( DRC_RULE* aRule ) void DRC_RULES_PARSER::parseConstraint( DRC_RULE* aRule )
{ {
DRC_CONSTRAINT constraint; DRC_CONSTRAINT c;
int value;
int value; wxString msg;
wxString msg;
T token = NextTok(); T token = NextTok();
if( (int) token == DSN_RIGHT || token == T_EOF ) if( (int) token == DSN_RIGHT || token == T_EOF )
{ {
msg.Printf( _( "Missing constraint type.| Expected %s." ), msg.Printf( _( "Missing constraint type.| Expected %s." ),
"'clearance', 'hole_clearance', 'edge_clearance', 'hole', 'hole_to_hole', " "clearance, hole_clearance, edge_clearance, hole, hole_to_hole, "
"'courtyard_clearance', 'silk_clearance', 'track_width', 'annular_width', " "courtyard_clearance, silk_clearance, track_width, annular_width, "
"'disallow', 'length', 'skew', 'via_count', 'diff_pair_gap' or " "disallow, length, skew, via_count, diff_pair_gap or diff_pair_uncoupled" );
"'diff_pair_uncoupled'" );
reportError( msg ); reportError( msg );
return; return;
} }
switch( token ) switch( token )
{ {
case T_clearance: constraint.m_Type = CLEARANCE_CONSTRAINT; break; case T_clearance: c.m_Type = CLEARANCE_CONSTRAINT; break;
case T_hole_clearance: constraint.m_Type = HOLE_CLEARANCE_CONSTRAINT; break; case T_hole_clearance: c.m_Type = HOLE_CLEARANCE_CONSTRAINT; break;
case T_edge_clearance: constraint.m_Type = EDGE_CLEARANCE_CONSTRAINT; break; case T_edge_clearance: c.m_Type = EDGE_CLEARANCE_CONSTRAINT; break;
case T_hole: // legacy token case T_hole: // legacy token
case T_hole_size: constraint.m_Type = HOLE_SIZE_CONSTRAINT; break; case T_hole_size: c.m_Type = HOLE_SIZE_CONSTRAINT; break;
case T_hole_to_hole: constraint.m_Type = HOLE_TO_HOLE_CONSTRAINT; break; case T_hole_to_hole: c.m_Type = HOLE_TO_HOLE_CONSTRAINT; break;
case T_courtyard_clearance: constraint.m_Type = COURTYARD_CLEARANCE_CONSTRAINT; break; case T_courtyard_clearance: c.m_Type = COURTYARD_CLEARANCE_CONSTRAINT; break;
case T_silk_clearance: constraint.m_Type = SILK_CLEARANCE_CONSTRAINT; break; case T_silk_clearance: c.m_Type = SILK_CLEARANCE_CONSTRAINT; break;
case T_track_width: constraint.m_Type = TRACK_WIDTH_CONSTRAINT; break; case T_track_width: c.m_Type = TRACK_WIDTH_CONSTRAINT; break;
case T_annular_width: constraint.m_Type = ANNULAR_WIDTH_CONSTRAINT; break; case T_annular_width: c.m_Type = ANNULAR_WIDTH_CONSTRAINT; break;
case T_disallow: constraint.m_Type = DISALLOW_CONSTRAINT; break; case T_disallow: c.m_Type = DISALLOW_CONSTRAINT; break;
case T_length: constraint.m_Type = LENGTH_CONSTRAINT; break; case T_length: c.m_Type = LENGTH_CONSTRAINT; break;
case T_skew: constraint.m_Type = SKEW_CONSTRAINT; break; case T_skew: c.m_Type = SKEW_CONSTRAINT; break;
case T_via_count: constraint.m_Type = VIA_COUNT_CONSTRAINT; break; case T_via_count: c.m_Type = VIA_COUNT_CONSTRAINT; break;
case T_diff_pair_gap: constraint.m_Type = DIFF_PAIR_GAP_CONSTRAINT; break; case T_diff_pair_gap: c.m_Type = DIFF_PAIR_GAP_CONSTRAINT; break;
case T_diff_pair_uncoupled: constraint.m_Type = DIFF_PAIR_MAX_UNCOUPLED_CONSTRAINT; break; case T_diff_pair_uncoupled: c.m_Type = DIFF_PAIR_MAX_UNCOUPLED_CONSTRAINT; break;
default: default:
msg.Printf( _( "Unrecognized item '%s'.| Expected %s." ), FromUTF8(), msg.Printf( _( "Unrecognized item '%s'.| Expected %s." ), FromUTF8(),
"'clearance', 'hole_clearance', 'edge_clearance', 'hole_size', hole_to_hole'," "clearance, hole_clearance, edge_clearance, hole_size, hole_to_hole, "
"'courtyard_clearance', 'silk_clearance', 'track_width', 'annular_width', " "courtyard_clearance, silk_clearance, track_width, annular_width, "
"'disallow', 'length', 'skew', 'diff_pair_gap' or 'diff_pair_uncoupled'." ); "disallow, length, skew, diff_pair_gap or diff_pair_uncoupled." );
reportError( msg ); reportError( msg );
} }
if( constraint.m_Type == DISALLOW_CONSTRAINT ) if( aRule->FindConstraint( c.m_Type ) )
{
msg.Printf( _( "Rule already has a '%s' constraint." ), FromUTF8() );
reportError( msg );
}
if( c.m_Type == DISALLOW_CONSTRAINT )
{ {
for( token = NextTok(); token != T_RIGHT; token = NextTok() ) for( token = NextTok(); token != T_RIGHT; token = NextTok() )
{ {
@ -299,16 +303,16 @@ void DRC_RULES_PARSER::parseConstraint( DRC_RULE* aRule )
switch( token ) switch( token )
{ {
case T_track: constraint.m_DisallowFlags |= DRC_DISALLOW_TRACKS; break; case T_track: c.m_DisallowFlags |= DRC_DISALLOW_TRACKS; break;
case T_via: constraint.m_DisallowFlags |= DRC_DISALLOW_VIAS; break; case T_via: c.m_DisallowFlags |= DRC_DISALLOW_VIAS; break;
case T_micro_via: constraint.m_DisallowFlags |= DRC_DISALLOW_MICRO_VIAS; break; case T_micro_via: c.m_DisallowFlags |= DRC_DISALLOW_MICRO_VIAS; break;
case T_buried_via: constraint.m_DisallowFlags |= DRC_DISALLOW_BB_VIAS; break; case T_buried_via: c.m_DisallowFlags |= DRC_DISALLOW_BB_VIAS; break;
case T_pad: constraint.m_DisallowFlags |= DRC_DISALLOW_PADS; break; case T_pad: c.m_DisallowFlags |= DRC_DISALLOW_PADS; break;
case T_zone: constraint.m_DisallowFlags |= DRC_DISALLOW_ZONES; break; case T_zone: c.m_DisallowFlags |= DRC_DISALLOW_ZONES; break;
case T_text: constraint.m_DisallowFlags |= DRC_DISALLOW_TEXTS; break; case T_text: c.m_DisallowFlags |= DRC_DISALLOW_TEXTS; break;
case T_graphic: constraint.m_DisallowFlags |= DRC_DISALLOW_GRAPHICS; break; case T_graphic: c.m_DisallowFlags |= DRC_DISALLOW_GRAPHICS; break;
case T_hole: constraint.m_DisallowFlags |= DRC_DISALLOW_HOLES; break; case T_hole: c.m_DisallowFlags |= DRC_DISALLOW_HOLES; break;
case T_footprint: constraint.m_DisallowFlags |= DRC_DISALLOW_FOOTPRINTS; break; case T_footprint: c.m_DisallowFlags |= DRC_DISALLOW_FOOTPRINTS; break;
case T_EOF: case T_EOF:
reportError( _( "Missing ')'." ) ); reportError( _( "Missing ')'." ) );
@ -316,8 +320,8 @@ void DRC_RULES_PARSER::parseConstraint( DRC_RULE* aRule )
default: default:
msg.Printf( _( "Unrecognized item '%s'.| Expected %s." ), FromUTF8(), msg.Printf( _( "Unrecognized item '%s'.| Expected %s." ), FromUTF8(),
"'track', 'via', 'micro_via', 'buried_via', 'pad', 'zone', 'text', " "track, via, micro_via, buried_via, pad, zone, text, graphic, hole "
"'graphic', 'hole' or 'footprint'." ); "or footprint." );
reportError( msg ); reportError( msg );
break; break;
} }
@ -326,7 +330,7 @@ void DRC_RULES_PARSER::parseConstraint( DRC_RULE* aRule )
if( (int) CurTok() != DSN_RIGHT ) if( (int) CurTok() != DSN_RIGHT )
reportError( _( "Missing ')'." ) ); reportError( _( "Missing ')'." ) );
aRule->AddConstraint( constraint ); aRule->AddConstraint( c );
return; return;
} }
@ -349,12 +353,11 @@ void DRC_RULES_PARSER::parseConstraint( DRC_RULE* aRule )
} }
parseValueWithUnits( FromUTF8(), value ); parseValueWithUnits( FromUTF8(), value );
constraint.m_Value.SetMin( value ); c.m_Value.SetMin( value );
if( (int) NextTok() != DSN_RIGHT ) if( (int) NextTok() != DSN_RIGHT )
{ {
reportError( wxString::Format( _( "Unrecognized item '%s'." ), reportError( wxString::Format( _( "Unrecognized item '%s'." ), FromUTF8() ) );
FromUTF8() ) );
parseUnknown(); parseUnknown();
} }
@ -370,12 +373,11 @@ void DRC_RULES_PARSER::parseConstraint( DRC_RULE* aRule )
} }
parseValueWithUnits( FromUTF8(), value ); parseValueWithUnits( FromUTF8(), value );
constraint.m_Value.SetMax( value ); c.m_Value.SetMax( value );
if( (int) NextTok() != DSN_RIGHT ) if( (int) NextTok() != DSN_RIGHT )
{ {
reportError( wxString::Format( _( "Unrecognized item '%s'." ), reportError( wxString::Format( _( "Unrecognized item '%s'." ), FromUTF8() ) );
FromUTF8() ) );
parseUnknown(); parseUnknown();
} }
@ -391,12 +393,11 @@ void DRC_RULES_PARSER::parseConstraint( DRC_RULE* aRule )
} }
parseValueWithUnits( FromUTF8(), value ); parseValueWithUnits( FromUTF8(), value );
constraint.m_Value.SetOpt( value ); c.m_Value.SetOpt( value );
if( (int) NextTok() != DSN_RIGHT ) if( (int) NextTok() != DSN_RIGHT )
{ {
reportError( wxString::Format( _( "Unrecognized item '%s'." ), reportError( wxString::Format( _( "Unrecognized item '%s'." ), FromUTF8() ) );
FromUTF8() ) );
parseUnknown(); parseUnknown();
} }
@ -409,7 +410,7 @@ void DRC_RULES_PARSER::parseConstraint( DRC_RULE* aRule )
default: default:
msg.Printf( _( "Unrecognized item '%s'.| Expected %s." ), msg.Printf( _( "Unrecognized item '%s'.| Expected %s." ),
FromUTF8(), FromUTF8(),
"'min', 'max', 'opt'" ); "min, max or opt" );
reportError( msg ); reportError( msg );
parseUnknown(); parseUnknown();
} }
@ -418,7 +419,7 @@ void DRC_RULES_PARSER::parseConstraint( DRC_RULE* aRule )
if( (int) CurTok() != DSN_RIGHT ) if( (int) CurTok() != DSN_RIGHT )
reportError( _( "Missing ')'." ) ); reportError( _( "Missing ')'." ) );
aRule->AddConstraint( constraint ); aRule->AddConstraint( c );
} }
@ -486,8 +487,7 @@ LSET DRC_RULES_PARSER::parseLayer()
if( !retVal.any() ) if( !retVal.any() )
{ {
reportError( wxString::Format( _( "Unrecognized layer '%s'." ), reportError( wxString::Format( _( "Unrecognized layer '%s'." ), layerName ) );
layerName ) );
retVal.set( Rescue ); retVal.set( Rescue );
} }
} }

View File

@ -681,7 +681,7 @@ const EDA_RECT FOOTPRINT::GetBoundingBox() const
const EDA_RECT FOOTPRINT::GetBoundingBox( bool aIncludeText, bool aIncludeInvisibleText ) const const EDA_RECT FOOTPRINT::GetBoundingBox( bool aIncludeText, bool aIncludeInvisibleText ) const
{ {
BOARD* board = GetBoard(); const BOARD* board = GetBoard();
if( board ) if( board )
{ {
@ -786,7 +786,7 @@ const EDA_RECT FOOTPRINT::GetBoundingBox( bool aIncludeText, bool aIncludeInvisi
SHAPE_POLY_SET FOOTPRINT::GetBoundingHull() const SHAPE_POLY_SET FOOTPRINT::GetBoundingHull() const
{ {
BOARD* board = GetBoard(); const BOARD* board = GetBoard();
if( board ) if( board )
{ {
@ -1349,7 +1349,7 @@ const BOX2I FOOTPRINT::ViewBBox() const
// Add the Clearance shape size: (shape around the pads when the clearance is shown. Not // Add the Clearance shape size: (shape around the pads when the clearance is shown. Not
// optimized, but the draw cost is small (perhaps smaller than optimization). // optimized, but the draw cost is small (perhaps smaller than optimization).
BOARD* board = GetBoard(); const BOARD* board = GetBoard();
if( board ) if( board )
{ {

View File

@ -215,7 +215,7 @@ bool PAD::FlashLayer( int aLayer ) const
if( aLayer == UNDEFINED_LAYER ) if( aLayer == UNDEFINED_LAYER )
return true; return true;
BOARD* board = GetBoard(); const BOARD* board = GetBoard();
if( !board ) if( !board )
return false; return false;
@ -316,8 +316,8 @@ void PAD::BuildEffectiveShapes( PCB_LAYER_ID aLayer ) const
if( !m_shapesDirty ) if( !m_shapesDirty )
return; return;
BOARD* board = GetBoard(); const BOARD* board = GetBoard();
int maxError = board ? board->GetDesignSettings().m_MaxError : ARC_HIGH_DEF; int maxError = board ? board->GetDesignSettings().m_MaxError : ARC_HIGH_DEF;
m_effectiveShape = std::make_shared<SHAPE_COMPOUND>(); m_effectiveShape = std::make_shared<SHAPE_COMPOUND>();
m_effectiveHoleShape = nullptr; m_effectiveHoleShape = nullptr;
@ -489,8 +489,8 @@ void PAD::BuildEffectivePolygon() const
if( !m_polyDirty ) if( !m_polyDirty )
return; return;
BOARD* board = GetBoard(); const BOARD* board = GetBoard();
int maxError = board ? board->GetDesignSettings().m_MaxError : ARC_HIGH_DEF; int maxError = board ? board->GetDesignSettings().m_MaxError : ARC_HIGH_DEF;
// Polygon // Polygon
m_effectivePolygon = std::make_shared<SHAPE_POLY_SET>(); m_effectivePolygon = std::make_shared<SHAPE_POLY_SET>();
@ -719,7 +719,7 @@ int PAD::GetSolderMaskMargin() const
if( margin == 0 ) if( margin == 0 )
{ {
BOARD* brd = GetBoard(); const BOARD* brd = GetBoard();
if( brd ) if( brd )
margin = brd->GetDesignSettings().m_SolderMaskMargin; margin = brd->GetDesignSettings().m_SolderMaskMargin;
@ -1234,7 +1234,7 @@ double PAD::ViewGetLOD( int aLayer, KIGFX::VIEW* aView ) const
PCB_PAINTER* painter = static_cast<PCB_PAINTER*>( aView->GetPainter() ); PCB_PAINTER* painter = static_cast<PCB_PAINTER*>( aView->GetPainter() );
PCB_RENDER_SETTINGS* renderSettings = painter->GetSettings(); PCB_RENDER_SETTINGS* renderSettings = painter->GetSettings();
BOARD* board = GetBoard(); const BOARD* board = GetBoard();
LSET visible = LSET::AllLayersMask(); LSET visible = LSET::AllLayersMask();
// Meta control for hiding all pads // Meta control for hiding all pads

View File

@ -206,8 +206,8 @@ void PAD::addPadPrimitivesToPolygon( SHAPE_POLY_SET* aMergedPolygon, PCB_LAYER_I
void PAD::MergePrimitivesAsPolygon( SHAPE_POLY_SET* aMergedPolygon, PCB_LAYER_ID aLayer, void PAD::MergePrimitivesAsPolygon( SHAPE_POLY_SET* aMergedPolygon, PCB_LAYER_ID aLayer,
ERROR_LOC aErrorLoc ) const ERROR_LOC aErrorLoc ) const
{ {
BOARD* board = GetBoard(); const BOARD* board = GetBoard();
int maxError = board ? board->GetDesignSettings().m_MaxError: ARC_HIGH_DEF; int maxError = board ? board->GetDesignSettings().m_MaxError : ARC_HIGH_DEF;
aMergedPolygon->RemoveAllContours(); aMergedPolygon->RemoveAllContours();

View File

@ -98,8 +98,8 @@ static void existsOnLayer( LIBEVAL::CONTEXT* aCtx, void *self )
return; return;
} }
wxString layerName = arg->AsString(); const wxString& layerName = arg->AsString();
wxPGChoices& layerMap = ENUM_MAP<PCB_LAYER_ID>::Instance().Choices(); wxPGChoices& layerMap = ENUM_MAP<PCB_LAYER_ID>::Instance().Choices();
if( aCtx->HasErrorCallback() ) if( aCtx->HasErrorCallback() )
{ {
@ -881,24 +881,39 @@ public:
LIBEVAL::VALUE( double( aLayer ) ) LIBEVAL::VALUE( double( aLayer ) )
{}; {};
virtual bool EqualTo( const VALUE* b ) const override virtual bool EqualTo( LIBEVAL::CONTEXT* aCtx, const VALUE* b ) const override
{ {
// For boards with user-defined layer names there will be 2 entries for each layer // For boards with user-defined layer names there will be 2 entries for each layer
// in the ENUM_MAP: one for the canonical layer name and one for the user layer name. // in the ENUM_MAP: one for the canonical layer name and one for the user layer name.
// We need to check against both. // We need to check against both.
wxPGChoices& layerMap = ENUM_MAP<PCB_LAYER_ID>::Instance().Choices(); wxPGChoices& layerMap = ENUM_MAP<PCB_LAYER_ID>::Instance().Choices();
PCB_LAYER_ID layerId = ToLAYER_ID( (int) AsDouble() ); const wxString& layerName = b->AsString();
BOARD* board = static_cast<PCB_EXPR_CONTEXT*>( aCtx )->GetBoard();
std::unique_lock<std::mutex> cacheLock( board->m_CachesMutex );
auto i = board->m_LayerExpressionCache.find( layerName );
LSET mask;
for( unsigned ii = 0; ii < layerMap.GetCount(); ++ii ) if( i == board->m_LayerExpressionCache.end() )
{ {
wxPGChoiceEntry& entry = layerMap[ii]; for( unsigned ii = 0; ii < layerMap.GetCount(); ++ii )
{
wxPGChoiceEntry& entry = layerMap[ii];
if( entry.GetValue() == layerId && entry.GetText().Matches( b->AsString() ) ) if( entry.GetText().Matches( layerName ) )
return true; mask.set( ToLAYER_ID( entry.GetValue() ) );
}
board->m_LayerExpressionCache[ layerName ] = mask;
}
else
{
mask = i->second;
} }
return false; PCB_LAYER_ID layerId = ToLAYER_ID( (int) AsDouble() );
return mask.test( layerId );
} }
}; };
@ -982,6 +997,17 @@ LIBEVAL::VALUE PCB_EXPR_NETNAME_REF::GetValue( LIBEVAL::CONTEXT* aCtx )
} }
LIBEVAL::VALUE PCB_EXPR_TYPE_REF::GetValue( LIBEVAL::CONTEXT* aCtx )
{
BOARD_ITEM* item = GetObject( aCtx );
if( !item )
return LIBEVAL::VALUE();
return LIBEVAL::VALUE( ENUM_MAP<KICAD_T>::Instance().ToString( item->Type() ) );
}
LIBEVAL::FUNC_CALL_REF PCB_EXPR_UCODE::CreateFuncCall( const wxString& aName ) LIBEVAL::FUNC_CALL_REF PCB_EXPR_UCODE::CreateFuncCall( const wxString& aName )
{ {
PCB_EXPR_BUILTIN_FUNCTIONS& registry = PCB_EXPR_BUILTIN_FUNCTIONS::Instance(); PCB_EXPR_BUILTIN_FUNCTIONS& registry = PCB_EXPR_BUILTIN_FUNCTIONS::Instance();
@ -1016,6 +1042,15 @@ std::unique_ptr<LIBEVAL::VAR_REF> PCB_EXPR_UCODE::CreateVarRef( const wxString&
else else
return nullptr; return nullptr;
} }
else if( aField.CmpNoCase( "Type" ) == 0 )
{
if( aVar == "A" )
return std::make_unique<PCB_EXPR_TYPE_REF>( 0 );
else if( aVar == "B" )
return std::make_unique<PCB_EXPR_TYPE_REF>( 1 );
else
return nullptr;
}
if( aVar == "A" || aVar == "AB" ) if( aVar == "A" || aVar == "AB" )
vref = std::make_unique<PCB_EXPR_VAR_REF>( 0 ); vref = std::make_unique<PCB_EXPR_VAR_REF>( 0 );
@ -1072,6 +1107,15 @@ std::unique_ptr<LIBEVAL::VAR_REF> PCB_EXPR_UCODE::CreateVarRef( const wxString&
} }
BOARD* PCB_EXPR_CONTEXT::GetBoard() const
{
if( m_items[0] )
return m_items[0]->GetBoard();
return nullptr;
}
class PCB_UNIT_RESOLVER : public LIBEVAL::UNIT_RESOLVER class PCB_UNIT_RESOLVER : public LIBEVAL::UNIT_RESOLVER
{ {
public: public:

View File

@ -32,7 +32,7 @@
#include <libeval_compiler/libeval_compiler.h> #include <libeval_compiler/libeval_compiler.h>
class BOARD;
class BOARD_ITEM; class BOARD_ITEM;
class PCB_EXPR_VAR_REF; class PCB_EXPR_VAR_REF;
@ -65,6 +65,8 @@ public:
m_items[1] = b; m_items[1] = b;
} }
BOARD* GetBoard() const;
BOARD_ITEM* GetItem( int index ) const BOARD_ITEM* GetItem( int index ) const
{ {
return m_items[index]; return m_items[index];
@ -147,6 +149,20 @@ public:
}; };
class PCB_EXPR_TYPE_REF : public PCB_EXPR_VAR_REF
{
public:
PCB_EXPR_TYPE_REF( int aItemIndex ) :
PCB_EXPR_VAR_REF( aItemIndex )
{
SetType( LIBEVAL::VT_STRING );
//printf("*** CreateVarRef %p %d\n", this, aItemIndex );
}
LIBEVAL::VALUE GetValue( LIBEVAL::CONTEXT* aCtx ) override;
};
class PCB_EXPR_BUILTIN_FUNCTIONS class PCB_EXPR_BUILTIN_FUNCTIONS
{ {
public: public:

View File

@ -742,7 +742,7 @@ void PCB_PAINTER::draw( const PCB_ARC* aArc, int aLayer )
void PCB_PAINTER::draw( const PCB_VIA* aVia, int aLayer ) void PCB_PAINTER::draw( const PCB_VIA* aVia, int aLayer )
{ {
BOARD* board = aVia->GetBoard(); const BOARD* board = aVia->GetBoard();
BOARD_DESIGN_SETTINGS& bds = board->GetDesignSettings(); BOARD_DESIGN_SETTINGS& bds = board->GetDesignSettings();
COLOR4D color = m_pcbSettings.GetColor( aVia, aLayer ); COLOR4D color = m_pcbSettings.GetColor( aVia, aLayer );
VECTOR2D center( aVia->GetStart() ); VECTOR2D center( aVia->GetStart() );
@ -897,7 +897,7 @@ void PCB_PAINTER::draw( const PCB_VIA* aVia, int aLayer )
void PCB_PAINTER::draw( const PAD* aPad, int aLayer ) void PCB_PAINTER::draw( const PAD* aPad, int aLayer )
{ {
BOARD* board = aPad->GetBoard(); const BOARD* board = aPad->GetBoard();
BOARD_DESIGN_SETTINGS& bds = board->GetDesignSettings(); BOARD_DESIGN_SETTINGS& bds = board->GetDesignSettings();
COLOR4D color = m_pcbSettings.GetColor( aPad, aLayer ); COLOR4D color = m_pcbSettings.GetColor( aPad, aLayer );

View File

@ -526,7 +526,7 @@ bool PCB_VIA::FlashLayer( int aLayer ) const
if( aLayer == UNDEFINED_LAYER ) if( aLayer == UNDEFINED_LAYER )
return true; return true;
BOARD* board = GetBoard(); const BOARD* board = GetBoard();
if( !board ) if( !board )
return false; return false;
@ -583,9 +583,8 @@ double PCB_TRACK::ViewGetLOD( int aLayer, KIGFX::VIEW* aView ) const
const BOX2I PCB_TRACK::ViewBBox() const const BOX2I PCB_TRACK::ViewBBox() const
{ {
BOX2I bbox = GetBoundingBox(); BOX2I bbox = GetBoundingBox();
const BOARD* board = GetBoard();
BOARD* board = GetBoard();
if( board ) if( board )
bbox.Inflate( 2 * board->GetDesignSettings().GetBiggestClearanceValue() ); bbox.Inflate( 2 * board->GetDesignSettings().GetBiggestClearanceValue() );
@ -619,7 +618,7 @@ double PCB_VIA::ViewGetLOD( int aLayer, KIGFX::VIEW* aView ) const
PCB_PAINTER* painter = static_cast<PCB_PAINTER*>( aView->GetPainter() ); PCB_PAINTER* painter = static_cast<PCB_PAINTER*>( aView->GetPainter() );
PCB_RENDER_SETTINGS* renderSettings = painter->GetSettings(); PCB_RENDER_SETTINGS* renderSettings = painter->GetSettings();
BOARD* board = GetBoard(); const BOARD* board = GetBoard();
LSET visible = LSET::AllLayersMask(); LSET visible = LSET::AllLayersMask();
// Meta control for hiding all vias // Meta control for hiding all vias
@ -813,7 +812,7 @@ void PCB_TRACK::GetMsgPanelInfoBase_Common( EDA_DRAW_FRAME* aFrame,
wxString PCB_VIA::layerMaskDescribe() const wxString PCB_VIA::layerMaskDescribe() const
{ {
BOARD* board = GetBoard(); const BOARD* board = GetBoard();
PCB_LAYER_ID top_layer; PCB_LAYER_ID top_layer;
PCB_LAYER_ID bottom_layer; PCB_LAYER_ID bottom_layer;

View File

@ -1181,9 +1181,9 @@ bool ZONE::BuildSmoothedPoly( SHAPE_POLY_SET& aSmoothedPoly, PCB_LAYER_ID aLayer
return true; return true;
} }
BOARD* board = GetBoard(); const BOARD* board = GetBoard();
int maxError = ARC_HIGH_DEF; int maxError = ARC_HIGH_DEF;
bool keepExternalFillets = false; bool keepExternalFillets = false;
if( board ) if( board )
{ {
@ -1294,8 +1294,8 @@ void ZONE::TransformSmoothedOutlineToPolygon( SHAPE_POLY_SET& aCornerBuffer, int
// holes are linked to the main outline, so only one polygon is created. // holes are linked to the main outline, so only one polygon is created.
if( aClearance ) if( aClearance )
{ {
BOARD* board = GetBoard(); const BOARD* board = GetBoard();
int maxError = ARC_HIGH_DEF; int maxError = ARC_HIGH_DEF;
if( board ) if( board )
maxError = board->GetDesignSettings().m_MaxError; maxError = board->GetDesignSettings().m_MaxError;

View File

@ -119,7 +119,7 @@ static bool testEvalExpr( const wxString& expr, LIBEVAL::VALUE expectedResult,
if( ok ) if( ok )
{ {
result = *ucode.Run( &context ); result = *ucode.Run( &context );
ok = ( result.EqualTo( &expectedResult ) ); ok = ( result.EqualTo( &context, &expectedResult ) );
} }