GenericSeekableLittleEndianAccessor.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. /**
  21.  * Provides an abstract accessor to a generic Little Endian byte stream. This
  22.  * accessor is seekable.
  23.  * 
  24.  * @author Frz
  25.  * @version 1.0
  26.  * @since Revision 323
  27.  * @see net.sf.odinms.tools.data.input.GenericLittleEndianAccessor
  28.  */
  29. public class GenericSeekableLittleEndianAccessor extends
  30. GenericLittleEndianAccessor implements SeekableLittleEndianAccessor {
  31. private static org.slf4j.Logger log = org.slf4j.LoggerFactory
  32. .getLogger(GenericSeekableLittleEndianAccessor.class);
  33. private SeekableInputStreamBytestream bs;
  34. /**
  35.  * Class constructor
  36.  * Provide a seekable input stream to wrap this object around.
  37.  * 
  38.  * @param bs The byte stream to wrap this around.
  39.  */
  40. public GenericSeekableLittleEndianAccessor(SeekableInputStreamBytestream bs) {
  41. super(bs);
  42. this.bs = bs;
  43. }
  44. /**
  45.  * Seek the pointer to <code>offset</code>
  46.  * 
  47.  * @param offset The offset to seek to.
  48.  * @see net.sf.odinms.tools.data.input.SeekableInputStreamBytestream#seek
  49.  */
  50. @Override
  51. public void seek(long offset) {
  52. try {
  53. bs.seek(offset);
  54. } catch (IOException e) {
  55. log.error("Seek failed", e);
  56. }
  57. }
  58. /**
  59.  * Get the current position of the pointer.
  60.  * 
  61.  * @return The current position of the pointer as a long integer.
  62.  * @see net.sf.odinms.tools.data.input.SeekableInputStreamBytestream#getPosition
  63.  */
  64. @Override
  65. public long getPosition() {
  66. try {
  67. return bs.getPosition();
  68. } catch (IOException e) {
  69. log.error("getPosition failed", e);
  70. return -1;
  71. }
  72. }
  73. /**
  74.  * Skip <code>num</code> number of bytes in the stream.
  75.  * 
  76.  * @param num The number of bytes to skip.
  77.  */
  78. @Override
  79. public void skip(int num) {
  80. seek(getPosition() + num);
  81. }
  82. }