io.vertx.ext.shell.term.TermServer Maven / Gradle / Ivy
/*
* Copyright 2015 Red Hat, Inc.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* and Apache License v2.0 which accompanies this distribution.
*
* The Eclipse Public License is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* The Apache License v2.0 is available at
* http://www.opensource.org/licenses/apache2.0.php
*
* You may elect to redistribute this code under either of these licenses.
*
*
* Copyright (c) 2015 The original author or authors
* ------------------------------------------------------
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* and Apache License v2.0 which accompanies this distribution.
*
* The Eclipse Public License is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* The Apache License v2.0 is available at
* http://www.opensource.org/licenses/apache2.0.php
*
* You may elect to redistribute this code under either of these licenses.
*
*/
package io.vertx.ext.shell.term;
import io.vertx.codegen.annotations.Fluent;
import io.vertx.codegen.annotations.VertxGen;
import io.vertx.core.AsyncResult;
import io.vertx.core.Future;
import io.vertx.core.Handler;
import io.vertx.core.Promise;
import io.vertx.core.Vertx;
import io.vertx.ext.auth.AuthProvider;
import io.vertx.ext.auth.authentication.AuthenticationProvider;
import io.vertx.ext.shell.term.impl.SSHServer;
import io.vertx.ext.shell.term.impl.TelnetTermServer;
import io.vertx.ext.shell.term.impl.HttpTermServer;
import io.vertx.ext.web.Router;
/**
* A server for terminal based applications.
*
* @author Julien Viet
*/
@VertxGen
public interface TermServer {
/**
* Create a term server for the SSH protocol.
*
* @param vertx the vertx instance
* @return the term server
*/
static TermServer createSSHTermServer(Vertx vertx) {
return createSSHTermServer(vertx, new SSHTermOptions());
}
/**
* Create a term server for the SSH protocol.
*
* @param vertx the vertx instance
* @param options the ssh options
* @return the term server
*/
static TermServer createSSHTermServer(Vertx vertx, SSHTermOptions options) {
return new SSHServer(vertx, options);
}
/**
* Create a term server for the Telnet protocol.
*
* @param vertx the vertx instance
* @return the term server
*/
static TermServer createTelnetTermServer(Vertx vertx) {
return createTelnetTermServer(vertx, new TelnetTermOptions());
}
/**
* Create a term server for the Telnet protocol.
*
* @param vertx the vertx instance
* @param options the term options
* @return the term server
*/
static TermServer createTelnetTermServer(Vertx vertx, TelnetTermOptions options) {
return new TelnetTermServer(vertx, options);
}
/**
* Create a term server for the HTTP protocol.
*
* @param vertx the vertx instance
* @return the term server
*/
static TermServer createHttpTermServer(Vertx vertx) {
return createHttpTermServer(vertx, new HttpTermOptions());
}
/**
* Create a term server for the HTTP protocol.
*
* @param vertx the vertx instance
* @param options the term options
* @return the term server
*/
static TermServer createHttpTermServer(Vertx vertx, HttpTermOptions options) {
return new HttpTermServer(vertx, options);
}
/**
* Create a term server for the HTTP protocol, using an existing router.
*
* @param vertx the vertx instance
* @param router the router
* @return the term server
*/
static TermServer createHttpTermServer(Vertx vertx, Router router) {
return createHttpTermServer(vertx, router, new HttpTermOptions());
}
/**
* Create a term server for the HTTP protocol, using an existing router.
*
* @param vertx the vertx instance
* @param router the router
* @param options the term options
* @return the term server
*/
static TermServer createHttpTermServer(Vertx vertx, Router router, HttpTermOptions options) {
return new HttpTermServer(vertx, router, options);
}
/**
* Set the term handler that will receive incoming client connections. When a remote terminal connects
* the {@code handler} will be called with the {@link Term} which can be used to interact with the remote
* terminal.
*
* @param handler the term handler
* @return this object
*/
@Fluent
TermServer termHandler(Handler handler);
/**
* @deprecated See {@link #authenticationProvider(AuthenticationProvider)}
* Set an auth provider to use, any provider configured in options will override this provider. This should be used
* when a custom auth provider should be used.
*
* @param provider the auth to use
* @return this object
*/
@Fluent
@Deprecated
default TermServer authProvider(AuthProvider provider) {
return authenticationProvider(provider);
}
/**
* Set an auth provider to use, any provider configured in options will override this provider. This should be used
* when a custom auth provider should be used.
*
* @param provider the auth to use
* @return this object
*/
@Fluent
TermServer authenticationProvider(AuthenticationProvider provider);
/**
* Bind the term server, the {@link #termHandler(Handler)} must be set before.
*
* @return this object
*/
default Future listen() {
Promise promise = Promise.promise();
listen(promise);
return promise.future();
}
/**
* Bind the term server, the {@link #termHandler(Handler)} must be set before.
*
* @param listenHandler the listen handler
* @return this object
*/
@Fluent
TermServer listen(Handler> listenHandler);
/**
* 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.
*/
int actualPort();
/**
* Close the server. This will close any currently open connections. The close may not complete until after this
* method has returned.
*/
default Future close() {
Promise promise = Promise.promise();
close(promise);
return promise.future();
}
/**
* Like {@link #close} but supplying a handler that will be notified when close is complete.
*
* @param completionHandler the handler to be notified when the term server is closed
*/
void close(Handler> completionHandler);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy