one.nio.http.HttpServer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of one-nio Show documentation
Show all versions of one-nio Show documentation
Unconventional Java I/O library
The newest version!
/*
* Copyright 2015-2016 Odnoklassniki Ltd, Mail.Ru Group
*
* Licensed 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.
*/
package one.nio.http;
import one.nio.http.gen.RequestHandlerGenerator;
import one.nio.server.RejectedSessionException;
import one.nio.server.Server;
import one.nio.net.Socket;
import java.io.IOException;
import java.lang.reflect.Method;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Map;
public class HttpServer extends Server {
private final PathMapper defaultMapper = new PathMapper();
private final Map mappersByAlias = new HashMap<>();
private final Map mappersByHost = new HashMap<>();
public HttpServer(HttpServerConfig config, Object... routers) throws IOException {
super(config);
if (config.virtualHosts != null) {
for (Map.Entry virtualHost : config.virtualHosts.entrySet()) {
PathMapper mapper = new PathMapper();
mappersByAlias.put(virtualHost.getKey(), mapper);
for (String host : virtualHost.getValue()) {
mappersByHost.put(host.toLowerCase(), mapper);
}
}
}
addRequestHandlers(this);
for (Object router : routers) {
addRequestHandlers(router);
}
}
@Override
public HttpSession createSession(Socket socket) throws RejectedSessionException {
return new HttpSession(socket, this);
}
public void handleRequest(Request request, HttpSession session) throws IOException {
RequestHandler handler = findHandlerByHost(request);
if (handler == null) {
handler = defaultMapper.find(request.getPath(), request.getMethod());
}
if (handler != null) {
handler.handleRequest(request, session);
} else {
handleDefault(request, session);
}
}
public void handleDefault(Request request, HttpSession session) throws IOException {
Response response = new Response(Response.NOT_FOUND, Response.EMPTY);
session.sendResponse(response);
}
public void addRequestHandlers(Object router) {
ArrayList supers = new ArrayList<>(4);
for (Class> cls = router.getClass(); cls != Object.class; cls = cls.getSuperclass()) {
supers.add(cls);
}
RequestHandlerGenerator generator = new RequestHandlerGenerator();
for (int i = supers.size(); --i >= 0; ) {
Class> cls = supers.get(i);
VirtualHost virtualHost = cls.getAnnotation(VirtualHost.class);
String[] aliases = virtualHost == null ? null : virtualHost.value();
for (Method m : cls.getMethods()) {
Path annotation = m.getAnnotation(Path.class);
if (annotation == null) {
continue;
}
RequestMethod requestMethod = m.getAnnotation(RequestMethod.class);
int[] methods = requestMethod == null ? null : requestMethod.value();
RequestHandler requestHandler = generator.generateFor(m, router);
for (String path : annotation.value()) {
if (!path.startsWith("/")) {
throw new IllegalArgumentException("Path '" + path + "' is not absolute");
}
if (aliases == null || aliases.length == 0) {
defaultMapper.add(path, methods, requestHandler);
} else {
for (String alias : aliases) {
PathMapper mapper = mappersByAlias.get(alias);
if (mapper != null) {
mapper.add(path, methods, requestHandler);
}
}
}
}
}
}
}
protected RequestHandler findHandlerByHost(Request request) {
if (!mappersByHost.isEmpty()) {
String host = request.getHost();
if (host != null) {
PathMapper mapper = mappersByHost.get(host.toLowerCase());
if (mapper != null) {
return mapper.find(request.getPath(), request.getMethod());
}
}
}
return null;
}
}