KiCad PCB EDA Suite
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
collector.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) 2007-2008 SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
5 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, you may find one here:
19 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
20 * or you may search the http://www.gnu.org website for the version 2 license,
21 * or you may write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
23 */
24
25#ifndef COLLECTOR_H
26#define COLLECTOR_H
27
28#include <vector>
29#include <core/kicad_algo.h>
30#include <eda_item.h> // SEARCH_RESULT
31
32
33class EDA_ITEM;
34
35
48{
49public:
51 m_Threshold( 0 ),
52 m_MenuCancelled( false ),
53 m_scanTypes( {} )
54 {
55 // Inspect() is virtual so calling it from a class common inspector preserves
56 // polymorphism.
58 [this]( EDA_ITEM* aItem, void* aTestData )
59 {
60 return this->Inspect( aItem, aTestData );
61 };
62 }
63
64 virtual ~COLLECTOR() {}
65
66 virtual INSPECT_RESULT Inspect( EDA_ITEM* aTestItem, void* aTestData )
67 {
68 return INSPECT_RESULT::QUIT;
69 };
70
71 using ITER = std::vector<EDA_ITEM*>::iterator;
72 using CITER = std::vector<EDA_ITEM*>::const_iterator;
73
74 ITER begin() { return m_list.begin(); }
75 ITER end() { return m_list.end(); }
76 CITER begin() const { return m_list.cbegin(); }
77 CITER end() const { return m_list.cend(); }
78
82 int GetCount() const
83 {
84 return (int) m_list.size();
85 }
86
90 void Empty()
91 {
92 m_list.clear();
93 }
94
100 void Append( EDA_ITEM* item )
101 {
102 m_list.push_back( item );
103 }
104
110 void Remove( int aIndex )
111 {
112 m_list.erase( m_list.begin() + aIndex );
113 }
114
120 void Remove( const EDA_ITEM* aItem )
121 {
122 alg::delete_if( m_list, [&aItem]( const EDA_ITEM* aCandidate )
123 {
124 return aCandidate == aItem;
125 } );
126 }
127
134 {
135 return !m_backupList.empty();
136 }
137
141 void Combine()
142 {
143 std::copy( m_backupList.begin(), m_backupList.end(), std::back_inserter( m_list ) );
144 m_backupList.clear();
145 }
146
152 void Transfer( int aIndex )
153 {
154 m_backupList.push_back( m_list[aIndex] );
155 m_list.erase( m_list.begin() + aIndex );
156 }
157
163 void Transfer( EDA_ITEM* aItem )
164 {
165 for( size_t i = 0; i < m_list.size(); i++ )
166 {
167 if( m_list[i] == aItem )
168 {
169 m_list.erase( m_list.begin() + i );
170 m_backupList.push_back( aItem );
171 return;
172 }
173 }
174 }
175
182 virtual EDA_ITEM* operator[]( int aIndex ) const
183 {
184 if( (unsigned)aIndex < (unsigned)GetCount() ) // (unsigned) excludes aIndex<0 also
185 return m_list[ aIndex ];
186
187 return nullptr;
188 }
189
196 bool HasItem( const EDA_ITEM* aItem ) const
197 {
198 for( size_t i = 0; i < m_list.size(); i++ )
199 {
200 if( m_list[i] == aItem )
201 return true;
202 }
203
204 return false;
205 }
206
212 void SetScanTypes( const std::vector<KICAD_T>& aTypes ) { m_scanTypes = aTypes; }
213
214 void SetRefPos( const VECTOR2I& aRefPos ) { m_refPos = aRefPos; }
215
222 int CountType( KICAD_T aType )
223 {
224 int cnt = 0;
225
226 for( size_t i = 0; i < m_list.size(); i++ )
227 {
228 if( m_list[i]->Type() == aType )
229 cnt++;
230 }
231
232 return cnt;
233 }
234
235 int m_Threshold; // Hit-test threshold in internal units.
236
237 wxString m_MenuTitle; // The title of selection disambiguation menu (if needed)
238 bool m_MenuCancelled; // Indicates selection disambiguation menu was canceled
239
240protected:
241 std::vector<EDA_ITEM*> m_list; // Primary list of most likely items
242 std::vector<EDA_ITEM*> m_backupList; // Secondary list with items removed by heuristics
243
244 std::vector<KICAD_T> m_scanTypes;
246
247 VECTOR2I m_refPos; // Reference pos used to generate the collection.
248};
249
250#endif // COLLECTOR_H
An abstract class that will find and hold all the objects according to an inspection done by the Insp...
Definition: collector.h:48
std::vector< EDA_ITEM * > m_backupList
Definition: collector.h:242
void Transfer(EDA_ITEM *aItem)
Move aItem (if exists in the collector) to the backup list.
Definition: collector.h:163
std::vector< EDA_ITEM * >::const_iterator CITER
Definition: collector.h:72
void Transfer(int aIndex)
Move the item at aIndex (first position is 0) to the backup list.
Definition: collector.h:152
bool m_MenuCancelled
Definition: collector.h:238
virtual INSPECT_RESULT Inspect(EDA_ITEM *aTestItem, void *aTestData)
Definition: collector.h:66
virtual ~COLLECTOR()
Definition: collector.h:64
INSPECTOR_FUNC m_inspector
Definition: collector.h:245
void Empty()
Clear the list.
Definition: collector.h:90
ITER begin()
Definition: collector.h:74
VECTOR2I m_refPos
Definition: collector.h:247
COLLECTOR()
Definition: collector.h:50
int GetCount() const
Return the number of objects in the list.
Definition: collector.h:82
std::vector< EDA_ITEM * >::iterator ITER
Definition: collector.h:71
wxString m_MenuTitle
Definition: collector.h:237
bool HasItem(const EDA_ITEM *aItem) const
Tests if aItem has already been collected.
Definition: collector.h:196
void SetScanTypes(const std::vector< KICAD_T > &aTypes)
Record the list of KICAD_T types to consider for collection by the Inspect() function.
Definition: collector.h:212
void SetRefPos(const VECTOR2I &aRefPos)
Definition: collector.h:214
int CountType(KICAD_T aType)
Count the number of items matching aType.
Definition: collector.h:222
std::vector< KICAD_T > m_scanTypes
Definition: collector.h:244
CITER end() const
Definition: collector.h:77
void Remove(int aIndex)
Remove the item at aIndex (first position is 0).
Definition: collector.h:110
std::vector< EDA_ITEM * > m_list
Definition: collector.h:241
int m_Threshold
Definition: collector.h:235
virtual EDA_ITEM * operator[](int aIndex) const
Used for read only access and returns the object at aIndex.
Definition: collector.h:182
void Remove(const EDA_ITEM *aItem)
Remove the item aItem (if exists in the collector).
Definition: collector.h:120
ITER end()
Definition: collector.h:75
bool HasAdditionalItems()
Test if the collector has heuristic backup items.
Definition: collector.h:133
CITER begin() const
Definition: collector.h:76
void Combine()
Re-combine the backup list into the main list of the collector.
Definition: collector.h:141
void Append(EDA_ITEM *item)
Add an item to the end of the list.
Definition: collector.h:100
A base class for most all the KiCad significant classes used in schematics and boards.
Definition: eda_item.h:96
INSPECT_RESULT
Definition: eda_item.h:43
std::function< INSPECT_RESULT(EDA_ITEM *aItem, void *aTestData) > INSPECTOR_FUNC
Used to inspect and possibly collect the (search) results of iterating over a list or tree of KICAD_T...
Definition: eda_item.h:86
void delete_if(_Container &__c, _Function &&__f)
Deletes all values from __c for which __f returns true.
Definition: kicad_algo.h:174
KICAD_T
The set of class identification values stored in EDA_ITEM::m_structType.
Definition: typeinfo.h:78