10 #define BLACKCAT_IO_H_ 26 static T from_string(
const std::string& str);
28 #define from_string_def(dtype, ...)\ 30 inline dtype from_string(const std::string& str) {\ 42 T
begin()
const {
return begin_; }
43 T
end()
const {
return end_; }
52 #define FORWARDED_PARAM(dtype, name, default_value) \ 53 dtype name##_ = default_value; \ 54 csv_descriptor& name(dtype name) { \ 58 const dtype& name() const { \ 75 template<class... Integers>
81 template<
class... Integers>
89 static std::vector<std::vector<bc::string>> parse(
csv_descriptor desc)
96 auto find = [](
auto& collection,
auto var) ->
bool {
100 var) != collection.end();
109 std::istreambuf_iterator<char>(ifs),
110 std::istreambuf_iterator<char>());
113 vector<vector<string>> split_rows;
117 for (
string& row : rows) {
118 auto cells = row.split(desc.
delim());
120 if (!split_rows.empty() &&
121 split_rows.back().size() != cells.size()) {
123 "\nExpected: ", split_rows.back().size(),
124 "\nReceived: ", cells.size(),
125 "\nRow index: ", split_rows.size());
131 split_rows.push_back(cells);
133 vector<string> curr_row;
136 curr_row.push_back(std::move(cells[i]));
138 split_rows.push_back(curr_row);
151 Allocator alloc=Allocator()) {
157 bc::print(
"Transpose is not supported for read_uniform");
158 bc::print(
"TODO implement transposition");
162 vector<vector<string>> data = parse(desc);
164 int rows = data.size() - desc.
header();
165 int cols = data[0].size() - desc.
index();
171 for (
int i = 0; i < rows; ++i) {
172 for (
int j = 0; j < cols; ++j) {
173 int d_i = i + desc.
header();
174 int d_j = j + desc.
index();
177 matrix[i][j] = from_string<ValueType>(data[d_i][d_j]);
179 matrix[j][i] = from_string<ValueType>(data[d_i][d_j]);
#define from_string_def(dtype,...)
Definition: io.h:28
T begin_
Definition: io.h:40
const std::vector< int > & skip_rows() const
Definition: io.h:72
csv_descriptor & skip_cols(int x, Integers... args_)
Definition: io.h:82
csv_descriptor & filename(std::string filename)
Definition: io.h:64
csv_descriptor & skip_rows(int x, Integers... args_)
Definition: io.h:76
const bool & transpose() const
Definition: io.h:70
T end() const
Definition: io.h:43
csv_descriptor & index(bool index)
Definition: io.h:66
csv_descriptor & row_delim(char row_delim)
Definition: io.h:69
const char & delim() const
Definition: io.h:68
std::vector< bc::string > split(char delim) const
Definition: string.h:60
class::::::Args static auto swap(bc::streams::Stream< bc::host_tag > stream, Begin begin, End end, Args... args)
Definition: algorithms.h:140
const char & mode() const
Definition: io.h:67
csv_descriptor(std::string fname)
Definition: io.h:62
T end_
Definition: io.h:41
csv_descriptor & header(bool header)
Definition: io.h:65
class::::::Args static auto find(bc::streams::Stream< bc::host_tag > stream, Begin begin, End end, Args... args)
Definition: algorithms.h:124
std::string filename_
Definition: io.h:64
csv_descriptor & skip_rows(std::vector< int > skip_rows)
Definition: io.h:72
const bool & index() const
Definition: io.h:66
std::vector< int > skip_cols_
Definition: io.h:73
int size_t
Definition: common.h:283
Definition: allocators.h:20
const bool & header() const
Definition: io.h:65
#define FORWARDED_PARAM(dtype, name, default_value)
Definition: io.h:52
std::vector< int > skip_rows_
Definition: io.h:72
const char & row_delim() const
Definition: io.h:69
auto range(T begin, T end=T())
Definition: io.h:46
void print(const Ts &... args)
Definition: common.h:165
void printerr(const Ts &... args)
Definition: common.h:170
Inherits from std::string.
Definition: string.h:21
const std::vector< int > & skip_cols() const
Definition: io.h:73
csv_descriptor & skip_cols(std::vector< int > skip_cols)
Definition: io.h:73
const std::string & filename() const
Definition: io.h:64
csv_descriptor & transpose(bool transpose)
Definition: io.h:70
csv_descriptor & delim(char delim)
Definition: io.h:68
T begin() const
Definition: io.h:42
The Evaluator determines if an expression needs to be greedily optimized.
Definition: algorithms.h:22