JAL-2591 More HiddenColumns refactoring. Tests passing.
[jalview.git] / src / jalview / datamodel / HiddenColumns.java
index da0b854..b53fc8b 100644 (file)
@@ -1,3 +1,23 @@
+/*
+ * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
+ * Copyright (C) $$Year-Rel$$ The Jalview Authors
+ * 
+ * This file is part of Jalview.
+ * 
+ * Jalview 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.
+ *  
+ * Jalview 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 Jalview.  If not, see <http://www.gnu.org/licenses/>.
+ * The Jalview Authors are detailed in the 'AUTHORS' file.
+ */
 package jalview.datamodel;
 
 import jalview.util.Comparison;
@@ -12,7 +32,7 @@ import java.util.concurrent.locks.ReentrantReadWriteLock;
 
 public class HiddenColumns
 {
-  private static final ReentrantReadWriteLock lock = new ReentrantReadWriteLock();
+  private static final ReentrantReadWriteLock LOCK = new ReentrantReadWriteLock();
   
   /*
    * list of hidden column [start, end] ranges; the list is maintained in
@@ -25,13 +45,46 @@ public class HiddenColumns
    * 
    * @return empty list or List of hidden column intervals
    */
-  public List<int[]> getHiddenRegions()
+  private List<int[]> getHiddenRegions()
   {
     return hiddenColumns == null ? Collections.<int[]> emptyList()
             : hiddenColumns;
   }
 
   /**
+   * Output regions data as a string. String is in the format:
+   * reg0[0]<between>reg0[1]<delimiter>reg1[0]<between>reg1[1] ... regn[1]
+   * 
+   * @param delimiter
+   *          string to delimit regions
+   * @param betweenstring
+   *          to put between start and end region values
+   * @return regions formatted according to delimiter and between strings
+   */
+  public String regionsToString(String delimiter, String between)
+  {
+    try
+    {
+      LOCK.readLock().lock();
+      StringBuilder regionBuilder = new StringBuilder();
+      if (hiddenColumns != null)
+      {
+        for (int[] range : hiddenColumns)
+        {
+          regionBuilder.append(delimiter).append(range[0]).append(between)
+                  .append(range[1]);
+        }
+
+        regionBuilder.deleteCharAt(0);
+      }
+      return regionBuilder.toString();
+    } finally
+    {
+      LOCK.readLock().unlock();
+    }
+  }
+
+  /**
    * Find the number of hidden columns
    * 
    * @return number of hidden columns
@@ -40,7 +93,7 @@ public class HiddenColumns
   {
     try
     {
-      lock.readLock().lock();
+      LOCK.readLock().lock();
       int size = 0;
       if (hasHidden())
       {
@@ -53,7 +106,7 @@ public class HiddenColumns
     }
     finally
     {
-      lock.readLock().unlock();
+      LOCK.readLock().unlock();
     }
   }
 
@@ -66,11 +119,11 @@ public class HiddenColumns
   {
     try
     {
-      lock.readLock().lock();
+      LOCK.readLock().lock();
       return (hiddenColumns != null) && (!hiddenColumns.isEmpty());
     } finally
     {
-      lock.readLock().unlock();
+      LOCK.readLock().unlock();
     }
 
   }
@@ -80,7 +133,7 @@ public class HiddenColumns
   {
     try
     {
-      lock.readLock().lock();
+      LOCK.readLock().lock();
 
       if (!(obj instanceof HiddenColumns))
       {
@@ -112,7 +165,7 @@ public class HiddenColumns
       return true;
     } finally
     {
-      lock.readLock().unlock();
+      LOCK.readLock().unlock();
     }
   }
 
@@ -127,7 +180,7 @@ public class HiddenColumns
   {
     try
     {
-      lock.readLock().lock();
+      LOCK.readLock().lock();
       int result = column;
       if (hiddenColumns != null)
       {
@@ -143,7 +196,7 @@ public class HiddenColumns
       return result;
     } finally
     {
-      lock.readLock().unlock();
+      LOCK.readLock().unlock();
     }
   }
 
@@ -160,7 +213,7 @@ public class HiddenColumns
   {
     try
     {
-      lock.readLock().lock();
+      LOCK.readLock().lock();
       int result = hiddenColumn;
       if (hiddenColumns != null)
       {
@@ -202,7 +255,7 @@ public class HiddenColumns
                      // columns.
     } finally
     {
-      lock.readLock().unlock();
+      LOCK.readLock().unlock();
     }
   }
 
@@ -222,7 +275,7 @@ public class HiddenColumns
     try
     {
 
-      lock.readLock().lock();
+      LOCK.readLock().lock();
     int distance = visibleDistance;
 
     // in case startColumn is in a hidden region, move it to the left
@@ -266,49 +319,59 @@ public class HiddenColumns
     return start - distance;
     } finally
     {
-      lock.readLock().unlock();
+      LOCK.readLock().unlock();
     }
 
   }
 
   /**
-   * Use this method to determine where the next hiddenRegion starts
+   * Use this method to determine the set of hiddenRegion start positions
    * 
-   * @param hiddenRegion
-   *          index of hidden region (counts from 0)
-   * @return column number in visible view
+   * @return list of column number in visible view where hidden regions start
    */
-  public int findHiddenRegionPosition(int hiddenRegion)
+  public List<Integer> findHiddenRegionPositions()
   {
     try
     {
-      lock.readLock().lock();
-      int result = 0;
+      LOCK.readLock().lock();
+      List<Integer> positions = null;
+
       if (hiddenColumns != null)
       {
-        int index = 0;
-        int gaps = 0;
-        do
+        positions = new ArrayList<>(hiddenColumns.size());
+
+        positions.add(hiddenColumns.elementAt(0)[0]);
+        for (int i = 1; i < hiddenColumns.size(); ++i)
         {
-          int[] region = hiddenColumns.elementAt(index);
-          if (hiddenRegion == 0)
-          {
-            return region[0];
-          }
 
-          gaps += region[1] + 1 - region[0];
-          result = region[1] + 1;
-          index++;
-        } while (index <= hiddenRegion);
+          int result = 0;
+          if (hiddenColumns != null)
+          {
+            int index = 0;
+            int gaps = 0;
+            do
+            {
+              int[] region = hiddenColumns.elementAt(index);
+              gaps += region[1] + 1 - region[0];
+              result = region[1] + 1;
+              index++;
+            } while (index <= i);
 
-        result -= gaps;
+            result -= gaps;
+          }
+          positions.add(result);
+        }
+      }
+      else
+      {
+        positions = new ArrayList<>();
       }
 
-      return result;
+      return positions;
     }
     finally
     {
-      lock.readLock().unlock();
+      LOCK.readLock().unlock();
     }
   }
 
