KiCad PCB EDA Suite
Loading...
Searching...
No Matches
drc_test_provider.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 (C) 2018-2024 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, 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
25#ifndef DRC_TEST_PROVIDER__H
26#define DRC_TEST_PROVIDER__H
27
28#include <board.h>
29#include <board_commit.h>
30#include <pcb_marker.h>
31
32#include <functional>
33#include <set>
34
35class DRC_ENGINE;
37class DRC_RULE;
38class DRC_CONSTRAINT;
39
41{
42public:
44
46
48 {
50 return self;
51 }
52
53 void RegisterTestProvider( DRC_TEST_PROVIDER* provider ) { m_providers.push_back( provider ); }
54 std::vector<DRC_TEST_PROVIDER*> GetTestProviders() const { return m_providers; }
55
56private:
57 std::vector<DRC_TEST_PROVIDER*> m_providers;
58};
59
60template<class T> class DRC_REGISTER_TEST_PROVIDER
61{
62public:
64 {
65 T* provider = new T;
67 }
68};
69
70
76{
77public:
79 virtual ~DRC_TEST_PROVIDER() = default;
80
81 static void Init();
82
83 void SetDRCEngine( DRC_ENGINE *engine )
84 {
85 m_drcEngine = engine;
86 m_stats.clear();
87 }
88
89 bool RunTests( EDA_UNITS aUnits )
90 {
91 SetUserUnits( aUnits );
92 return Run();
93 }
94
98 virtual bool Run() = 0;
99
100 virtual const wxString GetName() const;
101 virtual const wxString GetDescription() const;
102
103 BOARD_COMMIT* GetCommit() const { return m_commit; };
104 void SetCommit( BOARD_COMMIT* aCommit ) { m_commit = aCommit; };
105
106protected:
107 int forEachGeometryItem( const std::vector<KICAD_T>& aTypes, LSET aLayers,
108 const std::function<bool(BOARD_ITEM*)>& aFunc );
109
110 // Do not use a wxString with a vararg list: it is a complex thing and can create issues.
111 // So prefer using a wxChar* item in this case:
112 void reportAux( const wxString& aMsg ) { reportAux( (const wxChar*) aMsg.wchar_str() ); }
113 virtual void reportAux( const wxChar* fmt, ... );
114
115 virtual void reportViolation( std::shared_ptr<DRC_ITEM>& item, const VECTOR2I& aMarkerPos,
116 int aMarkerLayer );
117 virtual bool reportProgress( size_t aCount, size_t aSize, size_t aDelta = 1 );
118 virtual bool reportPhase( const wxString& aStageName );
119
120 virtual void reportRuleStatistics();
121 virtual void accountCheck( const DRC_RULE* ruleToTest );
122 virtual void accountCheck( const DRC_CONSTRAINT& constraintToTest );
123
124 bool isInvisibleText( const BOARD_ITEM* aItem ) const;
125
126 wxString formatMsg( const wxString& aFormatString, const wxString& aSource, double aConstraint,
127 double aActual );
128 wxString formatMsg( const wxString& aFormatString, const wxString& aSource,
129 const EDA_ANGLE& aConstraint, const EDA_ANGLE& aActual );
130
131 // List of basic (ie: non-compound) geometry items
132 static std::vector<KICAD_T> s_allBasicItems;
133 static std::vector<KICAD_T> s_allBasicItemsButZones;
134
136
137protected:
139 std::unordered_map<const DRC_RULE*, int> m_stats;
140 bool m_isRuleDriven = true;
141 std::mutex m_statsMutex;
143};
144
145#endif // DRC_TEST_PROVIDER__H
A base class for any item which can be embedded within the BOARD container class, and therefore insta...
Definition: board_item.h:80
Design Rule Checker object that performs all the DRC tests.
Definition: drc_engine.h:86
std::vector< DRC_TEST_PROVIDER * > GetTestProviders() const
static DRC_TEST_PROVIDER_REGISTRY & Instance()
void RegisterTestProvider(DRC_TEST_PROVIDER *provider)
std::vector< DRC_TEST_PROVIDER * > m_providers
Represent a DRC "provider" which runs some DRC functions over a BOARD and spits out DRC_ITEM and posi...
wxString formatMsg(const wxString &aFormatString, const wxString &aSource, double aConstraint, double aActual)
static std::vector< KICAD_T > s_allBasicItemsButZones
virtual bool reportPhase(const wxString &aStageName)
int forEachGeometryItem(const std::vector< KICAD_T > &aTypes, LSET aLayers, const std::function< bool(BOARD_ITEM *)> &aFunc)
virtual void reportViolation(std::shared_ptr< DRC_ITEM > &item, const VECTOR2I &aMarkerPos, int aMarkerLayer)
BOARD_COMMIT * m_commit
bool RunTests(EDA_UNITS aUnits)
BOARD_COMMIT * GetCommit() const
static std::vector< KICAD_T > s_allBasicItems
virtual const wxString GetDescription() const
EDA_UNITS userUnits() const
DRC_ENGINE * m_drcEngine
bool isInvisibleText(const BOARD_ITEM *aItem) const
std::unordered_map< const DRC_RULE *, int > m_stats
virtual ~DRC_TEST_PROVIDER()=default
void reportAux(const wxString &aMsg)
virtual void accountCheck(const DRC_RULE *ruleToTest)
virtual bool Run()=0
Run this provider against the given PCB with configured options (if any).
void SetDRCEngine(DRC_ENGINE *engine)
virtual const wxString GetName() const
void SetCommit(BOARD_COMMIT *aCommit)
virtual void reportRuleStatistics()
virtual bool reportProgress(size_t aCount, size_t aSize, size_t aDelta=1)
LSET is a set of PCB_LAYER_IDs.
Definition: lset.h:36
void SetUserUnits(EDA_UNITS aUnits)
EDA_UNITS
Definition: eda_units.h:46