All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.vertx.rxjava.core.http.HttpServer Maven / Gradle / Ivy

There is a newer version: 5.0.0.CR2
Show newest version
/*
 * Copyright 2014 Red Hat, Inc.
 *
 * Red Hat 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.
 */

package io.vertx.rxjava.core.http;

import rx.Observable;
import rx.Single;
import io.vertx.rx.java.RxHelper;
import io.vertx.rx.java.WriteStreamSubscriber;
import io.vertx.rx.java.SingleOnSubscribeAdapter;
import java.util.Map;
import java.util.Set;
import java.util.List;
import java.util.Iterator;
import java.util.function.Function;
import java.util.stream.Collectors;
import io.vertx.core.Handler;
import io.vertx.core.AsyncResult;
import io.vertx.core.json.JsonObject;
import io.vertx.core.json.JsonArray;
import io.vertx.lang.rx.RxGen;
import io.vertx.lang.rx.TypeArg;
import io.vertx.lang.rx.MappingIterator;

/**
 * An HTTP and WebSockets server.
 * 

* You receive HTTP requests by providing a {@link io.vertx.rxjava.core.http.HttpServer#requestHandler}. As requests arrive on the server the handler * will be called with the requests. *

* You receive WebSockets by providing a {@link io.vertx.rxjava.core.http.HttpServer#webSocketHandler}. As WebSocket connections arrive on the server, the * WebSocket is passed to the handler. * *

* NOTE: This class has been automatically generated from the {@link io.vertx.core.http.HttpServer original} non RX-ified interface using Vert.x codegen. */ @RxGen(io.vertx.core.http.HttpServer.class) public class HttpServer implements io.vertx.rxjava.core.metrics.Measured { @Override public String toString() { return delegate.toString(); } @Override public boolean equals(Object o) { if (this == o) return true; if (o == null || getClass() != o.getClass()) return false; HttpServer that = (HttpServer) o; return delegate.equals(that.delegate); } @Override public int hashCode() { return delegate.hashCode(); } public static final TypeArg __TYPE_ARG = new TypeArg<>( obj -> new HttpServer((io.vertx.core.http.HttpServer) obj), HttpServer::getDelegate ); private final io.vertx.core.http.HttpServer delegate; public HttpServer(io.vertx.core.http.HttpServer delegate) { this.delegate = delegate; } public HttpServer(Object delegate) { this.delegate = (io.vertx.core.http.HttpServer)delegate; } public io.vertx.core.http.HttpServer getDelegate() { return delegate; } private static final TypeArg TYPE_ARG_0 = new TypeArg(o1 -> io.vertx.rxjava.core.http.HttpServerRequest.newInstance((io.vertx.core.http.HttpServerRequest)o1), o1 -> o1.getDelegate()); private static final TypeArg TYPE_ARG_1 = new TypeArg(o1 -> io.vertx.rxjava.core.http.ServerWebSocket.newInstance((io.vertx.core.http.ServerWebSocket)o1), o1 -> o1.getDelegate()); /** * Whether the metrics are enabled for this measured object * @return true if metrics are enabled */ public boolean isMetricsEnabled() { boolean ret = delegate.isMetricsEnabled(); return ret; } /** * Return the request stream for the server. As HTTP requests are received by the server, * instances of {@link io.vertx.rxjava.core.http.HttpServerRequest} will be created and passed to the stream . * @return the request stream */ public io.vertx.rxjava.core.streams.ReadStream requestStream() { if (cached_0 != null) { return cached_0; } io.vertx.rxjava.core.streams.ReadStream ret = io.vertx.rxjava.core.streams.ReadStream.newInstance((io.vertx.core.streams.ReadStream)delegate.requestStream(), TYPE_ARG_0); cached_0 = ret; return ret; } /** * Set the request handler for the server to requestHandler. As HTTP requests are received by the server, * instances of {@link io.vertx.rxjava.core.http.HttpServerRequest} will be created and passed to this handler. * @param handler * @return a reference to this, so the API can be used fluently */ public io.vertx.rxjava.core.http.HttpServer requestHandler(Handler handler) { delegate.requestHandler(new Handler() { public void handle(io.vertx.core.http.HttpServerRequest event) { handler.handle(io.vertx.rxjava.core.http.HttpServerRequest.newInstance((io.vertx.core.http.HttpServerRequest)event)); } }); return this; } /** * Set a connection handler for the server. *
* The handler will always be called on the event-loop thread. * @param handler * @return a reference to this, so the API can be used fluently */ public io.vertx.rxjava.core.http.HttpServer connectionHandler(Handler handler) { delegate.connectionHandler(new Handler() { public void handle(io.vertx.core.http.HttpConnection event) { handler.handle(io.vertx.rxjava.core.http.HttpConnection.newInstance((io.vertx.core.http.HttpConnection)event)); } }); return this; } /** * Set an exception handler called for socket errors happening before the HTTP connection * is established, e.g during the TLS handshake. * @param handler the handler to set * @return a reference to this, so the API can be used fluently */ public io.vertx.rxjava.core.http.HttpServer exceptionHandler(Handler handler) { delegate.exceptionHandler(handler); return this; } /** * Return the WebSocket stream for the server. If a WebSocket connect handshake is successful a * new {@link io.vertx.rxjava.core.http.ServerWebSocket} instance will be created and passed to the stream . * @return the WebSocket stream */ public io.vertx.rxjava.core.streams.ReadStream webSocketStream() { if (cached_1 != null) { return cached_1; } io.vertx.rxjava.core.streams.ReadStream ret = io.vertx.rxjava.core.streams.ReadStream.newInstance((io.vertx.core.streams.ReadStream)delegate.webSocketStream(), TYPE_ARG_1); cached_1 = ret; return ret; } /** * Set the WebSocket handler for the server to wsHandler. If a WebSocket connect handshake is successful a * new {@link io.vertx.rxjava.core.http.ServerWebSocket} instance will be created and passed to the handler. * @param handler * @return a reference to this, so the API can be used fluently */ public io.vertx.rxjava.core.http.HttpServer webSocketHandler(Handler handler) { delegate.webSocketHandler(new Handler() { public void handle(io.vertx.core.http.ServerWebSocket event) { handler.handle(io.vertx.rxjava.core.http.ServerWebSocket.newInstance((io.vertx.core.http.ServerWebSocket)event)); } }); return this; } /** * Like {@link io.vertx.rxjava.core.http.HttpServer#listen} but supplying a handler that will be called when the server is actually * listening (or has failed). * @param port the port to listen on * @param host the host to listen on * @param listenHandler the listen handler * @return */ public io.vertx.rxjava.core.http.HttpServer listen(int port, String host, Handler> listenHandler) { delegate.listen(port, host, new Handler>() { public void handle(AsyncResult ar) { if (ar.succeeded()) { listenHandler.handle(io.vertx.core.Future.succeededFuture(io.vertx.rxjava.core.http.HttpServer.newInstance((io.vertx.core.http.HttpServer)ar.result()))); } else { listenHandler.handle(io.vertx.core.Future.failedFuture(ar.cause())); } } }); return this; } /** * Like {@link io.vertx.rxjava.core.http.HttpServer#listen} but supplying a handler that will be called when the server is actually * listening (or has failed). * @param port the port to listen on * @param host the host to listen on * @return */ public io.vertx.rxjava.core.http.HttpServer listen(int port, String host) { return listen(port, host, ar -> { }); } /** * Like {@link io.vertx.rxjava.core.http.HttpServer#listen} but supplying a handler that will be called when the server is actually * listening (or has failed). * @param port the port to listen on * @param host the host to listen on * @return */ public Single rxListen(int port, String host) { return Single.create(new SingleOnSubscribeAdapter<>(fut -> { listen(port, host, fut); })); } /** * Tell the server to start listening on the given address supplying * a handler that will be called when the server is actually * listening (or has failed). * @param address the address to listen on * @param listenHandler the listen handler * @return */ public io.vertx.rxjava.core.http.HttpServer listen(io.vertx.rxjava.core.net.SocketAddress address, Handler> listenHandler) { delegate.listen(address.getDelegate(), new Handler>() { public void handle(AsyncResult ar) { if (ar.succeeded()) { listenHandler.handle(io.vertx.core.Future.succeededFuture(io.vertx.rxjava.core.http.HttpServer.newInstance((io.vertx.core.http.HttpServer)ar.result()))); } else { listenHandler.handle(io.vertx.core.Future.failedFuture(ar.cause())); } } }); return this; } /** * Tell the server to start listening on the given address supplying * a handler that will be called when the server is actually * listening (or has failed). * @param address the address to listen on * @return */ public io.vertx.rxjava.core.http.HttpServer listen(io.vertx.rxjava.core.net.SocketAddress address) { return listen(address, ar -> { }); } /** * Tell the server to start listening on the given address supplying * a handler that will be called when the server is actually * listening (or has failed). * @param address the address to listen on * @return */ public Single rxListen(io.vertx.rxjava.core.net.SocketAddress address) { return Single.create(new SingleOnSubscribeAdapter<>(fut -> { listen(address, fut); })); } /** * Like {@link io.vertx.rxjava.core.http.HttpServer#listen} but supplying a handler that will be called when the server is actually listening (or has failed). * @param port the port to listen on * @param listenHandler the listen handler * @return */ public io.vertx.rxjava.core.http.HttpServer listen(int port, Handler> listenHandler) { delegate.listen(port, new Handler>() { public void handle(AsyncResult ar) { if (ar.succeeded()) { listenHandler.handle(io.vertx.core.Future.succeededFuture(io.vertx.rxjava.core.http.HttpServer.newInstance((io.vertx.core.http.HttpServer)ar.result()))); } else { listenHandler.handle(io.vertx.core.Future.failedFuture(ar.cause())); } } }); return this; } /** * Like {@link io.vertx.rxjava.core.http.HttpServer#listen} but supplying a handler that will be called when the server is actually listening (or has failed). * @param port the port to listen on * @return */ public io.vertx.rxjava.core.http.HttpServer listen(int port) { return listen(port, ar -> { }); } /** * Like {@link io.vertx.rxjava.core.http.HttpServer#listen} but supplying a handler that will be called when the server is actually listening (or has failed). * @param port the port to listen on * @return */ public Single rxListen(int port) { return Single.create(new SingleOnSubscribeAdapter<>(fut -> { listen(port, fut); })); } /** * Like {@link io.vertx.rxjava.core.http.HttpServer#listen} but supplying a handler that will be called when the server is actually listening (or has failed). * @param listenHandler the listen handler * @return */ public io.vertx.rxjava.core.http.HttpServer listen(Handler> listenHandler) { delegate.listen(new Handler>() { public void handle(AsyncResult ar) { if (ar.succeeded()) { listenHandler.handle(io.vertx.core.Future.succeededFuture(io.vertx.rxjava.core.http.HttpServer.newInstance((io.vertx.core.http.HttpServer)ar.result()))); } else { listenHandler.handle(io.vertx.core.Future.failedFuture(ar.cause())); } } }); return this; } /** * Like {@link io.vertx.rxjava.core.http.HttpServer#listen} but supplying a handler that will be called when the server is actually listening (or has failed). * @return */ public io.vertx.rxjava.core.http.HttpServer listen() { return listen(ar -> { }); } /** * Like {@link io.vertx.rxjava.core.http.HttpServer#listen} but supplying a handler that will be called when the server is actually listening (or has failed). * @return */ public Single rxListen() { return Single.create(new SingleOnSubscribeAdapter<>(fut -> { listen(fut); })); } /** * Like {@link io.vertx.rxjava.core.http.HttpServer#close} but supplying a handler that will be called when the server is actually closed (or has failed). * @param completionHandler the handler */ public void close(Handler> completionHandler) { delegate.close(completionHandler); } /** * Like {@link io.vertx.rxjava.core.http.HttpServer#close} but supplying a handler that will be called when the server is actually closed (or has failed). */ public void close() { close(ar -> { }); } /** * Like {@link io.vertx.rxjava.core.http.HttpServer#close} but supplying a handler that will be called when the server is actually closed (or has failed). * @return */ public Single rxClose() { return Single.create(new SingleOnSubscribeAdapter<>(fut -> { close(fut); })); } /** * The actual port the server is listening on. This is useful if you bound the server specifying 0 as port number * signifying an ephemeral port * @return the actual port the server is listening on. */ public int actualPort() { int ret = delegate.actualPort(); return ret; } private io.vertx.rxjava.core.streams.ReadStream cached_0; private io.vertx.rxjava.core.streams.ReadStream cached_1; public static HttpServer newInstance(io.vertx.core.http.HttpServer arg) { return arg != null ? new HttpServer(arg) : null; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy