QAbstractHttpServer Class

API to subclass to implement an HTTP server. 更多...

头: #include <QAbstractHttpServer>
CMake: find_package(Qt6 REQUIRED COMPONENTS HttpServer)
target_link_libraries(mytarget PRIVATE Qt6::HttpServer)
qmake: QT += httpserver
Since: Qt 6.4
继承: QObject
继承者:

QHttpServer

公共函数

QAbstractHttpServer (QObject * parent = nullptr)
virtual ~QAbstractHttpServer () override
(从 6.8 起) void addWebSocketUpgradeVerifier (const QObject * context , Handler && func )
bool bind (QLocalServer * server )
bool bind (QTcpServer * server )
(从 6.9 起) QHttpServerConfiguration configuration () const
bool hasPendingWebSocketConnections () const
(从 6.8 起) QHttp2Configuration http2Configuration () const
QList<QLocalServer *> localServers () const
std::unique_ptr<QWebSocket> nextPendingWebSocketConnection ()
QList<quint16> serverPorts () const
QList<QTcpServer *> servers () const
(从 6.9 起) void setConfiguration (const QHttpServerConfiguration & config )
(从 6.8 起) void setHttp2Configuration (const QHttp2Configuration & configuration )

信号

void newWebSocketConnection ()

保护函数

virtual bool handleRequest (const QHttpServerRequest & request , QHttpServerResponder & responder ) = 0
virtual void missingHandler (const QHttpServerRequest & request , QHttpServerResponder & responder ) = 0

详细描述

Subclass this class and override handleRequest () 和 missingHandler () to create an HTTP server. Use bind () to start listening to all the incoming connections to a server.

This is a low level API, see QHttpServer for a higher level API to implement an HTTP server.

成员函数文档编制

[explicit] QAbstractHttpServer:: QAbstractHttpServer ( QObject * parent = nullptr)

Creates an instance of QAbstractHttpServer with the parent parent .

[override virtual noexcept] QAbstractHttpServer:: ~QAbstractHttpServer ()

Destroys an instance of QAbstractHttpServer .

[since 6.8] template <typename Handler> void QAbstractHttpServer:: addWebSocketUpgradeVerifier (const QObject * context , Handler && func )

Adds a callback function func that verifies incoming WebSocket upgrades. It is called using the provided context object. An upgrade succeeds if at least one registered callback returns Accept and no prior callback has returned Deny . If no callbacks are registered, or all return PassToNext missingHandler () function is called. Callbacks are executed in the order they were registered, and they cannot call this function themselves.

注意: The func has to implement the signature QHttpServerWebSocketUpgradeResponse (*)(const QHttpServerRequest &) .

server.addWebSocketUpgradeVerifier(
        &server, [](const QHttpServerRequest &request) {
            if (request.url().path() == "/allowed"_L1)
                return QHttpServerWebSocketUpgradeResponse::accept();
            else
                return QHttpServerWebSocketUpgradeResponse::passToNext();
        });
					

该函数在 Qt 6.8 引入。

另请参阅 QHttpServerRequest , QHttpServerWebSocketUpgradeResponse , hasPendingWebSocketConnections (), nextPendingWebSocketConnection (), newWebSocketConnection (),和 missingHandler ().

bool QAbstractHttpServer:: bind ( QLocalServer * server )

Bind the given QLocalServer server , over which the transmission happens, to the HTTP server. It is possible to call this function multiple times with different instances of server to handle multiple connections.

After calling this function, every new connection will be handled and forwarded by the HTTP server.

It is the user's responsibility to call QLocalServer::listen () on the server before calling this function. If server is not listening, nothing will happen and false 将被返回。

server is nullptr false is returned.

If successful the server will be parented to this HTTP server and true 被返回。

另请参阅 QLocalServer and QLocalServer::listen ().

bool QAbstractHttpServer:: bind ( QTcpServer * server )

Bind the given TCP server , over which the transmission happens, to the HTTP server. It is possible to call this function multiple times with different instances of TCP server to handle multiple connections and ports, for example both SSL and non-encrypted connections.

