From df20969788cdb542696bc6d76a2846e0898b1e10 Mon Sep 17 00:00:00 2001 From: Fangrui Song Date: Sun, 28 Oct 2018 21:21:21 -0700 Subject: [PATCH] *.h -> *.hh --- src/clang_complete.cc | 16 +++++----- src/clang_complete.hh | 10 +++---- src/clang_tu.cc | 4 +-- src/clang_tu.hh | 2 +- src/config.cc | 2 +- src/{config.h => config.hh} | 0 src/filesystem.cc | 2 +- src/fuzzy_match.cc | 2 +- src/{fuzzy_match.h => fuzzy_match.hh} | 0 src/include_complete.cc | 6 ++-- ...include_complete.h => include_complete.hh} | 0 src/indexer.cc | 6 ++-- src/{indexer.h => indexer.hh} | 6 ++-- src/{lru_cache.h => lru_cache.hh} | 0 src/lsp.cc | 2 +- src/lsp.hh | 4 +-- src/main.cc | 8 ++--- src/match.cc | 2 +- src/{match.h => match.hh} | 0 src/{maybe.h => maybe.hh} | 0 src/message_handler.cc | 6 ++-- src/message_handler.hh | 4 +-- src/messages/ccls_call.cc | 8 ++--- src/messages/ccls_info.cc | 2 +- src/messages/ccls_inheritance.cc | 8 ++--- src/messages/ccls_member.cc | 22 +++++++------- src/messages/ccls_navigate.cc | 4 +-- src/messages/ccls_reload.cc | 6 ++-- src/messages/ccls_vars.cc | 6 ++-- src/messages/initialize.cc | 12 ++++---- src/messages/textDocument_code.cc | 12 ++++---- src/messages/textDocument_completion.cc | 8 ++--- src/messages/textDocument_definition.cc | 14 ++++----- src/messages/textDocument_did.cc | 10 +++---- src/messages/textDocument_document.cc | 12 ++++---- src/messages/textDocument_foldingRange.cc | 6 ++-- src/messages/textDocument_formatting.cc | 8 ++--- src/messages/textDocument_hover.cc | 6 ++-- src/messages/textDocument_references.cc | 6 ++-- src/messages/textDocument_rename.cc | 12 ++++---- src/messages/textDocument_signatureHelp.cc | 2 +- src/messages/workspace.cc | 16 +++++----- src/pipeline.cc | 30 +++++++++---------- src/pipeline.hh | 2 +- src/{platform.h => platform.hh} | 0 src/platform_posix.cc | 4 +-- src/platform_win.cc | 4 +-- src/position.cc | 2 +- src/{position.h => position.hh} | 4 +-- src/project.cc | 10 +++---- src/project.hh | 2 +- src/query.cc | 6 ++-- src/{query.h => query.hh} | 2 +- src/query_utils.cc | 2 +- src/{query_utils.h => query_utils.hh} | 4 +-- src/serializer.cc | 6 ++-- src/serializer.hh | 2 +- src/serializers/{binary.h => binary.hh} | 0 src/serializers/{json.h => json.hh} | 0 src/test.cc | 8 ++--- src/{test.h => test.hh} | 0 src/{threaded_queue.h => threaded_queue.hh} | 2 +- src/utils.cc | 4 +-- src/{utils.h => utils.hh} | 0 src/working_files.cc | 4 +-- src/{working_files.h => working_files.hh} | 2 +- 66 files changed, 181 insertions(+), 181 deletions(-) rename src/{config.h => config.hh} (100%) rename src/{fuzzy_match.h => fuzzy_match.hh} (100%) rename src/{include_complete.h => include_complete.hh} (100%) rename src/{indexer.h => indexer.hh} (99%) rename src/{lru_cache.h => lru_cache.hh} (100%) rename src/{match.h => match.hh} (100%) rename src/{maybe.h => maybe.hh} (100%) rename src/{platform.h => platform.hh} (100%) rename src/{position.h => position.hh} (98%) rename src/{query.h => query.hh} (99%) rename src/{query_utils.h => query_utils.hh} (98%) rename src/serializers/{binary.h => binary.hh} (100%) rename src/serializers/{json.h => json.hh} (100%) rename src/{test.h => test.hh} (100%) rename src/{threaded_queue.h => threaded_queue.hh} (99%) rename src/{utils.h => utils.hh} (100%) rename src/{working_files.h => working_files.hh} (99%) diff --git a/src/clang_complete.cc b/src/clang_complete.cc index 615162b3..8c2e5eec 100644 --- a/src/clang_complete.cc +++ b/src/clang_complete.cc @@ -18,8 +18,8 @@ limitations under the License. #include "clang_tu.hh" #include "filesystem.hh" #include "log.hh" -#include "match.h" -#include "platform.h" +#include "match.hh" +#include "platform.hh" #include #include @@ -417,7 +417,7 @@ void *CompletionMain(void *manager_) { DiagnosticConsumer DC; WorkingFiles::Snapshot snapshot = - manager->working_files_->AsSnapshot({StripFileType(path)}); + manager->wfiles_->AsSnapshot({StripFileType(path)}); std::vector> Bufs; auto Clang = BuildCompilerInstance(*session, std::move(CI), FS, DC, preamble.get(), snapshot, Bufs); @@ -491,7 +491,7 @@ void *DiagnosticMain(void *manager_) { CI->getLangOpts()->SpellChecking = g_config->diagnostics.spellChecking; StoreDiags DC(path); WorkingFiles::Snapshot snapshot = - manager->working_files_->AsSnapshot({StripFileType(path)}); + manager->wfiles_->AsSnapshot({StripFileType(path)}); std::vector> Bufs; auto Clang = BuildCompilerInstance(*session, std::move(CI), FS, DC, preamble.get(), snapshot, Bufs); @@ -575,10 +575,10 @@ std::shared_ptr CompletionSession::GetPreamble() { } CompletionManager::CompletionManager(Project *project, - WorkingFiles *working_files, + WorkingFiles *wfiles, OnDiagnostic on_diagnostic, OnDropped on_dropped) - : project_(project), working_files_(working_files), + : project_(project), wfiles_(wfiles), on_diagnostic_(on_diagnostic), on_dropped_(on_dropped), preloads(kMaxPreloadedSessions), sessions(kMaxCompletionSessions), @@ -637,7 +637,7 @@ bool CompletionManager::EnsureCompletionOrCreatePreloadSession( // No CompletionSession, create new one. auto session = std::make_shared( - project_->FindEntry(path, false), working_files_, PCH); + project_->FindEntry(path, false), wfiles_, PCH); if (session->file.filename != path) { session->inferred = true; session->file.filename = path; @@ -666,7 +666,7 @@ CompletionManager::TryGetSession(const std::string &path, bool preload, session = sessions.TryGet(path); if (!session && !preload) { session = std::make_shared( - project_->FindEntry(path, false), working_files_, PCH); + project_->FindEntry(path, false), wfiles_, PCH); sessions.Insert(path, session); LOG_S(INFO) << "create session for " << path; if (is_open) diff --git a/src/clang_complete.hh b/src/clang_complete.hh index 3c5145f8..336cff1c 100644 --- a/src/clang_complete.hh +++ b/src/clang_complete.hh @@ -16,11 +16,11 @@ limitations under the License. #pragma once #include "clang_tu.hh" -#include "lru_cache.h" +#include "lru_cache.hh" #include "lsp.hh" #include "project.hh" -#include "threaded_queue.h" -#include "working_files.h" +#include "threaded_queue.hh" +#include "working_files.hh" #include #include @@ -108,7 +108,7 @@ struct CompletionManager { int64_t debounce; }; - CompletionManager(Project *project, WorkingFiles *working_files, + CompletionManager(Project *project, WorkingFiles *wfiles, OnDiagnostic on_diagnostic, OnDropped on_dropped); // Request a diagnostics update. @@ -141,7 +141,7 @@ struct CompletionManager { // Global state. Project *project_; - WorkingFiles *working_files_; + WorkingFiles *wfiles_; OnDiagnostic on_diagnostic_; OnDropped on_dropped_; diff --git a/src/clang_tu.cc b/src/clang_tu.cc index 2a9b0550..cc3437f6 100644 --- a/src/clang_tu.cc +++ b/src/clang_tu.cc @@ -15,8 +15,8 @@ limitations under the License. #include "clang_tu.hh" -#include "config.h" -#include "platform.h" +#include "config.hh" +#include "platform.hh" #include #include diff --git a/src/clang_tu.hh b/src/clang_tu.hh index d88c836e..2bfa2365 100644 --- a/src/clang_tu.hh +++ b/src/clang_tu.hh @@ -15,7 +15,7 @@ limitations under the License. #pragma once -#include "position.h" +#include "position.hh" #include #include diff --git a/src/config.cc b/src/config.cc index 489c8781..fd607730 100644 --- a/src/config.cc +++ b/src/config.cc @@ -13,7 +13,7 @@ See the License for the specific language governing permissions and limitations under the License. ==============================================================================*/ -#include "config.h" +#include "config.hh" namespace ccls { Config *g_config; diff --git a/src/config.h b/src/config.hh similarity index 100% rename from src/config.h rename to src/config.hh diff --git a/src/filesystem.cc b/src/filesystem.cc index d2cd1b3c..fb463b98 100644 --- a/src/filesystem.cc +++ b/src/filesystem.cc @@ -16,7 +16,7 @@ limitations under the License. #include "filesystem.hh" using namespace llvm; -#include "utils.h" +#include "utils.hh" #include #include diff --git a/src/fuzzy_match.cc b/src/fuzzy_match.cc index 62a8d24f..680aa4ac 100644 --- a/src/fuzzy_match.cc +++ b/src/fuzzy_match.cc @@ -13,7 +13,7 @@ See the License for the specific language governing permissions and limitations under the License. ==============================================================================*/ -#include "fuzzy_match.h" +#include "fuzzy_match.hh" #include #include diff --git a/src/fuzzy_match.h b/src/fuzzy_match.hh similarity index 100% rename from src/fuzzy_match.h rename to src/fuzzy_match.hh diff --git a/src/include_complete.cc b/src/include_complete.cc index b1775664..07c71b58 100644 --- a/src/include_complete.cc +++ b/src/include_complete.cc @@ -13,11 +13,11 @@ See the License for the specific language governing permissions and limitations under the License. ==============================================================================*/ -#include "include_complete.h" +#include "include_complete.hh" #include "filesystem.hh" -#include "match.h" -#include "platform.h" +#include "match.hh" +#include "platform.hh" #include "project.hh" #include diff --git a/src/include_complete.h b/src/include_complete.hh similarity index 100% rename from src/include_complete.h rename to src/include_complete.hh diff --git a/src/indexer.cc b/src/indexer.cc index 96137b2a..43852a7f 100644 --- a/src/indexer.cc +++ b/src/indexer.cc @@ -13,14 +13,14 @@ See the License for the specific language governing permissions and limitations under the License. ==============================================================================*/ -#include "indexer.h" +#include "indexer.hh" #include "clang_complete.hh" #include "clang_tu.hh" #include "log.hh" -#include "match.h" +#include "match.hh" #include "pipeline.hh" -#include "platform.h" +#include "platform.hh" #include "serializer.hh" #include diff --git a/src/indexer.h b/src/indexer.hh similarity index 99% rename from src/indexer.h rename to src/indexer.hh index 488eb9c0..cce9c2e6 100644 --- a/src/indexer.h +++ b/src/indexer.hh @@ -16,10 +16,10 @@ limitations under the License. #pragma once #include "lsp.hh" -#include "maybe.h" -#include "position.h" +#include "maybe.hh" +#include "position.hh" #include "serializer.hh" -#include "utils.h" +#include "utils.hh" #include #include diff --git a/src/lru_cache.h b/src/lru_cache.hh similarity index 100% rename from src/lru_cache.h rename to src/lru_cache.hh diff --git a/src/lsp.cc b/src/lsp.cc index 6a55f1ae..705d7817 100644 --- a/src/lsp.cc +++ b/src/lsp.cc @@ -16,7 +16,7 @@ limitations under the License. #include "lsp.hh" #include "log.hh" -#include "serializers/json.h" +#include "serializers/json.hh" #include diff --git a/src/lsp.hh b/src/lsp.hh index c9560777..b28f322c 100644 --- a/src/lsp.hh +++ b/src/lsp.hh @@ -15,9 +15,9 @@ limitations under the License. #pragma once -#include "config.h" +#include "config.hh" #include "serializer.hh" -#include "utils.h" +#include "utils.hh" #include diff --git a/src/main.cc b/src/main.cc index 8b728fbe..606e7ca1 100644 --- a/src/main.cc +++ b/src/main.cc @@ -15,11 +15,11 @@ limitations under the License. #include "log.hh" #include "pipeline.hh" -#include "platform.h" +#include "platform.hh" #include "serializer.hh" -#include "serializers/json.h" -#include "test.h" -#include "working_files.h" +#include "serializers/json.hh" +#include "test.hh" +#include "working_files.hh" #include #include diff --git a/src/match.cc b/src/match.cc index ad83396c..125f2bba 100644 --- a/src/match.cc +++ b/src/match.cc @@ -13,7 +13,7 @@ See the License for the specific language governing permissions and limitations under the License. ==============================================================================*/ -#include "match.h" +#include "match.hh" #include "lsp.hh" #include "pipeline.hh" diff --git a/src/match.h b/src/match.hh similarity index 100% rename from src/match.h rename to src/match.hh diff --git a/src/maybe.h b/src/maybe.hh similarity index 100% rename from src/maybe.h rename to src/maybe.hh diff --git a/src/message_handler.cc b/src/message_handler.cc index b4b61a21..b85bdd50 100644 --- a/src/message_handler.cc +++ b/src/message_handler.cc @@ -16,11 +16,11 @@ limitations under the License. #include "message_handler.hh" #include "log.hh" -#include "match.h" +#include "match.hh" #include "pipeline.hh" #include "project.hh" -#include "query_utils.h" -#include "serializers/json.h" +#include "query_utils.hh" +#include "serializers/json.hh" using namespace clang; diff --git a/src/message_handler.hh b/src/message_handler.hh index ad1c5009..8410390f 100644 --- a/src/message_handler.hh +++ b/src/message_handler.hh @@ -16,7 +16,7 @@ limitations under the License. #pragma once #include "lsp.hh" -#include "query.h" +#include "query.hh" #include #include @@ -196,7 +196,7 @@ struct MessageHandler { DB *db = nullptr; Project *project = nullptr; VFS *vfs = nullptr; - WorkingFiles *working_files = nullptr; + WorkingFiles *wfiles = nullptr; CompletionManager *clang_complete = nullptr; IncludeComplete *include_complete = nullptr; diff --git a/src/messages/ccls_call.cc b/src/messages/ccls_call.cc index 3dacfdde..f22ee46b 100644 --- a/src/messages/ccls_call.cc +++ b/src/messages/ccls_call.cc @@ -16,7 +16,7 @@ limitations under the License. #include "hierarchy.hh" #include "message_handler.hh" #include "pipeline.hh" -#include "query_utils.h" +#include "query_utils.hh" #include @@ -85,7 +85,7 @@ bool Expand(MessageHandler *m, Out_cclsCall *entry, bool callee, Out_cclsCall entry1; entry1.id = std::to_string(sym.usr); entry1.usr = sym.usr; - if (auto loc = GetLsLocation(m->db, m->working_files, + if (auto loc = GetLsLocation(m->db, m->wfiles, Use{{sym.range, sym.role}, file_id})) entry1.location = *loc; entry1.callType = call_type1; @@ -175,7 +175,7 @@ std::optional BuildInitial(MessageHandler *m, Usr root_usr, entry.usr = root_usr; entry.callType = CallType::Direct; if (def->spell) { - if (auto loc = GetLsLocation(m->db, m->working_files, *def->spell)) + if (auto loc = GetLsLocation(m->db, m->wfiles, *def->spell)) entry.location = *loc; } Expand(m, &entry, callee, call_type, qualified, levels); @@ -205,7 +205,7 @@ void MessageHandler::ccls_call(Reader &reader, ReplyOnce &reply) { if (!file) return; WorkingFile *working_file = - working_files->GetFileByFilename(file->def->path); + wfiles->GetFileByFilename(file->def->path); for (SymbolRef sym : FindSymbolsAtLocation(working_file, file, param.position)) { if (sym.kind == SymbolKind::Func) { diff --git a/src/messages/ccls_info.cc b/src/messages/ccls_info.cc index 19a68a2b..664ff3d7 100644 --- a/src/messages/ccls_info.cc +++ b/src/messages/ccls_info.cc @@ -16,7 +16,7 @@ limitations under the License. #include "message_handler.hh" #include "pipeline.hh" #include "project.hh" -#include "query_utils.h" +#include "query_utils.hh" namespace ccls { MAKE_REFLECT_STRUCT(QueryFile::Def, path, args, language, skipped_ranges, diff --git a/src/messages/ccls_inheritance.cc b/src/messages/ccls_inheritance.cc index a8ec0c59..4afecee0 100644 --- a/src/messages/ccls_inheritance.cc +++ b/src/messages/ccls_inheritance.cc @@ -16,7 +16,7 @@ limitations under the License. #include "hierarchy.hh" #include "message_handler.hh" #include "pipeline.hh" -#include "query_utils.h" +#include "query_utils.hh" #include @@ -64,10 +64,10 @@ bool ExpandHelper(MessageHandler *m, Out_cclsInheritance *entry, bool derived, if (def) { entry->name = def->Name(qualified); if (def->spell) { - if (auto loc = GetLsLocation(m->db, m->working_files, *def->spell)) + if (auto loc = GetLsLocation(m->db, m->wfiles, *def->spell)) entry->location = *loc; } else if (entity.declarations.size()) { - if (auto loc = GetLsLocation(m->db, m->working_files, entity.declarations[0])) + if (auto loc = GetLsLocation(m->db, m->wfiles, entity.declarations[0])) entry->location = *loc; } } else if (!derived) { @@ -150,7 +150,7 @@ void Inheritance(MessageHandler *m, Param ¶m, ReplyOnce &reply) { QueryFile *file = m->FindFile(reply, param.textDocument.uri.GetPath()); if (!file) return; - WorkingFile *wfile = m->working_files->GetFileByFilename(file->def->path); + WorkingFile *wfile = m->wfiles->GetFileByFilename(file->def->path); for (SymbolRef sym : FindSymbolsAtLocation(wfile, file, param.position)) if (sym.kind == SymbolKind::Func || sym.kind == SymbolKind::Type) { diff --git a/src/messages/ccls_member.cc b/src/messages/ccls_member.cc index 35921cc9..c39fe790 100644 --- a/src/messages/ccls_member.cc +++ b/src/messages/ccls_member.cc @@ -17,7 +17,7 @@ limitations under the License. #include "hierarchy.hh" #include "message_handler.hh" #include "pipeline.hh" -#include "query_utils.h" +#include "query_utils.hh" #include #include @@ -90,7 +90,7 @@ void DoField(MessageHandler *m, Out_cclsMember *entry, const QueryVar &var, } if (def1->spell) { if (std::optional loc = - GetLsLocation(m->db, m->working_files, *def1->spell)) + GetLsLocation(m->db, m->wfiles, *def1->spell)) entry1.location = *loc; } if (def1->type) { @@ -145,13 +145,13 @@ bool Expand(MessageHandler *m, Out_cclsMember *entry, bool qualified, if (def1 && def1->spell) { // The declaration of target type. if (std::optional loc = - GetLsLocation(m->db, m->working_files, *def1->spell)) + GetLsLocation(m->db, m->wfiles, *def1->spell)) entry1.location = *loc; } else if (def->spell) { // Builtin types have no declaration but the typedef declaration // itself is useful. if (std::optional loc = - GetLsLocation(m->db, m->working_files, *def->spell)) + GetLsLocation(m->db, m->wfiles, *def->spell)) entry1.location = *loc; } if (def1 && qualified) @@ -173,10 +173,10 @@ bool Expand(MessageHandler *m, Out_cclsMember *entry, bool qualified, entry1.fieldName = def1->Name(false); if (def1->spell) { if (auto loc = - GetLsLocation(m->db, m->working_files, *def1->spell)) + GetLsLocation(m->db, m->wfiles, *def1->spell)) entry1.location = *loc; } else if (func1.declarations.size()) { - if (auto loc = GetLsLocation(m->db, m->working_files, + if (auto loc = GetLsLocation(m->db, m->wfiles, func1.declarations[0])) entry1.location = *loc; } @@ -194,10 +194,10 @@ bool Expand(MessageHandler *m, Out_cclsMember *entry, bool qualified, entry1.fieldName = def1->Name(false); if (def1->spell) { if (auto loc = - GetLsLocation(m->db, m->working_files, *def1->spell)) + GetLsLocation(m->db, m->wfiles, *def1->spell)) entry1.location = *loc; } else if (type1.declarations.size()) { - if (auto loc = GetLsLocation(m->db, m->working_files, + if (auto loc = GetLsLocation(m->db, m->wfiles, type1.declarations[0])) entry1.location = *loc; } @@ -236,7 +236,7 @@ std::optional BuildInitial(MessageHandler *m, SymbolKind kind, // Not type, |id| is invalid. entry.name = def->Name(qualified); if (def->spell) { - if (auto loc = GetLsLocation(m->db, m->working_files, *def->spell)) + if (auto loc = GetLsLocation(m->db, m->wfiles, *def->spell)) entry.location = *loc; } for (Usr usr : def->vars) { @@ -255,7 +255,7 @@ std::optional BuildInitial(MessageHandler *m, SymbolKind kind, entry.id = std::to_string(root_usr); entry.usr = root_usr; if (def->spell) { - if (auto loc = GetLsLocation(m->db, m->working_files, *def->spell)) + if (auto loc = GetLsLocation(m->db, m->wfiles, *def->spell)) entry.location = *loc; } Expand(m, &entry, qualified, levels, memberKind); @@ -286,7 +286,7 @@ void MessageHandler::ccls_member(Reader &reader, ReplyOnce &reply) { QueryFile *file = FindFile(reply, param.textDocument.uri.GetPath()); if (!file) return; - WorkingFile *wfile = working_files->GetFileByFilename(file->def->path); + WorkingFile *wfile = wfiles->GetFileByFilename(file->def->path); for (SymbolRef sym : FindSymbolsAtLocation(wfile, file, param.position)) { switch (sym.kind) { diff --git a/src/messages/ccls_navigate.cc b/src/messages/ccls_navigate.cc index f4ca72bb..be76d8ba 100644 --- a/src/messages/ccls_navigate.cc +++ b/src/messages/ccls_navigate.cc @@ -14,7 +14,7 @@ limitations under the License. ==============================================================================*/ #include "message_handler.hh" -#include "query_utils.h" +#include "query_utils.hh" namespace ccls { namespace { @@ -46,7 +46,7 @@ void MessageHandler::ccls_navigate(Reader &reader, if (!file) return; - WorkingFile *wfile = working_files->GetFileByFilename(file->def->path); + WorkingFile *wfile = wfiles->GetFileByFilename(file->def->path); lsPosition ls_pos = param.position; if (wfile && wfile->index_lines.size()) if (auto line = wfile->GetIndexPosFromBufferPos(ls_pos.line, diff --git a/src/messages/ccls_reload.cc b/src/messages/ccls_reload.cc index 09772b6f..4bb292e0 100644 --- a/src/messages/ccls_reload.cc +++ b/src/messages/ccls_reload.cc @@ -14,11 +14,11 @@ limitations under the License. ==============================================================================*/ #include "clang_complete.hh" -#include "match.h" +#include "match.hh" #include "message_handler.hh" #include "pipeline.hh" #include "project.hh" -#include "working_files.h" +#include "working_files.hh" #include #include @@ -40,7 +40,7 @@ void MessageHandler::ccls_reload(Reader &reader) { if (param.whitelist.empty() && param.blacklist.empty()) { vfs->Clear(); db->clear(); - project->Index(working_files, lsRequestId()); + project->Index(wfiles, lsRequestId()); clang_complete->FlushAllSessions(); return; } diff --git a/src/messages/ccls_vars.cc b/src/messages/ccls_vars.cc index 83410635..8b4531f2 100644 --- a/src/messages/ccls_vars.cc +++ b/src/messages/ccls_vars.cc @@ -15,7 +15,7 @@ limitations under the License. #include "message_handler.hh" #include "pipeline.hh" -#include "query_utils.h" +#include "query_utils.hh" namespace ccls { namespace { @@ -34,7 +34,7 @@ void MessageHandler::ccls_vars(Reader &reader, ReplyOnce &reply) { QueryFile *file = FindFile(reply, param.textDocument.uri.GetPath()); if (!file) return; - WorkingFile *working_file = working_files->GetFileByFilename(file->def->path); + WorkingFile *working_file = wfiles->GetFileByFilename(file->def->path); std::vector result; for (SymbolRef sym : @@ -52,7 +52,7 @@ void MessageHandler::ccls_vars(Reader &reader, ReplyOnce &reply) { } case SymbolKind::Type: result = GetLsLocations( - db, working_files, + db, wfiles, GetVarDeclarations(db, db->Type(usr).instances, param.kind)); break; } diff --git a/src/messages/initialize.cc b/src/messages/initialize.cc index 08b8b0c3..1d5b7e70 100644 --- a/src/messages/initialize.cc +++ b/src/messages/initialize.cc @@ -15,14 +15,14 @@ limitations under the License. #include "clang_complete.hh" #include "filesystem.hh" -#include "include_complete.h" +#include "include_complete.hh" #include "log.hh" #include "message_handler.hh" #include "pipeline.hh" -#include "platform.h" +#include "platform.hh" #include "project.hh" -#include "serializers/json.h" -#include "working_files.h" +#include "serializers/json.hh" +#include "working_files.hh" #include #include @@ -361,7 +361,7 @@ void *Indexer(void *arg_) { std::string name = "indexer" + std::to_string(idx); set_thread_name(name.c_str()); pipeline::Indexer_Main(h->clang_complete, h->vfs, h->project, - h->working_files); + h->wfiles); return nullptr; } } // namespace @@ -457,7 +457,7 @@ void Initialize(MessageHandler *m, lsInitializeParams ¶m, ReplyOnce &reply) m->include_complete->Rescan(); LOG_S(INFO) << "dispatch initial index requests"; - m->project->Index(m->working_files, reply.id); + m->project->Index(m->wfiles, reply.id); } void MessageHandler::initialize(Reader &reader, ReplyOnce &reply) { diff --git a/src/messages/textDocument_code.cc b/src/messages/textDocument_code.cc index ee46bc8a..6bd2929b 100644 --- a/src/messages/textDocument_code.cc +++ b/src/messages/textDocument_code.cc @@ -15,8 +15,8 @@ limitations under the License. #include "message_handler.hh" #include "pipeline.hh" -#include "query_utils.h" -#include "serializers/json.h" +#include "query_utils.hh" +#include "serializers/json.hh" #include @@ -34,13 +34,13 @@ MAKE_REFLECT_STRUCT(CodeAction, title, kind, edit); void MessageHandler::textDocument_codeAction(CodeActionParam ¶m, ReplyOnce &reply) { WorkingFile *wfile = - working_files->GetFileByFilename(param.textDocument.uri.GetPath()); + wfiles->GetFileByFilename(param.textDocument.uri.GetPath()); if (!wfile) { return; } std::vector result; std::vector diagnostics; - working_files->DoAction([&]() { diagnostics = wfile->diagnostics_; }); + wfiles->DoAction([&]() { diagnostics = wfile->diagnostics_; }); for (lsDiagnostic &diag : diagnostics) if (diag.fixits_.size()) { CodeAction &cmd = result.emplace_back(); @@ -95,7 +95,7 @@ void MessageHandler::textDocument_codeLens(TextDocumentParam ¶m, QueryFile *file = FindFile(reply, path); WorkingFile *wfile = - file ? working_files->GetFileByFilename(file->def->path) : nullptr; + file ? wfiles->GetFileByFilename(file->def->path) : nullptr; if (!wfile) { return; } @@ -188,7 +188,7 @@ void MessageHandler::workspace_executeCommand(Reader &reader, std::vector result; auto Map = [&](auto &&uses) { for (auto &use : uses) - if (auto loc = GetLsLocation(db, working_files, use)) + if (auto loc = GetLsLocation(db, wfiles, use)) result.push_back(std::move(*loc)); }; switch (cmd.kind) { diff --git a/src/messages/textDocument_completion.cc b/src/messages/textDocument_completion.cc index 5a2c2210..dd4d0f48 100644 --- a/src/messages/textDocument_completion.cc +++ b/src/messages/textDocument_completion.cc @@ -14,12 +14,12 @@ limitations under the License. ==============================================================================*/ #include "clang_complete.hh" -#include "fuzzy_match.h" -#include "include_complete.h" +#include "fuzzy_match.hh" +#include "include_complete.hh" #include "log.hh" #include "message_handler.hh" #include "pipeline.hh" -#include "working_files.h" +#include "working_files.hh" #include #include @@ -453,7 +453,7 @@ void MessageHandler::textDocument_completion(lsCompletionParams ¶m, static CompleteConsumerCache> cache; lsCompletionList result; std::string path = param.textDocument.uri.GetPath(); - WorkingFile *file = working_files->GetFileByFilename(path); + WorkingFile *file = wfiles->GetFileByFilename(path); if (!file) { return; } diff --git a/src/messages/textDocument_definition.cc b/src/messages/textDocument_definition.cc index 2660f222..36eb2b76 100644 --- a/src/messages/textDocument_definition.cc +++ b/src/messages/textDocument_definition.cc @@ -14,7 +14,7 @@ limitations under the License. ==============================================================================*/ #include "message_handler.hh" -#include "query_utils.h" +#include "query_utils.hh" #include #include @@ -54,7 +54,7 @@ void MessageHandler::textDocument_definition(TextDocumentPositionParam ¶m, std::vector result; Maybe on_def; - WorkingFile *wfile = working_files->GetFileByFilename(file->def->path); + WorkingFile *wfile = wfiles->GetFileByFilename(file->def->path); lsPosition &ls_pos = param.position; for (SymbolRef sym : FindSymbolsAtLocation(wfile, file, ls_pos, true)) { @@ -87,7 +87,7 @@ void MessageHandler::textDocument_definition(TextDocumentPositionParam ¶m, if (uses.empty() && on_def) uses.push_back(*on_def); } - auto locs = GetLsLocations(db, working_files, uses); + auto locs = GetLsLocations(db, wfiles, uses); result.insert(result.end(), locs.begin(), locs.end()); } @@ -158,7 +158,7 @@ void MessageHandler::textDocument_definition(TextDocumentPositionParam ¶m, if (best_sym.kind != SymbolKind::Invalid) { Maybe dr = GetDefinitionSpell(db, best_sym); assert(dr); - if (auto loc = GetLsLocation(db, working_files, *dr)) + if (auto loc = GetLsLocation(db, wfiles, *dr)) result.push_back(*loc); } } @@ -172,18 +172,18 @@ void MessageHandler::textDocument_typeDefinition( QueryFile *file = FindFile(reply, param.textDocument.uri.GetPath()); if (!file) return; - WorkingFile *working_file = working_files->GetFileByFilename(file->def->path); + WorkingFile *working_file = wfiles->GetFileByFilename(file->def->path); std::vector result; auto Add = [&](const QueryType &type) { for (const auto &def : type.def) if (def.spell) { - if (auto ls_loc = GetLsLocation(db, working_files, *def.spell)) + if (auto ls_loc = GetLsLocation(db, wfiles, *def.spell)) result.push_back(*ls_loc); } if (result.empty()) for (const DeclRef &dr : type.declarations) - if (auto ls_loc = GetLsLocation(db, working_files, dr)) + if (auto ls_loc = GetLsLocation(db, wfiles, dr)) result.push_back(*ls_loc); }; for (SymbolRef sym : diff --git a/src/messages/textDocument_did.cc b/src/messages/textDocument_did.cc index e38bc2c0..0a8bbff1 100644 --- a/src/messages/textDocument_did.cc +++ b/src/messages/textDocument_did.cc @@ -14,16 +14,16 @@ limitations under the License. ==============================================================================*/ #include "clang_complete.hh" -#include "include_complete.h" +#include "include_complete.hh" #include "message_handler.hh" #include "pipeline.hh" #include "project.hh" -#include "working_files.h" +#include "working_files.hh" namespace ccls { void MessageHandler::textDocument_didChange(TextDocumentDidChangeParam ¶m) { std::string path = param.textDocument.uri.GetPath(); - working_files->OnChange(param); + wfiles->OnChange(param); if (g_config->index.onChange) pipeline::Index(path, {}, IndexMode::OnChange); clang_complete->NotifyView(path); @@ -33,13 +33,13 @@ void MessageHandler::textDocument_didChange(TextDocumentDidChangeParam ¶m) { void MessageHandler::textDocument_didClose(TextDocumentParam ¶m) { std::string path = param.textDocument.uri.GetPath(); - working_files->OnClose(param.textDocument); + wfiles->OnClose(param.textDocument); clang_complete->OnClose(path); } void MessageHandler::textDocument_didOpen(DidOpenTextDocumentParam ¶m) { std::string path = param.textDocument.uri.GetPath(); - WorkingFile *working_file = working_files->OnOpen(param.textDocument); + WorkingFile *working_file = wfiles->OnOpen(param.textDocument); if (std::optional cached_file_contents = pipeline::LoadIndexedContent(path)) working_file->SetIndexContent(*cached_file_contents); diff --git a/src/messages/textDocument_document.cc b/src/messages/textDocument_document.cc index 16342b74..866599eb 100644 --- a/src/messages/textDocument_document.cc +++ b/src/messages/textDocument_document.cc @@ -15,7 +15,7 @@ limitations under the License. #include "message_handler.hh" #include "pipeline.hh" -#include "query_utils.h" +#include "query_utils.hh" #include @@ -48,7 +48,7 @@ void MessageHandler::textDocument_documentHighlight( if (!file) return; - WorkingFile *wfile = working_files->GetFileByFilename(file->def->path); + WorkingFile *wfile = wfiles->GetFileByFilename(file->def->path); std::vector result; std::vector syms = @@ -62,7 +62,7 @@ void MessageHandler::textDocument_documentHighlight( return usr == sym1.usr && kind == sym1.kind; })) continue; - if (auto loc = GetLsLocation(db, working_files, sym, file_id)) { + if (auto loc = GetLsLocation(db, wfiles, sym, file_id)) { DocumentHighlight highlight; highlight.range = loc->range; if (sym.role & Role::Write) @@ -148,7 +148,7 @@ void MessageHandler::textDocument_documentSymbol(Reader &reader, QueryFile *file = FindFile(reply, param.textDocument.uri.GetPath(), &file_id); if (!file) return; - WorkingFile *wfile = working_files->GetFileByFilename(file->def->path); + WorkingFile *wfile = wfiles->GetFileByFilename(file->def->path); if (!wfile) return; @@ -158,7 +158,7 @@ void MessageHandler::textDocument_documentSymbol(Reader &reader, if (refcnt > 0 && (param.all || sym.extent.Valid()) && param.startLine <= sym.range.start.line && sym.range.start.line <= param.endLine) - if (auto loc = GetLsLocation(db, working_files, sym, file_id)) + if (auto loc = GetLsLocation(db, wfiles, sym, file_id)) result.push_back(loc->range); std::sort(result.begin(), result.end()); reply(result); @@ -250,7 +250,7 @@ void MessageHandler::textDocument_documentSymbol(Reader &reader, Ignore(db->GetType(sym).AnyDef())) || (sym.kind == SymbolKind::Var && Ignore(db->GetVar(sym).AnyDef()))) continue; - if (auto loc = GetLsLocation(db, working_files, sym, file_id)) { + if (auto loc = GetLsLocation(db, wfiles, sym, file_id)) { info->location = *loc; result.push_back(*info); } diff --git a/src/messages/textDocument_foldingRange.cc b/src/messages/textDocument_foldingRange.cc index 7777226f..dd7e0548 100644 --- a/src/messages/textDocument_foldingRange.cc +++ b/src/messages/textDocument_foldingRange.cc @@ -16,8 +16,8 @@ limitations under the License. #include "message_handler.hh" #include "pipeline.hh" #include "project.hh" -#include "query_utils.h" -#include "working_files.h" +#include "query_utils.hh" +#include "working_files.hh" namespace ccls { namespace { @@ -34,7 +34,7 @@ void MessageHandler::textDocument_foldingRange(TextDocumentParam ¶m, QueryFile *file = FindFile(reply, param.textDocument.uri.GetPath()); if (!file) return; - WorkingFile *wfile = working_files->GetFileByFilename(file->def->path); + WorkingFile *wfile = wfiles->GetFileByFilename(file->def->path); if (!wfile) return; std::vector result; diff --git a/src/messages/textDocument_formatting.cc b/src/messages/textDocument_formatting.cc index 91d84e6e..34369905 100644 --- a/src/messages/textDocument_formatting.cc +++ b/src/messages/textDocument_formatting.cc @@ -15,7 +15,7 @@ limitations under the License. #include "message_handler.hh" #include "pipeline.hh" -#include "working_files.h" +#include "working_files.hh" #include #include @@ -87,7 +87,7 @@ void MessageHandler::textDocument_formatting(DocumentFormattingParam ¶m, QueryFile *file = FindFile(reply, param.textDocument.uri.GetPath()); if (!file) return; - WorkingFile *wfile = working_files->GetFileByFilename(file->def->path); + WorkingFile *wfile = wfiles->GetFileByFilename(file->def->path); if (!wfile) return; Format(reply, wfile, {0, (unsigned)wfile->buffer_content.size()}); @@ -98,7 +98,7 @@ void MessageHandler::textDocument_onTypeFormatting( QueryFile *file = FindFile(reply, param.textDocument.uri.GetPath()); if (!file) return; - WorkingFile *wfile = working_files->GetFileByFilename(file->def->path); + WorkingFile *wfile = wfiles->GetFileByFilename(file->def->path); if (!wfile) return; std::string_view code = wfile->buffer_content; @@ -114,7 +114,7 @@ void MessageHandler::textDocument_rangeFormatting( QueryFile *file = FindFile(reply, param.textDocument.uri.GetPath()); if (!file) return; - WorkingFile *wfile = working_files->GetFileByFilename(file->def->path); + WorkingFile *wfile = wfiles->GetFileByFilename(file->def->path); if (!wfile) return; std::string_view code = wfile->buffer_content; diff --git a/src/messages/textDocument_hover.cc b/src/messages/textDocument_hover.cc index b645c138..044e822b 100644 --- a/src/messages/textDocument_hover.cc +++ b/src/messages/textDocument_hover.cc @@ -14,7 +14,7 @@ limitations under the License. ==============================================================================*/ #include "message_handler.hh" -#include "query_utils.h" +#include "query_utils.hh" namespace ccls { namespace { @@ -97,12 +97,12 @@ void MessageHandler::textDocument_hover(TextDocumentPositionParam ¶m, if (!file) return; - WorkingFile *wfile = working_files->GetFileByFilename(file->def->path); + WorkingFile *wfile = wfiles->GetFileByFilename(file->def->path); Hover result; for (SymbolRef sym : FindSymbolsAtLocation(wfile, file, param.position)) { std::optional ls_range = GetLsRange( - working_files->GetFileByFilename(file->def->path), sym.range); + wfiles->GetFileByFilename(file->def->path), sym.range); if (!ls_range) continue; diff --git a/src/messages/textDocument_references.cc b/src/messages/textDocument_references.cc index 9c4d0f63..5ccad7ae 100644 --- a/src/messages/textDocument_references.cc +++ b/src/messages/textDocument_references.cc @@ -14,7 +14,7 @@ limitations under the License. ==============================================================================*/ #include "message_handler.hh" -#include "query_utils.h" +#include "query_utils.hh" #include @@ -43,7 +43,7 @@ void MessageHandler::textDocument_references(Reader &reader, ReplyOnce &reply) { if (!file) return; std::vector result; - WorkingFile *wfile = working_files->GetFileByFilename(file->def->path); + WorkingFile *wfile = wfiles->GetFileByFilename(file->def->path); if (!file) return; @@ -64,7 +64,7 @@ void MessageHandler::textDocument_references(Reader &reader, ReplyOnce &reply) { if (Role(use.role & param.context.role) == param.context.role && !(use.role & param.context.excludeRole) && seen_uses.insert(use).second) - if (auto loc = GetLsLocation(db, working_files, use)) { + if (auto loc = GetLsLocation(db, wfiles, use)) { result.push_back(*loc); } }; diff --git a/src/messages/textDocument_rename.cc b/src/messages/textDocument_rename.cc index 0b87efc5..84cefa50 100644 --- a/src/messages/textDocument_rename.cc +++ b/src/messages/textDocument_rename.cc @@ -14,17 +14,17 @@ limitations under the License. ==============================================================================*/ #include "message_handler.hh" -#include "query_utils.h" +#include "query_utils.hh" namespace ccls { namespace { -lsWorkspaceEdit BuildWorkspaceEdit(DB *db, WorkingFiles *working_files, +lsWorkspaceEdit BuildWorkspaceEdit(DB *db, WorkingFiles *wfiles, SymbolRef sym, const std::string &new_text) { std::unordered_map path_to_edit; EachOccurrence(db, sym, true, [&](Use use) { std::optional ls_location = - GetLsLocation(db, working_files, use); + GetLsLocation(db, wfiles, use); if (!ls_location) return; @@ -39,7 +39,7 @@ lsWorkspaceEdit BuildWorkspaceEdit(DB *db, WorkingFiles *working_files, const std::string &path = file.def->path; path_to_edit[file_id].textDocument.uri = lsDocumentUri::FromPath(path); - WorkingFile *working_file = working_files->GetFileByFilename(path); + WorkingFile *working_file = wfiles->GetFileByFilename(path); if (working_file) path_to_edit[file_id].textDocument.version = working_file->version; } @@ -67,10 +67,10 @@ void MessageHandler::textDocument_rename(RenameParam ¶m, ReplyOnce &reply) { if (!file) return; - WorkingFile *wfile = working_files->GetFileByFilename(file->def->path); + WorkingFile *wfile = wfiles->GetFileByFilename(file->def->path); lsWorkspaceEdit result; for (SymbolRef sym : FindSymbolsAtLocation(wfile, file, param.position)) { - result = BuildWorkspaceEdit(db, working_files, sym, param.newName); + result = BuildWorkspaceEdit(db, wfiles, sym, param.newName); break; } diff --git a/src/messages/textDocument_signatureHelp.cc b/src/messages/textDocument_signatureHelp.cc index 32b7e3ff..63bd4c83 100644 --- a/src/messages/textDocument_signatureHelp.cc +++ b/src/messages/textDocument_signatureHelp.cc @@ -156,7 +156,7 @@ void MessageHandler::textDocument_signatureHelp( std::string path = param.textDocument.uri.GetPath(); lsPosition begin_pos = param.position; - if (WorkingFile *file = working_files->GetFileByFilename(path)) { + if (WorkingFile *file = wfiles->GetFileByFilename(path)) { std::string completion_text; lsPosition end_pos = param.position; begin_pos = file->FindStableCompletionSource(param.position, diff --git a/src/messages/workspace.cc b/src/messages/workspace.cc index b0dc591b..c1229cf4 100644 --- a/src/messages/workspace.cc +++ b/src/messages/workspace.cc @@ -14,12 +14,12 @@ limitations under the License. ==============================================================================*/ #include "clang_complete.hh" -#include "fuzzy_match.h" +#include "fuzzy_match.hh" #include "log.hh" #include "message_handler.hh" #include "pipeline.hh" #include "project.hh" -#include "query_utils.h" +#include "query_utils.hh" #include @@ -34,7 +34,7 @@ MAKE_REFLECT_STRUCT(lsSymbolInformation, name, kind, location, containerName); void MessageHandler::workspace_didChangeConfiguration(EmptyParam &) { for (const std::string &folder : g_config->workspaceFolders) project->Load(folder); - project->Index(working_files, lsRequestId()); + project->Index(wfiles, lsRequestId()); clang_complete->FlushAllSessions(); }; @@ -43,7 +43,7 @@ void MessageHandler::workspace_didChangeWatchedFiles( DidChangeWatchedFilesParam ¶m) { for (auto &event : param.changes) { std::string path = event.uri.GetPath(); - IndexMode mode = working_files->GetFileByFilename(path) + IndexMode mode = wfiles->GetFileByFilename(path) ? IndexMode::Normal : IndexMode::NonInteractive; switch (event.type) { @@ -88,7 +88,7 @@ void MessageHandler::workspace_didChangeWorkspaceFolders( project->Load(root); } - project->Index(working_files, lsRequestId()); + project->Index(wfiles, lsRequestId()); clang_complete->FlushAllSessions(); } @@ -96,7 +96,7 @@ void MessageHandler::workspace_didChangeWorkspaceFolders( namespace { // Lookup |symbol| in |db| and insert the value into |result|. bool AddSymbol( - DB *db, WorkingFiles *working_files, SymbolIdx sym, bool use_detailed, + DB *db, WorkingFiles *wfiles, SymbolIdx sym, bool use_detailed, std::vector> *result) { std::optional info = GetSymbolInfo(db, sym, true); if (!info) @@ -112,7 +112,7 @@ bool AddSymbol( loc = decls[0]; } - std::optional ls_location = GetLsLocation(db, working_files, loc); + std::optional ls_location = GetLsLocation(db, wfiles, loc); if (!ls_location) return false; info->location = *ls_location; @@ -141,7 +141,7 @@ void MessageHandler::workspace_symbol(WorkspaceSymbolParam ¶m, std::string_view detailed_name = db->GetSymbolName(sym, true); int pos = ReverseSubseqMatch(query_without_space, detailed_name, sensitive); return pos >= 0 && - AddSymbol(db, working_files, sym, + AddSymbol(db, wfiles, sym, detailed_name.find(':', pos) != std::string::npos, &cands) && cands.size() >= g_config->workspaceSymbol.maxNum; diff --git a/src/pipeline.cc b/src/pipeline.cc index 586e4ece..867ccf18 100644 --- a/src/pipeline.cc +++ b/src/pipeline.cc @@ -16,17 +16,17 @@ limitations under the License. #include "pipeline.hh" #include "clang_complete.hh" -#include "config.h" -#include "include_complete.h" +#include "config.hh" +#include "include_complete.hh" #include "log.hh" #include "lsp.hh" -#include "match.h" +#include "match.hh" #include "message_handler.hh" #include "pipeline.hh" -#include "platform.h" +#include "platform.hh" #include "project.hh" -#include "query_utils.h" -#include "serializers/json.h" +#include "query_utils.hh" +#include "serializers/json.hh" #include #include @@ -377,12 +377,12 @@ void Indexer_Main(CompletionManager *completion, VFS *vfs, Project *project, indexer_waiter->Wait(index_request); } -void Main_OnIndexed(DB *db, WorkingFiles *working_files, IndexUpdate *update) { +void Main_OnIndexed(DB *db, WorkingFiles *wfiles, IndexUpdate *update) { if (update->refresh) { LOG_S(INFO) << "loaded project. Refresh semantic highlight for all working file."; - std::lock_guard lock(working_files->files_mutex); - for (auto &f : working_files->files) { + std::lock_guard lock(wfiles->files_mutex); + for (auto &f : wfiles->files) { std::string filename = LowerPathIfInsensitive(f->filename); if (db->name2file_id.find(filename) == db->name2file_id.end()) continue; @@ -401,7 +401,7 @@ void Main_OnIndexed(DB *db, WorkingFiles *working_files, IndexUpdate *update) { if (update->files_def_update) { auto &def_u = *update->files_def_update; if (WorkingFile *wfile = - working_files->GetFileByFilename(def_u.first.path)) { + wfiles->GetFileByFilename(def_u.first.path)) { // FIXME With index.onChange: true, use buffer_content only for // request.path wfile->SetIndexContent(g_config->index.onChange ? wfile->buffer_content @@ -487,11 +487,11 @@ void LaunchStdout() { void MainLoop() { Project project; - WorkingFiles working_files; + WorkingFiles wfiles; VFS vfs; CompletionManager clang_complete( - &project, &working_files, + &project, &wfiles, [&](std::string path, std::vector diagnostics) { lsPublishDiagnosticsParams params; params.uri = lsDocumentUri::FromPath(path); @@ -515,7 +515,7 @@ void MainLoop() { handler.db = &db; handler.project = &project; handler.vfs = &vfs; - handler.working_files = &working_files; + handler.wfiles = &wfiles; handler.clang_complete = &clang_complete; handler.include_complete = &include_complete; @@ -533,7 +533,7 @@ void MainLoop() { break; did_work = true; indexed = true; - Main_OnIndexed(&db, &working_files, &*update); + Main_OnIndexed(&db, &wfiles, &*update); } if (did_work) @@ -556,7 +556,7 @@ void Standalone(const std::string &root) { MessageHandler handler; handler.project = &project; - handler.working_files = &wfiles; + handler.wfiles = &wfiles; handler.vfs = &vfs; handler.include_complete = &complete; diff --git a/src/pipeline.hh b/src/pipeline.hh index 641b1f59..6bd4d4d4 100644 --- a/src/pipeline.hh +++ b/src/pipeline.hh @@ -1,7 +1,7 @@ #pragma once #include "lsp.hh" -#include "query.h" +#include "query.hh" #include #include diff --git a/src/platform.h b/src/platform.hh similarity index 100% rename from src/platform.h rename to src/platform.hh diff --git a/src/platform_posix.cc b/src/platform_posix.cc index fbbd0749..9dd79726 100644 --- a/src/platform_posix.cc +++ b/src/platform_posix.cc @@ -14,9 +14,9 @@ limitations under the License. ==============================================================================*/ #if defined(__unix__) || defined(__APPLE__) -#include "platform.h" +#include "platform.hh" -#include "utils.h" +#include "utils.hh" #include #include diff --git a/src/platform_win.cc b/src/platform_win.cc index 797644c8..31ba74e9 100644 --- a/src/platform_win.cc +++ b/src/platform_win.cc @@ -14,9 +14,9 @@ limitations under the License. ==============================================================================*/ #if defined(_WIN32) -#include "platform.h" +#include "platform.hh" -#include "utils.h" +#include "utils.hh" #include #include diff --git a/src/position.cc b/src/position.cc index 54e72c58..cbf1352f 100644 --- a/src/position.cc +++ b/src/position.cc @@ -13,7 +13,7 @@ See the License for the specific language governing permissions and limitations under the License. ==============================================================================*/ -#include "position.h" +#include "position.hh" #include "serializer.hh" diff --git a/src/position.h b/src/position.hh similarity index 98% rename from src/position.h rename to src/position.hh index 04f8cc5c..7d447717 100644 --- a/src/position.h +++ b/src/position.hh @@ -15,8 +15,8 @@ limitations under the License. #pragma once -#include "maybe.h" -#include "utils.h" +#include "maybe.hh" +#include "utils.hh" #include #include diff --git a/src/project.cc b/src/project.cc index 5c65f0a7..14ba02d9 100644 --- a/src/project.cc +++ b/src/project.cc @@ -17,12 +17,12 @@ limitations under the License. #include "filesystem.hh" #include "log.hh" -#include "match.h" +#include "match.hh" #include "pipeline.hh" -#include "platform.h" -#include "serializers/json.h" -#include "utils.h" -#include "working_files.h" +#include "platform.hh" +#include "serializers/json.hh" +#include "utils.hh" +#include "working_files.hh" #include #include diff --git a/src/project.hh b/src/project.hh index 0d6ed8c0..b5018525 100644 --- a/src/project.hh +++ b/src/project.hh @@ -15,7 +15,7 @@ limitations under the License. #pragma once -#include "config.h" +#include "config.hh" #include "lsp.hh" #include diff --git a/src/query.cc b/src/query.cc index 360df79a..25e02d48 100644 --- a/src/query.cc +++ b/src/query.cc @@ -13,11 +13,11 @@ See the License for the specific language governing permissions and limitations under the License. ==============================================================================*/ -#include "query.h" +#include "query.hh" -#include "indexer.h" +#include "indexer.hh" #include "serializer.hh" -#include "serializers/json.h" +#include "serializers/json.hh" #include #include diff --git a/src/query.h b/src/query.hh similarity index 99% rename from src/query.h rename to src/query.hh index 5da593aa..a1627af5 100644 --- a/src/query.h +++ b/src/query.hh @@ -15,7 +15,7 @@ limitations under the License. #pragma once -#include "indexer.h" +#include "indexer.hh" #include "serializer.hh" #include diff --git a/src/query_utils.cc b/src/query_utils.cc index dbc4bbdf..fb13bbca 100644 --- a/src/query_utils.cc +++ b/src/query_utils.cc @@ -13,7 +13,7 @@ See the License for the specific language governing permissions and limitations under the License. ==============================================================================*/ -#include "query_utils.h" +#include "query_utils.hh" #include "pipeline.hh" diff --git a/src/query_utils.h b/src/query_utils.hh similarity index 98% rename from src/query_utils.h rename to src/query_utils.hh index 1a202044..5db3be65 100644 --- a/src/query_utils.h +++ b/src/query_utils.hh @@ -15,8 +15,8 @@ limitations under the License. #pragma once -#include "query.h" -#include "working_files.h" +#include "query.hh" +#include "working_files.hh" #include diff --git a/src/serializer.cc b/src/serializer.cc index 9540aa7f..f2ac8e0f 100644 --- a/src/serializer.cc +++ b/src/serializer.cc @@ -16,10 +16,10 @@ limitations under the License. #include "serializer.hh" #include "filesystem.hh" -#include "indexer.h" +#include "indexer.hh" #include "log.hh" -#include "serializers/binary.h" -#include "serializers/json.h" +#include "serializers/binary.hh" +#include "serializers/json.hh" #include #include diff --git a/src/serializer.hh b/src/serializer.hh index 370a26d1..0cf25b09 100644 --- a/src/serializer.hh +++ b/src/serializer.hh @@ -15,7 +15,7 @@ limitations under the License. #pragma once -#include "maybe.h" +#include "maybe.hh" #include diff --git a/src/serializers/binary.h b/src/serializers/binary.hh similarity index 100% rename from src/serializers/binary.h rename to src/serializers/binary.hh diff --git a/src/serializers/json.h b/src/serializers/json.hh similarity index 100% rename from src/serializers/json.h rename to src/serializers/json.hh diff --git a/src/test.cc b/src/test.cc index 2a31dd44..d4229790 100644 --- a/src/test.cc +++ b/src/test.cc @@ -13,15 +13,15 @@ See the License for the specific language governing permissions and limitations under the License. ==============================================================================*/ -#include "test.h" +#include "test.hh" #include "clang_complete.hh" #include "filesystem.hh" -#include "indexer.h" +#include "indexer.hh" #include "pipeline.hh" -#include "platform.h" +#include "platform.hh" #include "serializer.hh" -#include "utils.h" +#include "utils.hh" #include #include diff --git a/src/test.h b/src/test.hh similarity index 100% rename from src/test.h rename to src/test.hh diff --git a/src/threaded_queue.h b/src/threaded_queue.hh similarity index 99% rename from src/threaded_queue.h rename to src/threaded_queue.hh index 603ed5f8..ced88be4 100644 --- a/src/threaded_queue.h +++ b/src/threaded_queue.hh @@ -15,7 +15,7 @@ limitations under the License. #pragma once -#include "utils.h" +#include "utils.hh" #include #include diff --git a/src/utils.cc b/src/utils.cc index 68c7c83b..8e2eb4d6 100644 --- a/src/utils.cc +++ b/src/utils.cc @@ -13,10 +13,10 @@ See the License for the specific language governing permissions and limitations under the License. ==============================================================================*/ -#include "utils.h" +#include "utils.hh" #include "log.hh" -#include "platform.h" +#include "platform.hh" #include diff --git a/src/utils.h b/src/utils.hh similarity index 100% rename from src/utils.h rename to src/utils.hh diff --git a/src/working_files.cc b/src/working_files.cc index b7d19199..5d6cbaaa 100644 --- a/src/working_files.cc +++ b/src/working_files.cc @@ -13,10 +13,10 @@ See the License for the specific language governing permissions and limitations under the License. ==============================================================================*/ -#include "working_files.h" +#include "working_files.hh" #include "log.hh" -#include "position.h" +#include "position.hh" #include #include diff --git a/src/working_files.h b/src/working_files.hh similarity index 99% rename from src/working_files.h rename to src/working_files.hh index 0784e593..52339c9a 100644 --- a/src/working_files.h +++ b/src/working_files.hh @@ -16,7 +16,7 @@ limitations under the License. #pragma once #include "lsp.hh" -#include "utils.h" +#include "utils.hh" #include #include