2 * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3 * Copyright (C) $$Year-Rel$$ The Jalview Authors
5 * This file is part of Jalview.
7 * Jalview 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 3
10 * of the License, or (at your option) any later version.
12 * Jalview is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty
14 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 * PURPOSE. See the GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with Jalview. If not, see <http://www.gnu.org/licenses/>.
19 * The Jalview Authors are detailed in the 'AUTHORS' file.
23 import java.awt.Dimension;
24 import java.awt.event.ActionEvent;
25 import java.awt.event.FocusAdapter;
26 import java.awt.event.FocusEvent;
27 import java.awt.event.KeyEvent;
28 import java.util.ArrayList;
29 import java.util.HashMap;
30 import java.util.List;
31 import java.util.Locale;
33 import java.util.regex.Pattern;
34 import java.util.regex.PatternSyntaxException;
36 import javax.swing.AbstractAction;
37 import javax.swing.JComponent;
38 import javax.swing.JInternalFrame;
39 import javax.swing.JLayeredPane;
40 import javax.swing.KeyStroke;
41 import javax.swing.event.InternalFrameAdapter;
42 import javax.swing.event.InternalFrameEvent;
44 import jalview.api.AlignViewportI;
45 import jalview.api.FinderI;
46 import jalview.datamodel.SearchResultMatchI;
47 import jalview.datamodel.SearchResultsI;
48 import jalview.datamodel.SequenceFeature;
49 import jalview.datamodel.SequenceI;
50 import jalview.jbgui.GFinder;
51 import jalview.util.MessageManager;
54 * Performs the menu option for searching the alignment, for the next or all
55 * matches. If matches are found, they are highlighted, and the user has the
56 * option to create a new feature on the alignment for the matched positions.
58 * Searches can be for a simple base sequence, or may use a regular expression.
59 * Any gaps are ignored.
64 public class Finder extends GFinder
66 private static final int MIN_WIDTH = 350;
68 private static final int MIN_HEIGHT = 120;
70 private static final int MY_HEIGHT = 150;
72 private static final int MY_WIDTH = 400;
74 private AlignViewportI av;
76 private AlignmentPanel ap;
78 private JInternalFrame frame;
81 * Finder agent per viewport searched
83 private Map<AlignViewportI, FinderI> finders;
85 private SearchResultsI searchResults;
88 * true if Finder always acts on the same alignment,
89 * false if it acts on the alignment with focus
91 private boolean focusFixed;
94 * Constructor given an associated alignment panel. Constructs and displays an
95 * internal frame where the user can enter a search string. The Finder may
96 * have 'fixed focus' (always act the panel for which it is constructed), or
97 * not (acts on the alignment that has focus). An optional 'scope' may be
98 * added to be shown in the title of the Finder frame.
104 public Finder(AlignmentPanel alignPanel, boolean fixedFocus, String scope)
106 av = alignPanel.getAlignViewport();
108 focusFixed = fixedFocus;
109 finders = new HashMap<>();
110 frame = new JInternalFrame();
111 frame.setFrameIcon(null);
112 frame.setContentPane(this);
113 frame.setLayer(JLayeredPane.PALETTE_LAYER);
114 frame.addInternalFrameListener(new InternalFrameAdapter()
117 public void internalFrameClosing(InternalFrameEvent e)
122 frame.addFocusListener(new FocusAdapter()
125 public void focusGained(FocusEvent e)
128 * ensure 'ignore hidden columns' is only enabled
129 * if the alignment with focus has hidden columns
131 getFocusedViewport();
137 String title = MessageManager.getString("label.find");
140 title += " " + scope;
142 Desktop.addInternalFrame(frame, title, MY_WIDTH, MY_HEIGHT);
143 frame.setMinimumSize(new Dimension(MIN_WIDTH, MIN_HEIGHT));
144 searchBox.getComponent().requestFocus();
148 * Add a handler for the Escape key when the window has focus
150 private void addEscapeHandler()
152 getRootPane().getInputMap(JComponent.WHEN_IN_FOCUSED_WINDOW)
153 .put(KeyStroke.getKeyStroke(KeyEvent.VK_ESCAPE, 0), "Cancel");
154 getRootPane().getActionMap().put("Cancel", new AbstractAction()
157 public void actionPerformed(ActionEvent e)
165 * Performs the 'Find Next' action on the alignment panel with focus
168 public void findNext_actionPerformed()
170 if (getFocusedViewport())
177 * Performs the 'Find All' action on the alignment panel with focus
180 public void findAll_actionPerformed()
182 if (getFocusedViewport())
189 * if !focusfixed and not in a desktop environment, checks that av and ap are
190 * valid. Otherwise, gets the topmost alignment window and sets av and ap
191 * accordingly. Also sets the 'ignore hidden' checkbox disabled if the
192 * viewport has no hidden columns.
194 * @return false if no alignment window was found
196 boolean getFocusedViewport()
198 if (focusFixed || Desktop.desktop == null)
200 if (ap != null && av != null)
202 ignoreHidden.setEnabled(av.hasHiddenColumns());
205 // we aren't in a desktop environment, so give up now.
208 // now checks further down the window stack to fix bug
209 // https://mantis.lifesci.dundee.ac.uk/view.php?id=36008
210 JInternalFrame[] frames = Desktop.desktop.getAllFrames();
211 for (int f = 0; f < frames.length; f++)
213 JInternalFrame alignFrame = frames[f];
214 if (alignFrame != null && alignFrame instanceof AlignFrame
215 && !alignFrame.isIcon())
217 av = ((AlignFrame) alignFrame).viewport;
218 ap = ((AlignFrame) alignFrame).alignPanel;
219 ignoreHidden.setEnabled(av.hasHiddenColumns());
227 * Opens a dialog that allows the user to create sequence features for the
231 public void createFeatures_actionPerformed()
233 if (searchResults.isEmpty())
235 return; // shouldn't happen
237 List<SequenceI> seqs = new ArrayList<>();
238 List<SequenceFeature> features = new ArrayList<>();
240 String searchString = searchBox.getUserInput();
241 String desc = "Search Results";
244 * assemble dataset sequences, and template new sequence features,
245 * for the amend features dialog
247 for (SearchResultMatchI match : searchResults.getResults())
249 seqs.add(match.getSequence().getDatasetSequence());
250 features.add(new SequenceFeature(searchString, desc, match.getStart(),
251 match.getEnd(), desc));
254 new FeatureEditor(ap, seqs, features, true).showDialog();
258 protected void copyToClipboard_actionPerformed()
260 if (searchResults.isEmpty())
262 return; // shouldn't happen
264 // assume viewport controller has same searchResults as we do...
265 ap.alignFrame.avc.copyHighlightedRegionsToClipboard();
269 * Search the alignment for the next or all matches. If 'all matches', a
270 * dialog is shown with the number of sequence ids and subsequences matched.
274 void doSearch(boolean doFindAll)
276 createFeatures.setEnabled(false);
277 copyToClipboard.setEnabled(false);
279 String searchString = searchBox.getUserInput();
281 if (isInvalidSearchString(searchString))
285 // TODO: extend finder to match descriptions, features and annotation, and
287 // TODO: add switches to control what is searched - sequences, IDS,
288 // descriptions, features
289 FinderI finder = finders.get(av);
293 * first time we've searched this viewport
295 finder = new jalview.analysis.Finder(av);
296 finders.put(av, finder);
298 finder.setFeatureRenderer(ap.getFeatureRenderer());
300 boolean isCaseSensitive = caseSensitive.isSelected();
301 boolean doSearchDescription = searchDescription.isSelected();
302 boolean doSearchfeatures = searchFeatures.isSelected();
303 boolean skipHidden = ignoreHidden.isSelected();
306 finder.findAll(searchString, isCaseSensitive, doSearchDescription,
307 doSearchfeatures, skipHidden);
311 finder.findNext(searchString, isCaseSensitive, doSearchDescription,
312 doSearchfeatures, skipHidden);
315 searchResults = finder.getSearchResults();
316 List<SequenceI> idMatch = finder.getIdMatches();
317 ap.getIdPanel().highlightSearchResults(idMatch);
319 if (searchResults.isEmpty())
321 searchResults = null;
325 createFeatures.setEnabled(true);
326 copyToClipboard.setEnabled(true);
329 searchBox.updateCache();
331 ap.highlightSearchResults(searchResults);
332 // TODO: add enablers for 'SelectSequences' or 'SelectColumns' or
333 // 'SelectRegion' selection
334 if (idMatch.isEmpty() && searchResults == null)
336 JvOptionPane.showInternalMessageDialog(this,
337 MessageManager.getString("label.finished_searching"), null,
338 JvOptionPane.PLAIN_MESSAGE);
344 // then we report the matches that were found
345 StringBuilder message = new StringBuilder();
346 if (idMatch.size() > 0)
348 message.append(idMatch.size()).append(" IDs");
350 if (searchResults != null)
352 if (idMatch.size() > 0 && searchResults.getCount() > 0)
354 message.append(" ").append(MessageManager.getString("label.and")
355 .toLowerCase(Locale.ROOT)).append(" ");
357 message.append(MessageManager.formatMessage(
358 "label.subsequence_matches_found",
359 searchResults.getCount()));
361 JvOptionPane.showInternalMessageDialog(this, message.toString(),
362 null, JvOptionPane.INFORMATION_MESSAGE);
368 * Displays an error dialog, and answers false, if the search string is
369 * invalid, else answers true.
371 * @param searchString
374 protected boolean isInvalidSearchString(String searchString)
376 String error = getSearchValidationError(searchString);
381 JvOptionPane.showInternalMessageDialog(this, error,
382 MessageManager.getString("label.invalid_search"), // $NON-NLS-1$
383 JvOptionPane.ERROR_MESSAGE);
388 * Returns an error message string if the search string is invalid, else
391 * Currently validation is limited to checking the string is not empty, and is
392 * a valid regular expression (simple searches for base sub-sequences will
393 * pass this test). Additional validations may be added in future if the
394 * search syntax is expanded.
396 * @param searchString
399 protected String getSearchValidationError(String searchString)
402 if (searchString == null || searchString.length() == 0)
404 error = MessageManager.getString("label.invalid_search");
408 Pattern.compile(searchString);
409 } catch (PatternSyntaxException e)
411 error = MessageManager.getString("error.invalid_regex") + ": "
412 + e.getDescription();
417 protected void closeAction()
419 frame.setVisible(false);
421 searchBox.persistCache();
422 if (getFocusedViewport())
424 ap.alignFrame.requestFocus();