X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fstructures%2Fmodels%2FAAStructureBindingModel.java;h=f1f2d307d4014f0a1424017e5a84a470d0561c6b;hb=05e40b4dd4e216024024fb921d797917d74daa76;hp=88c181cbed2f33925cfb1f47e752d63db34cc30a;hpb=dadeab44d8d46ef588e326efb69599baa86a083b;p=jalview.git diff --git a/src/jalview/structures/models/AAStructureBindingModel.java b/src/jalview/structures/models/AAStructureBindingModel.java index 88c181c..f1f2d30 100644 --- a/src/jalview/structures/models/AAStructureBindingModel.java +++ b/src/jalview/structures/models/AAStructureBindingModel.java @@ -20,6 +20,8 @@ */ package jalview.structures.models; +import java.util.Locale; + import java.awt.Color; import java.io.File; import java.io.IOException; @@ -42,8 +44,13 @@ import jalview.api.structures.JalviewStructureDisplayI; import jalview.bin.Cache; import jalview.datamodel.AlignmentI; import jalview.datamodel.HiddenColumns; +import jalview.datamodel.MappedFeatures; import jalview.datamodel.PDBEntry; +import jalview.datamodel.SequenceFeature; import jalview.datamodel.SequenceI; +import jalview.ext.rbvi.chimera.JalviewChimeraBinding; +import jalview.gui.AlignmentPanel; +import jalview.gui.Desktop; import jalview.gui.StructureViewer.ViewerType; import jalview.io.DataSourceType; import jalview.io.StructureFile; @@ -62,7 +69,7 @@ import jalview.util.MessageManager; /** * - * A base class to hold common function for protein structure model binding. + * A base class to hold common function for 3D structure model binding. * Initial version created by refactoring JMol and Chimera binding models, but * other structure viewers could in principle be accommodated in future. * @@ -79,20 +86,20 @@ public abstract class AAStructureBindingModel public static class SuperposeData { public String filename; - + public String pdbId; - + public String chain = ""; - + public boolean isRna; - + /* * The pdb residue number (if any) mapped to columns of the alignment */ public int[] pdbResNo; // or use SparseIntArray? - + public String modelId; - + /** * Constructor * @@ -171,6 +178,8 @@ public abstract class AAStructureBindingModel public String fileLoadingError; + protected Thread externalViewerMonitor; + /** * Constructor * @@ -256,6 +265,7 @@ public abstract class AAStructureBindingModel chains = newchains; return chainmaps > 0; } + public StructureSelectionManager getSsm() { return ssm; @@ -574,6 +584,7 @@ public abstract class AAStructureBindingModel } } } + @Override public abstract void highlightAtoms(List atoms); @@ -653,7 +664,8 @@ public abstract class AAStructureBindingModel * @return */ protected int findSuperposableResidues(AlignmentI alignment, - BitSet matched, AAStructureBindingModel.SuperposeData[] structures) + BitSet matched, + AAStructureBindingModel.SuperposeData[] structures) { int refStructure = -1; String[] files = getStructureFiles(); @@ -879,8 +891,8 @@ public abstract class AAStructureBindingModel * Calculate the superposable alignment columns ('matched'), and the * corresponding structure residue positions (structures.pdbResNo) */ - int refStructure = findSuperposableResidues(alignment, - matched, structures); + int refStructure = findSuperposableResidues(alignment, matched, + structures); /* * require at least 4 positions to be able to execute superposition @@ -888,8 +900,8 @@ public abstract class AAStructureBindingModel int nmatched = matched.cardinality(); if (nmatched < MIN_POS_TO_SUPERPOSE) { - String msg = MessageManager.formatMessage("label.insufficient_residues", - nmatched); + String msg = MessageManager + .formatMessage("label.insufficient_residues", nmatched); error += view.getViewName() + ": " + msg + "; "; continue; } @@ -921,7 +933,7 @@ public abstract class AAStructureBindingModel for (String reply : replies) { // return this error (Chimera only) to the user - if (reply.toLowerCase().contains("unequal numbers of atoms")) + if (reply.toLowerCase(Locale.ROOT).contains("unequal numbers of atoms")) { error += "; " + reply; } @@ -933,7 +945,8 @@ public abstract class AAStructureBindingModel return error; } - private AtomSpecModel getAtomSpec(AAStructureBindingModel.SuperposeData superposeData, + private AtomSpecModel getAtomSpec( + AAStructureBindingModel.SuperposeData superposeData, BitSet matched) { AtomSpecModel model = new AtomSpecModel(); @@ -970,8 +983,8 @@ public abstract class AAStructureBindingModel // TODO: JAL-628 colour chains distinctly across all visible models - executeCommand(commandGenerator.colourByChain(), false, - COLOURING_STRUCTURES); + executeCommand(false, COLOURING_STRUCTURES, + commandGenerator.colourByChain()); } /** @@ -1002,7 +1015,7 @@ public abstract class AAStructureBindingModel { return; } - + /* * build a map of {Residue3LetterCode, Color} */ @@ -1029,69 +1042,7 @@ public abstract class AAStructureBindingModel public void setBackgroundColour(Color col) { StructureCommandI cmd = commandGenerator.setBackgroundColour(col); - executeCommand(cmd, false, null); - } - - /** - * Sends one command to the structure viewer. If {@code getReply} is true, the - * command is sent synchronously, otherwise in a deferred thread. - *

