/src/java/opentss/StreamReader.java

http://open-tss.googlecode.com/ · Java · 77 lines · 42 code · 15 blank · 20 comment · 0 complexity · 568c42fafaacf8fc42196116be6c4a09 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.IOException;
  18. import java.io.InputStream;
  19. /**
  20. * Reader on top of stream.
  21. *
  22. * @author <a href="mailto:max.h.chen@hotmail.com">Max Chen</a>
  23. */
  24. public class StreamReader implements Reader {
  25. private InputStream input;
  26. public StreamReader(InputStream input) {
  27. this.input = input;
  28. }
  29. public byte readByte() throws IOException {
  30. return StreamUtil.readByte(input);
  31. }
  32. public boolean readBoolean() throws IOException {
  33. return StreamUtil.readBoolean(input);
  34. }
  35. public char readChar() throws IOException {
  36. return StreamUtil.readChar(input);
  37. }
  38. public short readShort() throws IOException {
  39. return StreamUtil.readShort(input);
  40. }
  41. public int readInt() throws IOException {
  42. return StreamUtil.readInt(input);
  43. }
  44. public long readLong() throws IOException {
  45. return StreamUtil.readLong(input);
  46. }
  47. public float readFloat() throws IOException {
  48. return StreamUtil.readFloat(input);
  49. }
  50. public double readDouble() throws IOException {
  51. return StreamUtil.readDouble(input);
  52. }
  53. public String readUTF() throws IOException {
  54. return StreamUtil.readUTF(input);
  55. }
  56. public int read(byte[] bytes, int offset, int length) throws IOException {
  57. return StreamUtil.readFully(input, bytes, offset, length);
  58. }
  59. public void close() {
  60. StreamUtil.close(input);
  61. }
  62. }