-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathExcelProjectReader.cpp
163 lines (127 loc) · 4.38 KB
/
ExcelProjectReader.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
#include "ExcelProjectReader.h"
#include <xlnt/workbook/workbook_view.hpp>
#include <xlnt/xlnt.hpp>
#include "ProjectUtils.h"
namespace shapeworks {
using namespace project::prefixes;
using namespace project::types;
//---------------------------------------------------------------------------
class ExcelProjectReader::Container {
public:
Container() {};
~Container() {};
xlnt::workbook wb;
//---------------------------------------------------------------------------
// read an excel sheet into a list of string maps with headers as keys
//---------------------------------------------------------------------------
StringMapList sheet_to_map_list(std::string name) {
StringMapList list;
if (!wb.contains(name)) {
return list;
}
xlnt::worksheet ws = wb.sheet_by_title(name);
auto rows = ws.rows(false);
auto headers = rows[0];
for (int i = ws.lowest_row(); i < ws.highest_row(); i++) {
StringMap map;
bool empty = true;
for (int h = 0; h < headers.length(); h++) {
std::string header = headers[h].to_string();
std::string value = rows[i][h].to_string();
map[header] = value;
if (value != "") {
empty = false;
}
}
if (!empty) { // ignore blank lines (#2046)
list.push_back(map);
}
}
return list;
}
//---------------------------------------------------------------------------
StringMultiMap sheet_to_multi_map(std::string name) {
if (!wb.contains(name)) {
return {};
}
xlnt::worksheet ws = wb.sheet_by_title(name);
if (ws.highest_column().index < 2) {
return {};
}
StringMultiMap mmap;
auto rows = ws.rows(false);
auto headers = rows[0];
for (int h = 1; h < headers.length(); h++) {
if (headers[h].to_string().empty()) {
continue;
}
StringMap map;
auto header = rows[0][h].to_string();
std::string domain;
std::string prefix = "value_";
if (ProjectUtils::starts_with(header, prefix)) {
domain = header.substr(prefix.length());
}
if (header == "value") {
domain = ""; // default
}
for (int i = ws.lowest_row(); i < ws.highest_row(); i++) {
std::string key = rows[i][0].to_string();
std::string value = rows[i][1].to_string();
if (value != "") {
map[key] = value;
}
}
mmap[domain] = map;
}
return mmap;
}
//---------------------------------------------------------------------------
StringMap sheet_to_map(std::string name) {
if (!wb.contains(name)) {
return {};
}
xlnt::worksheet ws = wb.sheet_by_title(name);
if (ws.highest_column().index < 2) {
return {};
}
StringMap map;
auto rows = ws.rows(false);
for (int i = ws.lowest_row(); i < ws.highest_row(); i++) {
std::string key = rows[i][0].to_string();
std::string value = rows[i][1].to_string();
if (value != "") {
map[key] = value;
}
}
return map;
}
//---------------------------------------------------------------------------
std::string get_data_sheet() {
if (wb.contains("data")) {
return "data";
} else {
return wb.sheet_by_id(1).title();
}
}
};
//---------------------------------------------------------------------------
ExcelProjectReader::ExcelProjectReader(Project& project) : ProjectReader(project), container_(new Container) {}
//---------------------------------------------------------------------------
ExcelProjectReader::~ExcelProjectReader() {}
//---------------------------------------------------------------------------
bool ExcelProjectReader::read_project(std::string filename) {
container_->wb.load(filename);
load_subjects(container_->sheet_to_map_list(container_->get_data_sheet()));
load_landmark_definitions(container_->sheet_to_map_list("landmarks"));
load_parameters();
return true;
}
//---------------------------------------------------------------------------
StringMap ExcelProjectReader::get_parameters(std::string name) { return container_->sheet_to_map(name); }
//---------------------------------------------------------------------------
StringMultiMap ExcelProjectReader::get_multi_parameters(std::string name) {
return container_->sheet_to_multi_map(name);
}
//---------------------------------------------------------------------------
} // namespace shapeworks