ByteArrayByteStream.java
上传用户:gwt600
上传日期:2021-06-03
资源大小:704k
文件大小:3k
源码类别:

游戏

开发平台:

Java

  1. /*
  2. This file is part of the OdinMS Maple Story Server
  3.     Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc> 
  4.                        Matthias Butz <matze@odinms.de>
  5.                        Jan Christian Meyer <vimes@odinms.de>
  6.     This program is free software: you can redistribute it and/or modify
  7.     it under the terms of the GNU Affero General Public License version 3
  8.     as published by the Free Software Foundation. You may not use, modify
  9.     or distribute this program under any other version of the
  10.     GNU Affero General Public License.
  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 Affero General Public License for more details.
  15.     You should have received a copy of the GNU Affero General Public License
  16.     along with this program.  If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. package net.sf.odinms.tools.data.input;
  19. import java.io.IOException;
  20. import net.sf.odinms.tools.HexTool;
  21. /**
  22.  * Provides for an abstraction layer for an array of bytes.
  23.  * 
  24.  * @author Frz
  25.  * @version 1.0
  26.  * @since Revision 326
  27.  */
  28. public class ByteArrayByteStream implements SeekableInputStreamBytestream {
  29. private int pos = 0;
  30. private long bytesRead = 0;
  31. private byte[] arr;
  32. /**
  33.  * Class constructor.
  34.  * 
  35.  * @param arr Array of bytes to wrap the stream around.
  36.  */
  37. public ByteArrayByteStream(byte[] arr) {
  38. this.arr = arr;
  39. }
  40. /**
  41.  * Gets the current position of the stream.
  42.  * 
  43.  * @return The current position of the stream.
  44.  * @see net.sf.odinms.tools.data.input.SeekableInputStreamBytestream#getPosition()
  45.  */
  46. @Override
  47. public long getPosition() {
  48. return pos;
  49. }
  50. /**
  51.  * Seeks the pointer the the specified position.
  52.  * 
  53.  * @param offset The position you wish to seek to.
  54.  * @see net.sf.odinms.tools.data.input.SeekableInputStreamBytestream#seek(long)
  55.  */
  56. @Override
  57. public void seek(long offset) throws IOException {
  58. pos = (int) offset;
  59. }
  60. /**
  61.  * Returns the numbers of bytes read from the stream.
  62.  * 
  63.  * @return The number of bytes read.
  64.  * @see net.sf.odinms.tools.data.input.ByteInputStream#getBytesRead()
  65.  */
  66. @Override
  67. public long getBytesRead() {
  68. return bytesRead;
  69. }
  70. /**
  71.  * Reads a byte from the current position.
  72.  * 
  73.  * @return The byte as an integer.
  74.  * @see net.sf.odinms.tools.data.input.ByteInputStream#readByte()
  75.  */
  76. @Override
  77. public int readByte() {
  78. bytesRead++;
  79. return ((int) arr[pos++]) & 0xFF;
  80. }
  81. /**
  82.  * Returns the current stream as a hexadecimal string of values.
  83.  * Shows the entire stream, and the remaining data at the current position.
  84.  * 
  85.  * @return The current stream as a string.
  86.  * @see java.lang.Object#toString()
  87.  */
  88. @Override
  89. public String toString() {
  90. String nows = "";
  91. if (arr.length - pos > 0) {
  92. byte[] now = new byte[arr.length - pos];
  93. System.arraycopy(arr, pos, now, 0, arr.length - pos);
  94. nows = HexTool.toString(now);
  95. }
  96. return "All: " + HexTool.toString(arr) + "nNow: " + nows;
  97. }
  98. /**
  99.  * Returns the number of bytes available from the stream.
  100.  * 
  101.  * @return Number of bytes available as a long integer.
  102.  * @see net.sf.odinms.tools.data.input.ByteInputStream#available()
  103.  */
  104. @Override
  105. public long available() {
  106. return arr.length - pos;
  107. }
  108. }