-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBookStore.cpp
More file actions
executable file
·390 lines (375 loc) · 10.6 KB
/
BookStore.cpp
File metadata and controls
executable file
·390 lines (375 loc) · 10.6 KB
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
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
//
// BookStore.cpp
// BookStore
// Description CPP file of BookStore Child Class
// Created by Swasti Gupta on 5/31/15.
//
//
#include "BookStore.h"
/*
param Container object
param member of Container object whose value to be counted.
Description template function which return the no of encounters
of particular member in container object.
*/
template <class ContainerType, class ElementType>
int const count (ContainerType const & container, ElementType const & element){
int count = 0;
typename ContainerType::const_iterator i = std::find (container.begin(),
container.end(), element);
while (i != container.end()){
++count;
i = std::find (++i, container.end(), element);
}
return count;
}
/*
param priceList file path
Description reads the priceList
Return returns the GStatus for Success otherwise GParaError for Parameter Error
*/
GStatus BookStore :: readPriceList(char* filename)
{
ifstream file;
file.open(filename, ios::in);
if (!file) {
return GParamError;
}
string line;
while (std::getline(file, line))
{
if(line != "" && !line.empty())
{
std::size_t prev = 0, pos;
vector <string> wordVector;
int flag = 1;
while ((pos = line.find_first_of(",", prev)) != std::string::npos)
{
if (pos > prev)
{
string word = line.substr(prev, pos-prev);
if(flag)
{
if(word[0] != 'P')
{
return GParamError;
}
flag = 0;
}
wordVector.push_back(word);
}
prev = pos+1;
}
if (prev < line.length())
wordVector.push_back(line.substr(prev, std::string::npos));
if(wordVector.size() != 3)
{
return GParamError;
}
if(mBookMap.find(wordVector[0]) != mBookMap.end())
{
return GParamError;
}
Book b(atoi((wordVector[1]).c_str()),wordVector[2].c_str());
mBookMap[wordVector[0]] = b;
}
}
return GSuccess;
}
/*
param TransactionList file path
Description reads the TransactionList file
Return returns the GStatus for Success otherwise GParaError for Parameter Error
*/
GStatus BookStore:: readTransactionList(char* filename)
{
ifstream file;
file.open(filename, ios::in);
if (!file) {
return GParamError;
}
string line;
while (std::getline(file, line))
{
if(line != "" && !line.empty())
{
std::size_t prev = 0, pos;
vector <string> wordVector;
int flag = 1;
while ((pos = line.find_first_of(",", prev)) != std::string::npos)
{
if (pos > prev)
{
string word = line.substr(prev, pos-prev);
if(flag)
{
if(word[0] != 'C')
{
return GParamError;
}
flag = 0;
}
else
{
if(word[0] != 'P')
{
return GParamError;
}
}
wordVector.push_back(word);
}
prev = pos+1;
}
if (prev < line.length())
wordVector.push_back(line.substr(prev, std::string::npos));
if(wordVector.size() < 2)
{
return GParamError;
}
vector<string> ::iterator it = wordVector.begin();
string customerId;
if(it != wordVector.end())
customerId.assign(*it);
it++;
if(mCustomerMap.find(customerId) == mCustomerMap.end())
{
Customer customer;
mCustomerMap[customerId] = customer;
}
double sum = 0;
Transaction trnstion;
while (it != wordVector.end()) {
string bookId = *it;
if(mBookMap.find(bookId) == mBookMap.end())
{
return GParamError;
}
trnstion.addBook(bookId);
sum += mBookMap[bookId].getPrice();
it++;
}
trnstion.setCustomerId(customerId);
trnstion.setTransactionAmnt(sum);
mTransactionList.push_back(trnstion);
}
}
return GSuccess;
}
/*
Description a structure having comparison fuction for different class objects
*/
struct BookStore:: less_than_key
{
inline bool operator() (Transaction &obj1, Transaction& obj2)
{
if( obj1.getSum()!= obj2.getSum())
return (obj1.getSum() > obj2.getSum());
return (obj1.getCustomerId() < obj2.getCustomerId());
}
inline bool operator() (pair<string,int> &obj1, pair<string,int> &obj2)
{
if( obj1.second != obj2.second)
return (obj1.second > obj2.second);
return (obj1.first < obj2.first);
}
};
/*
param object of type pair <string,int>
param object of type pair <string,int>
Description // to compare values frist based on secound key values then first key values
*/
bool BookStore:: compare(pair<string,int>&obj1, pair<string,int>&obj2)
{
if( obj1.second != obj2.second)
return (obj1.second < obj2.second);
return (obj1.first < obj2.first);
}
/*
param value of number of top cutomers to be printed
Description prints the top n customers based on their no of transactions
Return returns the GStatus for Success otherwise GParaError for Parameter Error
*/
GStatus BookStore:: findNfrequentCus(int n)
{
vector<pair <string,int> > customerVisits;
map<string,Customer> ::iterator itCust = mCustomerMap.begin();
while(itCust != mCustomerMap.end() )
{
int visits = count (mTransactionList, itCust->first);
customerVisits.push_back(make_pair(itCust->first,visits));
itCust++;
}
sort(customerVisits.begin(), customerVisits.end(), less_than_key());
vector<pair <string,int> >::iterator it = customerVisits.begin();
if(it != customerVisits.end() )
{
int oldVal = it->second;
int newVal;
cout<<endl;
while (n> 0 && it != customerVisits.end()) {
newVal = it->second;
if (oldVal != newVal) {
n--;
}
if (n > 0) {
cout<<it->first<<" "<<it->second<<",";
}
oldVal = newVal;
it++;
}
cout<<endl;
}
return GSuccess;
}
/*
param value of number of top transactions to be printed
Description prints the top n transactions based on their total transaction Amount
Return returns the GStatus for Success otherwise GParaError for Parameter Error
*/
GStatus BookStore:: findNTopTrans(int n)
{
sort(mTransactionList.begin(), mTransactionList.end(), less_than_key());
vector<Transaction>::iterator it = mTransactionList.begin();
if (it != mTransactionList.end()) {
double oldVal = it->getSum();
double newVal ;
cout<<endl;
while (n>0 && it != mTransactionList.end()) {
newVal = it->getSum();
if (oldVal != newVal) {
n--;
}
if (n > 0) {
cout<<it->getCustomerId() <<" "<<it->getSum()<<",";
}
oldVal = newVal;
it++;
}
cout<<endl;
}
return GSuccess;
}
/*
param value of number of top books to be printed
Description prints the top n books based on their purchases.
Return returns the GStatus for Success otherwise GParaError for Parameter Error
*/
GStatus BookStore::findNBooks(int n)
{
int tempN = n;
vector<pair <string,int> > bookSoldInfo;
map<string,Book> ::iterator itBookId = mBookMap.begin();
while (itBookId != mBookMap.end()) {
int quantity = 0;
vector<Transaction> ::iterator itList = mTransactionList.begin();
while (itList != mTransactionList.end()) {
quantity += count(itList->getPurchasedBookList().begin(), itList->getPurchasedBookList().end(), itBookId->first);
itList++;
}
bookSoldInfo.push_back(make_pair(itBookId->first, quantity));
itBookId++;
}
sort(bookSoldInfo.begin(), bookSoldInfo.end(), less_than_key());
vector<pair <string,int> >::iterator it = bookSoldInfo.begin();
if(it != bookSoldInfo.end() )
{
int oldVal = it->second;
int newVal;
cout<<endl;
while (n> 0 && it != bookSoldInfo.end()) {
newVal = it->second;
if (oldVal != newVal) {
n--;
}
if (n > 0) {
cout<<it->first<<" "<<it->second<<",";
}
oldVal = newVal;
it++;
}
cout<<endl;
}
n = tempN;
sort(bookSoldInfo.begin(), bookSoldInfo.end(), compare);
it = bookSoldInfo.begin();
if(it != bookSoldInfo.end() )
{
int oldVal = it->second;
int newVal;
cout<<endl;
while (n> 0 && it != bookSoldInfo.end()) {
newVal = it->second;
if (oldVal != newVal) {
n--;
}
if (n > 0) {
cout<<it->first<<" "<<it->second<<",";
}
oldVal = newVal;
it++;
}
cout<<endl;
}
return GSuccess;
}
/*
param customerId
param base Value above which discount available
param denotes the applicability of discount
Description the applicability of discount
Return returns the GStatus for Success otherwise GParaError for Parameter Error
*/
GStatus BookStore::isDiscount(char* custId, double value, int* discount)
{
if(value < 1)
{
return GParamError;
}
if(mCustomerMap.find(custId) == mCustomerMap.end())
{
return GParamError;
}
vector<Transaction> :: iterator it = mTransactionList.begin();
int totalPurchase = 0;
while (it != mTransactionList.end()) {
if(it->getCustomerId().compare(custId)== 0)
{
totalPurchase += it->getSum();
}
it++;
}
if (totalPurchase > value) {
*discount = 1;
}
return GSuccess;
}
/*
param integer varialble upto which values to be printed
Description calls the private functions for printing values
Return returns the GStatus for Success otherwise GParaError for Parameter Error
*/
GStatus BookStore :: getNValues(int n)
{
if( n <= 0 || mBookMap.size() < n || mTransactionList.size() < n
|| mCustomerMap.size() < n)
{
return GParamError;
}
GStatus status;
status = findNfrequentCus(n);
if(status != GSuccess)
{
return status;
}
status = findNTopTrans(n);
if(status != GSuccess)
{
return status;
}
status = findNBooks(n);
if(status != GSuccess)
{
return status;
}
return GSuccess;
}