regex links for launching URL from single click on sequence ID
authorjprocter <Jim Procter>
Tue, 19 Aug 2008 09:37:52 +0000 (09:37 +0000)
committerjprocter <Jim Procter>
Tue, 19 Aug 2008 09:37:52 +0000 (09:37 +0000)
src/jalview/appletgui/IdPanel.java
src/jalview/gui/IdPanel.java

index c510803..44a03ec 100755 (executable)
-/*\r
- * Jalview - A Sequence Alignment Editor and Viewer\r
- * Copyright (C) 2007 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle\r
- *\r
- * This program is free software; you can redistribute it and/or\r
- * modify it under the terms of the GNU General Public License\r
- * as published by the Free Software Foundation; either version 2\r
- * of the License, or (at your option) any later version.\r
- *\r
- * This program is distributed in the hope that it will be useful,\r
- * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
- * GNU General Public License for more details.\r
- *\r
- * You should have received a copy of the GNU General Public License\r
- * along with this program; if not, write to the Free Software\r
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA\r
- */\r
-\r
-package jalview.appletgui;\r
-\r
-import java.awt.*;\r
-import java.awt.event.*;\r
-\r
-import jalview.datamodel.*;\r
-\r
-public class IdPanel\r
-    extends Panel implements MouseListener, MouseMotionListener\r
-{\r
-\r
-  protected IdCanvas idCanvas;\r
-  protected AlignViewport av;\r
-  protected AlignmentPanel alignPanel;\r
-  ScrollThread scrollThread = null;\r
-\r
-  int offy;\r
-  int width;\r
-  int lastid = -1;\r
-  boolean mouseDragging = false;\r
-  java.util.Vector links = new java.util.Vector();\r
-\r
-  public IdPanel(AlignViewport av, AlignmentPanel parent)\r
-  {\r
-    this.av = av;\r
-    alignPanel = parent;\r
-    idCanvas = new IdCanvas(av);\r
-    setLayout(new BorderLayout());\r
-    add(idCanvas, BorderLayout.CENTER);\r
-    idCanvas.addMouseListener(this);\r
-    idCanvas.addMouseMotionListener(this);\r
-\r
-    String label, url;\r
-    if (av.applet != null)\r
-    {\r
-      for (int i = 1; i < 10; i++)\r
-      {\r
-        label = av.applet.getParameter("linkLabel_" + i);\r
-        url = av.applet.getParameter("linkURL_" + i);\r
-\r
-        if (label != null && url != null)\r
-        {\r
-          links.addElement(label + "|" + url);\r
-        }\r
-\r
-      }\r
-    }\r
-    if (links.size() < 1)\r
-    {\r
-      links = new java.util.Vector();\r
-      links.addElement("SRS|http://srs.ebi.ac.uk/srsbin/cgi-bin/wgetz?-newId+(([uniprot-all:$SEQUENCE_ID$]))+-view+SwissEntry");\r
-    }\r
-  }\r
-\r
-  Tooltip tooltip;\r
-  public void mouseMoved(MouseEvent e)\r
-  {\r
-    int seq = alignPanel.seqPanel.findSeq(e);\r
-\r
-    SequenceI sequence = av.getAlignment().getSequenceAt(seq);\r
-\r
-    if (sequence.getDescription() == null)\r
-    {\r
-      if (tooltip != null)\r
-      {\r
-        tooltip.setVisible(false);\r
-      }\r
-      tooltip = null;\r
-      return;\r
-    }\r
-\r
-    if (tooltip == null)\r
-    {\r
-      tooltip = new Tooltip(\r
-          sequence.getDisplayId(true)\r
-          + "\n" + sequence.getDescription(), idCanvas);\r
-    }\r
-    else\r
-    {\r
-      tooltip.setTip(sequence.getDisplayId(true)\r
-                     + "\n" + sequence.getDescription());\r
-    }\r
-  }\r
-\r
-  public void mouseDragged(MouseEvent e)\r
-  {\r
-    mouseDragging = true;\r
-\r
-    int seq = Math.max(0, alignPanel.seqPanel.findSeq(e));\r
-\r
-    if (seq < lastid)\r
-    {\r
-      selectSeqs(lastid - 1, seq);\r
-    }\r
-    else if (seq > lastid)\r
-    {\r
-      selectSeqs(lastid + 1, seq);\r
-    }\r
-\r
-    lastid = seq;\r
-    alignPanel.paintAlignment(false);\r
-  }\r
-\r
-  public void mouseClicked(MouseEvent e)\r
-  {\r
-    if (e.getClickCount() < 2)\r
-    {\r
-      return;\r
-    }\r
-\r
-    //DEFAULT LINK IS FIRST IN THE LINK LIST\r
-    int seq = alignPanel.seqPanel.findSeq(e);\r
-    String id = av.getAlignment().getSequenceAt(seq).getName();\r
-    if (id.indexOf("|") > -1)\r
-    {\r
-      id = id.substring(id.lastIndexOf("|") + 1);\r
-    }\r
-\r
-    String target = links.elementAt(0).toString();\r
-    target = target.substring(0, target.indexOf("|"));\r
-    String url = links.elementAt(0).toString();\r
-    url = url.substring(url.indexOf("|") + 1);\r
-\r
-    int index = url.indexOf("$SEQUENCE_ID$");\r
-    url = url.substring(0, index) + id + url.substring(index + 13);\r
-\r
-    try\r
-    {\r
-\r
-      alignPanel.alignFrame.showURL(url, target);\r
-    }\r
-    catch (Exception ex)\r
-    {\r
-      ex.printStackTrace();\r
-    }\r
-  }\r
-\r
-  public void mouseEntered(MouseEvent e)\r
-  {\r
-    if (scrollThread != null)\r
-    {\r
-      scrollThread.running = false;\r
-    }\r
-  }\r
-\r
-  public void mouseExited(MouseEvent e)\r
-  {\r
-    if (av.getWrapAlignment())\r
-    {\r
-      return;\r
-    }\r
-\r
-    if (mouseDragging && e.getY() < 0 && av.getStartSeq() > 0)\r
-    {\r
-      scrollThread = new ScrollThread(true);\r
-    }\r
-\r
-    if (mouseDragging && e.getY() >= getSize().height &&\r
-        av.alignment.getHeight() > av.getEndSeq())\r
-    {\r
-      scrollThread = new ScrollThread(false);\r
-    }\r
-  }\r
-\r
-  public void mousePressed(MouseEvent e)\r
-  {\r
-    if (e.getClickCount() > 1)\r
-    {\r
-      return;\r
-    }\r
-\r
-    int y = e.getY();\r
-    if (av.getWrapAlignment())\r
-    {\r
-      y -= 2 * av.charHeight;\r
-    }\r
-\r
-    int seq = alignPanel.seqPanel.findSeq(e);\r
-\r
-    if ( (e.getModifiers() & InputEvent.BUTTON3_MASK) ==\r
-        InputEvent.BUTTON3_MASK)\r
-    {\r
-      APopupMenu popup = new APopupMenu(alignPanel,\r
-                                        (Sequence) av.getAlignment().\r
-                                        getSequenceAt(seq), links);\r
-      this.add(popup);\r
-      popup.show(this, e.getX(), e.getY());\r
-      return;\r
-    }\r
-\r
-    if ( (av.getSelectionGroup() == null) ||\r
-        ( (!e.isControlDown() && !e.isShiftDown()) && av.getSelectionGroup() != null))\r
-    {\r
-      av.setSelectionGroup(new SequenceGroup());\r
-      av.getSelectionGroup().setStartRes(0);\r
-      av.getSelectionGroup().setEndRes(av.alignment.getWidth() - 1);\r
-    }\r
-\r
-    if (e.isShiftDown() && lastid != -1)\r
-    {\r
-      selectSeqs(lastid, seq);\r
-    }\r
-    else\r
-    {\r
-      selectSeq(seq);\r
-    }\r
-\r
-    alignPanel.paintAlignment(false);\r
-  }\r
-\r
-  void selectSeq(int seq)\r
-  {\r
-    lastid = seq;\r
-    SequenceI pickedSeq = av.getAlignment().getSequenceAt(seq);\r
-    av.getSelectionGroup().addOrRemove(pickedSeq, false);\r
-  }\r
-\r
-  void selectSeqs(int start, int end)\r
-  {\r
-\r
-    lastid = start;\r
-\r
-    if (end >= av.getAlignment().getHeight())\r
-    {\r
-      end = av.getAlignment().getHeight() - 1;\r
-    }\r
-\r
-    if (end < start)\r
-    {\r
-      int tmp = start;\r
-      start = end;\r
-      end = tmp;\r
-      lastid = end;\r
-    }\r
-\r
-    for (int i = start; i <= end; i++)\r
-    {\r
-      av.getSelectionGroup().addSequence(av.getAlignment().getSequenceAt(i), false);\r
-    }\r
-\r
-  }\r
-\r
-  public void mouseReleased(MouseEvent e)\r
-  {\r
-    if (scrollThread != null)\r
-    {\r
-      scrollThread.running = false;\r
-    }\r
-\r
-    if (av.getSelectionGroup() != null)\r
-    {\r
-      av.getSelectionGroup().recalcConservation();\r
-    }\r
-\r
-    mouseDragging = false;\r
-    PaintRefresher.Refresh(this, av.getSequenceSetId());\r
-  }\r
-\r
-  public void highlightSearchResults(java.util.Vector found)\r
-  {\r
-    idCanvas.setHighlighted(found);\r
-\r
-    if (found == null)\r
-    {\r
-      return;\r
-    }\r
-\r
-    int index = av.alignment.findIndex( (SequenceI) found.elementAt(0));\r
-\r
-    // do we need to scroll the panel?\r
-    if (av.getStartSeq() > index || av.getEndSeq() < index)\r
-    {\r
-      alignPanel.setScrollValues(av.getStartRes(), index);\r
-    }\r
-  }\r
-\r
-  // this class allows scrolling off the bottom of the visible alignment\r
-  class ScrollThread\r
-      extends Thread\r
-  {\r
-    boolean running = false;\r
-    boolean up = true;\r
-    public ScrollThread(boolean up)\r
-    {\r
-      this.up = up;\r
-      start();\r
-    }\r
-\r
-    public void stopScrolling()\r
-    {\r
-      running = false;\r
-    }\r
-\r
-    public void run()\r
-    {\r
-      running = true;\r
-      while (running)\r
-      {\r
-        if (alignPanel.scrollUp(up))\r
-        {\r
-          // scroll was ok, so add new sequence to selection\r
-          int seq = av.getStartSeq();\r
-          if (!up)\r
-          {\r
-            seq = av.getEndSeq();\r
-          }\r
-\r
-          if (seq < lastid)\r
-          {\r
-            selectSeqs(lastid - 1, seq);\r
-          }\r
-          else if (seq > lastid && seq < av.alignment.getHeight())\r
-          {\r
-            selectSeqs(lastid + 1, seq);\r
-          }\r
-\r
-          lastid = seq;\r
-        }\r
-        else\r
-        {\r
-          running = false;\r
-        }\r
-\r
-        alignPanel.paintAlignment(true);\r
-        try\r
-        {\r
-          Thread.sleep(100);\r
-        }\r
-        catch (Exception ex)\r
-        {}\r
-      }\r
-    }\r
-  }\r
-\r
-}\r
+/*
+ * Jalview - A Sequence Alignment Editor and Viewer
+ * Copyright (C) 2007 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle
+ *
+ * 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 2
+ * 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, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
+ */
+
+package jalview.appletgui;
+
+import java.awt.*;
+import java.awt.event.*;
+
+import jalview.datamodel.*;
+import jalview.util.UrlLink;
+
+public class IdPanel
+    extends Panel implements MouseListener, MouseMotionListener
+{
+
+  protected IdCanvas idCanvas;
+  protected AlignViewport av;
+  protected AlignmentPanel alignPanel;
+  ScrollThread scrollThread = null;
+
+  int offy;
+  int width;
+  int lastid = -1;
+  boolean mouseDragging = false;
+  java.util.Vector links = new java.util.Vector();
+
+  public IdPanel(AlignViewport av, AlignmentPanel parent)
+  {
+    this.av = av;
+    alignPanel = parent;
+    idCanvas = new IdCanvas(av);
+    setLayout(new BorderLayout());
+    add(idCanvas, BorderLayout.CENTER);
+    idCanvas.addMouseListener(this);
+    idCanvas.addMouseMotionListener(this);
+
+    String label, url;
+    if (av.applet != null)
+    {
+      for (int i = 1; i < 10; i++)
+      {
+        label = av.applet.getParameter("linkLabel_" + i);
+        url = av.applet.getParameter("linkURL_" + i);
+
+        if (label != null && url != null)
+        {
+          links.addElement(label + "|" + url);
+        }
+
+      }
+    }
+    if (links.size() < 1)
+    {
+      links = new java.util.Vector();
+      links.addElement("SRS|http://srs.ebi.ac.uk/srsbin/cgi-bin/wgetz?-newId+(([uniprot-all:$SEQUENCE_ID$]))+-view+SwissEntry");
+    }
+  }
+
+  Tooltip tooltip;
+  public void mouseMoved(MouseEvent e)
+  {
+    int seq = alignPanel.seqPanel.findSeq(e);
+
+    SequenceI sequence = av.getAlignment().getSequenceAt(seq);
+
+    if (sequence.getDescription() == null)
+    {
+      if (tooltip != null)
+      {
+        tooltip.setVisible(false);
+      }
+      tooltip = null;
+      return;
+    }
+
+    if (tooltip == null)
+    {
+      tooltip = new Tooltip(
+          sequence.getDisplayId(true)
+          + "\n" + sequence.getDescription(), idCanvas);
+    }
+    else
+    {
+      tooltip.setTip(sequence.getDisplayId(true)
+                     + "\n" + sequence.getDescription());
+    }
+  }
+
+  public void mouseDragged(MouseEvent e)
+  {
+    mouseDragging = true;
+
+    int seq = Math.max(0, alignPanel.seqPanel.findSeq(e));
+
+    if (seq < lastid)
+    {
+      selectSeqs(lastid - 1, seq);
+    }
+    else if (seq > lastid)
+    {
+      selectSeqs(lastid + 1, seq);
+    }
+
+    lastid = seq;
+    alignPanel.paintAlignment(false);
+  }
+
+  public void mouseClicked(MouseEvent e)
+  {
+    if (e.getClickCount() < 2)
+    {
+      return;
+    }
+
+    //DEFAULT LINK IS FIRST IN THE LINK LIST
+    int seq = alignPanel.seqPanel.findSeq(e);
+    String id = av.getAlignment().getSequenceAt(seq).getName();
+    
+    String target = null;
+    String url = null;
+    int i=0;
+    while (url == null && i < links.size())
+    {
+      // DEFAULT LINK IS FIRST IN THE LINK LIST
+      // BUT IF ITS A REGEX AND DOES NOT MATCH THE NEXT ONE WILL BE TRIED
+      url = links.elementAt(i++).toString();
+      jalview.util.UrlLink urlLink = null;
+      try
+      {
+        urlLink = new UrlLink(url);
+        target = urlLink.getTarget();
+      } catch (Exception foo)
+      {
+        System.err.println("Exception for URLLink '" + url + "'");
+        foo.printStackTrace();
+        url = null;
+        continue;
+      }
+      ;
+      if (!urlLink.isValid())
+      {
+        System.err.println(urlLink.getInvalidMessage());
+        url = null;
+        continue;
+      }
+
+      String urls[] = urlLink.makeUrls(id, true);
+      if (urls == null || urls[0]==null || urls[0].length()<1)
+      {
+        url = null;
+        continue;
+      }
+      // just take first URL made from regex
+      url = urls[1];
+    }
+    try
+    {
+
+      alignPanel.alignFrame.showURL(url, target);
+    }
+    catch (Exception ex)
+    {
+      ex.printStackTrace();
+    }
+  }
+
+  public void mouseEntered(MouseEvent e)
+  {
+    if (scrollThread != null)
+    {
+      scrollThread.running = false;
+    }
+  }
+
+  public void mouseExited(MouseEvent e)
+  {
+    if (av.getWrapAlignment())
+    {
+      return;
+    }
+
+    if (mouseDragging && e.getY() < 0 && av.getStartSeq() > 0)
+    {
+      scrollThread = new ScrollThread(true);
+    }
+
+    if (mouseDragging && e.getY() >= getSize().height &&
+        av.alignment.getHeight() > av.getEndSeq())
+    {
+      scrollThread = new ScrollThread(false);
+    }
+  }
+
+  public void mousePressed(MouseEvent e)
+  {
+    if (e.getClickCount() > 1)
+    {
+      return;
+    }
+
+    int y = e.getY();
+    if (av.getWrapAlignment())
+    {
+      y -= 2 * av.charHeight;
+    }
+
+    int seq = alignPanel.seqPanel.findSeq(e);
+
+    if ( (e.getModifiers() & InputEvent.BUTTON3_MASK) ==
+        InputEvent.BUTTON3_MASK)
+    {
+      APopupMenu popup = new APopupMenu(alignPanel,
+                                        (Sequence) av.getAlignment().
+                                        getSequenceAt(seq), links);
+      this.add(popup);
+      popup.show(this, e.getX(), e.getY());
+      return;
+    }
+
+    if ( (av.getSelectionGroup() == null) ||
+        ( (!e.isControlDown() && !e.isShiftDown()) && av.getSelectionGroup() != null))
+    {
+      av.setSelectionGroup(new SequenceGroup());
+      av.getSelectionGroup().setStartRes(0);
+      av.getSelectionGroup().setEndRes(av.alignment.getWidth() - 1);
+    }
+
+    if (e.isShiftDown() && lastid != -1)
+    {
+      selectSeqs(lastid, seq);
+    }
+    else
+    {
+      selectSeq(seq);
+    }
+
+    alignPanel.paintAlignment(false);
+  }
+
+  void selectSeq(int seq)
+  {
+    lastid = seq;
+    SequenceI pickedSeq = av.getAlignment().getSequenceAt(seq);
+    av.getSelectionGroup().addOrRemove(pickedSeq, false);
+  }
+
+  void selectSeqs(int start, int end)
+  {
+
+    lastid = start;
+
+    if (end >= av.getAlignment().getHeight())
+    {
+      end = av.getAlignment().getHeight() - 1;
+    }
+
+    if (end < start)
+    {
+      int tmp = start;
+      start = end;
+      end = tmp;
+      lastid = end;
+    }
+
+    for (int i = start; i <= end; i++)
+    {
+      av.getSelectionGroup().addSequence(av.getAlignment().getSequenceAt(i), false);
+    }
+
+  }
+
+  public void mouseReleased(MouseEvent e)
+  {
+    if (scrollThread != null)
+    {
+      scrollThread.running = false;
+    }
+
+    if (av.getSelectionGroup() != null)
+    {
+      av.getSelectionGroup().recalcConservation();
+    }
+
+    mouseDragging = false;
+    PaintRefresher.Refresh(this, av.getSequenceSetId());
+  }
+
+  public void highlightSearchResults(java.util.Vector found)
+  {
+    idCanvas.setHighlighted(found);
+
+    if (found == null)
+    {
+      return;
+    }
+
+    int index = av.alignment.findIndex( (SequenceI) found.elementAt(0));
+
+    // do we need to scroll the panel?
+    if (av.getStartSeq() > index || av.getEndSeq() < index)
+    {
+      alignPanel.setScrollValues(av.getStartRes(), index);
+    }
+  }
+
+  // this class allows scrolling off the bottom of the visible alignment
+  class ScrollThread
+      extends Thread
+  {
+    boolean running = false;
+    boolean up = true;
+    public ScrollThread(boolean up)
+    {
+      this.up = up;
+      start();
+    }
+
+    public void stopScrolling()
+    {
+      running = false;
+    }
+
+    public void run()
+    {
+      running = true;
+      while (running)
+      {
+        if (alignPanel.scrollUp(up))
+        {
+          // scroll was ok, so add new sequence to selection
+          int seq = av.getStartSeq();
+          if (!up)
+          {
+            seq = av.getEndSeq();
+          }
+
+          if (seq < lastid)
+          {
+            selectSeqs(lastid - 1, seq);
+          }
+          else if (seq > lastid && seq < av.alignment.getHeight())
+          {
+            selectSeqs(lastid + 1, seq);
+          }
+
+          lastid = seq;
+        }
+        else
+        {
+          running = false;
+        }
+
+        alignPanel.paintAlignment(true);
+        try
+        {
+          Thread.sleep(100);
+        }
+        catch (Exception ex)
+        {}
+      }
+    }
+  }
+
+}
index d4e7c77..4741974 100755 (executable)
@@ -23,6 +23,7 @@ import java.awt.event.*;
 import javax.swing.*;
 
 import jalview.datamodel.*;
