*** empty log message ***
[m17n/m17n-lib-cs.git] / MText.cs
index a86bc29..cfa688b 100644 (file)
--- a/MText.cs
+++ b/MText.cs
@@ -67,6 +67,11 @@ namespace M17N.Core
       if (sensitive)
        flags |= Flag.Sensitive;
     }
+
+    public override string ToString ()
+    {
+      return key.ToString () + ":" + val;
+    }
   }
 
   public class MText : IEnumerable, IEquatable<MText>, IComparable<MText>
@@ -228,8 +233,23 @@ namespace M17N.Core
       return i;
     }
 
+    private void check_pos (int pos, bool tail_ok)
+    {
+      if (pos < 0 || (tail_ok ? pos > nchars : pos >= nchars))
+       throw new Exception ("Invalid MText position:" + pos);
+    }
+
+    private void check_range (int from, int to, bool zero_ok)
+    {
+      if (from < 0 || (zero_ok ? from > to : from >= to)
+         || to > nchars)
+       throw new Exception ("Invalid MText range");
+    }
+
     private void insert (int pos, MText mt2, int from, int to)
     {
+      check_pos (pos, true);
+
       int pos_idx = pos_to_idx (this, pos);
       int from_idx = pos_to_idx (mt2, from);
       int to_idx = pos_to_idx (mt2, to);
@@ -238,18 +258,18 @@ namespace M17N.Core
       nchars += to - from;
 
       foreach (MPlist plist in mt2.intervals)
-       if (intervals.find (plist.Key) == null)
-         intervals.push (plist.Key, new MInterval (plist.Key, this));
+       if (intervals.Find (plist.Key) == null)
+         intervals.Push (plist.Key, new MInterval (plist.Key, this));
       foreach (MPlist plist in intervals)
        {
-         MPlist p = mt2.intervals.find (plist.Key);
+         MPlist p = mt2.intervals.Find (plist.Key);
          MInterval interval;
 
          if (p.IsEmpty)
            interval = new MInterval (plist.Key, to - from);
          else
            interval = ((MInterval) p.Val).copy (from, to);
-         ((MInterval) plist.Val).insert (pos, interval);
+         ((MInterval) plist.Val).Insert (pos, interval);
        }
     }
 
@@ -282,90 +302,111 @@ namespace M17N.Core
       }
     }
 
-    public MText dup ()
+    public MText Dup ()
     {
       return (new MText (sb.ToString ()));
     }
 
-    public MText ins (int pos, MText mt)
+    public MText Ins (int pos, MText mt)
     {
       insert (pos, mt, 0, mt.nchars);
       return this;
     }
 
-    public MText ins (int pos, MText mt, int from, int to)
+    public MText Ins (int pos, MText mt, int from, int to)
     {
       insert (pos, mt, from, to);
       return this;
     }
 
-    public MText del (int from, int to)
+    public MText Del (int from, int to)
     {
+      check_range (from, to, true);
+
       sb.Remove (from, pos_to_idx (this, to) - pos_to_idx (this, from));
       nchars -= to - from;
 
-      foreach (MPlist plist in intervals)
-       ((MInterval) plist.Val).delete (from, to);
+      if (nchars > 0)
+       foreach (MPlist plist in intervals)
+         ((MInterval) plist.Val).Delete (from, to);
+      else
+       intervals = new MPlist ();
       return this;
     }
 
-    public object get_prop (int pos, MSymbol key)
+    public object GetProp (int pos, MSymbol key)
     {
-      MInterval i = (MInterval) intervals.find (key).Val;
+      check_pos (pos, false);
+
+      MInterval i = (MInterval) intervals.Find (key).Val;
 
       if (i == null)
        return null;
 
-      MTextProperty prop = i.get (pos);
+      MTextProperty prop = i.Get (pos);
       return (prop != null ? prop.Val : null);
     }
 
-    public object get_prop (int pos, MSymbol key, out MTextProperty prop)
+    public object GetProp (int pos, MSymbol key, out MTextProperty prop)
     {
-      MInterval i = (MInterval) intervals.find (key).Val;
+      check_pos (pos, false);
+
+      MInterval i = (MInterval) intervals.Find (key).Val;
 
       if (i == null)
        return (prop = null);
-      prop = i.get (pos);
+      prop = i.Get (pos);
       return (prop != null ? prop.Val : null);
     }
 
