mirror of
https://github.com/MaskRay/ccls.git
synced 2025-01-31 09:50:26 +00:00
48f1a006b7
Since the introduction of "ColumnLimit: 120" in .clang-format, the column limit has become 120 characters instead of 80 characters. This prevents clang-format from generating too much changes even if just a small portion of a source file or header file is modified.
96 lines
2.4 KiB
C++
96 lines
2.4 KiB
C++
// Copyright 2017-2018 ccls Authors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
#include "position.hh"
|
|
|
|
#include "serializer.hh"
|
|
|
|
#include <rapidjson/document.h>
|
|
#include <rapidjson/writer.h>
|
|
|
|
#include <algorithm>
|
|
#include <limits.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
namespace ccls {
|
|
Pos Pos::fromString(const std::string &encoded) {
|
|
char *p = const_cast<char *>(encoded.c_str());
|
|
uint16_t line = uint16_t(strtoul(p, &p, 10) - 1);
|
|
assert(*p == ':');
|
|
p++;
|
|
int16_t column = int16_t(strtol(p, &p, 10)) - 1;
|
|
return {line, column};
|
|
}
|
|
|
|
std::string Pos::toString() {
|
|
char buf[99];
|
|
snprintf(buf, sizeof buf, "%d:%d", line + 1, column + 1);
|
|
return buf;
|
|
}
|
|
|
|
Range Range::fromString(const std::string &encoded) {
|
|
Pos start, end;
|
|
char *p = const_cast<char *>(encoded.c_str());
|
|
start.line = uint16_t(strtoul(p, &p, 10) - 1);
|
|
assert(*p == ':');
|
|
p++;
|
|
start.column = int16_t(strtol(p, &p, 10)) - 1;
|
|
assert(*p == '-');
|
|
p++;
|
|
|
|
end.line = uint16_t(strtoul(p, &p, 10) - 1);
|
|
assert(*p == ':');
|
|
p++;
|
|
end.column = int16_t(strtol(p, nullptr, 10)) - 1;
|
|
return {start, end};
|
|
}
|
|
|
|
bool Range::contains(int line, int column) const {
|
|
if (line > UINT16_MAX)
|
|
return false;
|
|
Pos p{(uint16_t)line, (int16_t)std::min<int>(column, INT16_MAX)};
|
|
return !(p < start) && p < end;
|
|
}
|
|
|
|
std::string Range::toString() {
|
|
char buf[99];
|
|
snprintf(buf, sizeof buf, "%d:%d-%d:%d", start.line + 1, start.column + 1, end.line + 1, end.column + 1);
|
|
return buf;
|
|
}
|
|
|
|
void reflect(JsonReader &vis, Pos &v) { v = Pos::fromString(vis.getString()); }
|
|
void reflect(JsonReader &vis, Range &v) { v = Range::fromString(vis.getString()); }
|
|
|
|
void reflect(JsonWriter &vis, Pos &v) {
|
|
std::string output = v.toString();
|
|
vis.string(output.c_str(), output.size());
|
|
}
|
|
void reflect(JsonWriter &vis, Range &v) {
|
|
std::string output = v.toString();
|
|
vis.string(output.c_str(), output.size());
|
|
}
|
|
|
|
void reflect(BinaryReader &visitor, Pos &value) {
|
|
reflect(visitor, value.line);
|
|
reflect(visitor, value.column);
|
|
}
|
|
void reflect(BinaryReader &visitor, Range &value) {
|
|
reflect(visitor, value.start.line);
|
|
reflect(visitor, value.start.column);
|
|
reflect(visitor, value.end.line);
|
|
reflect(visitor, value.end.column);
|
|
}
|
|
|
|
void reflect(BinaryWriter &vis, Pos &v) {
|
|
reflect(vis, v.line);
|
|
reflect(vis, v.column);
|
|
}
|
|
void reflect(BinaryWriter &vis, Range &v) {
|
|
reflect(vis, v.start.line);
|
|
reflect(vis, v.start.column);
|
|
reflect(vis, v.end.line);
|
|
reflect(vis, v.end.column);
|
|
}
|
|
} // namespace ccls
|