View Javadoc
1   /*
2    *  Licensed to the Apache Software Foundation (ASF) under one
3    *  or more contributor license agreements.  See the NOTICE file
4    *  distributed with this work for additional information
5    *  regarding copyright ownership.  The ASF licenses this file
6    *  to you under the Apache License, Version 2.0 (the
7    *  "License"); you may not use this file except in compliance
8    *  with the License.  You may obtain a copy of the License at
9    *  
10   *    http://www.apache.org/licenses/LICENSE-2.0
11   *  
12   *  Unless required by applicable law or agreed to in writing,
13   *  software distributed under the License is distributed on an
14   *  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15   *  KIND, either express or implied.  See the License for the
16   *  specific language governing permissions and limitations
17   *  under the License. 
18   *  
19   */
20  package org.apache.mina.http;
21  
22  import java.nio.ByteBuffer;
23  import java.nio.charset.Charset;
24  import java.nio.charset.CharsetEncoder;
25  import java.util.Map;
26  
27  import org.apache.mina.core.buffer.IoBuffer;
28  import org.apache.mina.core.session.IoSession;
29  import org.apache.mina.filter.codec.ProtocolEncoder;
30  import org.apache.mina.filter.codec.ProtocolEncoderOutput;
31  import org.apache.mina.http.api.HttpEndOfContent;
32  import org.apache.mina.http.api.HttpRequest;
33  import org.slf4j.Logger;
34  import org.slf4j.LoggerFactory;
35  
36  /**
37   * An encoder for the HTTP client
38   * @author <a href="http://mina.apache.org">Apache MINA Project</a>
39   */
40  public class HttpClientEncoder implements ProtocolEncoder {
41      private static final Logger LOG = LoggerFactory.getLogger(HttpClientCodec.class);
42      private static final CharsetEncoder ENCODER = Charset.forName("UTF-8").newEncoder();
43  
44      /**
45       * {@inheritDoc}
46       */
47      @Override
48      public void encode(IoSession session, Object message, ProtocolEncoderOutput out) throws Exception {
49          LOG.debug("encode {}", message.getClass().getCanonicalName());
50          
51          if (message instanceof HttpRequest) {
52              LOG.debug("HttpRequest");
53              HttpRequest msg = (HttpRequest)message;
54              StringBuilder sb = new StringBuilder(msg.getMethod().toString());
55              sb.append(" ");
56              sb.append(msg.getRequestPath());
57              
58              if (!"".equals(msg.getQueryString())) {
59                  sb.append("?");
60                  sb.append(msg.getQueryString());
61              }
62              
63              sb.append(" ");
64              sb.append(msg.getProtocolVersion());
65              sb.append("\r\n");
66  
67              for (Map.Entry<String, String> header : msg.getHeaders().entrySet()) {
68                  sb.append(header.getKey());
69                  sb.append(": ");
70                  sb.append(header.getValue());
71                  sb.append("\r\n");
72              }
73              
74              sb.append("\r\n");
75              IoBuffer buf = IoBuffer.allocate(sb.length()).setAutoExpand(true);
76              buf.putString(sb.toString(), ENCODER);
77              buf.flip();
78              out.write(buf);
79          } else if (message instanceof ByteBuffer) {
80              LOG.debug("Body");
81              out.write(message);
82          } else if (message instanceof HttpEndOfContent) {
83              LOG.debug("End of Content");
84              // end of HTTP content
85              // keep alive ?
86          }
87      }
88  
89      /**
90       * {@inheritDoc}
91       */
92      @Override
93      public void dispose(IoSession arg0) throws Exception {
94          // TODO Auto-generated method stub
95      }
96  }