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