/* 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 "lru_cache.h" #include "lsp.h" #include "match.h" #include "method.h" #include "query.h" #include #include #include #include struct CompletionManager; struct CodeCompleteCache; struct Config; class DiagnosticsPublisher; struct VFS; struct ImportManager; struct IncludeComplete; struct MultiQueueWaiter; struct Project; struct DB; struct WorkingFile; struct WorkingFiles; // Caches symbols for a single file for semantic highlighting to provide // relatively stable ids. Only supports xxx files at a time. struct SemanticHighlightSymbolCache { struct Entry { SemanticHighlightSymbolCache *all_caches_ = nullptr; // The path this cache belongs to. std::string path; // Detailed symbol name to stable id. using TNameToId = std::unordered_map; TNameToId detailed_type_name_to_stable_id; TNameToId detailed_func_name_to_stable_id; TNameToId detailed_var_name_to_stable_id; Entry(SemanticHighlightSymbolCache *all_caches, const std::string &path); std::optional TryGetStableId(SymbolKind kind, const std::string &detailed_name); int GetStableId(SymbolKind kind, const std::string &detailed_name); TNameToId *GetMapForSymbol_(SymbolKind kind); }; constexpr static int kCacheSize = 10; LruCache cache_; uint32_t next_stable_id_ = 0; std::unique_ptr match_; SemanticHighlightSymbolCache(); void Init(); std::shared_ptr GetCacheForFile(const std::string &path); }; struct Out_CclsPublishSemanticHighlighting : public lsOutMessage { struct Symbol { int stableId = 0; lsSymbolKind parentKind; lsSymbolKind kind; uint8_t storage; std::vector> ranges; // `lsRanges` is used to compute `ranges`. std::vector lsRanges; }; struct Params { lsDocumentUri uri; std::vector symbols; }; std::string method = "$ccls/publishSemanticHighlighting"; Params params; }; MAKE_REFLECT_STRUCT(Out_CclsPublishSemanticHighlighting::Symbol, stableId, parentKind, kind, storage, ranges, lsRanges); MAKE_REFLECT_STRUCT(Out_CclsPublishSemanticHighlighting::Params, uri, symbols); MAKE_REFLECT_STRUCT(Out_CclsPublishSemanticHighlighting, jsonrpc, method, params); // 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; MultiQueueWaiter *waiter = nullptr; Project *project = nullptr; DiagnosticsPublisher *diag_pub = nullptr; VFS *vfs = nullptr; ImportManager *import_manager = nullptr; SemanticHighlightSymbolCache *semantic_cache = nullptr; WorkingFiles *working_files = nullptr; CompletionManager *clang_complete = nullptr; IncludeComplete *include_complete = nullptr; CodeCompleteCache *global_code_complete_cache = nullptr; CodeCompleteCache *non_global_code_complete_cache = nullptr; CodeCompleteCache *signature_cache = nullptr; virtual MethodType GetMethodType() const = 0; virtual void Run(std::unique_ptr message) = 0; static std::vector *message_handlers; protected: MessageHandler(); }; template struct BaseMessageHandler : MessageHandler { virtual void Run(TMessage *message) = 0; // MessageHandler: void Run(std::unique_ptr message) override { Run(static_cast(message.get())); } }; bool FindFileOrFail(DB *db, Project *project, std::optional id, const std::string &absolute_path, QueryFile **out_query_file, int *out_file_id = nullptr); void EmitSkippedRanges(WorkingFile *working_file, const std::vector &skipped_ranges); void EmitSemanticHighlighting(DB *db, SemanticHighlightSymbolCache *semantic_cache, WorkingFile *working_file, QueryFile *file);