/apache-tomcat-6.0.35-src/java/org/apache/catalina/tribes/io/ObjectReader.java

# · Java · 165 lines · 80 code · 26 blank · 59 comment · 3 complexity · a00db794d689b6e63137a879cff83419 MD5 · raw file

  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one or more
  3. * contributor license agreements. See the NOTICE file distributed with
  4. * this work for additional information regarding copyright ownership.
  5. * The ASF licenses this file to You under the Apache License, Version 2.0
  6. * (the "License"); you may not use this file except in compliance with
  7. * the License. You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. */
  17. package org.apache.catalina.tribes.io;
  18. import java.io.IOException;
  19. import java.net.Socket;
  20. import java.nio.ByteBuffer;
  21. import java.nio.channels.SocketChannel;
  22. import org.apache.catalina.tribes.ChannelMessage;
  23. /**
  24. * The object reader object is an object used in conjunction with
  25. * java.nio TCP messages. This object stores the message bytes in a
  26. * <code>XByteBuffer</code> until a full package has been received.
  27. * This object uses an XByteBuffer which is an extendable object buffer that also allows
  28. * for message encoding and decoding.
  29. *
  30. * @author Filip Hanik
  31. * @version $Id: ObjectReader.java 939515 2010-04-29 23:59:49Z kkolinko $
  32. */
  33. public class ObjectReader {
  34. protected static org.apache.juli.logging.Log log = org.apache.juli.logging.LogFactory.getLog(ObjectReader.class);
  35. private XByteBuffer buffer;
  36. protected long lastAccess = System.currentTimeMillis();
  37. protected boolean accessed = false;
  38. private boolean cancelled;
  39. /**
  40. * Creates an <code>ObjectReader</code> for a TCP NIO socket channel
  41. * @param channel - the channel to be read.
  42. */
  43. public ObjectReader(SocketChannel channel) {
  44. this(channel.socket());
  45. }
  46. /**
  47. * Creates an <code>ObjectReader</code> for a TCP socket
  48. * @param socket Socket
  49. */
  50. public ObjectReader(Socket socket) {
  51. try{
  52. this.buffer = new XByteBuffer(socket.getReceiveBufferSize(), true);
  53. }catch ( IOException x ) {
  54. //unable to get buffer size
  55. log.warn("Unable to retrieve the socket receiver buffer size, setting to default 43800 bytes.");
  56. this.buffer = new XByteBuffer(43800,true);
  57. }
  58. }
  59. public synchronized void access() {
  60. this.accessed = true;
  61. this.lastAccess = System.currentTimeMillis();
  62. }
  63. public synchronized void finish() {
  64. this.accessed = false;
  65. this.lastAccess = System.currentTimeMillis();
  66. }
  67. public boolean isAccessed() {
  68. return this.accessed;
  69. }
  70. /**
  71. * Append new bytes to buffer.
  72. * @see XByteBuffer#countPackages()
  73. * @param data new transfer buffer
  74. * @param off offset
  75. * @param len length in buffer
  76. * @return number of messages that sended to callback
  77. * @throws java.io.IOException
  78. */
  79. public int append(ByteBuffer data, int len, boolean count) throws java.io.IOException {
  80. buffer.append(data,len);
  81. int pkgCnt = -1;
  82. if ( count ) pkgCnt = buffer.countPackages();
  83. return pkgCnt;
  84. }
  85. public int append(byte[] data,int off,int len, boolean count) throws java.io.IOException {
  86. buffer.append(data,off,len);
  87. int pkgCnt = -1;
  88. if ( count ) pkgCnt = buffer.countPackages();
  89. return pkgCnt;
  90. }
  91. /**
  92. * Send buffer to cluster listener (callback).
  93. * Is message complete receiver send message to callback?
  94. *
  95. * @see org.apache.catalina.tribes.transport.ClusterReceiverBase#messageDataReceived(ChannelMessage)
  96. * @see XByteBuffer#doesPackageExist()
  97. * @see XByteBuffer#extractPackage(boolean)
  98. *
  99. * @return number of received packages/messages
  100. * @throws java.io.IOException
  101. */
  102. public ChannelMessage[] execute() throws java.io.IOException {
  103. int pkgCnt = buffer.countPackages();
  104. ChannelMessage[] result = new ChannelMessage[pkgCnt];
  105. for (int i=0; i<pkgCnt; i++) {
  106. ChannelMessage data = buffer.extractPackage(true);
  107. result[i] = data;
  108. }
  109. return result;
  110. }
  111. public int bufferSize() {
  112. return buffer.getLength();
  113. }
  114. public boolean hasPackage() {
  115. return buffer.countPackages(true)>0;
  116. }
  117. /**
  118. * Returns the number of packages that the reader has read
  119. * @return int
  120. */
  121. public int count() {
  122. return buffer.countPackages();
  123. }
  124. public void close() {
  125. this.buffer = null;
  126. }
  127. public long getLastAccess() {
  128. return lastAccess;
  129. }
  130. public boolean isCancelled() {
  131. return cancelled;
  132. }
  133. public void setLastAccess(long lastAccess) {
  134. this.lastAccess = lastAccess;
  135. }
  136. public void setCancelled(boolean cancelled) {
  137. this.cancelled = cancelled;
  138. }
  139. }