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.
|
|
|
|
==============================================================================*/
|
|
|
|
|
2017-12-05 07:57:41 +00:00
|
|
|
#pragma once
|
|
|
|
|
2018-09-23 20:31:06 +00:00
|
|
|
#include "clang_tu.hh"
|
2018-10-28 17:49:31 +00:00
|
|
|
#include "lsp.hh"
|
|
|
|
#include "project.hh"
|
2018-10-29 04:21:21 +00:00
|
|
|
#include "threaded_queue.hh"
|
|
|
|
#include "working_files.hh"
|
2017-03-26 21:40:34 +00:00
|
|
|
|
2018-08-28 05:42:40 +00:00
|
|
|
#include <clang/Frontend/CompilerInstance.h>
|
|
|
|
#include <clang/Frontend/FrontendActions.h>
|
2018-09-11 05:37:01 +00:00
|
|
|
#include <clang/Sema/CodeCompleteOptions.h>
|
2018-08-28 05:42:40 +00:00
|
|
|
|
2018-11-27 05:00:30 +00:00
|
|
|
#include <algorithm>
|
2017-04-17 01:22:59 +00:00
|
|
|
#include <functional>
|
2017-05-26 06:40:38 +00:00
|
|
|
#include <memory>
|
2017-05-10 04:52:15 +00:00
|
|
|
#include <mutex>
|
2017-05-26 06:40:38 +00:00
|
|
|
#include <string>
|
2018-11-27 05:00:30 +00:00
|
|
|
#include <vector>
|
2017-04-17 01:22:59 +00:00
|
|
|
|
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;
|
2018-09-22 08:37:00 +00:00
|
|
|
bool concerned = false;
|
2018-08-29 05:49:53 +00:00
|
|
|
};
|
|
|
|
struct Note : DiagBase {};
|
|
|
|
struct Diag : DiagBase {
|
|
|
|
std::vector<Note> notes;
|
2018-11-03 20:52:43 +00:00
|
|
|
std::vector<TextEdit> edits;
|
2018-08-29 05:49:53 +00:00
|
|
|
};
|
|
|
|
|
2018-11-03 20:52:43 +00:00
|
|
|
TextEdit ToTextEdit(const clang::SourceManager &SM,
|
2018-10-06 22:23:23 +00:00
|
|
|
const clang::LangOptions &L,
|
|
|
|
const clang::FixItHint &FixIt);
|
|
|
|
|
2018-11-27 05:00:30 +00:00
|
|
|
template <typename K, typename V> struct LruCache {
|
|
|
|
std::shared_ptr<V> Get(const K &key) {
|
|
|
|
for (auto it = items.begin(); it != items.end(); ++it)
|
|
|
|
if (it->first == key) {
|
|
|
|
auto x = std::move(*it);
|
|
|
|
std::move_backward(items.begin(), it, it + 1);
|
|
|
|
items[0] = std::move(x);
|
|
|
|
return items[0].second;
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
std::shared_ptr<V> Take(const K &key) {
|
|
|
|
for (auto it = items.begin(); it != items.end(); ++it)
|
|
|
|
if (it->first == key) {
|
|
|
|
auto x = std::move(it->second);
|
|
|
|
items.erase(it);
|
|
|
|
return x;
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
void Insert(const K &key, std::shared_ptr<V> value) {
|
|
|
|
if ((int)items.size() >= capacity)
|
|
|
|
items.pop_back();
|
|
|
|
items.emplace(items.begin(), key, std::move(value));
|
|
|
|
}
|
|
|
|
void Clear() { items.clear(); }
|
2018-12-01 06:44:52 +00:00
|
|
|
void SetCapacity(int cap) { capacity = cap; }
|
2018-11-27 05:00:30 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
std::vector<std::pair<K, std::shared_ptr<V>>> items;
|
2018-12-01 06:44:52 +00:00
|
|
|
int capacity = 1;
|
2018-11-27 05:00:30 +00:00
|
|
|
};
|
|
|
|
|
2018-12-01 06:44:52 +00:00
|
|
|
struct Session {
|
2018-08-29 05:49:53 +00:00
|
|
|
std::mutex mutex;
|
|
|
|
std::shared_ptr<PreambleData> preamble;
|
2018-08-28 05:42:40 +00:00
|
|
|
|
2017-04-20 05:01:36 +00:00
|
|
|
Project::Entry file;
|
2018-08-28 05:42:40 +00:00
|
|
|
WorkingFiles *wfiles;
|
2018-09-22 08:37:00 +00:00
|
|
|
bool inferred = false;
|
2018-08-28 05:42:40 +00:00
|
|
|
|
|
|
|
// TODO share
|
2018-10-10 16:52:41 +00:00
|
|
|
llvm::IntrusiveRefCntPtr<llvm::vfs::FileSystem> FS =
|
|
|
|
llvm::vfs::getRealFileSystem();
|
2018-08-28 05:42:40 +00:00
|
|
|
std::shared_ptr<clang::PCHContainerOperations> PCH;
|
2017-03-26 21:40:34 +00:00
|
|
|
|
2018-12-01 06:44:52 +00:00
|
|
|
Session(const Project::Entry &file, WorkingFiles *wfiles,
|
2018-08-28 05:42:40 +00:00
|
|
|
std::shared_ptr<clang::PCHContainerOperations> PCH)
|
|
|
|
: file(file), wfiles(wfiles), PCH(PCH) {}
|
|
|
|
|
|
|
|
std::shared_ptr<PreambleData> GetPreamble();
|
2017-03-26 21:40:34 +00:00
|
|
|
};
|
|
|
|
|
2018-12-01 06:44:52 +00:00
|
|
|
struct SemaManager {
|
2018-08-09 17:08:14 +00:00
|
|
|
using OnDiagnostic = std::function<void(
|
2018-11-03 20:52:43 +00:00
|
|
|
std::string path, std::vector<Diagnostic> diagnostics)>;
|
2018-09-11 05:37:01 +00:00
|
|
|
// If OptConsumer is nullptr, the request has been cancelled.
|
|
|
|
using OnComplete =
|
|
|
|
std::function<void(clang::CodeCompleteConsumer *OptConsumer)>;
|
2018-11-03 20:52:43 +00:00
|
|
|
using OnDropped = std::function<void(RequestId request_id)>;
|
2017-06-29 02:50:30 +00:00
|
|
|
|
2018-12-01 06:44:52 +00:00
|
|
|
struct PreambleTask {
|
2017-05-26 06:40:38 +00:00
|
|
|
std::string path;
|
2018-12-01 06:44:52 +00:00
|
|
|
bool from_diag = false;
|
2017-05-26 06:40:38 +00:00
|
|
|
};
|
2018-12-01 06:44:52 +00:00
|
|
|
struct CompTask {
|
|
|
|
CompTask(const RequestId &id, const std::string &path,
|
|
|
|
const Position &position,
|
|
|
|
std::unique_ptr<clang::CodeCompleteConsumer> Consumer,
|
|
|
|
clang::CodeCompleteOptions CCOpts, const OnComplete &on_complete)
|
|
|
|
: id(id), path(path), position(position), Consumer(std::move(Consumer)),
|
|
|
|
CCOpts(CCOpts), on_complete(on_complete) {}
|
2018-02-18 17:15:39 +00:00
|
|
|
|
2018-11-03 20:52:43 +00:00
|
|
|
RequestId id;
|
2018-12-01 06:44:52 +00:00
|
|
|
std::string path;
|
2018-11-04 18:30:18 +00:00
|
|
|
Position position;
|
2018-09-11 05:37:01 +00:00
|
|
|
std::unique_ptr<clang::CodeCompleteConsumer> Consumer;
|
|
|
|
clang::CodeCompleteOptions CCOpts;
|
2018-04-14 16:52:17 +00:00
|
|
|
OnComplete on_complete;
|
|
|
|
};
|
2018-12-01 06:44:52 +00:00
|
|
|
struct DiagTask {
|
2018-09-22 08:37:00 +00:00
|
|
|
std::string path;
|
|
|
|
int64_t wait_until;
|
|
|
|
int64_t debounce;
|
2017-04-17 01:22:59 +00:00
|
|
|
};
|
2017-05-10 04:52:15 +00:00
|
|
|
|
2018-12-01 06:44:52 +00:00
|
|
|
SemaManager(Project *project, WorkingFiles *wfiles,
|
2018-09-08 19:07:43 +00:00
|
|
|
OnDiagnostic on_diagnostic, OnDropped on_dropped);
|
2017-03-26 21:40:34 +00:00
|
|
|
|
2018-12-01 06:44:52 +00:00
|
|
|
void ScheduleDiag(const std::string &path, int debounce);
|
|
|
|
void OnView(const std::string &path);
|
|
|
|
void OnSave(const std::string &path);
|
2018-09-22 08:37:00 +00:00
|
|
|
void OnClose(const std::string &path);
|
2018-12-01 06:44:52 +00:00
|
|
|
std::shared_ptr<ccls::Session> EnsureSession(const std::string &path,
|
|
|
|
bool *created = nullptr);
|
2018-12-14 04:13:35 +00:00
|
|
|
void Clear();
|
|
|
|
void Quit();
|
2017-05-26 06:40:38 +00:00
|
|
|
|
|
|
|
// Global state.
|
2018-08-09 17:08:14 +00:00
|
|
|
Project *project_;
|
2018-12-01 06:44:52 +00:00
|
|
|
WorkingFiles *wfiles;
|
2017-06-10 04:13:16 +00:00
|
|
|
OnDiagnostic on_diagnostic_;
|
2018-02-22 07:13:42 +00:00
|
|
|
OnDropped on_dropped_;
|
2017-05-26 06:40:38 +00:00
|
|
|
|
2018-12-01 06:44:52 +00:00
|
|
|
std::mutex mutex;
|
|
|
|
LruCache<std::string, ccls::Session> sessions;
|
2017-05-26 06:40:38 +00:00
|
|
|
|
2018-09-22 08:37:00 +00:00
|
|
|
std::mutex diag_mutex;
|
|
|
|
std::unordered_map<std::string, int64_t> next_diag;
|
|
|
|
|
2018-12-01 06:44:52 +00:00
|
|
|
ThreadedQueue<std::unique_ptr<CompTask>> comp_tasks;
|
|
|
|
ThreadedQueue<DiagTask> diag_tasks;
|
|
|
|
ThreadedQueue<PreambleTask> preamble_tasks;
|
2018-08-28 05:42:40 +00:00
|
|
|
|
|
|
|
std::shared_ptr<clang::PCHContainerOperations> PCH;
|
2017-06-29 02:50:30 +00:00
|
|
|
};
|
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.
|
2018-09-11 05:37:01 +00:00
|
|
|
template <typename T>
|
|
|
|
struct CompleteConsumerCache {
|
|
|
|
std::mutex mutex;
|
2018-12-01 06:44:52 +00:00
|
|
|
std::string path;
|
|
|
|
Position position;
|
|
|
|
T result;
|
2018-03-31 08:01:32 +00:00
|
|
|
|
2018-12-01 06:44:52 +00:00
|
|
|
template <typename Fn> void WithLock(Fn &&fn) {
|
2018-09-11 05:37:01 +00:00
|
|
|
std::lock_guard lock(mutex);
|
2018-12-01 06:44:52 +00:00
|
|
|
fn();
|
2018-09-11 05:37:01 +00:00
|
|
|
}
|
2018-11-04 18:30:18 +00:00
|
|
|
bool IsCacheValid(const std::string path, Position position) {
|
2018-09-11 05:37:01 +00:00
|
|
|
std::lock_guard lock(mutex);
|
2018-10-06 22:23:23 +00:00
|
|
|
return this->path == path && this->position == position;
|
2018-09-11 05:37:01 +00:00
|
|
|
}
|
2018-03-31 08:01:32 +00:00
|
|
|
};
|
2018-10-28 17:49:31 +00:00
|
|
|
} // namespace ccls
|