/******************************************************************************* * GenPlay, Einstein Genome Analyzer * Copyright (C) 2009, 2014 Albert Einstein College of Medicine * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. * Authors: Julien Lajugie <julien.lajugie@einstein.yu.edu> * Nicolas Fourel <nicolas.fourel@einstein.yu.edu> * Eric Bouhassira <eric.bouhassira@einstein.yu.edu> * * Website: <http://genplay.einstein.yu.edu> ******************************************************************************/ package edu.yu.einstein.genplay.gui.action.multiGenome.properties; import java.awt.Toolkit; import java.awt.event.ActionEvent; import java.awt.event.KeyEvent; import java.util.ArrayList; import java.util.List; import java.util.concurrent.CountDownLatch; import javax.swing.ActionMap; import javax.swing.KeyStroke; import edu.yu.einstein.genplay.core.manager.project.ProjectManager; import edu.yu.einstein.genplay.core.multiGenome.filter.MGFilter; import edu.yu.einstein.genplay.exception.ExceptionManager; import edu.yu.einstein.genplay.gui.action.TrackListAction; import edu.yu.einstein.genplay.gui.mainFrame.MainFrame; import edu.yu.einstein.genplay.gui.track.Track; import edu.yu.einstein.genplay.gui.track.layer.Layer; import edu.yu.einstein.genplay.gui.track.layer.LayerType; import edu.yu.einstein.genplay.gui.track.layer.variantLayer.VariantLayer; import edu.yu.einstein.genplay.util.Utils; /** * Updates the tracks after important changes as: * - validating the multi genome properties dialog * - changing chromosome * * The updates consist in managing in the following order: * - the SNP (if required) * - the filters (if required) * - the track display * * @author Nicolas Fourel * @author Julien Lajugie * @version 0.1 */ public final class MGARefresh extends TrackListAction { /** * The filter thread class. * This class starts the filter action. * * @author Nicolas Fourel * @version 0.1 */ private class FilterThread extends Thread { MGAFilters multigenomeFilters; public FilterThread () { multigenomeFilters = new MGAFilters(); } /** * @return true if the thread has to be started, false if no need */ public boolean hasToBeStarted () { return multigenomeFilters.hasToBeProcessed(); } @Override public void run() { multigenomeFilters.actionPerformed(null); previousFilterList = null; } /** * @param latch the latch to set */ public void setLatch(CountDownLatch latch) { multigenomeFilters.setLatch(latch); } /** * @param previousFilterList the previousFilterList to set */ public void setPreviousFilterList(List<MGFilter> previousFilterList) { multigenomeFilters.setPreviousFilterList(previousFilterList); } } /** * The track update thread class. * This class starts the Track Update action. * * @author Nicolas Fourel * @version 0.1 */ private class TrackThread extends Thread { CountDownLatch latch = null; // CountDownLatch object for synchronizing threads @Override public void run() { MGATrackDisplayRefresh updateTrackThread = new MGATrackDisplayRefresh(); updateTrackThread.setLatch(latch); updateTrackThread.actionPerformed(null); } /** * @param latch the latch to set */ public void setLatch(CountDownLatch latch) { this.latch = latch; } } /** * Thread running the content of the DoAtTheEnd-like method. * That method is running two other actions {@link MGASNP} and {@link MGAFilters} * supposed to be ran one by one, consecutively. One waiting for the other to stop in order to start. * These two actions are ran into separated thread. * The {@link UpdateThread} handle these waiting breaks but must not stop the main thread of the application. * That is why the content of the DoAtTheEnd-like method is executed into a new thread. * These thread synchronization is handled with {@link CountDownLatch} methods. * * @author Nicolas Fourel * @version 0.1 */ private class UpdateThread extends Thread { private void repaintTrack () { // Update tracks Track[] tracks = MainFrame.getInstance().getTrackListPanel().getModel().getTracks(); for (Track track: tracks) { track.repaint(); } } @Override public void run() { // Lock the painting setTrackLock(true); // Create and start the filter thread FilterThread filterThread = new FilterThread(); filterThread.setPreviousFilterList(previousFilterList); if (filterThread.hasToBeStarted()) { CountDownLatch filterLatch = new CountDownLatch(1); filterThread.setLatch(filterLatch); filterThread.start(); // The current thread is waiting for the filter thread to finish try { filterLatch.await(); } catch (InterruptedException e) { ExceptionManager.getInstance().caughtException(e); } } // Update tracks TrackThread trackThread = new TrackThread(); CountDownLatch trackLatch = new CountDownLatch(1); // one for the track update action trackThread.setLatch(trackLatch); trackThread.start(); // The current thread is waiting for the filter thread to finish try { trackLatch.await(); } catch (InterruptedException e) { ExceptionManager.getInstance().caughtException(e); } // Many data has been loaded, removed, garbage collecting free some memory Utils.garbageCollect(); // Unlock the painting and force the repaint setTrackLock(false); repaintTrack(); } private void setTrackLock (boolean lock) { // Update tracks LayerType[] filter = {LayerType.VARIANT_LAYER}; List<Layer<?>> allLayers = MainFrame.getInstance().getTrackListPanel().getModel().getAllLayers(); List<Layer<?>> layers = Utils.getLayers(allLayers, filter); for (Layer<?> layer: layers) { if (lock) { ((VariantLayer)layer).getGenomeDrawer().lockPainting(); } else { ((VariantLayer)layer).getGenomeDrawer().unlockPainting(); } } } } private static final long serialVersionUID = -6475180772964541278L; // generated ID private static final String ACTION_NAME = "Multi Genome Properties"; // action name private static final String DESCRIPTION = "Shows the project properties"; // tooltip private static final int MNEMONIC = KeyEvent.VK_P; // mnemonic key private List<MGFilter> previousFilterList; /** * action accelerator {@link KeyStroke} */ public static final KeyStroke ACCELERATOR = KeyStroke.getKeyStroke(KeyEvent.VK_P, Toolkit.getDefaultToolkit().getMenuShortcutKeyMask()); /** * key of the action in the {@link ActionMap} */ public static final String ACTION_KEY = "PAMultiGenomeProperties"; /** * Creates an instance of {@link MGARefresh} */ public MGARefresh() { super(); putValue(NAME, ACTION_NAME); putValue(ACTION_COMMAND_KEY, ACTION_KEY); putValue(SHORT_DESCRIPTION, DESCRIPTION); putValue(MNEMONIC_KEY, MNEMONIC); previousFilterList = new ArrayList<MGFilter>(); } /////////////////////////////////////////////////////////////////////// DoAtTheEndThread class /** * Shows the Multi Genome Project Properties dialog */ @Override public void trackListActionPerformed(ActionEvent arg0) { if (ProjectManager.getInstance().isMultiGenomeProject()) { // if it is a multi genome project UpdateThread thread = new UpdateThread(); // if it is approved (OK button), we create the thread running the content of a DoAtTheEnd-like method thread.start(); // we start the thread } } /////////////////////////////////////////////////////////////////////// FilterThread class /** * @return the previousFilterList */ public List<MGFilter> getPreviousFilterList() { return previousFilterList; } /////////////////////////////////////////////////////////////////////// TrackThread class /** * @param previousFilterList the previousFilterList to set */ public void setPreviousFilterList(List<MGFilter> previousFilterList) { this.previousFilterList = previousFilterList; } }