// Copyright (C) 2021 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only // Qt-Security score:significant reason:default #ifndef QLANGUAGESERVER_P_P_H #define QLANGUAGESERVER_P_P_H // // W A R N I N G // ------------- // // This file is not part of the Qt API. It exists purely as an // implementation detail. This header file may change from version to // version without notice, or even be removed. // // We mean it. // #include "qlanguageserver_p.h" #include #include #include #include #include #include QT_BEGIN_NAMESPACE class QRequestInProgress { public: bool canceled = false; }; class QLanguageServerPrivate : public QObjectPrivate { public: QLanguageServerPrivate(const QJsonRpcTransport::DataHandler &h); // The order of the class members matters here. ShutdownResponse holds and uses a pointer to // protocol in its destructor, so shutdownResponse has to be destroyed after protocol in // ~QLanguageServerPrivate(). This happens only when protocol is defined above/before // shutdownResponse. QLanguageServerProtocol protocol; mutable QMutex mutex; // mutex gated, monotonically increasing QLanguageServer::RunStatus runStatus = QLanguageServer::RunStatus::NotSetup; QHash requestsInProgress; // mutex gated bool clientInitialized = false; // mutex gated QLspSpecification::InitializeParams clientInfo; // immutable after runStatus > DidInitialize QLspSpecification::InitializeResult serverInfo; // immutable after runStatus > DidInitialize QLspSpecification::Responses::ShutdownResponseType shutdownResponse; QHash modules; QLspNotifySignals notifySignals; }; QT_END_NAMESPACE #endif // QLANGUAGESERVER_P_P_H