mirror of
https://github.com/MaskRay/ccls.git
synced 2025-06-08 09:14:54 +00:00
Delete method.{cc,h} Rename $ccls/setSkippedRanges to $ccls/publishSkippedRanges Rename $ccls/publishSemanticHighlighting to $ccls/publishSemanticHighlight; stableId -> id
84 lines
2.3 KiB
C++
84 lines
2.3 KiB
C++
/* Copyright 2017-2018 ccls Authors
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
==============================================================================*/
|
|
|
|
#pragma once
|
|
|
|
#include "lsp.h"
|
|
#include "query.h"
|
|
|
|
#include <memory>
|
|
#include <optional>
|
|
#include <unordered_map>
|
|
#include <vector>
|
|
|
|
struct CompletionManager;
|
|
struct Config;
|
|
struct GroupMatch;
|
|
struct VFS;
|
|
struct IncludeComplete;
|
|
struct MultiQueueWaiter;
|
|
struct Project;
|
|
struct DB;
|
|
struct WorkingFile;
|
|
struct WorkingFiles;
|
|
|
|
|
|
// Usage:
|
|
//
|
|
// struct FooHandler : MessageHandler {
|
|
// // ...
|
|
// };
|
|
// REGISTER_MESSAGE_HANDLER(FooHandler);
|
|
//
|
|
// Then there will be a global FooHandler instance in
|
|
// |MessageHandler::message_handlers|.
|
|
|
|
#define REGISTER_MESSAGE_HANDLER(type) \
|
|
static type type##message_handler_instance_;
|
|
|
|
struct MessageHandler {
|
|
DB *db = nullptr;
|
|
Project *project = nullptr;
|
|
VFS *vfs = nullptr;
|
|
WorkingFiles *working_files = nullptr;
|
|
CompletionManager *clang_complete = nullptr;
|
|
IncludeComplete *include_complete = nullptr;
|
|
|
|
virtual MethodType GetMethodType() const = 0;
|
|
virtual void Run(std::unique_ptr<InMessage> message) = 0;
|
|
|
|
static std::vector<MessageHandler *> *message_handlers;
|
|
|
|
protected:
|
|
MessageHandler();
|
|
};
|
|
|
|
template <typename TMessage> struct BaseMessageHandler : MessageHandler {
|
|
virtual void Run(TMessage *message) = 0;
|
|
|
|
// MessageHandler:
|
|
void Run(std::unique_ptr<InMessage> message) override {
|
|
Run(static_cast<TMessage *>(message.get()));
|
|
}
|
|
};
|
|
|
|
bool FindFileOrFail(DB *db, Project *project, std::optional<lsRequestId> id,
|
|
const std::string &absolute_path,
|
|
QueryFile **out_query_file, int *out_file_id = nullptr);
|
|
|
|
void EmitSkippedRanges(WorkingFile *wfile, QueryFile &file);
|
|
|
|
void EmitSemanticHighlight(DB *db, WorkingFile *wfile, QueryFile &file);
|