/src/java/opentss/ChannelWriter.java

http://open-tss.googlecode.com/ · Java · 137 lines · 92 code · 25 blank · 20 comment · 17 complexity · 95eb1c0fb82ed1fbe6eafe50b3ca18c6 MD5 · raw file

  1. /**
  2. * Copyright 2002-2006 the original author or authors.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package opentss;
  17. import java.io.ByteArrayOutputStream;
  18. import java.io.IOException;
  19. import java.nio.ByteBuffer;
  20. import java.nio.channels.SocketChannel;
  21. /**
  22. * Writer on top of channel.
  23. *
  24. * @author <a href="mailto:max.h.chen@hotmail.com">Max Chen</a>
  25. */
  26. public class ChannelWriter implements Writer {
  27. private SocketChannel channel;
  28. private ByteBuffer writeBuffer;
  29. public ChannelWriter(SocketChannel channel, int writeBufSize) {
  30. this.channel = channel;
  31. this.writeBuffer = ByteBuffer.allocate(writeBufSize);
  32. }
  33. public void writeByte(byte b) throws IOException {
  34. ByteArrayOutputStream bos = new ByteArrayOutputStream();
  35. StreamUtil.writeByte(bos, b);
  36. write(bos.toByteArray(), 0, bos.size());
  37. }
  38. public void writeBoolean(boolean b) throws IOException {
  39. ByteArrayOutputStream bos = new ByteArrayOutputStream();
  40. StreamUtil.writeBoolean(bos, b);
  41. write(bos.toByteArray(), 0, bos.size());
  42. }
  43. public void writeChar(char c) throws IOException {
  44. ByteArrayOutputStream bos = new ByteArrayOutputStream();
  45. StreamUtil.writeChar(bos, c);
  46. write(bos.toByteArray(), 0, bos.size());
  47. }
  48. public void writeShort(short s) throws IOException {
  49. ByteArrayOutputStream bos = new ByteArrayOutputStream();
  50. StreamUtil.writeShort(bos, s);
  51. write(bos.toByteArray(), 0, bos.size());
  52. }
  53. public void writeInt(int i) throws IOException {
  54. ByteArrayOutputStream bos = new ByteArrayOutputStream();
  55. StreamUtil.writeInt(bos, i);
  56. write(bos.toByteArray(), 0, bos.size());
  57. }
  58. public void writeLong(long l) throws IOException {
  59. ByteArrayOutputStream bos = new ByteArrayOutputStream();
  60. StreamUtil.writeLong(bos, l);
  61. write(bos.toByteArray(), 0, bos.size());
  62. }
  63. public void writeFloat(float f) throws IOException {
  64. writeInt(Float.floatToIntBits(f));
  65. }
  66. public void writeDouble(double d) throws IOException {
  67. writeLong(Double.doubleToLongBits(d));
  68. }
  69. public void writeUTF(String str) throws IOException {
  70. if (str == null) {
  71. writeInt(-1);
  72. return ;
  73. }
  74. else if (str.length() == 0) {
  75. writeInt(0);
  76. return ;
  77. }
  78. byte[] buf = StreamUtil.toUTF(str);
  79. write(buf, 0, buf.length);
  80. }
  81. public void write(byte[] bytes, int offset, int length) throws IOException {
  82. if (bytes == null) {
  83. throw new NullPointerException();
  84. } else if ((offset < 0) || (offset > bytes.length) || (length < 0) ||
  85. ((offset + length) > bytes.length) || ((offset + length) < 0)) {
  86. throw new IndexOutOfBoundsException();
  87. } else if (length == 0) {
  88. return;
  89. }
  90. int remaining = 0;
  91. while (length > (remaining = writeBuffer.remaining())) {
  92. length -= remaining;
  93. writeBuffer.put(bytes, offset, remaining);
  94. offset += remaining;
  95. flush();
  96. }
  97. writeBuffer.put(bytes, offset, length);
  98. }
  99. public void flush() throws IOException {
  100. writeBuffer.flip();
  101. while (writeBuffer.hasRemaining())
  102. channel.write(writeBuffer);
  103. writeBuffer.clear();
  104. }
  105. public void close() {
  106. writeBuffer = null;
  107. try {
  108. channel.close();
  109. } catch (Throwable t) {
  110. }
  111. }
  112. }