
org.rapidoid.http.fast.ServerSetup Maven / Gradle / Ivy
package org.rapidoid.http.fast;
import org.rapidoid.annotation.Authors;
import org.rapidoid.annotation.Since;
import org.rapidoid.commons.MediaType;
import org.rapidoid.config.Conf;
import org.rapidoid.http.fast.handler.*;
import org.rapidoid.http.fast.listener.FastHttpListener;
import org.rapidoid.http.fast.listener.IgnorantHttpListener;
import org.rapidoid.net.Serve;
import org.rapidoid.net.TCPServer;
import org.rapidoid.pojo.POJO;
import org.rapidoid.pojo.PojoDispatcher;
import org.rapidoid.u.U;
import java.util.List;
import java.util.Map;
/*
* #%L
* rapidoid-http-fast
* %%
* Copyright (C) 2014 - 2016 Nikolche Mihajlovski and contributors
* %%
* 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.
* #L%
*/
@Authors("Nikolche Mihajlovski")
@Since("4.3.0")
public class ServerSetup {
private volatile int port = Conf.port();
private volatile String address = "0.0.0.0";
private volatile FastHttpListener listener = new IgnorantHttpListener();
private volatile HttpWrapper[] wrappers;
private volatile FastHttp fastHttp;
private volatile boolean listening;
private volatile TCPServer server;
public synchronized FastHttp http() {
if (fastHttp == null) {
fastHttp = new FastHttp(listener);
}
return fastHttp;
}
public synchronized TCPServer listen() {
if (!listening) {
listening = true;
server = Serve.server().protocol(http()).address(address).port(port).build();
server.start();
}
return server;
}
public OnAction get(String path) {
return new OnAction(this, httpImpls(), "GET", path).wrap(wrappers);
}
public OnAction post(String path) {
return new OnAction(this, httpImpls(), "POST", path).wrap(wrappers);
}
public OnAction put(String path) {
return new OnAction(this, httpImpls(), "PUT", path).wrap(wrappers);
}
public OnAction delete(String path) {
return new OnAction(this, httpImpls(), "DELETE", path).wrap(wrappers);
}
public OnAction patch(String path) {
return new OnAction(this, httpImpls(), "PATCH", path).wrap(wrappers);
}
public OnAction options(String path) {
return new OnAction(this, httpImpls(), "OPTIONS", path).wrap(wrappers);
}
public OnAction head(String path) {
return new OnAction(this, httpImpls(), "HEAD", path).wrap(wrappers);
}
public OnAction trace(String path) {
return new OnAction(this, httpImpls(), "TRACE", path).wrap(wrappers);
}
public OnPage page(String path) {
return new OnPage(this, httpImpls(), path).wrap(wrappers);
}
public ServerSetup req(ReqHandler handler) {
for (FastHttp http : httpImpls()) {
http.addGenericHandler(new DelegatingFastParamsAwareReqHandler(http, MediaType.HTML_UTF_8, wrappers,
handler));
}
return this;
}
public ServerSetup req(ReqRespHandler handler) {
for (FastHttp http : httpImpls()) {
http.addGenericHandler(new DelegatingFastParamsAwareReqRespHandler(http, MediaType.HTML_UTF_8, wrappers,
handler));
}
return this;
}
public ServerSetup req(FastHttpHandler handler) {
for (FastHttp http : httpImpls()) {
http.addGenericHandler(handler);
}
return this;
}
public ServerSetup req(Object... controllers) {
List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy