KiCad PCB EDA Suite
Loading...
Searching...
No Matches
commit.cpp
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 2016-2017 CERN
5 * Copyright (C) 2021 KiCad Developers, see AUTHORS.txt for contributors.
6 *
7 * @author Tomasz Wlostowski <[email protected]>
8 * @author Maciej Suminski <[email protected]>
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version 2
13 * of the License, or (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, you may find one here:
22 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
23 * or you may search the http://www.gnu.org website for the version 2 license,
24 * or you may write to the Free Software Foundation, Inc.,
25 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
26 */
27
28#include <core/kicad_algo.h>
29#include <commit.h>
30#include <eda_item.h>
31#include <macros.h>
32
34{
35}
36
37
39{
40 for( COMMIT_LINE& ent : m_changes )
41 {
42 if( ent.m_copy )
43 delete ent.m_copy;
44 }
45}
46
47
48COMMIT& COMMIT::Stage( EDA_ITEM* aItem, CHANGE_TYPE aChangeType, BASE_SCREEN* aScreen )
49{
50 // CHT_MODIFY and CHT_DONE are not compatible
51 wxASSERT( ( aChangeType & ( CHT_MODIFY | CHT_DONE ) ) != ( CHT_MODIFY | CHT_DONE ) );
52
53 int flag = aChangeType & CHT_FLAGS;
54
55 switch( aChangeType & CHT_TYPE )
56 {
57 case CHT_ADD:
58 wxASSERT( m_changedItems.find( aItem ) == m_changedItems.end() );
59 makeEntry( aItem, CHT_ADD | flag, nullptr, aScreen );
60 return *this;
61
62 case CHT_REMOVE:
63 makeEntry( aItem, CHT_REMOVE | flag, nullptr, aScreen );
64 return *this;
65
66 case CHT_MODIFY:
67 {
68 EDA_ITEM* parent = parentObject( aItem );
69 EDA_ITEM* clone = makeImage( parent );
70
71 wxASSERT( clone );
72
73 if( clone )
74 return createModified( parent, clone, flag, aScreen );
75
76 break;
77 }
78
79 default:
80 wxFAIL;
81 }
82
83 return *this;
84}
85
86
87COMMIT& COMMIT::Stage( std::vector<EDA_ITEM*> &container, CHANGE_TYPE aChangeType,
88 BASE_SCREEN *aScreen )
89{
90 for( EDA_ITEM* item : container )
91 Stage( item, aChangeType, aScreen);
92
93 return *this;
94}
95
96
97COMMIT& COMMIT::Stage( const PICKED_ITEMS_LIST &aItems, UNDO_REDO aModFlag, BASE_SCREEN *aScreen )
98{
99 for( unsigned int i = 0; i < aItems.GetCount(); i++ )
100 {
101 UNDO_REDO change_type = aItems.GetPickedItemStatus( i );
102 EDA_ITEM* item = aItems.GetPickedItem( i );
103
104 if( change_type == UNDO_REDO::UNSPECIFIED )
105 change_type = aModFlag;
106
107 if( EDA_ITEM* copy = aItems.GetPickedItemLink( i ) )
108 {
109 assert( change_type == UNDO_REDO::CHANGED );
110
111 // There was already a copy created, so use it
112 Modified( item, copy, aScreen );
113 }
114 else
115 {
116 Stage( item, convert( change_type ), aScreen );
117 }
118 }
119
120 return *this;
121}
122
123
125{
126 COMMIT_LINE* entry = findEntry( parentObject( aItem ), aScreen );
127
128 return entry ? entry->m_type : 0;
129}
130
131
132COMMIT& COMMIT::createModified( EDA_ITEM* aItem, EDA_ITEM* aCopy, int aExtraFlags, BASE_SCREEN* aScreen )
133{
134 EDA_ITEM* parent = parentObject( aItem );
135 auto entryIt = m_changedItems.find( parent );
136
137 if( entryIt != m_changedItems.end() )
138 {
139 delete aCopy;
140 return *this; // item has been already modified once
141 }
142
143 makeEntry( parent, CHT_MODIFY | aExtraFlags, aCopy, aScreen );
144
145 return *this;
146}
147
148
149void COMMIT::makeEntry( EDA_ITEM* aItem, CHANGE_TYPE aType, EDA_ITEM* aCopy, BASE_SCREEN *aScreen )
150{
151 // Expect an item copy if it is going to be modified
152 wxASSERT( !!aCopy == ( ( aType & CHT_TYPE ) == CHT_MODIFY ) );
153
154 if( m_changedItems.find( aItem ) != m_changedItems.end() )
155 {
156 alg::delete_if( m_changes, [aItem, aScreen]( const COMMIT_LINE& aEnt )
157 {
158 return aEnt.m_item == aItem && aEnt.m_screen == aScreen;
159 } );
160 }
161
162 COMMIT_LINE ent;
163
164 ent.m_item = aItem;
165 ent.m_type = aType;
166 ent.m_copy = aCopy;
167 ent.m_screen = aScreen;
168
169 m_changedItems.insert( aItem );
170 m_changes.push_back( ent );
171}
172
173
175{
176 for( COMMIT_LINE& change : m_changes )
177 {
178 if( change.m_item == aItem && change.m_screen == aScreen )
179 return &change;
180 }
181
182 return nullptr;
183}
184
185
187{
188 switch( aType )
189 {
190 case UNDO_REDO::NEWITEM:
191 return CHT_ADD;
192
193 case UNDO_REDO::DELETED:
194 return CHT_REMOVE;
195
196 default:
197 wxASSERT( false );
199
200 case UNDO_REDO::CHANGED:
201 return CHT_MODIFY;
202 }
203}
204
205
207{
208 switch( aType )
209 {
210 case CHT_ADD:
211 return UNDO_REDO::NEWITEM;
212
213 case CHT_REMOVE:
214 return UNDO_REDO::DELETED;
215
216 default:
217 wxASSERT( false );
219
220 case CHT_MODIFY:
221 return UNDO_REDO::CHANGED;
222 }
223}
224
Handles how to draw a screen (a board, a schematic ...)
Definition: base_screen.h:41
Represent a set of changes (additions, deletions or modifications) of a data model (e....
Definition: commit.h:73
virtual COMMIT & Stage(EDA_ITEM *aItem, CHANGE_TYPE aChangeType, BASE_SCREEN *aScreen=nullptr)
Definition: commit.cpp:48
COMMIT & createModified(EDA_ITEM *aItem, EDA_ITEM *aCopy, int aExtraFlags=0, BASE_SCREEN *aScreen=nullptr)
Definition: commit.cpp:132
COMMIT & Modified(EDA_ITEM *aItem, EDA_ITEM *aCopy, BASE_SCREEN *aScreen=nullptr)
Definition: commit.h:111
COMMIT()
Definition: commit.cpp:33
virtual ~COMMIT()
Add a new item to the model.
Definition: commit.cpp:38
COMMIT_LINE * findEntry(EDA_ITEM *aItem, BASE_SCREEN *aScreen=nullptr)
Search for an entry describing change for a particular item.
Definition: commit.cpp:174
virtual void makeEntry(EDA_ITEM *aItem, CHANGE_TYPE aType, EDA_ITEM *aCopy=nullptr, BASE_SCREEN *aScreen=nullptr)
Definition: commit.cpp:149
std::set< EDA_ITEM * > m_changedItems
Definition: commit.h:188
virtual EDA_ITEM * parentObject(EDA_ITEM *aItem) const =0
virtual EDA_ITEM * makeImage(EDA_ITEM *aItem) const =0
CHANGE_TYPE convert(UNDO_REDO aType) const
Definition: commit.cpp:186
int GetStatus(EDA_ITEM *aItem, BASE_SCREEN *aScreen=nullptr)
Definition: commit.cpp:124
std::vector< COMMIT_LINE > m_changes
Definition: commit.h:189
A base class for most all the KiCad significant classes used in schematics and boards.
Definition: eda_item.h:85
A holder to handle information on schematic or board items.
UNDO_REDO GetPickedItemStatus(unsigned int aIdx) const
EDA_ITEM * GetPickedItemLink(unsigned int aIdx) const
unsigned GetCount() const
EDA_ITEM * GetPickedItem(unsigned int aIdx) const
CHANGE_TYPE
Types of changes.
Definition: commit.h:40
@ CHT_MODIFY
Definition: commit.h:43
@ CHT_REMOVE
Definition: commit.h:42
@ CHT_DONE
Definition: commit.h:48
@ CHT_TYPE
Flag to indicate the change is already applied, just notify observers (not compatible with CHT_MODIFY...
Definition: commit.h:44
@ CHT_ADD
Definition: commit.h:41
@ CHT_FLAGS
Definition: commit.h:49
This file contains miscellaneous commonly used macros and functions.
#define KI_FALLTHROUGH
The KI_FALLTHROUGH macro is to be used when switch statement cases should purposely fallthrough from ...
Definition: macros.h:83
void delete_if(_Container &__c, _Function &&__f)
Deletes all values from __c for which __f returns true.
Definition: kicad_algo.h:173
EDA_ITEM * m_copy
Optional copy of the item.
Definition: commit.h:155
CHANGE_TYPE m_type
Modification type.
Definition: commit.h:156
EDA_ITEM * m_item
Main item that is added/deleted/modified.
Definition: commit.h:154
BASE_SCREEN * m_screen
Definition: commit.h:157
UNDO_REDO
Undo Redo considerations: Basically we have 3 cases New item Deleted item Modified item there is also...