/src/java/opentss/StreamUtil.java

http://open-tss.googlecode.com/ · Java · 298 lines · 236 code · 38 blank · 24 comment · 44 complexity · ca13d851f2e86b702ead2738d8501d0d 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.EOFException;
  18. import java.io.IOException;
  19. import java.io.InputStream;
  20. import java.io.OutputStream;
  21. import java.io.UTFDataFormatException;
  22. import org.apache.commons.lang.StringUtils;
  23. /**
  24. * ?????????????????
  25. *
  26. * @author <a href="mailto:max.h.chen@hotmail.com">Max Chen</a>
  27. */
  28. public final class StreamUtil {
  29. private StreamUtil() {}
  30. public static void writeByte(OutputStream out, byte b) throws IOException {
  31. out.write(b);
  32. }
  33. public static byte readByte(InputStream in) throws IOException {
  34. return (byte) (in.read() & 0xFF);
  35. }
  36. public static void writeBoolean(OutputStream out, boolean b) throws IOException {
  37. out.write(b ? 1 : 0);
  38. }
  39. public static boolean readBoolean(InputStream in) throws IOException {
  40. return in.read() != 0;
  41. }
  42. public static void writeChar(OutputStream out, char c) throws IOException {
  43. out.write((c >>> 8) & 0xFF);
  44. out.write((c >>> 0) & 0xFF);
  45. }
  46. public static char readChar(InputStream in) throws IOException {
  47. int ch1 = in.read();
  48. int ch2 = in.read();
  49. if ((ch1 | ch2) < 0)
  50. throw new EOFException();
  51. return (char) ((ch1 << 8) + (ch2 << 0));
  52. }
  53. public static void writeShort(OutputStream out, short s) throws IOException {
  54. out.write((s >>> 8) & 0xFF);
  55. out.write((s >>> 0) & 0xFF);
  56. }
  57. public static short readShort(InputStream in) throws IOException {
  58. int ch1 = in.read();
  59. int ch2 = in.read();
  60. if ((ch1 | ch2) < 0)
  61. throw new EOFException();
  62. return (short) ((ch1 << 8) + (ch2 << 0));
  63. }
  64. public static void writeInt(OutputStream out, int i) throws IOException {
  65. out.write((i >>> 24) & 0xFF);
  66. out.write((i >>> 16) & 0xFF);
  67. out.write((i >>> 8) & 0xFF);
  68. out.write((i >>> 0) & 0xFF);
  69. }
  70. public static int readInt(InputStream in) throws IOException {
  71. int ch1 = in.read();
  72. int ch2 = in.read();
  73. int ch3 = in.read();
  74. int ch4 = in.read();
  75. if ((ch1 | ch2 | ch3 | ch4) < 0)
  76. throw new EOFException();
  77. return ((ch1 << 24) + (ch2 << 16) + (ch3 << 8) + (ch4 << 0));
  78. }
  79. public static void writeLong(OutputStream out, long l) throws IOException {
  80. out.write((int) (l >>> 56) & 0xFF);
  81. out.write((int) (l >>> 48) & 0xFF);
  82. out.write((int) (l >>> 40) & 0xFF);
  83. out.write((int) (l >>> 32) & 0xFF);
  84. out.write((int) (l >>> 24) & 0xFF);
  85. out.write((int) (l >>> 16) & 0xFF);
  86. out.write((int) (l >>> 8) & 0xFF);
  87. out.write((int) (l >>> 0) & 0xFF);
  88. }
  89. public static long readLong(InputStream in) throws IOException {
  90. return ((long) (readInt(in)) << 32) + (readInt(in) & 0xFFFFFFFFL);
  91. }
  92. public static void writeFloat(OutputStream out, float f) throws IOException {
  93. writeInt(out, Float.floatToIntBits(f));
  94. }
  95. public static float readFloat(InputStream in) throws IOException {
  96. return Float.intBitsToFloat(readInt(in));
  97. }
  98. public static void writeDouble(OutputStream out, double d) throws IOException {
  99. writeLong(out, Double.doubleToLongBits(d));
  100. }
  101. public static double readDouble(InputStream in) throws IOException {
  102. return Double.longBitsToDouble(readLong(in));
  103. }
  104. public static void writeUTF(OutputStream out, String str) throws IOException {
  105. if (str == null) {
  106. writeInt(out, -1);
  107. return ;
  108. }
  109. else if (str.length() == 0) {
  110. writeInt(out, 0);
  111. return ;
  112. }
  113. byte[] buf = toUTF(str);
  114. out.write(buf, 0, buf.length);
  115. }
  116. static final byte[] toUTF(String str) throws IOException {
  117. int strlen = str.length();
  118. int utflen = 0;
  119. char[] chars = str.toCharArray();
  120. for (int i = 0; i < strlen; i++) {
  121. int c = chars[i];
  122. if ((c >= 0x0001) && (c <= 0x007F)) {
  123. utflen++;
  124. }
  125. else if (c > 0x07FF) {
  126. utflen += 3;
  127. }
  128. else {
  129. utflen += 2;
  130. }
  131. }
  132. if (utflen > 65535)
  133. throw new UTFDataFormatException();
  134. int size = utflen + 8;
  135. byte[] bytes = new byte[size];
  136. int offset = 0;
  137. bytes[offset++] = (byte) (strlen >> 24);
  138. bytes[offset++] = (byte) (strlen >> 16);
  139. bytes[offset++] = (byte) (strlen >> 8);
  140. bytes[offset++] = (byte) (strlen >> 0);
  141. bytes[offset++] = (byte) (utflen >> 24);
  142. bytes[offset++] = (byte) (utflen >> 16);
  143. bytes[offset++] = (byte) (utflen >> 8);
  144. bytes[offset++] = (byte) (utflen >> 0);
  145. for (int i = 0; i < strlen; i++) {
  146. int c = chars[i];
  147. if ((c >= 0x0001) && (c <= 0x007F)) {
  148. bytes[offset++] = (byte) c;
  149. }
  150. else if (c > 0x07FF) {
  151. bytes[offset++] = (byte) (0xE0 | ((c >> 12) & 0x0F));
  152. bytes[offset++] = (byte) (0x80 | ((c >> 6) & 0x3F));
  153. bytes[offset++] = (byte) (0x80 | ((c >> 0) & 0x3F));
  154. }
  155. else {
  156. bytes[offset++] = (byte) (0xC0 | ((c >> 6) & 0x1F));
  157. bytes[offset++] = (byte) (0x80 | ((c >> 0) & 0x3F));
  158. }
  159. }
  160. return bytes;
  161. }
  162. public static String readUTF(InputStream in) throws IOException {
  163. int strlen = readInt(in);
  164. if (strlen == -1)
  165. return null;
  166. else if (strlen == 0)
  167. return StringUtils.EMPTY;
  168. int utflen = readInt(in);
  169. StringBuffer sb = new StringBuffer(strlen);
  170. byte[] bytes = new byte[utflen];
  171. StreamUtil.readFully(in, bytes, 0, utflen);
  172. toString(bytes, utflen, sb);
  173. return sb.toString();
  174. }
  175. static final void toString(byte[] bytes, int utflen, StringBuffer sb) throws IOException {
  176. int char2, char3;
  177. int offset = 0;
  178. while (offset < utflen) {
  179. int c = bytes[offset] & 0xff;
  180. switch (c >> 4) {
  181. case 0:
  182. case 1:
  183. case 2:
  184. case 3:
  185. case 4:
  186. case 5:
  187. case 6:
  188. case 7:
  189. /* 0xxxxxxx */
  190. offset++;
  191. sb.append((char) c);
  192. break;
  193. case 12:
  194. case 13:
  195. /* 110x xxxx 10xx xxxx */
  196. offset += 2;
  197. if (offset > utflen)
  198. throw new UTFDataFormatException();
  199. char2 = bytes[offset - 1];
  200. if ((char2 & 0xC0) != 0x80)
  201. throw new UTFDataFormatException();
  202. sb.append((char) (((c & 0x1F) << 6) | (char2 & 0x3F)));
  203. break;
  204. case 14:
  205. /* 1110 xxxx 10xx xxxx 10xx xxxx */
  206. offset += 3;
  207. if (offset > utflen)
  208. throw new UTFDataFormatException();
  209. char2 = bytes[offset - 2];
  210. char3 = bytes[offset - 1];
  211. if (((char2 & 0xC0) != 0x80) || ((char3 & 0xC0) != 0x80))
  212. throw new UTFDataFormatException();
  213. sb.append((char) (((c & 0x0F) << 12) | ((char2 & 0x3F) << 6) | ((char3 & 0x3F) << 0)));
  214. break;
  215. default:
  216. /* 10xx xxxx, 1111 xxxx */
  217. throw new UTFDataFormatException();
  218. }
  219. }
  220. }
  221. public static int readFully(InputStream in, byte[] bytes) throws IOException {
  222. return readFully(in, bytes, 0, bytes.length);
  223. }
  224. public static int readFully(InputStream in, byte[] bytes, int off, int len) throws IOException {
  225. if (len < 0)
  226. throw new IndexOutOfBoundsException();
  227. int n = 0;
  228. int read = 0;
  229. while (n < len) {
  230. read = in.read(bytes, off + n, len - n);
  231. if (read <= 0)
  232. break;
  233. n += read;
  234. }
  235. return n;
  236. }
  237. public static boolean close(InputStream input) {
  238. if (input == null) {
  239. return true;
  240. }
  241. try {
  242. input.close();
  243. return true;
  244. } catch (Exception e) {
  245. return false;
  246. }
  247. }
  248. public static boolean close(OutputStream output) {
  249. if (output == null) {
  250. return true;
  251. }
  252. try {
  253. output.flush();
  254. output.close();
  255. return true;
  256. } catch (Exception e) {
  257. return false;
  258. }
  259. }
  260. }