-    public object get_prop (int pos, MSymbol key, out MTextProperty[] array)
+    public object GetProp (int pos, MSymbol key, out MTextProperty[] array)
     {
-      MInterval i = (MInterval) intervals.find (key).Val;
+      check_pos (pos, false);
+
+      MInterval i = (MInterval) intervals.Find (key).Val;
 
       if (i == null)
        return (array = null);
-      MTextProperty prop = i.get (pos, out array);
+      MTextProperty prop = i.Get (pos, out array);
       return (prop != null ? prop.Val : null);
     }
 
-    public void push_prop (int from, int to, MSymbol key, object val)
+    public void PushProp (int from, int to, MSymbol key, object val)
     {
-      push_prop (from, to, new MTextProperty (key, val));
+      check_range (from, to, false);
+
+      PushProp (from, to, new MTextProperty (key, val));
     }
 
-    public void push_prop (int from, int to, MTextProperty prop)
+    public void PushProp (int from, int to, MTextProperty prop)
     {
       if (from < 0)
        {
          if (default_property == null)
            default_property = new MPlist ();
-         default_property.push (prop.key, prop.val);
+         default_property.Push (prop.key, prop.val);
        }
       else
        {
-         MInterval root = (MInterval) intervals.find (prop.key).Val;
+         MInterval root = (MInterval) intervals.Find (prop.key).Val;
 
          if (root == null)
            {
              root = new MInterval (prop.key, this);
-             intervals.push (prop.key, root);
+             intervals.Push (prop.key, root);
            }
          root.Push (from, to, prop);
        }
     }
 
+    public void DumpProp ()
+    {
+      Console.Write ("(");
+      foreach (MPlist p in intervals)
+       ((MInterval) p.Val).Dump ();
+      Console.WriteLine (")");
+    }
+
     private class MInterval
     {
       // position: 0   1   2   3   4   5   6   7
@@ -377,6 +418,9 @@ namespace M17N.Core
       //                      [7 (3 4)]
       //              [3 (1 2)]       [3 (4 6)]
       //         [1 (0 1)] [2 (2 3)]      [1 (6 7)]
+      //
+      private static int count = 0;
+      private int id;
       private int total_length;
       private int from, to;
       private MSymbol key;
@@ -391,6 +435,7 @@ namespace M17N.Core
        this.key = key;
        total_length = length;
        stack = new MPlist ();
+       id = count++;
       }
 
       public MInterval (MSymbol key, MText mt)
@@ -401,16 +446,17 @@ namespace M17N.Core
        from = 0;
        to = total_length;
        stack = new MPlist ();
+       id = count++;
       }
 
-      public MTextProperty get (int pos)
+      public MTextProperty Get (int pos)
       {
        MInterval i = find (pos);
 
        return (i.stack.IsEmpty ? null : (MTextProperty) i.stack.Val);
       }
 
-      public MTextProperty get (int pos, out MTextProperty[] array)
+      public MTextProperty Get (int pos, out MTextProperty[] array)
       {
        MInterval i = find (pos);
 
@@ -435,15 +481,26 @@ namespace M17N.Core
        from = 0;
        to = total_length;
        this.stack = stack.Clone ();
+       id = count++;
       }
 
       private void update_from_to ()
       {
-       if (parent != null)
+       if (parent == null)
+         {
+           from = LeftLength;
+           to = total_length - RightLength;
+         }
+       else if (parent.left == this)
          {
            from = parent.from - total_length + LeftLength;
            to = parent.from - RightLength;
          }
+       else
+         {
+           from = parent.to + LeftLength;
+           to = parent.to + total_length - RightLength;
+         }
       }
 
       private int LeftLength
@@ -510,7 +567,7 @@ namespace M17N.Core
        MInterval c1;
 
        if (parent == null)
-         mtext.intervals.put (key, right);
+         mtext.intervals.Put (key, right);
        else if (parent.left == this)
          parent.left = right;
        else
@@ -542,7 +599,7 @@ namespace M17N.Core
        MInterval c1;
 
        if (parent == null)
-         mtext.intervals.put (key, left);
+         mtext.intervals.Put (key, left);
        else if (parent.left == this)
          parent.left = left;
        else
