-
Notifications
You must be signed in to change notification settings - Fork 0
/
parcer.cpp
286 lines (248 loc) · 8.56 KB
/
parcer.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
#include "parcer.h"
using namespace std;
//typedef unsigned int uint;
Parcer::Parcer(){}
// Оценка расходов студента, руб./ месяц на основе "статистических данных"
bool Parcer::initDatabase(QString path) {
// Инициализация базы данных
ifstream DatabaseHandler;
string word;
string line;
vector <string> A;
// ------------------------------------------------ //
DatabaseHandler.open(path.toStdString() + ("/Caffe-and-cinema.csv"));
if (DatabaseHandler.is_open()){
while(getline(DatabaseHandler, line)){
stringstream lineStream(line);
while(getline(lineStream,word,',')){
A.push_back(string(word));
}
caffy.push_back(move(A));
}
}
else{
return (0);
}
// for (auto str : caffy){
// for (auto w : str){
// cout << w << " ";
// }
// cout << "\n";
// }
A.clear();
DatabaseHandler.close();
// -------------------------------------------------//
DatabaseHandler.open(path.toStdString() + "/Costs.csv");
if (DatabaseHandler.is_open()){
while(getline(DatabaseHandler, line)){
stringstream lineStream(line);
while(getline(lineStream,word,',')){
A.push_back(string(word));
}
costs.push_back(move(A));
}
}
else{
return (0);
}
// for (auto str : costs){
// for (auto w : str){
// cout << w << " ";
// }
// cout << "\n";
// }
A.clear();
DatabaseHandler.close();
DatabaseHandler.open(path.toStdString() + "/Institute.csv");
if (DatabaseHandler.is_open()){
while(getline(DatabaseHandler, line)){
stringstream lineStream(line);
while(getline(lineStream,word,',')){
A.push_back(string(word));
}
inst.push_back(move(A));
}
}
else{
return (0);
}
// for (auto str : inst){
// for (auto w : str){
// cout << w << " ";
// }
// cout << "\n";
// }
A.clear();
DatabaseHandler.close();
DatabaseHandler.open(path.toStdString() + "/Transport.csv");
if (DatabaseHandler.is_open()){
while(getline(DatabaseHandler, line)){
stringstream lineStream(line);
while(getline(lineStream,word,',')){
A.push_back(string(word));
}
transport.push_back(move(A));
}
}
else{
return (0);
}
// for (auto str : transport){
// for (auto w : str){
// cout << w << " ";
// }
// cout << "\n";
// }
A.clear();
DatabaseHandler.close();
return 1;
}
int Parcer::getOtherMontlyCosts(const std::string& city, int age) {
/* Получаем из базы данных средние по региону затраты в данном месяце
для людей данного возраста
(по остальным статьям кроме еды, транспорта и развлечений) */
for (size_t i = 1; i < costs.size(); i++){
if ((stoi(costs[i][1]) == age) && (costs[i][0] == city)){
return (stoi(costs[i][3]));
}
}
return 0;
}
int Parcer::getHomeFoodCost(const std::string& city, int age) {
// Получаем из базы данных средние по региону затраты на еду
for (size_t i = 1; i < costs.size(); i++){
if ((stoi(costs[i][1]) == age) && (costs[i][0] == city)){
return (stoi(costs[i][3]));
}
}
return 0;
}
int Parcer::getCinemaCost(const std::string& city, const std::string& cinema) {
// Получаем из базы данных стоимость билета на вечерний сеанс в данном кинотетре
for (size_t i = 1; i < caffy.size(); i++){
if ((caffy[i][0] == city) && (costs[i][4] == cinema)){
return (stoi(caffy[i][5]));
}
}
return 0;
}
int Parcer::getCoffeeCost(const std::string& city, const std::string& coffee) {
// Получаем из базы данных средний чек в данном баре
for (size_t i = 1; i < caffy.size(); i++){
if ((caffy[i][0] == city) && (costs[i][2] == coffee)){
return (stoi(caffy[i][3]));
}
}
return 0;
}
int Parcer::getWeekandCost(const std::string& city, const std::string& cinema,
const std::string& coffee, int age) {
/* По выходным дням расходы складываются из стоимости:
- похода в кино (пешком)
- похода в кафе (пешком)
- завтрака и обеда дома */
return static_cast<uint>(0.66 * 0.03 * getHomeFoodCost(city, age) +
getCinemaCost(city, cinema) + getCoffeeCost(city, coffee) + 0.5);
}
int Parcer::getInstituteDinnerCost(const std::string& city, const std::string& institute) {
// Получаем из базы данных среднюю стоимость обеда в столовой данного института
for (size_t i = 0; i < inst.size(); i++){
if (inst[i][0] == city && inst[i][1] == institute){
return(stoi(inst[i][2]));
}
}
return 0;
}
int Parcer::getTransportCost(const std::string& city, const std::string& homeAddress,
const std::string& institute) {
// Получаем из базы данных стоимость кратчайшей дороги до инстиутта
for (size_t i = 0; i < transport.size(); i++){
if (transport[i][0] == city && transport[i][1] == homeAddress && transport[i][2] == institute){
return(stoi(transport[i][3]));
}
}
return 0;
}
int Parcer::getWorkdayCost(const std::string& city, const std::string& homeAddress,
const std::string& institute, int age) {
/* По рабочим дням расходы складываются из стоимости:
- дороги до института и обратно
- обеда в институтской столовой
- завтрака и обеда дома */
return static_cast<uint>(2 * getTransportCost(city, homeAddress, institute) +
getInstituteDinnerCost(city, institute) + 0.66 * 0.03 * getHomeFoodCost(city, age) + 0.5);
}
int Parcer::getCosts(const std::string& city, const std::string& homeAddress,
const std::string& institute, const std::string& cinema,
const std::string& coffee, int age) {
return 22 * getWorkdayCost(city, homeAddress, institute, age) +
9 * getWeekandCost(city, cinema, coffee, age) +
getOtherMontlyCosts(city, age);
}
bool Parcer::isCity(const string& city) {
int k = 0;
for (size_t i = 0; i < caffy.size(); i += 1){
if (caffy[i][0] == city){
k++;
}
}
for (size_t i = 0; i < costs.size(); i += 1){
if (costs[i][0] == city){
k++;
}
}
for (size_t i = 0; i < inst.size(); i += 1){
if (inst[i][0] == city){
k++;
}
}
for (size_t i = 0; i < transport.size(); i += 1){
if (transport[i][0] == city){
k++;
}
}
if (k >= 1){
return 1;
}
return 0;
}
bool Parcer::is_Caffy(const string& city, const string& caf){
for (size_t i = 0; i < caffy.size(); i += 1){
if (caffy[i][0] == city && caffy[i][2] == caf){
return (1);
}
}
return (0);
}
bool Parcer::is_Cinema(const string& city, const string& cinema){
for (size_t i = 0; i < caffy.size(); i += 1){
if (caffy[i][0] == city && caffy[i][4] == cinema){
return (1);
}
}
return (0);
}
bool Parcer::isAddress(const string& city, const string& address) {
for (size_t i = 0; i < transport.size(); i += 1){
if (transport[i][0] == city && transport[i][1] == address){
return (1);
}
}
return (0);
}
bool Parcer::is_Inst(const string& city, const string& instit){
for (size_t i = 0; i < inst.size(); i += 1){
if (inst[i][0] == city && inst[i][2] == instit){
return (1);
}
}
return (0);
}
bool Parcer::is_Age(int age){
for (size_t i = 0; i < costs.size(); i += 1){
if (stoi(costs[i][1]) == age){
return (1);
}
}
return (0);
}