loom

Форк
0
/
DocHover.cpp 
45 строк · 1.9 Кб
1
#include "DocHover.h"
2
#include "simodo/lsp/server/ServerContext.h"
3
#include "simodo/lsp/server/DocumentContext.h"
4
#include "simodo/lsp/client/TextDocumentPositionParamsParsers.h"
5

6
#include "simodo/variable/json/Rpc.h"
7
#include "simodo/variable/json/Serialization.h"
8
#include "simodo/inout/convert/functions.h"
9

10
namespace simodo::lsp
11
{
12

13
void DocHover::work()
14
{
15
    if (_jsonrpc.is_valid()) {
16
        lsp::TextDocumentPositionParams doc_position;
17
        if (lsp::parseTextDocumentPositionParams(_jsonrpc.params(), doc_position)) {
18
            DocumentContext * doc = _server.findDocument(doc_position.textDocument.uri);
19
            if (doc) {
20
                variable::Value result = doc->produceHoverResponse(doc_position.position);
21
                _server.sending().push(variable::JsonRpc(result, _jsonrpc.id()));
22
                return;
23
            }
24

25
            _server.log().error("'textDocument/hover' command: uri '" 
26
                                + doc_position.textDocument.uri + "' don't loaded yet",
27
                                variable::toJson(_jsonrpc.value()));
28
            _server.sending().push(
29
                /// @todo Скорректировать коды (и тексты) ошибок
30
                variable::JsonRpc(-1,
31
                    u"'textDocument/hover' command: uri '" 
32
                    + inout::toU16(doc_position.textDocument.uri) + u"' don't loaded yet",
33
                    _jsonrpc.id()));
34
            return;
35
        }
36
    }
37
    _server.log().error("There are wrong parameter structure of 'textDocument/hover' command", 
38
                        variable::toJson(_jsonrpc.value()));
39
    _server.sending().push(
40
        /// @todo Скорректировать коды (и тексты) ошибок
41
        variable::JsonRpc(-1,u"There are wrong parameter structure of 'textDocument/hover' command",
42
                            _jsonrpc.id()));
43
}
44

45
}

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.