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

游戏

开发平台:

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 java.io.InputStream;
  21. import org.slf4j.Logger;
  22. import org.slf4j.LoggerFactory;
  23. /**
  24.  * Provides an abstract wrapper to a stream of bytes.
  25.  * 
  26.  * @author Frz
  27.  * @version 1.0
  28.  * @since Revision 323
  29.  */
  30. public class InputStreamByteStream implements ByteInputStream {
  31. private InputStream is;
  32. private long read = 0;
  33. private static Logger log = LoggerFactory.getLogger(InputStreamByteStream.class);
  34. /**
  35.  * Class constructor.
  36.  * Provide an input stream to wrap this around.
  37.  *
  38.  * @param is The input stream to wrap this object around.
  39.  */
  40. public InputStreamByteStream(InputStream is)
  41. {
  42. this.is = is;
  43. }
  44. /**
  45.  * Reads the next byte from the stream.
  46.  * 
  47.  * @return Then next byte in the stream.
  48.  */
  49. @Override
  50. public int readByte() {
  51. int temp;
  52. try {
  53. temp = is.read();
  54. if (temp == -1)
  55. throw new RuntimeException("EOF");
  56. read++;
  57. return temp;
  58. } catch (IOException e) {
  59. throw new RuntimeException(e);
  60. }
  61. }
  62. /**
  63.  * Gets the number of bytes read from the stream.
  64.  * 
  65.  * @return The number of bytes read as a long integer.
  66.  */
  67. @Override
  68. public long getBytesRead() {
  69. return read;
  70. }
  71. /**
  72.  * Returns the number of bytes left in the stream.
  73.  * 
  74.  * @return The number of bytes available for reading as a long integer.
  75.  */
  76. @Override
  77. public long available() {
  78. try {
  79. return is.available();
  80. } catch (IOException e) {
  81. log.error("ERROR", e);
  82. return 0;
  83. }
  84. }
  85. }