/plugins/Templates/tags/Templates-4_0_0/velocity/BufferWriter.java

# · Java · 113 lines · 55 code · 12 blank · 46 comment · 13 complexity · 8b213b0c7d333d510c5615d4065ed3b9 MD5 · raw file

  1. // $Id: BufferWriter.java 7411 2002-05-01 14:13:05Z sjakob $
  2. /*
  3. * BufferWriter.java
  4. * Copyright (c) 2002 Calvin Yu
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public License
  8. * as published by the Free Software Foundation; either version 2
  9. * of the License, or any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  19. */
  20. package velocity;
  21. import java.io.Writer;
  22. import javax.swing.text.Segment;
  23. import org.gjt.sp.jedit.Buffer;
  24. import org.gjt.sp.jedit.jEdit;
  25. import org.gjt.sp.jedit.Mode;
  26. /**
  27. * A writer that writes text to a jEdit buffer.
  28. */
  29. public class BufferWriter extends Writer
  30. {
  31. private Buffer buffer;
  32. private int offset;
  33. /**
  34. * Create a new <code>BufferWriter</code>.
  35. */
  36. public BufferWriter(Buffer aBuffer, int anOffset)
  37. {
  38. buffer = aBuffer;
  39. offset = anOffset;
  40. }
  41. /**
  42. * Returns the current offset.
  43. */
  44. public int getOffset()
  45. {
  46. return offset;
  47. }
  48. /**
  49. * Does nothing.
  50. */
  51. public void close() {}
  52. /**
  53. * Does nothing.
  54. */
  55. public void flush() {}
  56. /**
  57. * Applies characters to buffer.
  58. */
  59. public void write(char[] cbuf, int off, int len)
  60. {
  61. offset += stripCarriageReturns(cbuf, off, len);
  62. }
  63. /**
  64. * Strip any '\r\n" sequences to "\n"
  65. */
  66. private int stripCarriageReturns(char[] cbuf, int off, int len)
  67. {
  68. StringBuffer buf = null;
  69. for (int i=off; i<len; i++) {
  70. if (cbuf[i] == '\r') {
  71. if (buf == null) {
  72. buf = new StringBuffer();
  73. buf.append(cbuf, off, i - off);
  74. }
  75. } else if (buf != null) {
  76. buf.append(cbuf[i]);
  77. }
  78. }
  79. if (buf == null) {
  80. buffer.insert(offset, new Segment(cbuf, off, len));
  81. return len;
  82. } else {
  83. buffer.insert(offset, buf.toString());
  84. return buf.length();
  85. }
  86. }
  87. /**
  88. * Set the buffer mode to the requested value, if valid.
  89. * @param newModeStr The string representation of the desired mode.
  90. * @return <code>true</code> if the mode change was successful,
  91. * <code>false</code> otherwise.
  92. */
  93. public boolean setMode(String newModeStr) {
  94. Mode newMode = jEdit.getMode(newModeStr);
  95. if (newMode == null) {
  96. return false;
  97. }
  98. buffer.setMode(newMode);
  99. return true;
  100. }
  101. }