ccls/src/position.cc

105 lines
2.7 KiB
C++
Raw Normal View History

2018-08-21 05:27:52 +00:00
// Copyright 2017-2018 ccls Authors
// SPDX-License-Identifier: Apache-2.0
2017-04-05 08:06:18 +00:00
#include "position.h"
#include "serializer.hh"
2017-04-05 08:06:18 +00:00
#include <limits.h>
#include <stdio.h>
#include <stdlib.h>
2017-04-05 08:06:18 +00:00
namespace ccls {
2018-08-09 17:08:14 +00:00
Position Position::FromString(const std::string &encoded) {
char *p = const_cast<char *>(encoded.c_str());
int16_t line = int16_t(strtol(p, &p, 10)) - 1;
2018-03-15 04:12:55 +00:00
assert(*p == ':');
p++;
int16_t column = int16_t(strtol(p, &p, 10)) - 1;
return {line, column};
2017-04-05 08:06:18 +00:00
}
std::string Position::ToString() {
char buf[99];
snprintf(buf, sizeof buf, "%d:%d", line + 1, column + 1);
return buf;
2017-04-05 08:06:18 +00:00
}
2018-08-09 17:08:14 +00:00
Range Range::FromString(const std::string &encoded) {
Position start, end;
2018-08-09 17:08:14 +00:00
char *p = const_cast<char *>(encoded.c_str());
start.line = int16_t(strtol(p, &p, 10)) - 1;
assert(*p == ':');
p++;
start.column = int16_t(strtol(p, &p, 10)) - 1;
assert(*p == '-');
p++;
end.line = int16_t(strtol(p, &p, 10)) - 1;
assert(*p == ':');
p++;
end.column = int16_t(strtol(p, nullptr, 10)) - 1;
return {start, end};
2017-04-05 08:06:18 +00:00
}
bool Range::Contains(int line, int column) const {
if (line > INT16_MAX)
return false;
Position p{int16_t(line), int16_t(std::min(column, INT16_MAX))};
return !(p < start) && p < end;
}
Range Range::RemovePrefix(Position position) const {
return {std::min(std::max(position, start), end), end};
}
2017-04-05 08:06:18 +00:00
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;
2017-05-19 07:02:01 +00:00
}
// Position
2018-08-09 17:08:14 +00:00
void Reflect(Reader &visitor, Position &value) {
if (visitor.Format() == SerializeFormat::Json) {
value = Position::FromString(visitor.GetString());
2018-01-07 09:27:14 +00:00
} else {
Reflect(visitor, value.line);
Reflect(visitor, value.column);
}
2017-05-19 07:02:01 +00:00
}
2018-08-09 17:08:14 +00:00
void Reflect(Writer &visitor, Position &value) {
2018-01-07 09:27:14 +00:00
if (visitor.Format() == SerializeFormat::Json) {
std::string output = value.ToString();
visitor.String(output.c_str(), output.size());
} else {
Reflect(visitor, value.line);
Reflect(visitor, value.column);
}
2017-05-19 07:02:01 +00:00
}
// Range
2018-08-09 17:08:14 +00:00
void Reflect(Reader &visitor, Range &value) {
if (visitor.Format() == SerializeFormat::Json) {
value = Range::FromString(visitor.GetString());
2018-01-07 09:27:14 +00:00
} else {
Reflect(visitor, value.start.line);
Reflect(visitor, value.start.column);
Reflect(visitor, value.end.line);
Reflect(visitor, value.end.column);
}
2017-05-19 07:02:01 +00:00
}
2018-08-09 17:08:14 +00:00
void Reflect(Writer &visitor, Range &value) {
2018-01-07 09:27:14 +00:00
if (visitor.Format() == SerializeFormat::Json) {
std::string output = value.ToString();
visitor.String(output.c_str(), output.size());
} else {
Reflect(visitor, value.start.line);
Reflect(visitor, value.start.column);
Reflect(visitor, value.end.line);
Reflect(visitor, value.end.column);
}
}
} // namespace ccls