ssp/include/ss/parser.hpp

848 lines
25 KiB
C++
Raw Normal View History

#pragma once
// TODO remove or rename
#define likely(x) __builtin_expect(!!(x), 1)
#define unlikely(x) __builtin_expect(!!(x), 0)
#define U_IF(OP) if (unlikely(OP))
#define L_IF(OP) if (likely(OP))
2021-02-21 22:22:18 +01:00
#include "common.hpp"
#include "converter.hpp"
#include "exception.hpp"
#include "extract.hpp"
#include "restrictions.hpp"
2021-01-10 23:51:20 +01:00
#include <cstdlib>
#include <cstring>
2020-12-12 23:32:06 +01:00
#include <optional>
#include <string>
#include <vector>
namespace ss {
template <typename... Options>
class parser {
constexpr static auto string_error = setup<Options...>::string_error;
constexpr static auto throw_on_error = setup<Options...>::throw_on_error;
using multiline = typename setup<Options...>::multiline;
using error_type = std::conditional_t<string_error, std::string, bool>;
constexpr static bool escaped_multiline_enabled =
multiline::enabled && setup<Options...>::escape::enabled;
constexpr static bool quoted_multiline_enabled =
multiline::enabled && setup<Options...>::quote::enabled;
constexpr static bool ignore_header = setup<Options...>::ignore_header;
constexpr static bool ignore_empty = setup<Options...>::ignore_empty;
2022-03-28 19:11:41 +02:00
public:
parser(const std::string& file_name,
const std::string& delim = ss::default_delimiter)
: file_name_{file_name}, reader_{file_name_, delim} {
if (reader_.file_) {
// read_line();
if constexpr (ignore_header) {
ignore_next();
} else {
// TODO handle
// raw_header_ = reader_.get_buffer();
}
} else {
2023-08-05 11:45:31 +02:00
handle_error_file_not_open();
eof_ = true;
}
}
parser(parser&& other) = default;
parser& operator=(parser&& other) = default;
parser() = delete;
parser(const parser& other) = delete;
parser& operator=(const parser& other) = delete;
bool valid() const {
if constexpr (string_error) {
return error_.empty();
2023-07-16 20:26:09 +02:00
} else if constexpr (throw_on_error) {
return true;
} else {
return !error_;
}
}
const std::string& error_msg() const {
assert_string_error_defined<string_error>();
return error_;
}
2022-02-27 19:40:23 +01:00
bool eof() const {
return eof_;
}
2022-02-27 19:40:23 +01:00
bool ignore_next() {
return reader_.read_next();
}
template <typename T, typename... Ts>
T get_object() {
return to_object<T>(get_next<Ts...>());
}
2022-02-27 19:40:23 +01:00
size_t line() const {
return reader_.line_number_;
2022-02-27 19:40:23 +01:00
}
template <typename T, typename... Ts>
no_void_validator_tup_t<T, Ts...> get_next() {
clear_error();
if (eof_) {
2023-08-05 11:45:31 +02:00
handle_error_eof_reached();
return {};
}
if constexpr (throw_on_error) {
try {
read_line();
return reader_.converter_.template convert<T, Ts...>(
reader_.split_data_);
} catch (const ss::exception& e) {
decorate_rethrow(e);
}
}
read_line();
// TODO check valid read
auto value =
reader_.converter_.template convert<T, Ts...>(reader_.split_data_);
2020-12-12 23:32:06 +01:00
if (!reader_.converter_.valid()) {
2023-08-05 11:45:31 +02:00
handle_error_invalid_conversion();
2020-12-12 23:32:06 +01:00
}
return value;
}
2022-02-27 19:40:23 +01:00
bool field_exists(const std::string& field) {
2023-08-05 13:30:14 +02:00
if (header_.empty()) {
split_header_data();
}
return header_index(field).has_value();
2022-02-27 19:40:23 +01:00
}
template <typename... Ts>
void use_fields(const Ts&... fields_args) {
if constexpr (ignore_header) {
2023-08-05 11:45:31 +02:00
handle_error_header_ignored();
return;
}
2023-08-05 13:30:14 +02:00
if (header_.empty()) {
split_header_data();
}
2022-02-27 19:40:23 +01:00
if (!valid()) {
return;
}
auto fields = std::vector<std::string>{fields_args...};
2023-08-04 21:22:23 +02:00
if (fields.empty()) {
2023-08-05 11:45:31 +02:00
handle_error_empty_mapping();
2023-08-04 21:22:23 +02:00
return;
}
2022-02-27 19:40:23 +01:00
std::vector<size_t> column_mappings;
for (const auto& field : fields) {
if (std::count(fields.begin(), fields.end(), field) != 1) {
2023-08-05 11:45:31 +02:00
handle_error_field_used_multiple_times(field);
2022-02-27 19:40:23 +01:00
return;
}
auto index = header_index(field);
if (!index) {
2023-08-05 11:45:31 +02:00
handle_error_invalid_field(field);
2022-02-27 19:40:23 +01:00
return;
}
column_mappings.push_back(*index);
}
reader_.converter_.set_column_mapping(column_mappings, header_.size());
2023-08-04 21:22:23 +02:00
2023-08-06 19:56:28 +02:00
if (line() == 1) {
2022-02-27 19:40:23 +01:00
ignore_next();
}
}
////////////////
// iterator
////////////////
template <bool get_object, typename T, typename... Ts>
struct iterable {
struct iterator {
using value = std::conditional_t<get_object, T,
no_void_validator_tup_t<T, Ts...>>;
iterator() : parser_{nullptr}, value_{} {
2022-02-27 19:40:23 +01:00
}
2023-07-13 22:29:49 +02:00
iterator(parser<Options...>* parser) : parser_{parser}, value_{} {
2022-02-27 19:40:23 +01:00
}
iterator(const iterator& other) = default;
iterator(iterator&& other) = default;
2022-02-27 19:40:23 +01:00
value& operator*() {
return value_;
}
2023-07-13 22:29:49 +02:00
2022-02-27 19:40:23 +01:00
value* operator->() {
return &value_;
}
iterator& operator++() {
if (!parser_ || parser_->eof()) {
parser_ = nullptr;
} else {
if constexpr (get_object) {
value_ =
std::move(parser_->template get_object<T, Ts...>());
} else {
value_ =
std::move(parser_->template get_next<T, Ts...>());
}
}
return *this;
}
2022-02-27 19:40:23 +01:00
iterator& operator++(int) {
return ++*this;
}
friend bool operator==(const iterator& lhs, const iterator& rhs) {
return (lhs.parser_ == nullptr && rhs.parser_ == nullptr) ||
(lhs.parser_ == rhs.parser_ &&
&lhs.value_ == &rhs.value_);
}
friend bool operator!=(const iterator& lhs, const iterator& rhs) {
return !(lhs == rhs);
}
private:
parser<Options...>* parser_;
value value_;
};
iterable(parser<Options...>* parser) : parser_{parser} {
2022-02-27 19:40:23 +01:00
}
2022-02-27 19:40:23 +01:00
iterator begin() {
return ++iterator{parser_};
}
2023-07-13 22:29:49 +02:00
2022-02-27 19:40:23 +01:00
iterator end() {
return iterator{};
}
private:
parser<Options...>* parser_;
};
template <typename... Ts>
auto iterate() {
return iterable<false, Ts...>{this};
}
template <typename... Ts>
auto iterate_object() {
return iterable<true, Ts...>{this};
}
////////////////
// composite conversion
////////////////
template <typename... Ts>
class composite {
public:
composite(std::tuple<Ts...>&& values, parser& parser)
2022-02-27 19:40:23 +01:00
: values_{std::move(values)}, parser_{parser} {
}
// tries to convert the same line with a different output type
// only if the previous conversion was not successful,
// returns composite containing itself and the new output
// as optional, additionally, if a parameter is passed, and
// that parameter can be invoked using the converted value,
// than it will be invoked in the case of a valid conversion
2020-12-26 00:56:39 +01:00
template <typename... Us, typename Fun = none>
composite<Ts..., std::optional<no_void_validator_tup_t<Us...>>> or_else(
2020-12-26 00:56:39 +01:00
Fun&& fun = none{}) {
using Value = no_void_validator_tup_t<Us...>;
std::optional<Value> value;
try_convert_and_invoke<Value, Us...>(value, fun);
return composite_with(std::move(value));
}
// same as or_else, but saves the result into a 'U' object
// instead of a tuple
2020-12-26 00:56:39 +01:00
template <typename U, typename... Us, typename Fun = none>
composite<Ts..., std::optional<U>> or_object(Fun&& fun = none{}) {
std::optional<U> value;
try_convert_and_invoke<U, Us...>(value, fun);
return composite_with(std::move(value));
}
2022-02-27 19:40:23 +01:00
std::tuple<Ts...> values() {
return values_;
}
template <typename Fun>
auto on_error(Fun&& fun) {
assert_throw_on_error_not_defined<throw_on_error>();
if (!parser_.valid()) {
if constexpr (std::is_invocable_v<Fun>) {
fun();
} else {
static_assert(string_error,
"to enable error messages within the "
"on_error method "
"callback string_error needs to be enabled");
std::invoke(std::forward<Fun>(fun), parser_.error_msg());
2020-12-12 23:32:06 +01:00
}
}
return *this;
}
2020-12-12 23:32:06 +01:00
private:
template <typename T>
composite<Ts..., T> composite_with(T&& new_value) {
auto merged_values =
std::tuple_cat(std::move(values_),
2021-01-10 23:51:20 +01:00
std::tuple<T>{parser_.valid()
2021-01-17 21:46:36 +01:00
? std::forward<T>(new_value)
: std::nullopt});
return {std::move(merged_values), parser_};
}
2020-12-26 00:56:39 +01:00
template <typename U, typename... Us, typename Fun = none>
void try_convert_and_invoke(std::optional<U>& value, Fun&& fun) {
if (!parser_.valid()) {
auto tuple_output = try_same<Us...>();
if (!parser_.valid()) {
return;
}
if constexpr (!std::is_same_v<U, decltype(tuple_output)>) {
value = to_object<U>(std::move(tuple_output));
} else {
value = std::move(tuple_output);
}
parser_.try_invoke(*value, std::forward<Fun>(fun));
}
}
template <typename U, typename... Us>
no_void_validator_tup_t<U, Us...> try_same() {
parser_.clear_error();
auto value =
parser_.reader_.converter_.template convert<U, Us...>();
if (!parser_.reader_.converter_.valid()) {
2023-08-05 11:45:31 +02:00
parser_.handle_error_invalid_conversion();
}
return value;
}
////////////////
// members
////////////////
std::tuple<Ts...> values_;
parser& parser_;
};
// tries to convert a line and returns a composite which is
// able to try additional conversions in case of failure
2020-12-26 00:56:39 +01:00
template <typename... Ts, typename Fun = none>
composite<std::optional<no_void_validator_tup_t<Ts...>>> try_next(
2020-12-26 00:56:39 +01:00
Fun&& fun = none{}) {
assert_throw_on_error_not_defined<throw_on_error>();
using Ret = no_void_validator_tup_t<Ts...>;
return try_invoke_and_make_composite<
std::optional<Ret>>(get_next<Ts...>(), std::forward<Fun>(fun));
2021-01-19 20:26:36 +01:00
}
// identical to try_next but returns composite with object instead of a
// tuple
template <typename T, typename... Ts, typename Fun = none>
composite<std::optional<T>> try_object(Fun&& fun = none{}) {
assert_throw_on_error_not_defined<throw_on_error>();
return try_invoke_and_make_composite<
std::optional<T>>(get_object<T, Ts...>(), std::forward<Fun>(fun));
2021-01-19 20:26:36 +01:00
}
private:
// tries to invoke the given function (see below), if the function
// returns a value which can be used as a conditional, and it returns
// false, the function sets an error, and allows the invoke of the
// next possible conversion as if the validation of the current one
// failed
2020-12-26 00:56:39 +01:00
template <typename Arg, typename Fun = none>
void try_invoke(Arg&& arg, Fun&& fun) {
2020-12-26 00:56:39 +01:00
constexpr bool is_none = std::is_same_v<std::decay_t<Fun>, none>;
if constexpr (!is_none) {
using Ret = decltype(try_invoke_impl(arg, std::forward<Fun>(fun)));
constexpr bool returns_void = std::is_same_v<Ret, void>;
if constexpr (!returns_void) {
if (!try_invoke_impl(arg, std::forward<Fun>(fun))) {
2023-08-05 11:45:31 +02:00
handle_error_failed_check();
}
} else {
try_invoke_impl(arg, std::forward<Fun>(fun));
}
}
}
2020-12-26 00:56:39 +01:00
// tries to invoke the function if not none
// it first tries to invoke the function without arguments,
// than with one argument if the function accepts the whole tuple
// as an argument, and finally tries to invoke it with the tuple
// laid out as a parameter pack
2020-12-26 00:56:39 +01:00
template <typename Arg, typename Fun = none>
auto try_invoke_impl(Arg&& arg, Fun&& fun) {
2020-12-26 00:56:39 +01:00
constexpr bool is_none = std::is_same_v<std::decay_t<Fun>, none>;
if constexpr (!is_none) {
if constexpr (std::is_invocable_v<Fun>) {
return fun();
} else if constexpr (std::is_invocable_v<Fun, Arg>) {
return std::invoke(std::forward<Fun>(fun),
std::forward<Arg>(arg));
} else {
return std::apply(std::forward<Fun>(fun),
std::forward<Arg>(arg));
}
}
}
template <typename T, typename Fun = none>
composite<T> try_invoke_and_make_composite(T&& value, Fun&& fun) {
if (valid()) {
try_invoke(*value, std::forward<Fun>(fun));
}
return {valid() ? std::move(value) : std::nullopt, *this};
}
2022-02-27 19:40:23 +01:00
////////////////
// header
////////////////
2023-08-05 13:30:14 +02:00
void split_header_data() {
ss::splitter<Options...> splitter;
std::string raw_header_copy = raw_header_;
splitter.split(raw_header_copy.data(), reader_.delim_);
for (const auto& [begin, end] : splitter.split_data_) {
std::string field{begin, end};
if (std::find(header_.begin(), header_.end(), field) !=
header_.end()) {
handle_error_invalid_header(field);
header_.clear();
return;
}
header_.push_back(std::move(field));
2023-08-05 13:30:14 +02:00
}
}
2022-02-27 19:40:23 +01:00
std::optional<size_t> header_index(const std::string& field) {
auto it = std::find(header_.begin(), header_.end(), field);
if (it == header_.end()) {
return std::nullopt;
}
return std::distance(header_.begin(), it);
}
////////////////
// error
////////////////
2020-12-11 18:14:06 +01:00
void clear_error() {
if constexpr (string_error) {
error_.clear();
} else {
error_ = false;
}
}
2021-01-10 23:51:20 +01:00
2023-08-05 11:45:31 +02:00
void handle_error_failed_check() {
constexpr static auto error_msg = " failed check";
if constexpr (string_error) {
2023-08-05 11:45:31 +02:00
error_.clear();
error_.append(file_name_).append(error_msg);
} else if constexpr (throw_on_error) {
throw ss::exception{file_name_ + error_msg};
} else {
error_ = true;
}
}
2023-08-05 11:45:31 +02:00
void handle_error_file_not_open() {
constexpr static auto error_msg = " could not be opened";
if constexpr (string_error) {
2023-08-05 11:45:31 +02:00
error_.clear();
error_.append(file_name_).append(error_msg);
} else if constexpr (throw_on_error) {
throw ss::exception{file_name_ + error_msg};
} else {
error_ = true;
}
}
2023-08-05 11:45:31 +02:00
void handle_error_eof_reached() {
constexpr static auto error_msg = " read on end of file";
if constexpr (string_error) {
2023-08-05 11:45:31 +02:00
error_.clear();
error_.append(file_name_).append(error_msg);
} else if constexpr (throw_on_error) {
throw ss::exception{file_name_ + error_msg};
} else {
error_ = true;
}
}
2023-08-05 11:45:31 +02:00
void handle_error_invalid_conversion() {
if constexpr (string_error) {
2023-08-05 11:45:31 +02:00
error_.clear();
error_.append(file_name_)
.append(" ")
.append(std::to_string(reader_.line_number_))
.append(": ")
2023-08-04 21:22:23 +02:00
.append(reader_.converter_.error_msg());
} else if constexpr (!throw_on_error) {
error_ = true;
}
}
2023-08-05 11:45:31 +02:00
void handle_error_header_ignored() {
constexpr static auto error_msg =
2023-08-05 13:30:14 +02:00
": the header row is ignored within the setup it cannot be used";
if constexpr (string_error) {
2023-08-05 11:45:31 +02:00
error_.clear();
error_.append(file_name_).append(error_msg);
} else if constexpr (throw_on_error) {
throw ss::exception{file_name_ + error_msg};
} else {
error_ = true;
}
}
2023-08-05 11:45:31 +02:00
void handle_error_invalid_field(const std::string& field) {
constexpr static auto error_msg =
": header does not contain given field: ";
2022-02-27 19:40:23 +01:00
if constexpr (string_error) {
2023-08-05 11:45:31 +02:00
error_.clear();
error_.append(file_name_).append(error_msg).append(field);
} else if constexpr (throw_on_error) {
throw ss::exception{file_name_ + error_msg + field};
2022-02-27 19:40:23 +01:00
} else {
error_ = true;
}
}
2023-08-05 11:45:31 +02:00
void handle_error_field_used_multiple_times(const std::string& field) {
constexpr static auto error_msg = ": given field used multiple times: ";
2022-02-27 19:40:23 +01:00
if constexpr (string_error) {
2023-08-05 11:45:31 +02:00
error_.clear();
error_.append(file_name_).append(error_msg).append(field);
} else if constexpr (throw_on_error) {
throw ss::exception{file_name_ + error_msg + field};
2022-02-27 19:40:23 +01:00
} else {
error_ = true;
}
}
2023-08-05 11:45:31 +02:00
void handle_error_empty_mapping() {
2023-08-04 21:22:23 +02:00
constexpr static auto error_msg = "received empty mapping";
if constexpr (string_error) {
error_.clear();
error_.append(error_msg);
} else if constexpr (throw_on_error) {
throw ss::exception{error_msg};
} else {
error_ = true;
}
}
void handle_error_invalid_header(const std::string& field) {
constexpr static auto error_msg = "header contains duplicates: ";
if constexpr (string_error) {
error_.clear();
error_.append(error_msg).append(error_msg);
} else if constexpr (throw_on_error) {
throw ss::exception{error_msg + field};
} else {
error_ = true;
}
}
void decorate_rethrow(const ss::exception& e) const {
static_assert(throw_on_error,
"throw_on_error needs to be enabled to use this method");
2023-08-06 19:56:28 +02:00
throw ss::exception{std::string{file_name_}
.append(" ")
.append(std::to_string(line()))
.append(": ")
.append(e.what())};
}
////////////////
// line reading
////////////////
2022-02-27 19:40:23 +01:00
void read_line() {
eof_ = !reader_.read_next();
}
////////////////
// new reader
////////////////
2021-02-07 21:29:12 +01:00
struct reader {
reader(const reader& other) = delete;
reader& operator=(const reader& other) = delete;
// TODO update
reader(reader&& other)
: delim_{std::move(other.delim_)}, file_{other.file_},
converter_{std::move(other.converter_)}, buff_{other.buff_},
line_number_{other.line_number_}, buff_size_{other.buff_size_},
buff_filled_{other.buff_filled_},
buff_processed_{other.buff_processed_},
delim_char_{other.delim_char_}, begin_{other.begin_},
curr_{other.curr_}, end_{other.end_},
last_read_{other.last_read_}, split_data_{
std::move(other.split_data_)} {
other.file_ = nullptr;
other.buff_ = nullptr;
}
reader& operator=(reader&& other) {
if (this != &other) {
delim_ = std::move(other.delim_);
file_ = other.file_;
converter_ = std::move(other.converter_);
buff_ = other.buff_;
line_number_ = other.line_number_;
buff_filled_ = other.buff_filled_;
buff_size_ = other.buff_size_;
buff_processed_ = other.buff_processed_;
delim_char_ = other.delim_char_;
begin_ = other.begin_;
curr_ = other.curr_;
end_ = other.end_;
last_read_ = other.last_read_;
split_data_ = std::move(other.split_data_);
other.file_ = nullptr;
other.buff_ = nullptr;
}
return *this;
2021-01-10 23:51:20 +01:00
}
reader(const std::string& file_name, const std::string& delim)
: delim_{delim} {
// TODO update
delim_char_ = delim_.at(0);
2020-12-11 18:14:06 +01:00
// TODO check file
file_ = std::fopen(file_name.c_str(), "rb");
if (!file_) {
return;
}
2022-03-28 19:11:41 +02:00
// TODO check buff_
buff_ = static_cast<char*>(std::malloc(buff_size_));
2022-03-28 19:11:41 +02:00
// TODO check buff_filled
buff_filled_ = std::fread(buff_, 1, buff_size_, file_);
2022-03-28 19:11:41 +02:00
if (buff_filled_ != buff_size_) {
last_read_ = true;
}
2020-12-12 23:32:06 +01:00
// TODO handle differently
if (buff_filled_ == 0 || (buff_filled_ == 1 && buff_[0] == '\n') ||
(buff_filled_ == 2 && buff_[0] == '\r' && buff_[1] == '\n')) {
free(file_);
file_ = nullptr;
}
begin_ = buff_;
curr_ = buff_;
end_ = buff_ + buff_filled_;
}
~reader() {
free(buff_);
if (file_) {
fclose(file_);
}
}
void shift_read_next() {
buff_filled_ -= buff_processed_;
2021-01-10 23:51:20 +01:00
// shift back data that is not processed
memcpy(buff_, buff_ + buff_processed_, buff_filled_);
// read data to fill the rest of the buffer
buff_filled_ +=
fread(buff_ + buff_filled_, 1, buff_processed_, file_);
}
void handle_buffer_end_reached() {
buff_size_ *= 8;
// TODO handle NULL
buff_ = static_cast<char*>(std::realloc(buff_, buff_size_));
// fill the rest of the buffer
buff_filled_ += fread(buff_ + buff_filled_, 1,
buff_size_ - buff_filled_, file_);
if (buff_filled_ != buff_size_) {
last_read_ = true;
}
};
// read next line each time in order to set eof_
bool read_next() {
// TODO update division value
if (buff_processed_ > buff_filled_ / 2) {
if (!last_read_) {
shift_read_next();
if (buff_filled_ != buff_size_) {
last_read_ = true;
}
curr_ = buff_;
end_ = buff_ + buff_filled_;
}
}
split_data_.clear();
begin_ = curr_;
while (true) {
if (*curr_ == '\n') {
split_data_.emplace_back(begin_, curr_);
break;
}
if (*curr_ == '\r' && *(curr_ + 1) == '\n') {
split_data_.emplace_back(begin_, curr_);
++curr_;
break;
}
if (*curr_ == delim_char_) {
split_data_.emplace_back(begin_, curr_);
begin_ = curr_ + 1;
}
++curr_;
if (curr_ == end_) {
auto old_buff = buff_;
if (last_read_) {
// TODO handle
throw std::string{"no new line at eof"};
}
handle_buffer_end_reached();
end_ = buff_ + buff_filled_;
for (auto& [begin, end] : split_data_) {
begin = begin - old_buff + buff_;
end = end - old_buff + buff_;
}
begin_ = begin_ - old_buff + buff_;
curr_ = curr_ - old_buff + buff_;
}
}
2023-08-05 12:05:17 +02:00
++curr_;
buff_processed_ = curr_ - buff_;
// TODO check where to put this
++line_number_;
if (last_read_ && curr_ >= end_) {
return false;
}
return true;
}
std::string delim_{};
FILE* file_{nullptr};
converter<Options...> converter_;
char* buff_{nullptr};
size_t line_number_{0};
// TODO set initial buffer size
size_t buff_size_{1};
size_t buff_filled_{0};
size_t buff_processed_{0};
// TODO update
char delim_char_;
// TODO move to splitter
char* begin_{nullptr};
char* curr_{nullptr};
char* end_{nullptr};
bool last_read_{false};
split_data split_data_;
};
////////////////
// members
////////////////
std::string file_name_;
error_type error_{};
reader reader_;
2022-02-27 19:40:23 +01:00
std::vector<std::string> header_;
2023-08-05 13:30:14 +02:00
std::string raw_header_;
bool eof_{false};
};
} /* ss */