/octanebrowser/src/org/apache/ws/commons/tcpmon/core/ui/AbstractRequestResponse.java

http://websecuritynotebook.googlecode.com/ · Java · 139 lines · 100 code · 24 blank · 15 comment · 2 complexity · fa3d258d8f1efe7dc1d78c5bd7c0aef3 MD5 · raw file

  1. /*
  2. * Copyright 2004,2005 The Apache Software Foundation.
  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 org.apache.ws.commons.tcpmon.core.ui;
  17. import java.io.IOException;
  18. import java.io.OutputStream;
  19. import java.io.PrintWriter;
  20. import java.io.StringWriter;
  21. import java.io.Writer;
  22. import java.nio.charset.Charset;
  23. import java.text.DateFormat;
  24. import java.text.SimpleDateFormat;
  25. import java.util.Date;
  26. import org.apache.ws.commons.tcpmon.TCPMonBundle;
  27. import org.apache.ws.commons.tcpmon.core.engine.RequestResponseListener;
  28. import org.apache.ws.commons.tcpmon.core.filter.CharsetDecoderFilter;
  29. import org.apache.ws.commons.tcpmon.core.filter.Pipeline;
  30. import org.apache.ws.commons.tcpmon.core.filter.RequestLineExtractor;
  31. import org.apache.ws.commons.tcpmon.core.filter.http.HttpRequestFilter;
  32. import org.apache.ws.commons.tcpmon.core.filter.http.HttpResponseFilter;
  33. import org.apache.ws.commons.tcpmon.core.filter.mime.ContentFilterFactory;
  34. import org.apache.ws.commons.tcpmon.core.filter.mime.MultipartContentFilterFactory;
  35. public abstract class AbstractRequestResponse implements RequestResponseListener {
  36. private static final String[] states = new String[] {
  37. TCPMonBundle.getMessage("active00","Active"),
  38. TCPMonBundle.getMessage("req00", "Req"),
  39. TCPMonBundle.getMessage("resp00", "Resp"),
  40. TCPMonBundle.getMessage("done00", "Done"),
  41. TCPMonBundle.getMessage("error00", "Error")
  42. };
  43. private static final Charset UTF8 = Charset.forName("UTF-8");
  44. private static final ContentFilterFactory contentFilterFactory =
  45. new MultipartContentFilterFactory(new DefaultContentFilterFactory());
  46. private final Configuration config;
  47. private String targetHost;
  48. private int targetPort;
  49. public AbstractRequestResponse(Configuration config) {
  50. this.config = config;
  51. }
  52. protected static String getTime() {
  53. String dateformat = TCPMonBundle.getMessage("dateformat00", "yyyy-MM-dd HH:mm:ss");
  54. DateFormat df = new SimpleDateFormat(dateformat);
  55. return df.format(new Date());
  56. }
  57. public void setState(int state) {
  58. setState(states[state]);
  59. }
  60. public String getTargetHost() {
  61. return targetHost;
  62. }
  63. public int getTargetPort() {
  64. return targetPort;
  65. }
  66. public void setTarget(String targetHost, int targetPort) {
  67. this.targetHost = targetHost;
  68. this.targetPort = targetPort;
  69. setOutHost(targetHost);
  70. }
  71. public OutputStream getRequestOutputStream() {
  72. final Pipeline pipeline = new Pipeline();
  73. pipeline.addFilter(new RequestLineExtractor(50) {
  74. @Override
  75. protected void done(String requestLine) {
  76. setRequest(requestLine);
  77. }
  78. });
  79. if (config.isXmlFormat()) {
  80. HttpRequestFilter filter = new HttpRequestFilter(true);
  81. filter.setContentFilterFactory(contentFilterFactory);
  82. pipeline.addFilter(filter);
  83. }
  84. pipeline.addFilter(new CharsetDecoderFilter(getRequestWriter(), UTF8));
  85. return pipeline.getOutputStream();
  86. }
  87. public OutputStream getResponseOutputStream() {
  88. final Pipeline pipeline = new Pipeline();
  89. if (config.isXmlFormat()) {
  90. HttpResponseFilter filter = new HttpResponseFilter(true);
  91. filter.setContentFilterFactory(contentFilterFactory);
  92. pipeline.addFilter(filter);
  93. }
  94. pipeline.addFilter(new CharsetDecoderFilter(getResponseWriter(), UTF8));
  95. return pipeline.getOutputStream();
  96. }
  97. public void onError(Throwable ex) {
  98. StringWriter st = new StringWriter();
  99. PrintWriter wr = new PrintWriter(st);
  100. ex.printStackTrace(wr);
  101. wr.close();
  102. try {
  103. getResponseWriter().write(st.toString());
  104. } catch (IOException e) {
  105. e.printStackTrace();
  106. }
  107. }
  108. protected abstract void setState(String state);
  109. protected abstract void setOutHost(String outHost);
  110. protected abstract void setRequest(String request);
  111. protected abstract Writer getRequestWriter();
  112. protected abstract Writer getResponseWriter();
  113. public abstract String getRequestAsString();
  114. public abstract String getResponseAsString();
  115. } // End of the Class //