/soar/unix/svcnode/src/svcnode/worker/netlog/Netlog.java

http://arronwork.googlecode.com/ · Java · 208 lines · 186 code · 19 blank · 3 comment · 20 complexity · 83bcf94a4a984f6c766a8c2499556c8b MD5 · raw file

  1. package svcnode.worker.netlog;
  2. import java.io.File;
  3. import java.io.FileWriter;
  4. import java.util.Date;
  5. import java.text.SimpleDateFormat;
  6. import java.net.DatagramSocket;
  7. import java.net.DatagramPacket;
  8. import java.net.InetAddress;
  9. import java.net.SocketTimeoutException;
  10. import net.sf.json.JSONObject;
  11. import soar.basic.*;
  12. import svcnode.share.*;
  13. public class Netlog extends Thread
  14. {
  15. private String __CLASS__=Netlog.class.getName();
  16. private DatagramSocket sock;
  17. public Netlog(DatagramSocket sock) throws Exception
  18. {/*{{{*/
  19. Cnfg cnfg=Cnfg.getInstance();
  20. String dir=cnfg.netlog.location;
  21. if(!cnfg.netlog.location.substring(0, 1).equals("/"))
  22. dir=(new File(".").getAbsolutePath())+"/"+dir;
  23. File d=new File(dir);
  24. if(d.exists())
  25. {
  26. if(!d.isDirectory() ||
  27. !d.canRead() || !d.canWrite() || !d.canExecute())
  28. {
  29. System.err.println(__CLASS__+
  30. ": netlog.location mode invalid");
  31. throw new Exception("netlog.location("+
  32. cnfg.netlog.location+") invalid");
  33. }
  34. }
  35. else
  36. {
  37. if(!d.mkdir())
  38. {
  39. System.err.println(__CLASS__+
  40. ": netlog.location mode invalid");
  41. throw new Exception("netlog.location("+
  42. cnfg.netlog.location+") cannot create");
  43. }
  44. }
  45. this.sock=sock;
  46. }/*}}}*/
  47. public void run()
  48. {/*{{{*/
  49. final String __METHOD_="run";
  50. byte[] buf=new byte[1024];
  51. DatagramPacket p=new DatagramPacket(buf, buf.length);
  52. String ip;
  53. String request;
  54. try
  55. {
  56. this.sock.setSoTimeout(2*1000);
  57. }
  58. catch(Exception e)
  59. {
  60. }
  61. while(true)
  62. {
  63. ip=null;
  64. request=null;
  65. try
  66. {
  67. this.sock.receive(p);
  68. ip=p.getAddress().getHostAddress();
  69. request=new String(buf, 0, p.getLength());
  70. }
  71. catch(SocketTimeoutException e)
  72. {
  73. //System.out.println("%s.%s: receive timeout",
  74. //__CLASS__, __METHOD_);
  75. }
  76. catch(Exception e)
  77. {
  78. Errlog.add("%s.%s: receive fail: %s",
  79. __CLASS__, __METHOD_, e.toString());
  80. }
  81. if(request != null)
  82. {
  83. callcmd(ip, request);
  84. }
  85. // ??????
  86. Operate operate=Operate.getInstance();
  87. if(operate.canShutdown())
  88. {
  89. operate.NetlogStop();
  90. Errlog.add("%s.%s: Netlog stop", __CLASS__, __METHOD_);
  91. break;
  92. }
  93. }
  94. }/*}}}*/
  95. private boolean callcmd(String ip, String request_s)
  96. {/*{{{*/
  97. try
  98. {
  99. JSONObject request=JSONObject.fromObject(request_s);
  100. if(!request.has("cmd"))
  101. {
  102. Errlog.add(__CLASS__+": request(%s) cmd not found",
  103. request_s);
  104. return false;
  105. }
  106. String cmd=request.getString("cmd").toUpperCase();
  107. if(cmd.equals("LOG"))
  108. {
  109. if(!request.has("filename") || !request.has("msg"))
  110. {
  111. Errlog.add(__CLASS__+": request(%s) format error",
  112. request_s);
  113. return false;
  114. }
  115. String filename=request.getString("filename");
  116. String msg=request.getString("msg");
  117. LOG(ip, filename, msg);
  118. }
  119. else
  120. {
  121. Errlog.add(__CLASS__+": request(%s) no cmd function",
  122. request_s);
  123. return false;
  124. }
  125. }
  126. catch(Exception e)
  127. {
  128. Errlog.add(__CLASS__+": request(%s) invalid: %s",
  129. request_s, e.toString());
  130. return false;
  131. }
  132. return true;
  133. }/*}}}*/
  134. private boolean LOG(String ip, String filename, String msg)
  135. {/*{{{*/
  136. Cnfg cnfg=Cnfg.getInstance();
  137. String dir=cnfg.netlog.location+"/"+ip;
  138. File d=new File(dir);
  139. if(d.exists())
  140. {
  141. if(!d.isDirectory() ||
  142. !d.canRead() || !d.canWrite() || !d.canExecute())
  143. {
  144. Errlog.add(__CLASS__+": ip dir("+dir+") invalid");
  145. return false;
  146. }
  147. }
  148. else
  149. {
  150. if(!d.mkdir())
  151. {
  152. Errlog.add(__CLASS__+": create ip dir("+dir+") fail");
  153. return false;
  154. }
  155. }
  156. Date date=new Date();
  157. String file=dir+"/"+filename+".log."+
  158. (new SimpleDateFormat("yyyyMMdd")).format(date);
  159. String date_s=(new SimpleDateFormat("yyyy-MM-dd hh:mm:ss")).
  160. format(date);
  161. FileWriter log=null;
  162. try
  163. {
  164. log=new FileWriter(file, true);
  165. log.write(date_s+" -- "+msg+"\n");
  166. }
  167. catch(Exception e)
  168. {
  169. Errlog.add(__CLASS__+": write("+file+") fail:"+
  170. e.toString());
  171. return false;
  172. }
  173. finally
  174. {
  175. try
  176. {
  177. if(log != null)
  178. log.close();
  179. }
  180. catch(Exception e)
  181. {
  182. Errlog.add(__CLASS__+": close("+file+") fail:"+
  183. e.toString());
  184. return false;
  185. }
  186. }
  187. return true;
  188. }/*}}}*/
  189. }