- * If a progress message is supplied, this is displayed before command - * execution, and removed afterwards. - * - * @param cmd - * @param getReply - * @param msg - * @return - */ - private List executeCommand(StructureCommandI cmd, - boolean getReply, String msg) - { - if (getReply) - { - /* - * synchronous (same thread) execution so reply can be returned - */ - final JalviewStructureDisplayI theViewer = getViewer(); - final long handle = msg == null ? 0 : theViewer.startProgressBar(msg); - try - { - return executeCommand(cmd, getReply); - } finally - { - if (msg != null) - { - theViewer.stopProgressBar(null, handle); - } - } - } - else - { - /* - * asynchronous (new thread) execution if no reply needed - */ - final JalviewStructureDisplayI theViewer = getViewer(); - final long handle = msg == null ? 0 : theViewer.startProgressBar(msg); - - SwingUtilities.invokeLater(new Runnable() - { - @Override - public void run() - { - try - { - executeCommand(cmd, false); - } finally - { - if (msg != null) - { - theViewer.stopProgressBar(null, handle); - } - } - } - }); - return null; - } + executeCommand(false, null, cmd); } /** @@ -1105,84 +1056,117 @@ public abstract class AAStructureBindingModel boolean getReply); /** - * A helper method that converts list of commands to a vararg array + * Executes one or more structure viewer commands * * @param commands * @param getReply * @param msg */ - private List executeCommands(List commands, + protected List executeCommands(List commands, boolean getReply, String msg) { - return executeCommands(getReply, msg, + return executeCommand(getReply, msg, commands.toArray(new StructureCommandI[commands.size()])); } /** - * Executes one or more structure viewer commands. If a progress message is - * provided, it is shown first, and removed after all commands have been run. + * Executes one or more structure viewer commands, optionally returning the + * reply, and optionally showing a status message while the command is being + * executed. + *

+ * If a reply is wanted, the execution is done synchronously (waits), + * otherwise it is done in a separate thread (doesn't wait). WARNING: if you + * are sending commands that need to execute before later calls to + * executeCommand (e.g. mouseovers, which clean up after previous ones) then + * set getReply true to ensure that commands are not executed out of order. * * @param getReply * @param msg - * @param commands + * @param cmds * @return */ - protected List executeCommands(boolean getReply, String msg, - StructureCommandI[] commands) + protected List executeCommand(boolean getReply, String msg, + StructureCommandI... cmds) { - // todo: tidy this up - - /* - * show progress message if specified - */ - final JalviewStructureDisplayI theViewer = getViewer(); + JalviewStructureDisplayI theViewer = getViewer(); final long handle = msg == null ? 0 : theViewer.startProgressBar(msg); - List response = getReply ? new ArrayList<>() : null; - try + if (getReply) { - for (StructureCommandI cmd : commands) + /* + * execute and wait for reply + */ + List response = new ArrayList<>(); + try { - List replies = executeCommand(cmd, getReply, null); - if (getReply && replies != null) + for (StructureCommandI cmd : cmds) { - response.addAll(replies); + List replies = executeCommand(cmd, true); + if (replies != null) + { + response.addAll(replies); + } + } + return response; + } finally + { + if (msg != null) + { + theViewer.stopProgressBar(null, handle); } } - return response; - } finally + } + + /* + * fire and forget + */ + String threadName = msg == null ? "StructureCommand" : msg; + new Thread(new Runnable() { - if (msg != null) + @Override + public void run() { - theViewer.stopProgressBar(null, handle); + try + { + for (StructureCommandI cmd : cmds) + { + executeCommand(cmd, false); + } + } finally + { + if (msg != null) + { + SwingUtilities.invokeLater(new Runnable() + { + @Override + public void run() + { + theViewer.stopProgressBar(null, handle); + } + }); + } + } } - } + }, threadName).start(); + return null; } /** - * colour any structures associated with sequences in the given alignment - * using the getFeatureRenderer() and getSequenceRenderer() renderers but only - * if colourBySequence is enabled. + * Colours any structures associated with sequences in the given alignment as + * coloured in the alignment view, provided colourBySequence is enabled */ public void colourBySequence(AlignmentViewPanel alignmentv) { - if (!colourBySequence || !isLoadingFinished()) + if (!colourBySequence || !isLoadingFinished() || getSsm() == null) { return; } - if (getSsm() == null) - { - return; - } - String[] files = getStructureFiles(); - - SequenceRenderer sr = getSequenceRenderer(alignmentv); - Map colourMap = buildColoursMap(ssm, files, - sequence, sr, alignmentv); + Map colourMap = buildColoursMap(ssm, sequence, + alignmentv); List colourBySequenceCommands = commandGenerator .colourBySequence(colourMap); - executeCommands(colourBySequenceCommands, false, null); + executeCommands(colourBySequenceCommands, false, COLOURING_STRUCTURES); } /** @@ -1190,7 +1174,7 @@ public abstract class AAStructureBindingModel */ public void focusView() { - executeCommand(commandGenerator.focusView(), false, null); + executeCommand(false, null, commandGenerator.focusView()); } /** @@ -1238,8 +1222,7 @@ public abstract class AAStructureBindingModel } /** - * Returns the FeatureRenderer for the given alignment view, or null if - * feature display is turned off in the view. + * Returns the FeatureRenderer for the given alignment view * * @param avp * @return @@ -1248,9 +1231,11 @@ public abstract class AAStructureBindingModel { AlignmentViewPanel ap = (avp == null) ? getViewer().getAlignmentPanel() : avp; - return ap.getAlignViewport().isShowSequenceFeatures() - ? ap.getFeatureRenderer() - : null; + if (ap == null) + { + return null; + } + return ap.getFeatureRenderer(); } protected void setStructureCommands(StructureCommandsI cmd) @@ -1305,40 +1290,6 @@ public abstract class AAStructureBindingModel protected abstract ViewerType getViewerType(); /** - * Send a structure viewer command asynchronously in a new thread. If the - * progress message is not null, display this message while the command is - * executing. - * - * @param command - * @param progressMsg - */ - protected void sendAsynchronousCommand(StructureCommandI command, - String progressMsg) - { - final JalviewStructureDisplayI theViewer = getViewer(); - final long handle = progressMsg == null ? 0 - : theViewer.startProgressBar(progressMsg); - SwingUtilities.invokeLater(new Runnable() - { - @Override - public void run() - { - try - { - executeCommand(command, false, null); - } finally - { - if (progressMsg != null) - { - theViewer.stopProgressBar(null, handle); - } - } - } - }); - - } - - /** * Builds a data structure which records mapped structure residues for each * colour. From this we can easily generate the viewer commands for colour by * sequence. Constructs and returns a map of {@code Color} to @@ -1354,16 +1305,16 @@ public abstract class AAStructureBindingModel * models and chains) * * @param ssm - * @param files * @param sequence - * @param sr * @param viewPanel * @return */ protected Map buildColoursMap( - StructureSelectionManager ssm, String[] files, - SequenceI[][] sequence, SequenceRenderer sr, AlignmentViewPanel viewPanel) + StructureSelectionManager ssm, SequenceI[][] sequence, + AlignmentViewPanel viewPanel) { + String[] files = getStructureFiles(); + SequenceRenderer sr = getSequenceRenderer(viewPanel); FeatureRenderer fr = viewPanel.getFeatureRenderer(); FeatureColourFinder finder = new FeatureColourFinder(fr); AlignViewportI viewport = viewPanel.getAlignViewport(); @@ -1371,17 +1322,17 @@ public abstract class AAStructureBindingModel AlignmentI al = viewport.getAlignment(); Map colourMap = new LinkedHashMap<>(); Color lastColour = null; - + for (int pdbfnum = 0; pdbfnum < files.length; pdbfnum++) { final String modelId = getModelIdForFile(files[pdbfnum]); StructureMapping[] mapping = ssm.getMapping(files[pdbfnum]); - + if (mapping == null || mapping.length < 1) { continue; } - + int startPos = -1, lastPos = -1; String lastChain = ""; for (int s = 0; s < sequence[pdbfnum].length; s++) @@ -1401,14 +1352,14 @@ public abstract class AAStructureBindingModel continue; } int pos = mapping[m].getPDBResNum(asp.findPosition(r)); - + if (pos < 1 || pos == lastPos) { continue; } - + Color colour = sr.getResidueColour(seq, r, finder); - + /* * darker colour for hidden regions */ @@ -1416,9 +1367,9 @@ public abstract class AAStructureBindingModel { colour = Color.GRAY; } - + final String chain = mapping[m].getChain(); - + /* * Just keep incrementing the end position for this colour range * _unless_ colour, PDB model or chain has changed, or there is a @@ -1431,8 +1382,8 @@ public abstract class AAStructureBindingModel { if (startPos != -1) { - addAtomSpecRange(colourMap, lastColour, modelId, - startPos, lastPos, lastChain); + addAtomSpecRange(colourMap, lastColour, modelId, startPos, + lastPos, lastChain); } startPos = pos; } @@ -1484,8 +1435,9 @@ public abstract class AAStructureBindingModel } /** - * Helper method to add one contiguous range to the AtomSpec model for the given - * value (creating the model if necessary). As used by Jalview, {@code value} is + * Helper method to add one contiguous range to the AtomSpec model for the + * given value (creating the model if necessary). As used by Jalview, + * {@code value} is *