@@ -323,7 +386,7 @@ public class HiddenColumns
   {
     try
     {
-      lock.readLock().lock();
+      LOCK.readLock().lock();
       if (hiddenColumns != null)
       {
         int index = 0;
@@ -342,7 +405,7 @@ public class HiddenColumns
       return alPos;
     } finally
     {
-      lock.readLock().unlock();
+      LOCK.readLock().unlock();
     }
 
   }
@@ -358,7 +421,7 @@ public class HiddenColumns
   {
     try
     {
-      lock.readLock().lock();
+      LOCK.readLock().lock();
 
     if (hiddenColumns != null)
     {
@@ -378,7 +441,7 @@ public class HiddenColumns
     return alPos;
     } finally
     {
-      lock.readLock().unlock();
+      LOCK.readLock().unlock();
     }
   }
 
@@ -395,7 +458,7 @@ public class HiddenColumns
     try
     {
 
-      lock.readLock().lock();
+      LOCK.readLock().lock();
     if (hiddenColumns != null)
     {
       int index = hiddenColumns.size() - 1;
@@ -414,7 +477,7 @@ public class HiddenColumns
     return -1;
     } finally
     {
-      lock.readLock().unlock();
+      LOCK.readLock().unlock();
     }
 
   }
@@ -443,69 +506,69 @@ public class HiddenColumns
 
       if (!alreadyLocked)
       {
-        lock.writeLock().lock();
+        LOCK.writeLock().lock();
       }
 
-    if (hiddenColumns == null)
-    {
-      hiddenColumns = new Vector<>();
-    }
-
-    /*
-     * traverse existing hidden ranges and insert / amend / append as
-     * appropriate
-     */
-    for (int i = 0; i < hiddenColumns.size(); i++)
-    {
-      int[] region = hiddenColumns.elementAt(i);
-
-      if (end < region[0] - 1)
+      if (hiddenColumns == null)
       {
-        /*
-         * insert discontiguous preceding range
-         */
-        hiddenColumns.insertElementAt(new int[] { start, end }, i);
-        return;
+        hiddenColumns = new Vector<>();
       }
 
-      if (end <= region[1])
+      /*
+       * traverse existing hidden ranges and insert / amend / append as
+       * appropriate
+       */
+      for (int i = 0; i < hiddenColumns.size(); i++)
       {
-        /*
-         * new range overlaps existing, or is contiguous preceding it - adjust
-         * start column
-         */
-        region[0] = Math.min(region[0], start);
-        return;
-      }
+        int[] region = hiddenColumns.elementAt(i);
 
-      if (start <= region[1] + 1)
-      {
-        /*
-         * new range overlaps existing, or is contiguous following it - adjust
-         * start and end columns
-         */
-        region[0] = Math.min(region[0], start);
-        region[1] = Math.max(region[1], end);
-
-        /*
-         * also update or remove any subsequent ranges 
-         * that are overlapped
-         */
-        while (i < hiddenColumns.size() - 1)
+        if (end < region[0] - 1)
         {
-          int[] nextRegion = hiddenColumns.get(i + 1);
-          if (nextRegion[0] > end + 1)
+          /*
+           * insert discontiguous preceding range
+           */
+          hiddenColumns.insertElementAt(new int[] { start, end }, i);
+          return;
+        }
+
+        if (end <= region[1])
+        {
+          /*
+           * new range overlaps existing, or is contiguous preceding it - adjust
+           * start column
+           */
+          region[0] = Math.min(region[0], start);
+          return;
+        }
+
+        if (start <= region[1] + 1)
+        {
+          /*
+           * new range overlaps existing, or is contiguous following it - adjust
+           * start and end columns
+           */
+          region[0] = Math.min(region[0], start);
+          region[1] = Math.max(region[1], end);
+
+          /*
+           * also update or remove any subsequent ranges 
+           * that are overlapped
+           */
+          while (i < hiddenColumns.size() - 1)
           {
-            /*
-             * gap to next hidden range - no more to update
-             */
-            break;
+            int[] nextRegion = hiddenColumns.get(i + 1);
+            if (nextRegion[0] > end + 1)
+            {
+              /*
+               * gap to next hidden range - no more to update
+               */
+              break;
+            }
+            region[1] = Math.max(nextRegion[1], end);
+            hiddenColumns.remove(i + 1);
           }
-          region[1] = Math.max(nextRegion[1], end);
-          hiddenColumns.remove(i + 1);
+          return;
         }
-        return;
-      }
     }
 
     /*
@@ -516,7 +579,7 @@ public class HiddenColumns
     {
       if (!alreadyLocked)
       {
-        lock.writeLock().unlock();
+        LOCK.writeLock().unlock();
       }
     }
   }
@@ -525,7 +588,7 @@ public class HiddenColumns
   {
     try
     {
-      lock.readLock().lock();
+      LOCK.readLock().lock();
 
     if (hiddenColumns != null)
     {
@@ -541,7 +604,7 @@ public class HiddenColumns
     return true;
     } finally
     {
-      lock.readLock().unlock();
+      LOCK.readLock().unlock();
     }
   }
 
@@ -562,29 +625,100 @@ public class HiddenColumns
     try
     {
 
-      lock.readLock().lock();
+      LOCK.readLock().lock();
       if (copy != null)
       {
         if (copy.hiddenColumns != null)
         {
-          hiddenColumns = new Vector<>(copy.hiddenColumns.size());
-          for (int i = 0, j = copy.hiddenColumns.size(); i < j; i++)
-          {
-            int[] rh, cp;
-            rh = copy.hiddenColumns.elementAt(i);
-            if (rh != null)
-            {
-              cp = new int[rh.length];
-              System.arraycopy(rh, 0, cp, 0, rh.length);
-              hiddenColumns.addElement(cp);
-            }
-          }
+          hiddenColumns = copy.copyHiddenRegions();
         }
       }
     }
     finally
     {
-      lock.readLock().unlock();
+      LOCK.readLock().unlock();
+    }
+  }
+
+  private Vector<int[]> copyHiddenRegions()
+  {
+    Vector<int[]> copy = new Vector<>(hiddenColumns.size());
+    for (int i = 0, j = hiddenColumns.size(); i < j; i++)
+    {
+      int[] rh;
+      int[] cp;
+      rh = hiddenColumns.elementAt(i);
+      if (rh != null)
+      {
+        cp = new int[rh.length];
+        System.arraycopy(rh, 0, cp, 0, rh.length);
+        copy.addElement(cp);
+      }
+    }
+    return copy;
+  }
+
+  private ArrayList<int[]> copyHiddenRegionsToArrayList()
+  {
+    int size = 0;
+    if (hiddenColumns != null)
+    {
+      size = hiddenColumns.size();
+    }
+    ArrayList<int[]> copy = new ArrayList<>(size);
+
+    for (int i = 0, j = size; i < j; i++)
+    {
+      int[] rh;
+      int[] cp;
+      rh = hiddenColumns.elementAt(i);
+      if (rh != null)
+      {
+        cp = new int[rh.length];
+        System.arraycopy(rh, 0, cp, 0, rh.length);
+        copy.add(cp);
+      }
+    }
+
+    return copy;
+  }
+
+  /**
+   * Returns a copy of the vector of hidden regions, as a vector. Before using
+   * this method please consider if you really need access to the hidden regions
+   * - a new (or existing!) method on HiddenColumns might be more appropriate.
+   * 
+   * @return hidden regions as vector of [start,end] pairs
+   */
+  public Vector<int[]> getHiddenColumnsCopy()
+  {
+    try
+    {
+      LOCK.readLock().lock();
+      return copyHiddenRegions();
+    } finally
+    {
+      LOCK.readLock().unlock();
+    }
+  }
+
+  /**
+   * Returns a copy of the vector of hidden regions, as an ArrayList. Before
+   * using this method please consider if you really need access to the hidden
+   * regions - a new (or existing!) method on HiddenColumns might be more
+   * appropriate.
+   * 
+   * @return hidden regions as an ArrayList of [start,end] pairs
+   */
+  public ArrayList<int[]> getHiddenColumnsCopyAsList()
+  {
+    try
+    {
+      LOCK.readLock().lock();
+      return copyHiddenRegionsToArrayList();
+    } finally
+    {
+      LOCK.readLock().unlock();
     }
   }
 
@@ -601,7 +735,7 @@ public class HiddenColumns
   {
     try
     {
-      lock.writeLock().lock();
+      LOCK.writeLock().lock();
       List<int[]> deletedHiddenColumns = null;
 
       if (hiddenColumns != null)
@@ -640,7 +774,7 @@ public class HiddenColumns
       return deletedHiddenColumns;
     } finally
     {
-      lock.writeLock().unlock();
+      LOCK.writeLock().unlock();
     }
   }
 
@@ -657,7 +791,7 @@ public class HiddenColumns
   {
     try
     {
-      lock.writeLock().lock();
+      LOCK.writeLock().lock();
       if (hiddenColumns != null)
       {
         for (int i = 0; i < hiddenColumns.size(); i++)
@@ -689,7 +823,7 @@ public class HiddenColumns
     }
     finally
     {
-      lock.writeLock().unlock();
+      LOCK.writeLock().unlock();
     }
   }
 
@@ -707,7 +841,7 @@ public class HiddenColumns
   {
     try
     {
-      lock.readLock().lock();
+      LOCK.readLock().lock();
       if (hiddenColumns != null && hiddenColumns.size() > 0)
       {
         List<int[]> visiblecontigs = new ArrayList<>();
@@ -715,7 +849,8 @@ public class HiddenColumns
 
         int vstart = start;
         int[] region;
-        int hideStart, hideEnd;
+        int hideStart;
+        int hideEnd;
 
         for (int j = 0; vstart < end && j < regions.size(); j++)
         {
@@ -756,7 +891,7 @@ public class HiddenColumns
     }
     finally
     {
-      lock.readLock().unlock();
+      LOCK.readLock().unlock();
     }
   }
 
@@ -765,19 +900,21 @@ public class HiddenColumns
   {
     try
     {
-      lock.readLock().lock();
-      int i, iSize = seqs.length;
+      LOCK.readLock().lock();
+      int iSize = seqs.length;
       String selections[] = new String[iSize];
       if (hiddenColumns != null && hiddenColumns.size() > 0)
       {
-        for (i = 0; i < iSize; i++)
+        for (int i = 0; i < iSize; i++)
         {
           StringBuffer visibleSeq = new StringBuffer();
           List<int[]> regions = getHiddenRegions();
 
-          int blockStart = start, blockEnd = end;
+          int blockStart = start;
+          int blockEnd = end;
           int[] region;
-          int hideStart, hideEnd;
+          int hideStart;
+          int hideEnd;
 
           for (int j = 0; j < regions.size(); j++)
           {
@@ -814,7 +951,7 @@ public class HiddenColumns
       }
       else
       {
-        for (i = 0; i < iSize; i++)
+        for (int i = 0; i < iSize; i++)
         {
           selections[i] = seqs[i].getSequenceAsString(start, end);
         }
@@ -824,7 +961,7 @@ public class HiddenColumns
     }
     finally
     {
-      lock.readLock().unlock();
+      LOCK.readLock().unlock();
     }
   }
 
@@ -842,23 +979,30 @@ public class HiddenColumns
   {
     try
     {
-      lock.readLock().lock();
-      int fpos = seq.getStart(), lpos = seq.getEnd();
+      LOCK.readLock().lock();
+      int fpos = seq.getStart();
+      int lpos = seq.getEnd();
       int start = 0;
 
       if (hiddenColumns == null || hiddenColumns.size() == 0)
       {
-        int ifpos = seq.findIndex(fpos) - 1,
-                ilpos = seq.findIndex(lpos) - 1;
+        int ifpos = seq.findIndex(fpos) - 1;
+        int ilpos = seq.findIndex(lpos) - 1;
         return new int[] { ifpos, ilpos, fpos, lpos, ifpos, ilpos };
       }
 
       // Simply walk along the sequence whilst watching for hidden column
       // boundaries
       List<int[]> regions = getHiddenRegions();
-      int spos = fpos, lastvispos = -1, rcount = 0,
-              hideStart = seq.getLength(), hideEnd = -1;
-      int visPrev = 0, visNext = 0, firstP = -1, lastP = -1;
+      int spos = fpos;
+      int lastvispos = -1;
+      int rcount = 0;
+      int hideStart = seq.getLength();
+      int hideEnd = -1;
+      int visPrev = 0;
+      int visNext = 0;
+      int firstP = -1;
+      int lastP = -1;
       boolean foundStart = false;
       for (int p = 0, pLen = seq.getLength(); spos <= seq.getEnd()
               && p < pLen; p++)
@@ -911,7 +1055,7 @@ public class HiddenColumns
     }
     finally
     {
-      lock.readLock().unlock();
+      LOCK.readLock().unlock();
     }
   }
 
@@ -942,7 +1086,7 @@ public class HiddenColumns
   {
     try
     {
-      lock.readLock().lock();
+      LOCK.readLock().lock();
       if (alignmentAnnotation.annotations == null)
       {
         return;
@@ -958,9 +1102,12 @@ public class HiddenColumns
         Vector<Annotation[]> annels = new Vector<>();
         Annotation[] els = null;
         List<int[]> regions = getHiddenRegions();
-        int blockStart = start, blockEnd = end;
+        int blockStart = start;
+        int blockEnd = end;
         int[] region;
-        int hideStart, hideEnd, w = 0;
+        int hideStart;
+        int hideEnd;
+        int w = 0;
 
         for (int j = 0; j < regions.size(); j++)
         {
@@ -1030,7 +1177,7 @@ public class HiddenColumns
     }
     finally
     {
-      lock.readLock().unlock();
+      LOCK.readLock().unlock();
     }
   }
 
@@ -1042,11 +1189,11 @@ public class HiddenColumns
   {
     try
     {
-      lock.readLock().lock();
+      LOCK.readLock().lock();
       return hiddenColumns != null && hiddenColumns.size() > 0;
     } finally
     {
-      lock.readLock().unlock();
+      LOCK.readLock().unlock();
     }
   }
 
@@ -1058,11 +1205,11 @@ public class HiddenColumns
   {
     try
     {
-      lock.readLock().lock();
+      LOCK.readLock().lock();
       return hiddenColumns != null && hiddenColumns.size() > 1;
     } finally
     {
-      lock.readLock().unlock();
+      LOCK.readLock().unlock();
     }
   }
 
@@ -1076,7 +1223,7 @@ public class HiddenColumns
   {
     try
     {
-      lock.writeLock().lock();
+      LOCK.writeLock().lock();
       List<int[]> inserts = sr.getInsertions();
       for (int[] r : inserts)
       {
@@ -1084,7 +1231,7 @@ public class HiddenColumns
       }
     } finally
     {
-      lock.writeLock().unlock();
+      LOCK.writeLock().unlock();
     }
   }
 
@@ -1095,7 +1242,7 @@ public class HiddenColumns
   {
     try
     {
-      lock.writeLock().lock();
+      LOCK.writeLock().lock();
       if (hiddenColumns != null)
       {
         for (int i = 0; i < hiddenColumns.size(); i++)
@@ -1112,7 +1259,7 @@ public class HiddenColumns
     }
     finally
     {
-      lock.writeLock().unlock();
+      LOCK.writeLock().unlock();
     }
   }
 
@@ -1126,7 +1273,7 @@ public class HiddenColumns
   {
     try
     {
-      lock.writeLock().lock();
+      LOCK.writeLock().lock();
       for (int i = 0; i < hiddenColumns.size(); i++)
       {
         int[] region = hiddenColumns.elementAt(i);
@@ -1148,7 +1295,7 @@ public class HiddenColumns
     }
     finally
     {
-      lock.writeLock().unlock();
+      LOCK.writeLock().unlock();
     }
   }
 
@@ -1164,7 +1311,10 @@ public class HiddenColumns
           Vector<int[]> intervals)
   {
     boolean pruned = false;
-    int i = 0, j = intervals.size() - 1, s = 0, t = shifts.size() - 1;
+    int i = 0;
+    int j = intervals.size() - 1;
+    int s = 0;
+    int t = shifts.size() - 1;
     int hr[] = intervals.elementAt(i);
     int sr[] = shifts.get(s);
     while (i <= j && s <= t)
@@ -1257,7 +1407,7 @@ public class HiddenColumns
   {
     try
     {
-      lock.writeLock().lock();
+      LOCK.writeLock().lock();
       // delete any intervals intersecting.
       if (hiddenColumns != null)
       {
@@ -1270,7 +1420,7 @@ public class HiddenColumns
     }
     finally
     {
-      lock.writeLock().unlock();
+      LOCK.writeLock().unlock();
     }
   }
 
@@ -1472,7 +1622,7 @@ public class HiddenColumns
   {
     try
     {
-      lock.readLock().lock();
+      LOCK.readLock().lock();
       int hashCode = 1;
       if (hiddenColumns != null)
       {
@@ -1486,7 +1636,7 @@ public class HiddenColumns
     }
     finally
     {
-      lock.readLock().unlock();
+      LOCK.readLock().unlock();
     }
   }
 
@@ -1500,7 +1650,7 @@ public class HiddenColumns
   {
     try
     {
-      lock.writeLock().lock();
+      LOCK.writeLock().lock();
       for (int firstSet = inserts
               .nextSetBit(0), lastSet = 0; firstSet >= 0; firstSet = inserts
                       .nextSetBit(lastSet))
@@ -1510,7 +1660,7 @@ public class HiddenColumns
       }
     } finally
     {
-      lock.writeLock().unlock();
+      LOCK.writeLock().unlock();
     }
   }
 
@@ -1523,7 +1673,7 @@ public class HiddenColumns
   {
     try
     {
-      lock.readLock().lock();
+      LOCK.readLock().lock();
       if (hiddenColumns == null)
       {
         return;
@@ -1535,7 +1685,95 @@ public class HiddenColumns
     }
     finally
     {
-      lock.readLock().unlock();
+      LOCK.readLock().unlock();
+    }
+  }
+
+  /**
+   * Calculate the visible start and end index of an alignment.
+   * 
+   * @param width
+   *          full alignment width
+   * @return integer array where: int[0] = startIndex, and int[1] = endIndex
+   */
+  public int[] getVisibleStartAndEndIndex(int width)
+  {
+    try
+    {
+      LOCK.readLock().lock();
+      int[] alignmentStartEnd = new int[] { 0, width - 1 };
+      int startPos = alignmentStartEnd[0];
+      int endPos = alignmentStartEnd[1];
+
+      int[] lowestRange = new int[] { -1, -1 };
+      int[] higestRange = new int[] { -1, -1 };
+
+      if (hiddenColumns == null)
+      {
+        return new int[] { startPos, endPos };
+      }
+
+      for (int[] hiddenCol : hiddenColumns)
+      {
+        lowestRange = (hiddenCol[0] <= startPos) ? hiddenCol : lowestRange;
+        higestRange = (hiddenCol[1] >= endPos) ? hiddenCol : higestRange;
+      }
+
+      if (lowestRange[0] == -1 && lowestRange[1] == -1)
+      {
+        startPos = alignmentStartEnd[0];
+      }
+      else
+      {
+        startPos = lowestRange[1] + 1;
+      }
+
+      if (higestRange[0] == -1 && higestRange[1] == -1)
+      {
+        endPos = alignmentStartEnd[1];
+      }
+      else
+      {
+        endPos = higestRange[0] - 1;
+      }
+      return new int[] { startPos, endPos };
+    } finally
+    {
+      LOCK.readLock().unlock();
+    }
+
+  }
+
+  /**
+   * Finds the hidden region (if any) which starts or ends at res
+   * 
+   * @param res
+   *          visible residue position, unadjusted for hidden columns
+   * @return region as [start,end] or null if no matching region is found
+   */
+  public int[] getRegionWithEdgeAtRes(int res)
+  {
+    try
+    {
+      LOCK.readLock().lock();
+      int adjres = adjustForHiddenColumns(res);
+
+      int[] reveal = null;
+      if (hiddenColumns != null)
+      {
+        for (int[] region : hiddenColumns)
+        {
+          if (adjres + 1 == region[0] || adjres - 1 == region[1])
+          {
+            reveal = region;
+            break;
+          }
+        }
+      }
+      return reveal;
+    } finally
+    {
+      LOCK.readLock().unlock();
     }
   }