2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2018 The Qt Company Ltd.
|
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
2018-07-13 12:33:46 +02:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <languageserverprotocol/client.h>
|
|
|
|
|
|
|
|
|
|
namespace LanguageClient {
|
|
|
|
|
|
|
|
|
|
class DynamicCapability
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
DynamicCapability() = default;
|
2018-11-14 01:21:20 +01:00
|
|
|
void enable(const QString &id, const QJsonValue &options)
|
2018-07-13 12:33:46 +02:00
|
|
|
{
|
|
|
|
|
QTC_CHECK(!m_enabled);
|
|
|
|
|
m_enabled = true;
|
|
|
|
|
m_id = id;
|
|
|
|
|
m_options = options;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void disable()
|
|
|
|
|
{
|
|
|
|
|
m_enabled = true;
|
|
|
|
|
m_id.clear();
|
|
|
|
|
m_options = QJsonValue();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool enabled() const { return m_enabled; }
|
|
|
|
|
|
|
|
|
|
QJsonValue options() const { return m_options; }
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
bool m_enabled = false;
|
|
|
|
|
QString m_id;
|
|
|
|
|
QJsonValue m_options;
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class DynamicCapabilities
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
DynamicCapabilities() = default;
|
|
|
|
|
|
|
|
|
|
void registerCapability(const QList<LanguageServerProtocol::Registration> ®istrations);
|
|
|
|
|
void unregisterCapability(const QList<LanguageServerProtocol::Unregistration> &unregistrations);
|
|
|
|
|
|
|
|
|
|
Utils::optional<bool> isRegistered(const QString &method) const;
|
2021-02-11 09:32:11 +01:00
|
|
|
QJsonValue option(const QString &method) const { return m_capability.value(method).options(); }
|
|
|
|
|
QStringList registeredMethods() const;
|
2018-07-13 12:33:46 +02:00
|
|
|
|
|
|
|
|
void reset();
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
QHash<QString, DynamicCapability> m_capability;
|
|
|
|
|
QHash<QString, QString> m_methodForId;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace LanguageClient
|