+import jalview.util.UrlLink;
 
 /**
  * DOCUMENT ME!
@@ -184,21 +185,42 @@ public class IdPanel
     }
 
     int seq = alignPanel.seqPanel.findSeq(e);
-
-    //DEFAULT LINK IS FIRST IN THE LINK LIST
-
+    String url = null;
+    int i = 0;
     String id = av.getAlignment().getSequenceAt(seq).getName();
-    if (id.indexOf("|") > -1)
+    while (url == null && i < links.size())
     {
-      id = id.substring(id.lastIndexOf("|") + 1);
-    }
-
-    String url = links.elementAt(0).toString();
-    url = url.substring(url.indexOf("|") + 1);
-
-    int index = url.indexOf("$SEQUENCE_ID$");
-    url = url.substring(0, index) + id + url.substring(index + 13);
+      // DEFAULT LINK IS FIRST IN THE LINK LIST
+      // BUT IF ITS A REGEX AND DOES NOT MATCH THE NEXT ONE WILL BE TRIED
+      url = links.elementAt(i++).toString();
+      jalview.util.UrlLink urlLink = null;
+      try
+      {
+        urlLink = new UrlLink(url);
+      } catch (Exception foo)
+      {
+        jalview.bin.Cache.log.error("Exception for URLLink '" + url + "'",
+                foo);
+        url = null;
+        continue;
+      }
+      ;
+      if (!urlLink.isValid())
+      {
+        jalview.bin.Cache.log.error(urlLink.getInvalidMessage());
+        url = null;
+        continue;
+      }
 
+      String urls[] = urlLink.makeUrls(id, true);
+      if (urls == null || urls[0]==null || urls[0].length()<4)
+      {
+        url = null;
+        continue;
+      }
+      // just take first URL made from regex
+      url = urls[1];
+    }
     try
     {
       jalview.util.BrowserLauncher.openURL(url);
@@ -213,6 +235,7 @@ public class IdPanel
                                             JOptionPane.WARNING_MESSAGE);
       ex.printStackTrace();
     }
+    
   }
 
   /**