After calling this function, every new connection will be handled and forwarded by the HTTP server.

It is the user's responsibility to call QTcpServer::listen () on the server before calling this function. If server is not listening, nothing will happen and false 将被返回。

If successful the server will be parented to this HTTP server and true 被返回。

To allow usage of HTTP 2, bind to a QSslServer where QSslConfiguration::setAllowedNextProtocols () has been called with the arguments { QSslConfiguration::ALPNProtocolHTTP2 } .

另请参阅 QTcpServer , QTcpServer::listen (),和 QSslConfiguration::setAllowedNextProtocols ().

[since 6.9] QHttpServerConfiguration QAbstractHttpServer:: configuration () const

Returns this server's general configuration parameters.

该函数在 Qt 6.9 引入。

另请参阅 setConfiguration ().

[pure virtual protected] bool QAbstractHttpServer:: handleRequest (const QHttpServerRequest & request , QHttpServerResponder & responder )

Override this function to handle each incoming request , by examining the request and sending the appropriate response back to responder . Return truerequest was handled successfully. If this method returns false , missingHandler () will be called afterwards.

bool QAbstractHttpServer:: hasPendingWebSocketConnections () const

返回 true if the server has pending WebSocket connections; otherwise returns false .

另请参阅 newWebSocketConnection (), nextPendingWebSocketConnection (),和 addWebSocketUpgradeVerifier ().

[since 6.8] QHttp2Configuration QAbstractHttpServer:: http2Configuration () const

Returns server's HTTP/2 configuration parameters.

该函数在 Qt 6.8 引入。

另请参阅 setHttp2Configuration ().

QList < QLocalServer *> QAbstractHttpServer:: localServers () const

Returns the local servers of this HTTP server.

另请参阅 serverPorts ().

[pure virtual protected] void QAbstractHttpServer:: missingHandler (const QHttpServerRequest & request , QHttpServerResponder & responder )

Override this function to handle each incoming request that was not handled by handleRequest (). This function is called whenever handleRequest () 返回 false , or if there is a WebSocket upgrade attempt and either there are no connections to newWebSocketConnection () or there are no matching WebSocket verifiers. The request and responder parameters are the same as handleRequest () was called with.

另请参阅 handleRequest () 和 addWebSocketUpgradeVerifier ().

[signal] void QAbstractHttpServer:: newWebSocketConnection ()

This signal is emitted every time a new WebSocket connection is available.

另请参阅 hasPendingWebSocketConnections (), nextPendingWebSocketConnection (),和 addWebSocketUpgradeVerifier ().

std::unique_ptr < QWebSocket > QAbstractHttpServer:: nextPendingWebSocketConnection ()

返回下一待决连接作为连接的 QWebSocket 对象。 nullptr 被返回若在没有待决连接时调用此函数。

注意: 返回的 QWebSocket 对象不可以用于其它线程。

另请参阅 newWebSocketConnection (), hasPendingWebSocketConnections (),和 addWebSocketUpgradeVerifier ().

QList < quint16 > QAbstractHttpServer:: serverPorts () const

Returns the list of ports this instance of QAbstractHttpServer is listening to.

This function has the same guarantee as QObject::children , the latest server added is the last entry in the vector.

另请参阅 servers ().

QList < QTcpServer *> QAbstractHttpServer:: servers () const

Returns the TCP and SSL servers this HTTP server will handle connections from.

另请参阅 serverPorts ().

[since 6.9] void QAbstractHttpServer:: setConfiguration (const QHttpServerConfiguration & config )

Sets this server's general configuration parameters to config .

注意: The new configuration will be applied both to already established connections and all next connections.

该函数在 Qt 6.9 引入。

另请参阅 configuration ().

[since 6.8] void QAbstractHttpServer:: setHttp2Configuration (const QHttp2Configuration & configuration )

Sets server's HTTP/2 configuration parameters.

The next HTTP/2 connection will use the given configuration .

该函数在 Qt 6.8 引入。

另请参阅 http2Configuration ().