ccls/src/project.h

41 lines
1.2 KiB
C
Raw Normal View History

#pragma once
#include <optional.h>
#include <sparsepp/spp.h>
#include <mutex>
2017-03-31 04:21:52 +00:00
#include <string>
#include <vector>
using std::experimental::optional;
using std::experimental::nullopt;
struct Project {
2017-04-20 05:01:36 +00:00
struct Entry {
std::string filename;
std::vector<std::string> args;
2017-04-20 07:25:38 +00:00
std::string import_file;
optional<uint64_t> last_modification_time;
2017-04-20 05:01:36 +00:00
};
std::vector<Entry> entries;
spp::sparse_hash_map<std::string, int> absolute_path_to_entry_index_;
std::mutex entries_modification_mutex_;
2017-03-31 04:21:52 +00:00
// Loads a project for the given |directory|.
//
// If |directory| contains a compile_commands.json file, that will be used to
// discover all files and args. Otherwise, a recursive directory listing of
// all *.cpp, *.cc, *.h, and *.hpp files will be used. clang arguments can be
// specified in a clang_args file located inside of |directory|.
void Load(const std::string& directory);
// Lookup the CompilationEntry for |filename|.
2017-04-20 05:01:36 +00:00
optional<Entry> FindCompilationEntryForFile(const std::string& filename);
// Update the modification time for the given filename. This is thread-safe.
void UpdateFileState(const std::string& filename, const std::string& import_file, uint64_t modification_time);
2017-03-31 04:21:52 +00:00
};