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_MSG( m_changedItems.find( aItem ) == m_changedItems.end(),
59 wxT( "Item already staged for commit" ) );
60 makeEntry( aItem, CHT_ADD | flag, nullptr, aScreen );
61 return *this;
62
63 case CHT_REMOVE:
64 wxASSERT_MSG( m_deletedItems.find( aItem ) == m_deletedItems.end(),
65 wxT( "Item already staged for deletion" ) );
66 m_deletedItems.insert( aItem );
67 makeEntry( aItem, CHT_REMOVE | flag, nullptr, aScreen );
68 return *this;
69
70 case CHT_MODIFY:
71 {
72 EDA_ITEM* parent = parentObject( aItem );
73 EDA_ITEM* clone = makeImage( parent );
74
75 wxASSERT( clone );
76
77 if( clone )
78 return createModified( parent, clone, flag, aScreen );
79
80 break;
81 }
82
83 default:
84 wxFAIL;
85 }
86
87 return *this;
88}
89
90
91COMMIT& COMMIT::Stage( std::vector<EDA_ITEM*> &container, CHANGE_TYPE aChangeType,
92 BASE_SCREEN *aScreen )
93{
94 for( EDA_ITEM* item : container )
95 Stage( item, aChangeType, aScreen);
96
97 return *this;
98}
99
100
101COMMIT& COMMIT::Stage( const PICKED_ITEMS_LIST &aItems, UNDO_REDO aModFlag, BASE_SCREEN *aScreen )
102{
103 for( unsigned int i = 0; i < aItems.GetCount(); i++ )
104 {
105 UNDO_REDO change_type = aItems.GetPickedItemStatus( i );
106 EDA_ITEM* item = aItems.GetPickedItem( i );
107
108 if( change_type == UNDO_REDO::UNSPECIFIED )
109 change_type = aModFlag;
110
111 if( EDA_ITEM* copy = aItems.GetPickedItemLink( i ) )
112 {
113 assert( change_type == UNDO_REDO::CHANGED );
114
115 // There was already a copy created, so use it
116 Modified( item, copy, aScreen );
117 }
118 else
119 {
120 Stage( item, convert( change_type ), aScreen );
121 }
122 }
123
124 return *this;
125}
126
127
129{
130 COMMIT_LINE* entry = findEntry( parentObject( aItem ), aScreen );
131
132 return entry ? entry->m_type : 0;
133}
134
135
136COMMIT& COMMIT::createModified( EDA_ITEM* aItem, EDA_ITEM* aCopy, int aExtraFlags, BASE_SCREEN* aScreen )
137{
138 EDA_ITEM* parent = parentObject( aItem );
139
140 if( m_changedItems.find( parent ) != m_changedItems.end() )
141 {
142 delete aCopy;
143 return *this; // item has been already modified once
144 }
145
146 makeEntry( parent, CHT_MODIFY | aExtraFlags, aCopy, aScreen );
147
148 return *this;
149}
150
151
152void COMMIT::makeEntry( EDA_ITEM* aItem, CHANGE_TYPE aType, EDA_ITEM* aCopy, BASE_SCREEN *aScreen )
153{
154 // Expect an item copy if it is going to be modified
155 wxASSERT( !!aCopy == ( ( aType & CHT_TYPE ) == CHT_MODIFY ) );
156
157 COMMIT_LINE ent;
158
159 ent.m_item = aItem;
160 ent.m_type = aType;
161 ent.m_copy = aCopy;
162 ent.m_screen = aScreen;
163
164 m_changedItems.insert( aItem );
165 m_changes.push_back( ent );
166}
167
168
170{
171 for( COMMIT_LINE& change : m_changes )
172 {
173 if( change.m_item == aItem && change.m_screen == aScreen )
174 return &change;
175 }
176
177 return nullptr;
178}
179
180
182{
183 switch( aType )
184 {
185 case UNDO_REDO::NEWITEM:
186 return CHT_ADD;
187
188 case UNDO_REDO::DELETED:
189 return CHT_REMOVE;
190
191 default:
192 wxASSERT( false );
194
195 case UNDO_REDO::CHANGED:
196 return CHT_MODIFY;
197 }
198}
199
200
202{
203 switch( aType )
204 {
205 case CHT_ADD:
206 return UNDO_REDO::NEWITEM;
207
208 case CHT_REMOVE:
209 return UNDO_REDO::DELETED;
210
211 default:
212 wxASSERT( false );
214
215 case CHT_MODIFY:
216 return UNDO_REDO::CHANGED;
217 }
218}
219
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:72
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:136
std::set< EDA_ITEM * > m_deletedItems
Definition: commit.h:192
COMMIT & Modified(EDA_ITEM *aItem, EDA_ITEM *aCopy, BASE_SCREEN *aScreen=nullptr)
Definition: commit.h:110
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:169
virtual void makeEntry(EDA_ITEM *aItem, CHANGE_TYPE aType, EDA_ITEM *aCopy=nullptr, BASE_SCREEN *aScreen=nullptr)
Definition: commit.cpp:152
std::set< EDA_ITEM * > m_changedItems
Definition: commit.h:191
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:181
int GetStatus(EDA_ITEM *aItem, BASE_SCREEN *aScreen=nullptr)
Definition: commit.cpp:128
std::vector< COMMIT_LINE > m_changes
Definition: commit.h:193
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:41
@ CHT_MODIFY
Definition: commit.h:44
@ CHT_REMOVE
Definition: commit.h:43
@ CHT_DONE
Flag to indicate the change is already applied.
Definition: commit.h:47
@ CHT_TYPE
Definition: commit.h:45
@ CHT_ADD
Definition: commit.h:42
@ CHT_FLAGS
Definition: commit.h:48
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
EDA_ITEM * m_copy
Optional copy of the item.
Definition: commit.h:156
CHANGE_TYPE m_type
Modification type.
Definition: commit.h:157
EDA_ITEM * m_item
Main item that is added/deleted/modified.
Definition: commit.h:155
BASE_SCREEN * m_screen
Definition: commit.h:159
UNDO_REDO
Undo Redo considerations: Basically we have 3 cases New item Deleted item Modified item there is also...