2 * Jalview - A Sequence Alignment Editor and Viewer
\r
3 * Copyright (C) 2006 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle
\r
5 * This program is free software; you can redistribute it and/or
\r
6 * modify it under the terms of the GNU General Public License
\r
7 * as published by the Free Software Foundation; either version 2
\r
8 * of the License, or (at your option) any later version.
\r
10 * This program is distributed in the hope that it will be useful,
\r
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
\r
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
\r
13 * GNU General Public License for more details.
\r
15 * You should have received a copy of the GNU General Public License
\r
16 * along with this program; if not, write to the Free Software
\r
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
\r
19 package jalview.commands;
\r
21 import jalview.datamodel.*;
\r
25 * <p>Title: EditCommmand</p>
\r
27 * <p>Description: Essential information for performing
\r
28 * undo and redo for cut/paste insert/delete gap
\r
29 * which can be stored in the HistoryList </p>
\r
31 * <p>Copyright: Copyright (c) 2006</p>
\r
33 * <p>Company: Dundee University</p>
\r
35 * @author not attributable
\r
38 public class EditCommand implements CommandI
\r
40 public static String INSERT_GAP = "InsertGap";
\r
41 public static String DELETE_GAP = "DeleteGap";
\r
42 public static String CUT = "Cut";
\r
43 public static String PASTE = "Paste";
\r
49 public EditCommand()
\r
52 public EditCommand(String description)
\r
54 this.description = description;
\r
57 public EditCommand(String description,
\r
64 this.description = description;
\r
66 if (command.equalsIgnoreCase(INSERT_GAP)
\r
67 || command.equalsIgnoreCase(DELETE_GAP))
\r
69 edits = new Edit[] { new Edit(command, seqs, position, number, gapChar)};
\r
75 public EditCommand( String description,
\r
82 this.description = description;
\r
83 if ( command.equalsIgnoreCase(CUT) || command.equalsIgnoreCase(PASTE))
\r
85 edits = new Edit[]{new Edit(command, seqs, position, number, al)};
\r
92 public String getDescription()
\r
97 public int getSize()
\r
99 return edits==null?0:edits.length;
\r
103 public void appendEdit(String command,
\r
108 boolean performEdit)
\r
110 Edit edit = new Edit(command, seqs, position, number, gapChar);
\r
114 Edit[] temp = new Edit[edits.length + 1];
\r
115 System.arraycopy(edits, 0, temp, 0, edits.length);
\r
117 edits[edits.length - 1] = edit;
\r
120 edits = new Edit[] { edit };
\r
123 performEdit(edits.length - 1);
\r
126 void performEdit(int commandIndex)
\r
128 int eSize = edits.length;
\r
129 for (int e = commandIndex; e < eSize; e++)
\r
131 if (edits[e].command.equals(INSERT_GAP))
\r
133 insertGap(edits[e]);
\r
135 else if (edits[e].command.equals(DELETE_GAP))
\r
137 deleteGap(edits[e]);
\r
139 else if(edits[e].command.equals(CUT))
\r
143 else if(edits[e].command.equals(PASTE))
\r
150 public void doCommand()
\r
155 public void undoCommand()
\r
157 int e = 0, eSize = edits.length;
\r
158 for (e = eSize-1; e > -1; e--)
\r
160 if (edits[e].command.equals(INSERT_GAP))
\r
162 deleteGap(edits[e]);
\r
164 else if (edits[e].command.equals(DELETE_GAP))
\r
166 insertGap(edits[e]);
\r
168 else if (edits[e].command.equals(CUT))
\r
172 else if (edits[e].command.equals(PASTE))
\r
179 void insertGap(Edit command)
\r
181 for(int s=0; s<command.seqs.length; s++)
\r
183 command.seqs[s].insertCharAt(command.position,
\r
189 void deleteGap(Edit command)
\r
191 for (int s = 0; s < command.seqs.length; s++)
\r
193 command.seqs[s].deleteChars(command.position, command.position+command.number);
\r
197 void cut(Edit command)
\r
199 command.string = new String [command.seqs.length];
\r
201 for(int i=0; i<command.seqs.length; i++)
\r
203 command.string[i] = command.seqs[i].getSequence(command.position,
\r
204 command.position + command.number);
\r
206 command.seqs[i].deleteChars(command.position,
\r
207 command.position+command.number);
\r
209 if(command.seqs[i].getLength()<1)
\r
211 command.al.deleteSequence(command.seqs[i]);
\r
216 void paste(Edit command)
\r
219 for(int i=0; i<command.seqs.length; i++)
\r
221 if(command.seqs[i].getLength()<1)
\r
223 // ie this sequence was deleted, we need to
\r
224 // read it to the alignment
\r
225 if (command.alIndex[i] < command.al.getHeight())
\r
226 command.al.getSequences().insertElementAt(command.seqs[i],
\r
227 command.alIndex[i]);
\r
229 command.al.addSequence(command.seqs[i]);
\r
231 tmp = new StringBuffer(command.seqs[i].getSequence());
\r
232 if(command.string!=null)
\r
234 tmp.insert(command.position, command.string[i]);
\r
235 command.string[i] = null;
\r
237 command.seqs[i].setSequence(tmp.toString());
\r
240 command.string = null;
\r
250 int position, number;
\r
253 Edit(String command,
\r
259 this.command = command;
\r
261 this.position = position;
\r
262 this.number = number;
\r
263 this.gapChar = gapChar;
\r
267 Edit(String command,
\r
273 this.command = command;
\r
275 this.position = position;
\r
276 this.number = number;
\r
278 alIndex = new int[seqs.length];
\r
279 for(int i=0; i<seqs.length; i++)
\r
280 alIndex[i] = al.findIndex(seqs[i]);
\r