You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hc.apache.org by ol...@apache.org on 2011/12/01 18:20:37 UTC

svn commit: r1209158 [3/3] - in /httpcomponents/httpcore/trunk/httpcore-nio/src: examples/org/apache/http/examples/nio/ main/java/org/apache/http/impl/nio/ main/java/org/apache/http/nio/ main/java/org/apache/http/nio/protocol/ test/java/org/apache/http...

Added: httpcomponents/httpcore/trunk/httpcore-nio/src/test/java/org/apache/http/testserver/NHttpServerProtocolHandlerAdaptor.java
URL: http://svn.apache.org/viewvc/httpcomponents/httpcore/trunk/httpcore-nio/src/test/java/org/apache/http/testserver/NHttpServerProtocolHandlerAdaptor.java?rev=1209158&view=auto
==============================================================================
--- httpcomponents/httpcore/trunk/httpcore-nio/src/test/java/org/apache/http/testserver/NHttpServerProtocolHandlerAdaptor.java (added)
+++ httpcomponents/httpcore/trunk/httpcore-nio/src/test/java/org/apache/http/testserver/NHttpServerProtocolHandlerAdaptor.java Thu Dec  1 17:20:25 2011
@@ -0,0 +1,97 @@
+/*
+ * ====================================================================
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ * ====================================================================
+ *
+ * This software consists of voluntary contributions made by many
+ * individuals on behalf of the Apache Software Foundation.  For more
+ * information on the Apache Software Foundation, please see
+ * <http://www.apache.org/>.
+ *
+ */
+
+package org.apache.http.testserver;
+
+import java.io.IOException;
+
+import org.apache.http.HttpException;
+import org.apache.http.nio.ContentDecoder;
+import org.apache.http.nio.ContentEncoder;
+import org.apache.http.nio.NHttpServerConnection;
+import org.apache.http.nio.NHttpServerProtocolHandler;
+import org.apache.http.nio.NHttpServiceHandler;
+
+@Deprecated
+class NHttpServerProtocolHandlerAdaptor implements NHttpServerProtocolHandler {
+
+    private final NHttpServiceHandler handler;
+
+    public NHttpServerProtocolHandlerAdaptor(final NHttpServiceHandler handler) {
+        super();
+        this.handler = handler;
+    }
+
+    public void connected(final NHttpServerConnection conn) {
+        this.handler.connected(conn);
+    }
+
+    public void responseReady(
+            final NHttpServerConnection conn) throws IOException, HttpException {
+        this.handler.responseReady(conn);
+    }
+
+    public void requestReceived(
+            final NHttpServerConnection conn) throws IOException, HttpException {
+        this.handler.requestReceived(conn);
+    }
+
+    public void inputReady(
+            final NHttpServerConnection conn,
+            final ContentDecoder decoder) throws IOException, HttpException {
+        this.handler.inputReady(conn, decoder);
+    }
+
+    public void outputReady(
+            final NHttpServerConnection conn,
+            final ContentEncoder encoder) throws IOException, HttpException {
+        this.handler.outputReady(conn, encoder);
+    }
+
+    public void exception(final NHttpServerConnection conn, final Exception ex) {
+        if (ex instanceof HttpException) {
+            this.handler.exception(conn, (HttpException) ex);
+        } else if (ex instanceof IOException) {
+            this.handler.exception(conn, (IOException) ex);
+        } else {
+            if (ex instanceof RuntimeException) {
+                throw (RuntimeException) ex;
+            } else {
+                throw new Error("Unexpected exception: ", ex);
+            }
+        }
+    }
+
+    public void timeout(final NHttpServerConnection conn) {
+        this.handler.timeout(conn);
+    }
+
+    public void closed(final NHttpServerConnection conn) {
+        this.handler.closed(conn);
+    }
+
+}

Propchange: httpcomponents/httpcore/trunk/httpcore-nio/src/test/java/org/apache/http/testserver/NHttpServerProtocolHandlerAdaptor.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpcomponents/httpcore/trunk/httpcore-nio/src/test/java/org/apache/http/testserver/NHttpServerProtocolHandlerAdaptor.java
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: httpcomponents/httpcore/trunk/httpcore-nio/src/test/java/org/apache/http/testserver/NHttpServerProtocolHandlerAdaptor.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain