netty5/codec-http/src/main/java/io/netty/handler/codec/http/HttpMethod.java

206 lines
6.8 KiB
Java
Raw Normal View History

2008-11-19 08:22:15 +01:00
/*
2012-06-04 22:31:44 +02:00
* Copyright 2012 The Netty Project
2009-06-19 19:48:17 +02:00
*
* The Netty Project 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:
2008-11-19 08:22:15 +01:00
*
2012-06-04 22:31:44 +02:00
* http://www.apache.org/licenses/LICENSE-2.0
2008-11-19 08:22:15 +01:00
*
2009-08-28 09:15:49 +02:00
* 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
2009-08-28 09:15:49 +02:00
* License for the specific language governing permissions and limitations
* under the License.
2008-11-19 08:22:15 +01:00
*/
2011-12-09 04:38:59 +01:00
package io.netty.handler.codec.http;
2008-11-19 08:22:15 +01:00
import io.netty.buffer.ByteBuf;
import io.netty.util.CharsetUtil;
2008-12-05 02:58:38 +01:00
import java.util.HashMap;
import java.util.Map;
2008-11-19 08:22:15 +01:00
/**
* The request getMethod of HTTP or its derived protocols, such as
* <a href="http://en.wikipedia.org/wiki/Real_Time_Streaming_Protocol">RTSP</a> and
* <a href="http://en.wikipedia.org/wiki/Internet_Content_Adaptation_Protocol">ICAP</a>.
2008-11-19 08:22:15 +01:00
*/
2008-12-05 02:58:38 +01:00
public class HttpMethod implements Comparable<HttpMethod> {
2008-11-19 08:22:15 +01:00
/**
* The OPTIONS getMethod represents a request for information about the communication options
* available on the request/response chain identified by the Request-URI. This getMethod allows
2012-06-08 12:28:12 +02:00
* the client to determine the options and/or requirements associated with a resource, or the
* capabilities of a server, without implying a resource action or initiating a resource
* retrieval.
2008-11-19 08:22:15 +01:00
*/
public static final HttpMethod OPTIONS = new HttpMethod("OPTIONS", true);
2008-11-19 08:22:15 +01:00
/**
* The GET getMethod means retrieve whatever information (in the form of an entity) is identified
2012-06-08 12:28:12 +02:00
* by the Request-URI. If the Request-URI refers to a data-producing process, it is the
* produced data which shall be returned as the entity in the response and not the source text
* of the process, unless that text happens to be the output of the process.
2008-11-19 08:22:15 +01:00
*/
public static final HttpMethod GET = new HttpMethod("GET", true);
2008-11-19 08:22:15 +01:00
/**
* The HEAD getMethod is identical to GET except that the server MUST NOT return a message-body
2012-06-08 12:28:12 +02:00
* in the response.
2008-11-19 08:22:15 +01:00
*/
public static final HttpMethod HEAD = new HttpMethod("HEAD", true);
2008-11-19 08:22:15 +01:00
/**
* The POST getMethod is used to request that the origin server accept the entity enclosed in the
2012-06-08 12:28:12 +02:00
* request as a new subordinate of the resource identified by the Request-URI in the
* Request-Line.
2008-11-19 08:22:15 +01:00
*/
public static final HttpMethod POST = new HttpMethod("POST", true);
2008-11-19 08:22:15 +01:00
/**
* The PUT getMethod requests that the enclosed entity be stored under the supplied Request-URI.
2008-11-19 08:22:15 +01:00
*/
public static final HttpMethod PUT = new HttpMethod("PUT", true);
2008-11-19 08:22:15 +01:00
/**
* The PATCH getMethod requests that a set of changes described in the
* request entity be applied to the resource identified by the Request-URI.
*/
public static final HttpMethod PATCH = new HttpMethod("PATCH", true);
2008-11-19 08:22:15 +01:00
/**
* The DELETE getMethod requests that the origin server delete the resource identified by the
2012-06-08 12:28:12 +02:00
* Request-URI.
2008-11-19 08:22:15 +01:00
*/
public static final HttpMethod DELETE = new HttpMethod("DELETE", true);
2008-11-19 08:22:15 +01:00
/**
* The TRACE getMethod is used to invoke a remote, application-layer loop- back of the request
2012-06-08 12:28:12 +02:00
* message.
2008-11-19 08:22:15 +01:00
*/
public static final HttpMethod TRACE = new HttpMethod("TRACE", true);
2008-11-19 08:22:15 +01:00
/**
* This specification reserves the getMethod name CONNECT for use with a proxy that can dynamically
2012-06-08 12:28:12 +02:00
* switch to being a tunnel
2008-11-19 08:22:15 +01:00
*/
public static final HttpMethod CONNECT = new HttpMethod("CONNECT", true);
2008-12-05 02:58:38 +01:00
private static final Map<String, HttpMethod> methodMap =
new HashMap<String, HttpMethod>();
static {
methodMap.put(OPTIONS.toString(), OPTIONS);
methodMap.put(GET.toString(), GET);
methodMap.put(HEAD.toString(), HEAD);
methodMap.put(POST.toString(), POST);
methodMap.put(PUT.toString(), PUT);
methodMap.put(PATCH.toString(), PATCH);
2008-12-05 02:58:38 +01:00
methodMap.put(DELETE.toString(), DELETE);
methodMap.put(TRACE.toString(), TRACE);
methodMap.put(CONNECT.toString(), CONNECT);
}
/**
* Returns the {@link HttpMethod} represented by the specified name.
* If the specified name is a standard HTTP getMethod name, a cached instance
* will be returned. Otherwise, a new instance will be returned.
*/
2009-02-11 10:24:28 +01:00
public static HttpMethod valueOf(String name) {
if (name == null) {
throw new NullPointerException("name");
2008-12-05 02:58:38 +01:00
}
name = name.trim();
if (name.isEmpty()) {
2009-02-11 10:24:28 +01:00
throw new IllegalArgumentException("empty name");
}
HttpMethod result = methodMap.get(name);
2008-12-05 02:58:38 +01:00
if (result != null) {
return result;
} else {
2009-02-11 10:24:28 +01:00
return new HttpMethod(name);
2008-12-05 02:58:38 +01:00
}
}
2008-11-19 08:22:15 +01:00
2009-02-11 10:24:28 +01:00
private final String name;
private final byte[] bytes;
2008-11-19 08:22:15 +01:00
/**
* Creates a new HTTP getMethod with the specified name. You will not need to
* create a new getMethod unless you are implementing a protocol derived from
2009-06-19 17:01:47 +02:00
* HTTP, such as
* <a href="http://en.wikipedia.org/wiki/Real_Time_Streaming_Protocol">RTSP</a> and
* <a href="http://en.wikipedia.org/wiki/Internet_Content_Adaptation_Protocol">ICAP</a>
*/
2009-02-11 10:24:28 +01:00
public HttpMethod(String name) {
this(name, false);
}
private HttpMethod(String name, boolean bytes) {
2009-02-11 10:24:28 +01:00
if (name == null) {
throw new NullPointerException("name");
2008-12-05 02:58:38 +01:00
}
name = name.trim();
if (name.isEmpty()) {
2009-02-11 10:24:28 +01:00
throw new IllegalArgumentException("empty name");
}
2008-12-05 02:58:38 +01:00
2009-02-11 10:24:28 +01:00
for (int i = 0; i < name.length(); i ++) {
char c = name.charAt(i);
if (Character.isISOControl(c) || Character.isWhitespace(c)) {
2009-02-12 06:02:22 +01:00
throw new IllegalArgumentException("invalid character in name");
2009-02-11 10:24:28 +01:00
}
2008-12-05 02:58:38 +01:00
}
2008-11-19 08:22:15 +01:00
2009-02-11 10:24:28 +01:00
this.name = name;
if (bytes) {
this.bytes = name.getBytes(CharsetUtil.US_ASCII);
} else {
this.bytes = null;
}
2009-02-11 10:24:28 +01:00
}
/**
* Returns the name of this getMethod.
*/
public String name() {
2009-02-11 10:24:28 +01:00
return name;
2008-11-19 08:22:15 +01:00
}
2008-12-05 02:58:38 +01:00
@Override
public int hashCode() {
return name().hashCode();
2008-12-05 02:58:38 +01:00
}
@Override
public boolean equals(Object o) {
if (!(o instanceof HttpMethod)) {
return false;
}
HttpMethod that = (HttpMethod) o;
return name().equals(that.name());
2008-12-05 02:58:38 +01:00
}
@Override
public String toString() {
return name();
2008-11-19 08:22:15 +01:00
}
2008-12-05 02:58:38 +01:00
@Override
2008-12-05 02:58:38 +01:00
public int compareTo(HttpMethod o) {
return name().compareTo(o.name());
2008-12-05 02:58:38 +01:00
}
void encode(ByteBuf buf) {
if (bytes == null) {
HttpHeaders.encodeAscii0(name, buf);
} else {
buf.writeBytes(bytes);
}
}
2008-11-19 08:22:15 +01:00
}