ccls/src/clang_complete.hh

195 lines
6.4 KiB
C++
Raw Normal View History

2018-08-21 05:27:52 +00:00
/* 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
2018-09-23 20:31:06 +00:00
#include "clang_tu.hh"
2018-10-29 04:21:21 +00:00
#include "lru_cache.hh"
#include "lsp.hh"
#include "project.hh"
2018-10-29 04:21:21 +00:00
#include "threaded_queue.hh"
#include "working_files.hh"
#include <clang/Frontend/CompilerInstance.h>
#include <clang/Frontend/FrontendActions.h>
#include <clang/Sema/CodeCompleteOptions.h>
#include <functional>
#include <memory>
#include <mutex>
#include <string>
2018-08-29 05:49:53 +00:00
namespace ccls {
2018-10-03 00:34:02 +00:00
struct PreambleData;
2018-08-29 05:49:53 +00:00
struct DiagBase {
Range range;
std::string message;
std::string file;
clang::DiagnosticsEngine::Level level = clang::DiagnosticsEngine::Note;
unsigned category;
bool concerned = false;
2018-08-29 05:49:53 +00:00
};
struct Note : DiagBase {};
struct Diag : DiagBase {
std::vector<Note> notes;
std::vector<lsTextEdit> edits;
};
lsTextEdit ToTextEdit(const clang::SourceManager &SM,
const clang::LangOptions &L,
const clang::FixItHint &FixIt);
2017-09-22 01:14:57 +00:00
struct CompletionSession
: public std::enable_shared_from_this<CompletionSession> {
2018-08-29 05:49:53 +00:00
std::mutex mutex;
std::shared_ptr<PreambleData> preamble;
2017-04-20 05:01:36 +00:00
Project::Entry file;
WorkingFiles *wfiles;
bool inferred = false;
// TODO share
llvm::IntrusiveRefCntPtr<llvm::vfs::FileSystem> FS =
llvm::vfs::getRealFileSystem();
std::shared_ptr<clang::PCHContainerOperations> PCH;
CompletionSession(const Project::Entry &file, WorkingFiles *wfiles,
std::shared_ptr<clang::PCHContainerOperations> PCH)
: file(file), wfiles(wfiles), PCH(PCH) {}
std::shared_ptr<PreambleData> GetPreamble();
};
struct CompletionManager {
2018-08-09 17:08:14 +00:00
using OnDiagnostic = std::function<void(
std::string path, std::vector<lsDiagnostic> diagnostics)>;
// If OptConsumer is nullptr, the request has been cancelled.
using OnComplete =
std::function<void(clang::CodeCompleteConsumer *OptConsumer)>;
using OnDropped = std::function<void(lsRequestId request_id)>;
2018-04-14 16:52:17 +00:00
struct PreloadRequest {
std::string path;
};
struct CompletionRequest {
2018-08-09 17:08:14 +00:00
CompletionRequest(const lsRequestId &id,
const lsTextDocumentIdentifier &document,
const lsPosition &position,
std::unique_ptr<clang::CodeCompleteConsumer> Consumer,
clang::CodeCompleteOptions CCOpts,
const OnComplete &on_complete)
2018-08-09 17:08:14 +00:00
: id(id), document(document), position(position),
Consumer(std::move(Consumer)), CCOpts(CCOpts),
2018-04-14 16:52:17 +00:00
on_complete(on_complete) {}
lsRequestId id;
lsTextDocumentIdentifier document;
2018-04-14 16:52:17 +00:00
lsPosition position;
std::unique_ptr<clang::CodeCompleteConsumer> Consumer;
clang::CodeCompleteOptions CCOpts;
2018-04-14 16:52:17 +00:00
OnComplete on_complete;
};
struct DiagnosticRequest {
std::string path;
int64_t wait_until;
int64_t debounce;
};
2018-10-29 04:21:21 +00:00
CompletionManager(Project *project, WorkingFiles *wfiles,
OnDiagnostic on_diagnostic, OnDropped on_dropped);
// Request a diagnostics update.
void DiagnosticsUpdate(const std::string &path, int debounce);
// Notify the completion manager that |filename| has been viewed and we
// should begin preloading completion data.
void NotifyView(const std::string &path);
// Notify the completion manager that |filename| has been saved. This
// triggers a reparse.
void NotifySave(const std::string &path);
// Notify the completion manager that |filename| has been closed. Any existing
// completion session will be dropped.
void OnClose(const std::string &path);
// Ensures there is a completion or preloaded session. Returns true if a new
// session was created.
bool EnsureCompletionOrCreatePreloadSession(const std::string &path);
// Tries to find an edit session for |filename|. This will move the session
// from view to edit.
2018-08-29 05:49:53 +00:00
std::shared_ptr<ccls::CompletionSession>
TryGetSession(const std::string &path, bool preload, bool *is_open = nullptr);
// Flushes all saved sessions
void FlushAllSessions(void);
// TODO: make these configurable.
const int kMaxPreloadedSessions = 10;
const int kMaxCompletionSessions = 5;
// Global state.
2018-08-09 17:08:14 +00:00
Project *project_;
2018-10-29 04:21:21 +00:00
WorkingFiles *wfiles_;
OnDiagnostic on_diagnostic_;
OnDropped on_dropped_;
2018-08-29 05:49:53 +00:00
using LruSessionCache = LruCache<std::string, ccls::CompletionSession>;
// CompletionSession instances which are preloaded, ie, files which the user
// has viewed but not requested code completion for.
LruSessionCache preloads;
// CompletionSession instances which the user has actually performed
// completion on. This is more rare so these instances tend to stay alive
// much longer than the ones in |preloaded_sessions_|.
LruSessionCache sessions;
// Mutex which protects |view_sessions_| and |edit_sessions_|.
std::mutex sessions_lock_;
std::mutex diag_mutex;
std::unordered_map<std::string, int64_t> next_diag;
// Request a code completion at the given location.
ThreadedQueue<std::unique_ptr<CompletionRequest>> completion_request_;
2018-04-14 16:52:17 +00:00
ThreadedQueue<DiagnosticRequest> diagnostic_request_;
// Parse requests. The path may already be parsed, in which case it should be
// reparsed.
2018-04-14 16:52:17 +00:00
ThreadedQueue<PreloadRequest> preload_requests_;
std::shared_ptr<clang::PCHContainerOperations> PCH;
};
2018-03-31 08:01:32 +00:00
// Cached completion information, so we can give fast completion results when
// the user erases a character. vscode will resend the completion request if
// that happens.
template <typename T>
struct CompleteConsumerCache {
2018-03-31 08:01:32 +00:00
// NOTE: Make sure to access these variables under |WithLock|.
std::optional<std::string> path;
std::optional<lsPosition> position;
T result;
2018-03-31 08:01:32 +00:00
std::mutex mutex;
2018-03-31 08:01:32 +00:00
void WithLock(std::function<void()> action) {
std::lock_guard lock(mutex);
action();
}
bool IsCacheValid(const std::string path, lsPosition position) {
std::lock_guard lock(mutex);
return this->path == path && this->position == position;
}
2018-03-31 08:01:32 +00:00
};
} // namespace ccls