2017-03-26 21:40:34 +00:00
|
|
|
#include "working_files.h"
|
|
|
|
|
2017-04-16 08:09:12 +00:00
|
|
|
#include "position.h"
|
2017-04-09 19:38:52 +00:00
|
|
|
|
2017-04-17 20:40:50 +00:00
|
|
|
#include <climits>
|
|
|
|
|
2017-04-09 19:38:52 +00:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
int GetOffsetForPosition(lsPosition position, const std::string& content) {
|
|
|
|
int offset = 0;
|
|
|
|
|
|
|
|
int remaining_lines = position.line;
|
|
|
|
while (remaining_lines > 0) {
|
|
|
|
if (content[offset] == '\n')
|
|
|
|
--remaining_lines;
|
|
|
|
++offset;
|
|
|
|
}
|
|
|
|
|
|
|
|
return offset + position.character;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
2017-04-16 08:09:12 +00:00
|
|
|
WorkingFile::WorkingFile(const std::string& filename, const std::string& buffer_content)
|
|
|
|
: filename(filename), buffer_content(buffer_content) {
|
|
|
|
OnBufferContentUpdated();
|
|
|
|
// TODO: use cached index file contents
|
|
|
|
SetIndexContent(buffer_content);
|
2017-03-26 21:40:34 +00:00
|
|
|
}
|
|
|
|
|
2017-04-16 08:09:12 +00:00
|
|
|
void WorkingFile::SetIndexContent(const std::string& index_content) {
|
|
|
|
index_lines = ToLines(index_content, true /*trim_whitespace*/);
|
2017-04-19 07:52:48 +00:00
|
|
|
|
|
|
|
// Build lookup buffer.
|
|
|
|
index_lines_lookup.clear();
|
|
|
|
index_lines_lookup.reserve(index_lines.size());
|
|
|
|
for (int i = 0; i < index_lines.size(); ++i) {
|
|
|
|
const std::string& index_line = index_lines[i];
|
|
|
|
|
|
|
|
auto it = index_lines_lookup.find(index_line);
|
|
|
|
if (it == index_lines_lookup.end())
|
|
|
|
index_lines_lookup[index_line] = { i + 1 };
|
|
|
|
else
|
|
|
|
it->second.push_back(i + 1);
|
|
|
|
}
|
2017-03-26 21:40:34 +00:00
|
|
|
}
|
|
|
|
|
2017-04-16 08:09:12 +00:00
|
|
|
void WorkingFile::OnBufferContentUpdated() {
|
|
|
|
all_buffer_lines = ToLines(buffer_content, true /*trim_whitespace*/);
|
2017-04-09 19:38:52 +00:00
|
|
|
|
2017-04-16 08:09:12 +00:00
|
|
|
// Build lookup buffer.
|
2017-04-19 07:52:48 +00:00
|
|
|
all_buffer_lines_lookup.clear();
|
|
|
|
all_buffer_lines_lookup.reserve(all_buffer_lines.size());
|
2017-04-16 08:09:12 +00:00
|
|
|
for (int i = 0; i < all_buffer_lines.size(); ++i) {
|
|
|
|
const std::string& buffer_line = all_buffer_lines[i];
|
2017-04-09 19:38:52 +00:00
|
|
|
|
2017-04-19 07:52:48 +00:00
|
|
|
auto it = all_buffer_lines_lookup.find(buffer_line);
|
|
|
|
if (it == all_buffer_lines_lookup.end())
|
|
|
|
all_buffer_lines_lookup[buffer_line] = { i + 1 };
|
2017-04-16 08:09:12 +00:00
|
|
|
else
|
|
|
|
it->second.push_back(i + 1);
|
2017-04-09 19:38:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-19 07:52:48 +00:00
|
|
|
optional<int> WorkingFile::GetBufferLineFromIndexLine(int index_line) const {
|
2017-04-16 08:09:12 +00:00
|
|
|
// The implementation is simple but works pretty well for most cases. We
|
|
|
|
// lookup the line contents in the indexed file contents, and try to find the
|
|
|
|
// most similar line in the current buffer file.
|
|
|
|
//
|
|
|
|
// Previously, this was implemented by tracking edits and by running myers
|
|
|
|
// diff algorithm. They were complex implementations that did not work as
|
|
|
|
// well.
|
|
|
|
|
|
|
|
// Note: |index_line| and |buffer_line| are 1-based.
|
|
|
|
|
2017-04-18 23:49:55 +00:00
|
|
|
// TODO: reenable this assert once we are using the real indexed file.
|
|
|
|
//assert(index_line >= 1 && index_line <= index_lines.size());
|
|
|
|
if (index_line < 1 || index_line > index_lines.size())
|
|
|
|
return nullopt;
|
2017-04-16 08:09:12 +00:00
|
|
|
|
|
|
|
// Find the line in the cached index file. We'll try to find the most similar line
|
|
|
|
// in the buffer and return the index for that.
|
|
|
|
std::string index = index_lines[index_line - 1];
|
2017-04-19 07:52:48 +00:00
|
|
|
auto buffer_it = all_buffer_lines_lookup.find(index);
|
|
|
|
if (buffer_it == all_buffer_lines_lookup.end()) {
|
2017-04-16 08:09:12 +00:00
|
|
|
// TODO: Use levenshtein distance to find the best match (but only to an
|
|
|
|
// extent)
|
|
|
|
return nullopt;
|
2017-04-09 19:38:52 +00:00
|
|
|
}
|
|
|
|
|
2017-04-16 08:09:12 +00:00
|
|
|
// From all the identical lines, return the one which is closest to
|
|
|
|
// |index_line|. There will usually only be one identical line.
|
|
|
|
assert(!buffer_it->second.empty());
|
|
|
|
int closest_dist = INT_MAX;
|
|
|
|
int closest_buffer_line = INT_MIN;
|
|
|
|
for (int buffer_line : buffer_it->second) {
|
|
|
|
int dist = std::abs(buffer_line - index_line);
|
|
|
|
if (dist <= closest_dist) {
|
|
|
|
closest_dist = dist;
|
|
|
|
closest_buffer_line = buffer_line;
|
2017-04-09 19:38:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-16 08:09:12 +00:00
|
|
|
return closest_buffer_line;
|
2017-04-09 19:38:52 +00:00
|
|
|
}
|
|
|
|
|
2017-04-19 07:52:48 +00:00
|
|
|
optional<int> WorkingFile::GetIndexLineFromBufferLine(int buffer_line) const {
|
|
|
|
// See GetBufferLineFromIndexLine for additional comments.
|
|
|
|
|
|
|
|
// Note: |index_line| and |buffer_line| are 1-based.
|
|
|
|
|
|
|
|
// TODO: Consider making this an assert.
|
|
|
|
if (buffer_line < 1 || buffer_line > all_buffer_lines.size())
|
|
|
|
return nullopt;
|
|
|
|
|
|
|
|
// Find the line in the index file. We'll try to find the most similar line
|
|
|
|
// in the index file and return the index for that.
|
|
|
|
std::string buffer = all_buffer_lines[buffer_line - 1];
|
|
|
|
auto index_it = index_lines_lookup.find(buffer);
|
|
|
|
if (index_it == index_lines_lookup.end()) {
|
|
|
|
// TODO: Use levenshtein distance to find the best match (but only to an
|
|
|
|
// extent)
|
|
|
|
return nullopt;
|
|
|
|
}
|
|
|
|
|
|
|
|
// From all the identical lines, return the one which is closest to
|
|
|
|
// |index_line|. There will usually only be one identical line.
|
|
|
|
assert(!index_it->second.empty());
|
|
|
|
int closest_dist = INT_MAX;
|
|
|
|
int closest_index_line = INT_MIN;
|
|
|
|
for (int index_line : index_it->second) {
|
|
|
|
int dist = std::abs(buffer_line - index_line);
|
|
|
|
if (dist <= closest_dist) {
|
|
|
|
closest_dist = dist;
|
|
|
|
closest_index_line = index_line;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return closest_index_line;
|
|
|
|
}
|
|
|
|
|
2017-04-16 08:09:12 +00:00
|
|
|
CXUnsavedFile WorkingFile::AsUnsavedFile() const {
|
|
|
|
CXUnsavedFile result;
|
|
|
|
result.Filename = filename.c_str();
|
|
|
|
result.Contents = buffer_content.c_str();
|
|
|
|
result.Length = (unsigned long)buffer_content.size();
|
|
|
|
return result;
|
2017-04-09 19:38:52 +00:00
|
|
|
}
|
|
|
|
|
2017-03-26 21:40:34 +00:00
|
|
|
WorkingFile* WorkingFiles::GetFileByFilename(const std::string& filename) {
|
|
|
|
for (auto& file : files) {
|
|
|
|
if (file->filename == filename)
|
|
|
|
return file.get();
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
void WorkingFiles::OnOpen(const Ipc_TextDocumentDidOpen::Params& open) {
|
|
|
|
std::string filename = open.textDocument.uri.GetPath();
|
|
|
|
std::string content = open.textDocument.text;
|
|
|
|
|
|
|
|
// The file may already be open.
|
|
|
|
if (WorkingFile* file = GetFileByFilename(filename)) {
|
2017-04-14 08:21:03 +00:00
|
|
|
file->version = open.textDocument.version;
|
2017-04-16 08:09:12 +00:00
|
|
|
// TODO: Load saved indexed content and not the initial buffer content.
|
|
|
|
file->SetIndexContent(content);
|
|
|
|
file->buffer_content = content;
|
|
|
|
file->OnBufferContentUpdated();
|
2017-03-26 21:40:34 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
files.push_back(MakeUnique<WorkingFile>(filename, content));
|
|
|
|
}
|
|
|
|
|
|
|
|
void WorkingFiles::OnChange(const Ipc_TextDocumentDidChange::Params& change) {
|
|
|
|
std::string filename = change.textDocument.uri.GetPath();
|
|
|
|
WorkingFile* file = GetFileByFilename(filename);
|
|
|
|
if (!file) {
|
|
|
|
std::cerr << "Could not change " << filename << " because it was not open" << std::endl;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-04-14 08:21:03 +00:00
|
|
|
file->version = change.textDocument.version;
|
2017-04-09 22:16:06 +00:00
|
|
|
//std::cerr << "VERSION " << change.textDocument.version << std::endl;
|
2017-03-26 21:40:34 +00:00
|
|
|
|
|
|
|
for (const Ipc_TextDocumentDidChange::lsTextDocumentContentChangeEvent& diff : change.contentChanges) {
|
2017-04-09 19:38:52 +00:00
|
|
|
//std::cerr << "Applying rangeLength=" << diff.rangeLength;
|
|
|
|
|
2017-03-26 21:40:34 +00:00
|
|
|
// If range or rangeLength are emitted we replace everything, per the spec.
|
|
|
|
if (diff.rangeLength == -1) {
|
2017-04-16 08:09:12 +00:00
|
|
|
file->buffer_content = diff.text;
|
|
|
|
file->OnBufferContentUpdated();
|
2017-03-26 21:40:34 +00:00
|
|
|
}
|
|
|
|
else {
|
2017-04-16 08:09:12 +00:00
|
|
|
int start_offset = GetOffsetForPosition(diff.range.start, file->buffer_content);
|
|
|
|
file->buffer_content.replace(file->buffer_content.begin() + start_offset,
|
|
|
|
file->buffer_content.begin() + start_offset + diff.rangeLength,
|
2017-04-09 19:38:52 +00:00
|
|
|
diff.text);
|
2017-04-16 08:09:12 +00:00
|
|
|
file->OnBufferContentUpdated();
|
2017-03-26 21:40:34 +00:00
|
|
|
}
|
|
|
|
}
|
2017-04-09 19:38:52 +00:00
|
|
|
//std::cerr << std::endl << std::endl << "--------" << file->content << "--------" << std::endl << std::endl;
|
2017-03-26 21:40:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void WorkingFiles::OnClose(const Ipc_TextDocumentDidClose::Params& close) {
|
|
|
|
std::string filename = close.textDocument.uri.GetPath();
|
|
|
|
|
|
|
|
for (int i = 0; i < files.size(); ++i) {
|
|
|
|
if (files[i]->filename == filename) {
|
|
|
|
files.erase(files.begin() + i);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
std::cerr << "Could not close " << filename << " because it was not open" << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<CXUnsavedFile> WorkingFiles::AsUnsavedFiles() const {
|
|
|
|
std::vector<CXUnsavedFile> result;
|
|
|
|
result.reserve(files.size());
|
|
|
|
for (auto& file : files)
|
|
|
|
result.push_back(file->AsUnsavedFile());
|
|
|
|
return result;
|
2017-04-17 20:40:50 +00:00
|
|
|
}
|