-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathe10.cpp
291 lines (246 loc) · 7.18 KB
/
e10.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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
//
// Created by martin on 10/19/22.
//
#include <ostream>
#include <utility>
#include "../std_lib.h"
template < typename T >
void print_db (const T &map)
{
for (const auto &[key, value] : map)
{
cout << key << ": " << value << endl;
}
}
struct Order_line
{
Order_line (string customer_name, string address, string phone, string product_name, double unit_price, int count) :
customer_name(std::move(customer_name)),
address(std::move(address)),
phone(std::move(phone)),
product_name(std::move(product_name)),
unit_price(unit_price),
count(count)
{
}
bool operator< (const Order_line &rhs) const
{
if (customer_name < rhs.customer_name)
{
return true;
}
if (customer_name < rhs.customer_name)
{
return true;
}
if (address < rhs.address)
{
return true;
}
if (address < rhs.address)
{
return true;
}
if (phone < rhs.phone)
{
return true;
}
if (phone < rhs.phone)
{
return true;
}
if (product_name < rhs.product_name)
{
return true;
}
if (product_name < rhs.product_name)
{
return true;
}
if (unit_price < rhs.unit_price)
{
return true;
}
if (unit_price < rhs.unit_price)
{
return true;
}
return count<rhs.count;
}
bool operator== (const Order_line &rhs) const
{
return customer_name == rhs.customer_name &&
address == rhs.address &&
phone == rhs.phone &&
product_name == rhs.product_name &&
unit_price == rhs.unit_price &&
count == rhs.count;
}
bool operator!= (const Order_line &rhs) const
{
return !( rhs == *this );
}
string customer_name;
string address;
string phone;
string product_name;
double unit_price;
int count;
friend ostream &operator<< (ostream &os, const Order_line &line)
{
os << line.customer_name << ";"
<< line.address << ";"
<< line.phone << ";"
<< line.product_name << ";"
<< line.unit_price << ";"
<< line.count;
return os;
}
};
struct Customer
{
string address;
string phone;
friend ostream &operator<< (ostream &os, const Customer &customer)
{
os << " address: " << customer.address << " phone: " << customer.phone;
return os;
}
};
struct Purchase
{
string name;
double unit_price;
int count;
friend ostream &operator<< (ostream &os, const Purchase &purchase)
{
os << purchase.name << " $" << purchase.unit_price << " " << purchase.count;
return os;
}
};
struct Order
{
vector<Purchase> purchases;
friend ostream &operator<< (ostream &os, const Order &order)
{
os << order.purchases;
return os;
}
};
void load_data (map<string, Customer> &customer_map, map<string, Order> &order_map)
{
ifstream ifs { "../c21/orders.txt" };
if (!ifs.is_open())
{
cerr << "Can't open file." << endl;
exit(EXIT_FAILURE);
}
for (string line ; getline(ifs, line) ;)
{
auto s { split(line, ';') };
string name = s[0];
customer_map[name] = { s[1], s[2] };
Purchase purchase { s[3], stod(s[4]), stoi(s[5]) };
order_map[name].purchases.push_back(purchase);
}
}
auto load_new_data ()
{
map<string, Order> order_map;
ifstream ifs { "../c21/new_order.txt" };
if (!ifs.is_open())
{
cerr << "Can't open file." << endl;
exit(EXIT_FAILURE);
}
for (string line ; getline(ifs, line) ;)
{
auto s { split(line, ';') };
string name = s[0];
Purchase purchase { s[3], stod(s[4]), stoi(s[5]) };
order_map[name].purchases.push_back(purchase);
}
return order_map;
}
void save_data (map<string, Customer> &customer_map, map<string, Order> &order_map)
{
ofstream ofs { "../c21/orders_output.txt" };
if (!ofs.is_open())
{
cerr << "Can't save data." << endl;
exit(EXIT_FAILURE);
}
for (auto [name, data] : customer_map)
{
for (auto &p : order_map[name].purchases)
{
ofs << name << ";"
<< data.address << ";"
<< data.phone << ";"
<< p.name << ";"
<< p.unit_price << ";"
<< p.count << endl;
}
}
ofs.close();
}
auto to_vector (map<string, Customer> &customer_map, map<string, Order> &order_map)
{
vector<Order_line> lines;
for (auto [name, data] : customer_map)
{
for (auto &p : order_map[name].purchases)
{
lines.emplace_back(name, data.address, data.phone, p.name, p.unit_price, p.count);
}
}
return lines;
}
auto to_list (map<string, Customer> &customer_map, map<string, Order> &order_map)
{
list<Order_line> lines;
for (auto [name, data] : customer_map)
{
for (auto &p : order_map[name].purchases)
{
lines.emplace_back(name, data.address, data.phone, p.name, p.unit_price, p.count);
}
}
return lines;
}
auto get_total_value (const vector<Order_line> &orders)
{
double total_value { 0.0f };
for (const auto &order : orders)
{
total_value += order.unit_price * order.count;
}
return total_value;
}
int main (int argc, char *argv[])
{
map<string, Customer> customer_map;
map<string, Order> order_map;
load_data(customer_map, order_map);
header("customer db", true);
print_db(customer_map);
header("order db");
print_db(order_map);
save_data(customer_map, order_map);
auto new_orders { load_new_data() };
header("new orders");
print_db(new_orders);
auto first_orders = to_vector(customer_map, order_map);
sort(first_orders);
auto next_orders = to_list(customer_map, new_orders);
next_orders.sort();
vector<Order_line> merged;
merge(first_orders.begin(), first_orders.end(),
next_orders.begin(), next_orders.end(),
back_inserter<vector<Order_line> >(merged)
);
header("total value");
auto total_value = get_total_value(merged);
cout << "$" << total_value << endl;
return EXIT_SUCCESS;
}