@@ -627,13 +684,13 @@ namespace M17N.Core
       //                            right
       private MInterval divide_right (int pos)
       {
-       update_from_to ();
-
        MInterval interval = new MInterval (key, to - pos, stack);
 
-       total_length -= to - pos;
+       Console.Write ("divide-right({0}) at ", pos); DumpOne (false, true);
+       to = pos;
        if (right != null)
          {
+           interval.right = right;
            right.parent = interval;
            interval.total_length += right.total_length;
          }
@@ -647,13 +704,13 @@ namespace M17N.Core
       //                 left
       private MInterval divide_left (int pos)
       {
-       update_from_to ();
+       MInterval interval = new MInterval (key, pos - from, stack);
 
-       MInterval interval = new MInterval (key, to - pos, stack);
-
-       total_length -= to - pos;
+       Console.Write ("divide-reft({0}) at ", pos); DumpOne (false, true);
+       from = pos;
        if (left != null)
          {
+           interval.left = left;
            left.parent = interval;
            interval.total_length += left.total_length;
          }
@@ -669,45 +726,64 @@ namespace M17N.Core
            MTextProperty prop = (MTextProperty) p.Val;
 
            if ((prop.flags & flags) == flags)
-             p.pop ();
+             p.Pop ();
            else
              p = p.Next;
          }
       }
 
-      private void merge_properties (MPlist plist, MTextProperty.Flag flags)
+      private void merge_front_properties (MPlist plist)
       {
-       if (left != null)
-         left.merge_properties (plist, flags);
-       if (right != null)
-         right.merge_properties (plist, flags);
-       for (MPlist p = plist; ! p.IsEmpty; p = p.Next)
+       for (MInterval i = left_most_node; i != null; i = i.next)
          {
-           MTextProperty prop = (MTextProperty) p.Val;
+           if (! stack.IsEmpty)
+             break;
+           for (MPlist p = plist; ! p.IsEmpty; p = p.Next)
+             {
+               MTextProperty prop = (MTextProperty) p.Val;
 
-           if ((prop.flags & flags) == flags
-               && stack.get (prop.Key) == null)
-             stack.push (prop.key, prop);
+               if ((prop.flags & MTextProperty.Flag.RearSticky)
+                   == MTextProperty.Flag.RearSticky)
+                 i.stack.Push (prop.key, prop);
+             }
          }
       }
 
-      public void insert (int pos, MInterval interval)
+      private void merge_rear_properties (MPlist plist)
+      {
+       for (MInterval i = right_most_node; i != null; i = i.prev)
+         {
+           if (! stack.IsEmpty)
+             break;
+           for (MPlist p = plist; ! p.IsEmpty; p = p.Next)
+             {
+               MTextProperty prop = (MTextProperty) p.Val;
+
+               if ((prop.flags & MTextProperty.Flag.FrontSticky)
+                   == MTextProperty.Flag.FrontSticky)
+                 i.stack.Push (prop.key, prop);
+             }
+         }
+      }
+
+      public void Insert (int pos, MInterval interval)
       {
        update_from_to ();
+       Console.Write ("insert({0}) at ", pos); DumpOne (false, true);
        if (pos < from || (pos == from && left == null && pos > 0))
          {
-           prev.insert (pos, interval);
+           prev.Insert (pos, interval);
            return;
          }
        if (pos > to || (pos == to && right == null && next != null))
          {
-           next.insert (pos, interval);
+           next.Insert (pos, interval);
            return;
          }
        if (pos > from && pos < to)
          {
            remove_properties (MTextProperty.Flag.Sensitive);
-           divide_right (pos).insert (pos, interval);
+           divide_right (pos).Insert (pos, interval);
            return;
          }         
        if (pos == from)
@@ -716,13 +792,11 @@ namespace M17N.Core
              {
                prev.remove_properties
                  (MTextProperty.Flag.Sensitive|MTextProperty.Flag.RearSticky);
-               interval.merge_properties
-                 (prev.stack, MTextProperty.Flag.RearSticky);
+               interval.merge_front_properties (prev.stack);
              }
            remove_properties
              (MTextProperty.Flag.Sensitive|MTextProperty.Flag.FrontSticky);
-           interval.merge_properties
-             (stack, MTextProperty.Flag.FrontSticky);
+           interval.merge_rear_properties (stack);
 
            // INTERVAL is ready to insert.
            //
@@ -756,13 +830,11 @@ namespace M17N.Core
 
                left_most.remove_properties
                  (MTextProperty.Flag.Sensitive|MTextProperty.Flag.FrontSticky);
-               interval.merge_properties
-                 (stack, MTextProperty.Flag.FrontSticky);
+               interval.merge_rear_properties (left_most.stack);
              }
            remove_properties
              (MTextProperty.Flag.Sensitive|MTextProperty.Flag.RearSticky);
