/jEdit/tags/before-screen-line-refactoring/org/gjt/sp/jedit/buffer/PositionManager.java

# · Java · 177 lines · 101 code · 26 blank · 50 comment · 12 complexity · 9e9a2719b6dc677cd2181801d254462d MD5 · raw file

  1. /*
  2. * PositionManager.java - Manages positions
  3. * :tabSize=8:indentSize=8:noTabs=false:
  4. * :folding=explicit:collapseFolds=1:
  5. *
  6. * Copyright (C) 2001, 2003 Slava Pestov
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License
  10. * as published by the Free Software Foundation; either version 2
  11. * of the License, or any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  21. */
  22. package org.gjt.sp.jedit.buffer;
  23. //{{{ Imports
  24. import javax.swing.text.Position;
  25. import java.util.*;
  26. import org.gjt.sp.util.Log;
  27. //}}}
  28. /**
  29. * A class internal to jEdit's document model. You should not use it
  30. * directly.
  31. *
  32. * @author Slava Pestov
  33. * @version $Id: PositionManager.java 4918 2003-11-18 20:51:58Z spestov $
  34. * @since jEdit 4.2pre3
  35. */
  36. public class PositionManager
  37. {
  38. //{{{ createPosition() method
  39. public synchronized Position createPosition(int offset)
  40. {
  41. PosBottomHalf bh = new PosBottomHalf(offset);
  42. PosBottomHalf existing = (PosBottomHalf)positions.get(bh);
  43. if(existing == null)
  44. {
  45. positions.put(bh,bh);
  46. existing = bh;
  47. }
  48. return new PosTopHalf(existing);
  49. } //}}}
  50. //{{{ contentInserted() method
  51. public synchronized void contentInserted(int offset, int length)
  52. {
  53. if(positions.size() == 0)
  54. return;
  55. /* get all positions from offset to the end, inclusive */
  56. Iterator iter = positions.tailMap(new PosBottomHalf(offset))
  57. .keySet().iterator();
  58. iteration = true;
  59. while(iter.hasNext())
  60. {
  61. PosBottomHalf bh = (PosBottomHalf)iter.next();
  62. bh.offset += length;
  63. }
  64. iteration = false;
  65. } //}}}
  66. //{{{ contentRemoved() method
  67. public synchronized void contentRemoved(int offset, int length)
  68. {
  69. if(positions.size() == 0)
  70. return;
  71. /* get all positions from offset to the end, inclusive */
  72. Iterator iter = positions.tailMap(new PosBottomHalf(offset))
  73. .keySet().iterator();
  74. iteration = true;
  75. while(iter.hasNext())
  76. {
  77. PosBottomHalf bh = (PosBottomHalf)iter.next();
  78. if(bh.offset <= offset + length)
  79. bh.offset = offset;
  80. else
  81. bh.offset -= length;
  82. }
  83. iteration = false;
  84. } //}}}
  85. boolean iteration;
  86. //{{{ Private members
  87. private SortedMap positions = new TreeMap();
  88. //}}}
  89. //{{{ Inner classes
  90. //{{{ PosTopHalf class
  91. class PosTopHalf implements Position
  92. {
  93. PosBottomHalf bh;
  94. //{{{ PosTopHalf constructor
  95. PosTopHalf(PosBottomHalf bh)
  96. {
  97. this.bh = bh;
  98. bh.ref();
  99. } //}}}
  100. //{{{ getOffset() method
  101. public int getOffset()
  102. {
  103. return bh.offset;
  104. } //}}}
  105. //{{{ finalize() method
  106. protected void finalize()
  107. {
  108. synchronized(PositionManager.this)
  109. {
  110. bh.unref();
  111. }
  112. } //}}}
  113. } //}}}
  114. //{{{ PosBottomHalf class
  115. class PosBottomHalf implements Comparable
  116. {
  117. int offset;
  118. int ref;
  119. //{{{ PosBottomHalf constructor
  120. PosBottomHalf(int offset)
  121. {
  122. this.offset = offset;
  123. } //}}}
  124. //{{{ ref() method
  125. void ref()
  126. {
  127. ref++;
  128. } //}}}
  129. //{{{ unref() method
  130. void unref()
  131. {
  132. if(--ref == 0)
  133. positions.remove(this);
  134. } //}}}
  135. //{{{ equals() method
  136. public boolean equals(Object o)
  137. {
  138. if(!(o instanceof PosBottomHalf))
  139. return false;
  140. return ((PosBottomHalf)o).offset == offset;
  141. } //}}}
  142. //{{{ compareTo() method
  143. public int compareTo(Object o)
  144. {
  145. if(iteration)
  146. Log.log(Log.ERROR,this,"Consistency failure");
  147. return offset - ((PosBottomHalf)o).offset;
  148. } //}}}
  149. } //}}}
  150. //}}}
  151. }