/* * This program source code file is part of KiCad, a free EDA CAD application. * * Copyright (C) 2004-2020 KiCad Developers. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, you may find one here: * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html * or you may search the http://www.gnu.org website for the version 2 license, * or you may write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA */ #include #include #include #include #include #include /* Drilled hole size test. scans vias/through-hole pads and checks for min drill sizes Errors generated: - DRCE_TOO_SMALL_DRILL - DRCE_TOO_SMALL_MICROVIA_DRILL TODO: max drill size check */ class DRC_TEST_PROVIDER_HOLE_SIZE : public DRC_TEST_PROVIDER { public: DRC_TEST_PROVIDER_HOLE_SIZE() : m_board( nullptr ) { } virtual ~DRC_TEST_PROVIDER_HOLE_SIZE() { } virtual bool Run() override; virtual const wxString GetName() const override { return "hole_size"; }; virtual const wxString GetDescription() const override { return "Tests sizes of drilled holes (via/pad drills)"; } virtual std::set GetConstraintTypes() const override; int GetNumPhases() const override; private: void checkVia( VIA* via, bool aExceedMicro, bool aExceedStd ); void checkPad( PAD* aPad ); BOARD* m_board; }; bool DRC_TEST_PROVIDER_HOLE_SIZE::Run() { if( !reportPhase( _( "Checking pad holes..." ) ) ) return false; m_board = m_drcEngine->GetBoard(); for( FOOTPRINT* footprint : m_board->Footprints() ) { if( m_drcEngine->IsErrorLimitExceeded( DRCE_TOO_SMALL_DRILL ) ) break; for( PAD* pad : footprint->Pads() ) { if( m_drcEngine->IsErrorLimitExceeded( DRCE_TOO_SMALL_DRILL ) ) break; checkPad( pad ); } } if( !reportPhase( _( "Checking via holes..." ) ) ) return false; std::vector vias; for( TRACK* track : m_board->Tracks() ) { if( track->Type() == PCB_VIA_T ) vias.push_back( static_cast( track ) ); } for( VIA* via : vias ) { bool exceedMicro = m_drcEngine->IsErrorLimitExceeded( DRCE_TOO_SMALL_MICROVIA_DRILL ); bool exceedStd = m_drcEngine->IsErrorLimitExceeded( DRCE_TOO_SMALL_DRILL ); if( exceedMicro && exceedStd ) break; checkVia( via, exceedMicro, exceedStd ); } reportRuleStatistics(); return true; } void DRC_TEST_PROVIDER_HOLE_SIZE::checkPad( PAD* aPad ) { int holeSize = std::min( aPad->GetDrillSize().x, aPad->GetDrillSize().y ); if( holeSize == 0 ) return; auto constraint = m_drcEngine->EvalRulesForItems( HOLE_SIZE_CONSTRAINT, aPad ); int minHole = constraint.GetValue().Min(); accountCheck( constraint ); if( holeSize < minHole ) { std::shared_ptr drcItem = DRC_ITEM::Create( DRCE_TOO_SMALL_DRILL ); m_msg.Printf( _( "(%s %s; actual %s)" ), constraint.GetName(), MessageTextFromValue( userUnits(), minHole ), MessageTextFromValue( userUnits(), holeSize ) ); drcItem->SetErrorMessage( drcItem->GetErrorText() + wxS( " " ) + m_msg ); drcItem->SetItems( aPad ); drcItem->SetViolatingRule( constraint.GetParentRule() ); reportViolation( drcItem, aPad->GetPosition() ); } } void DRC_TEST_PROVIDER_HOLE_SIZE::checkVia( VIA* via, bool aExceedMicro, bool aExceedStd ) { int errorCode; if( via->GetViaType() == VIATYPE::MICROVIA ) { if( aExceedMicro ) return; errorCode = DRCE_TOO_SMALL_MICROVIA_DRILL; } else { if( aExceedStd ) return; errorCode = DRCE_TOO_SMALL_DRILL; } auto constraint = m_drcEngine->EvalRulesForItems( HOLE_SIZE_CONSTRAINT, via ); int minHole = constraint.GetValue().Min(); accountCheck( constraint ); if( via->GetDrillValue() < minHole ) { std::shared_ptr drcItem = DRC_ITEM::Create( errorCode ); m_msg.Printf( _( "(%s %s; actual %s)" ), constraint.GetName(), MessageTextFromValue( userUnits(), minHole ), MessageTextFromValue( userUnits(), via->GetDrillValue() ) ); drcItem->SetErrorMessage( drcItem->GetErrorText() + wxS( " " ) + m_msg ); drcItem->SetItems( via ); drcItem->SetViolatingRule( constraint.GetParentRule() ); reportViolation( drcItem, via->GetPosition() ); } } int DRC_TEST_PROVIDER_HOLE_SIZE::GetNumPhases() const { return 2; } std::set DRC_TEST_PROVIDER_HOLE_SIZE::GetConstraintTypes() const { return { HOLE_SIZE_CONSTRAINT }; } namespace detail { static DRC_REGISTER_TEST_PROVIDER dummy; }