-           interval.merge_properties
-             (stack, MTextProperty.Flag.RearSticky);
+           interval.merge_front_properties (stack);
 
            // INTERVAL is ready to insert.
            //
@@ -790,67 +862,75 @@ namespace M17N.Core
          }
       }
 
-      private void update_parent (MInterval i)
+      private void vacate_node (MInterval interval)
       {
+       Console.WriteLine ("vacate #{0} to #{1}", id, interval.id);
+       if (interval != null)
+         interval.parent = parent;
        if (parent == null)
-         mtext.intervals.put (key, i);
+         {
+           mtext.intervals.Put (key, interval);
+         }
        else
          {
-           int diff;
-
-           if (parent.right == i)
-             {
-               diff = parent.right.total_length - i.total_length;
-               parent.right = i;
-             }
+           if (this == parent.right)
+             parent.right = interval;
            else
-             {
-               diff = parent.left.total_length - i.total_length;
-               parent.left = i;
-             }
-           for (i = parent; i != null; i = i.parent)
-             i.total_length += diff;
+             parent.left = interval;
+
+           int diff = total_length;
+           if (interval != null)
+             diff -= interval.total_length;
+           for (MInterval i = parent; i != null; i = i.parent)
+             i.total_length -= diff;
          }
       }
 
-      public void delete (int start, int end)
+      public void Delete (int start, int end)
       {
        update_from_to ();
+       Console.Write ("delete({0} {1}) at ", start, end); DumpOne (false, true);
        if (start < from)
          {
            if (end <= from)
              {
-               left.delete (start, end);
+               left.Delete (start, end);
                return;
              }
-           left.delete (start, from);
-           start = from;
+           left.Delete (start, from);
+           to -= from - start;
+           end -= from - start;
+           from = start;
          }
-       else if (end > to)
+       if (end > to)
          {
            if (start >= to)
              {
-               right.delete (start, end);
+               right.Delete (start, end);
                return;
              }
-           right.delete (to, end);
+           right.Delete (to, end);
            end = to;
          }
        if (start == from && end == to)
          {
-           if (left == null)
-             update_parent (right);
-           else if (right == null)
-             update_parent (left);
+           if (right == null)
+             {
+               vacate_node (left);
+             }
            else
              {
-               MInterval i;
+               if (left != null)
+                 {
+                   MInterval i;
                
-               for (i = right; i.left != null; i = i.left)
-                 i.total_length += left.total_length;
-               i.total_length += left.total_length;
-               i.left = left;
-               update_parent (right);
+                   for (i = right; i.left != null; i = i.left)
+                     i.total_length += left.total_length;
+                   i.total_length += left.total_length;
+                   i.left = left;
+                   left.parent = i;
+                 }
+               vacate_node (right);
              }
          }
        else
@@ -862,30 +942,60 @@ namespace M17N.Core
          }
       }
 
-      public MTextProperty Push (int start, int end, MTextProperty prop)
+      public void Push (int start, int end, MTextProperty prop)
       {
        update_from_to ();
+       Console.Write ("push({0} {1}) at ", start, end); DumpOne (false, true);
        if (start < from)
          {
-           left.Push (start, end, prop);
            if (end <= from)
-             return prop;
+             {
+               left.Push (start, end, prop);
+               return;
+             }
+           left.Push (start, from, prop);
            start = from;
          }
-       else if (end > to)
+       if (end > to)
          {
-           right.Push (start, end, prop);
            if (start >= to)
-             return prop;
+             {
+               right.Push (start, end, prop);
+               return;
+             }
+           right.Push (to, end, prop);
            end = to;
          }
 
        if (start > from)
-         divide_left (from);
+         divide_left (start);
        if (end < to)
          divide_right (end);
-       stack.push (prop.key, prop);
-       return prop;
+       stack.Push (prop.key, prop);
+      }
+
+      private void DumpOne (bool with_prop, bool newline)
+      {
+       Console.Write ("#{0}({1} {2} {3}", id, total_length, from, to);
+       if (with_prop)
+         foreach (MPlist p in stack)
+           Console.Write (" " + p.Val);
+       Console.Write (")");
+       if (newline)
+         Console.WriteLine ();
+      }
+
+      public void Dump ()
+      {
+       update_from_to ();
+
+       if (left != null)
+         left.Dump ();
+       if (from > 0)
+         Console.Write (" ");
+       DumpOne (true, false);
+       if (right != null)
+         right.Dump ();
       }
     }