WIP reportgen
This commit is contained in:
parent
6706f6a58e
commit
a79081febf
199
Interface.cpp
199
Interface.cpp
@ -9,7 +9,7 @@
|
|||||||
void interface(vector<Park_spot>& spots) {
|
void interface(vector<Park_spot>& spots) {
|
||||||
/*
|
/*
|
||||||
string introduction = "P A R K M A N N E"; //logo animation, disable during testing
|
string introduction = "P A R K M A N N E"; //logo animation, disable during testing
|
||||||
text_animation(introduction, 50);
|
text_animation(introduction, 50);
|
||||||
*/
|
*/
|
||||||
|
|
||||||
cout << "\nWelcome to the parking system. Please login..";
|
cout << "\nWelcome to the parking system. Please login..";
|
||||||
@ -25,16 +25,16 @@ void interface(vector<Park_spot>& spots) {
|
|||||||
cout << "ERROR: wrong password. Please retype your password:\n";
|
cout << "ERROR: wrong password. Please retype your password:\n";
|
||||||
std::getline(cin, password);
|
std::getline(cin, password);
|
||||||
}
|
}
|
||||||
if(query_role_customer(id)==1){
|
if (query_role_customer(id) == 1) {
|
||||||
interface_admin(spots);
|
interface_admin(spots);
|
||||||
} else if(query_role_customer(id)==0){
|
} else if (query_role_customer(id) == 0) {
|
||||||
interface_member(spots, c);
|
interface_member(spots, c);
|
||||||
} else {
|
} else {
|
||||||
cout << "ERROR ROLE_INVALID!";
|
cout << "ERROR ROLE_INVALID!";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void interface_member(vector<Park_spot>& spots,Customer& c) {
|
void interface_member(vector<Park_spot>& spots, Customer& c) {
|
||||||
cout << "\nLogged in succesfully!\n";
|
cout << "\nLogged in succesfully!\n";
|
||||||
cout << "select an option:\n [1] Parking\n[2]Monthly report\n";
|
cout << "select an option:\n [1] Parking\n[2]Monthly report\n";
|
||||||
int option;
|
int option;
|
||||||
@ -77,53 +77,49 @@ void interface_admin(vector<Park_spot>& spots) {
|
|||||||
cin >> option_1;
|
cin >> option_1;
|
||||||
cin.ignore(10000, '\n');
|
cin.ignore(10000, '\n');
|
||||||
switch (option_1) {
|
switch (option_1) {
|
||||||
case 1: {
|
case 1: {
|
||||||
reports_from_allparkspots();
|
reports_from_allparkspots();
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case 2: {
|
case 2: {
|
||||||
reports_from_allparkspots(true);
|
reports_from_allparkspots(true);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case 3: {
|
case 3: {
|
||||||
cout << "Which parking spot would you like a report on?\n";
|
cout << "Which parking spot would you like a report on?\n";
|
||||||
cout << "Parking spot ID: ";
|
cout << "Parking spot ID: ";
|
||||||
int spotID;
|
int spotID;
|
||||||
cin >> spotID;
|
cin >> spotID;
|
||||||
cin.ignore(10000, '\n');
|
cin.ignore(10000, '\n');
|
||||||
reports_from_parkspot(spotID);
|
reports_from_parkspot(spotID);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case 4: {
|
case 4: {
|
||||||
cout << "Which parking spot would you like a report on?\n";
|
cout << "Which parking spot would you like a report on?\n";
|
||||||
cout << "Parking spot ID: ";
|
cout << "Parking spot ID: ";
|
||||||
int spotID;
|
int spotID;
|
||||||
cin >> spotID;
|
cin >> spotID;
|
||||||
cin.ignore(10000, '\n');
|
cin.ignore(10000, '\n');
|
||||||
reports_from_parkspot(spotID, true);
|
reports_from_parkspot(spotID, true);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
/*case 5: {
|
/*case 5: {
|
||||||
cout << "Which month would you like a report on?\n";
|
cout << "Which month would you like a report on?\n";
|
||||||
cout << "[1] January, [2] February, [3] March, [4] April, [5] May,"
|
cout << "[1] January, [2] February, [3] March, [4] April, [5] May,"
|
||||||
"\n[6] June, [7] July, [8] August, [9] September, [10] October, [11] November, [12] December\n";
|
"\n[6] June, [7] July, [8] August, [9] September, [10] October, [11] November, [12]
|
||||||
cout << "Enter month number: ";
|
December\n"; cout << "Enter month number: "; int month; cin >> month; cin.ignore(10000,
|
||||||
int month;
|
'\n'); report_from_month(month); break;
|
||||||
cin >> month;
|
}
|
||||||
cin.ignore(10000, '\n');
|
case 6: {
|
||||||
report_from_month(month);
|
cout << "Which week would you like a report on?\n";
|
||||||
break;
|
cout << "Enter week number: ";
|
||||||
}
|
int week;
|
||||||
case 6: {
|
cin >> week;
|
||||||
cout << "Which week would you like a report on?\n";
|
cin.ignore(10000, '\n');
|
||||||
cout << "Enter week number: ";
|
report_from_week(week);
|
||||||
int week;
|
break;
|
||||||
cin >> week;
|
}*/
|
||||||
cin.ignore(10000, '\n');
|
default:
|
||||||
report_from_week(week);
|
|
||||||
break;
|
|
||||||
}*/
|
|
||||||
default:
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -135,14 +131,14 @@ void interface_admin(vector<Park_spot>& spots) {
|
|||||||
cin >> option_2;
|
cin >> option_2;
|
||||||
cin.ignore(10000, '\n');
|
cin.ignore(10000, '\n');
|
||||||
switch (option_2) {
|
switch (option_2) {
|
||||||
case 1: {
|
case 1: {
|
||||||
current_status_parkspots(spots);
|
current_status_parkspots(spots);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case 2: {
|
case 2: {
|
||||||
new_parkspot(spots);
|
new_parkspot(spots);
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -154,15 +150,15 @@ void interface_admin(vector<Park_spot>& spots) {
|
|||||||
cin >> option_3;
|
cin >> option_3;
|
||||||
cin.ignore(10000, '\n');
|
cin.ignore(10000, '\n');
|
||||||
switch (option_3) {
|
switch (option_3) {
|
||||||
case 1: {
|
case 1: {
|
||||||
new_customer();
|
new_customer();
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case 2: {
|
case 2: {
|
||||||
new_admin();
|
new_admin();
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -204,7 +200,7 @@ void park(Customer& c, vector<Park_spot>& spots) {
|
|||||||
query_parkspot_with_id(c.parked_at(), spots).clock(c);
|
query_parkspot_with_id(c.parked_at(), spots).clock(c);
|
||||||
cout << "You have sucessfully clocked out.";
|
cout << "You have sucessfully clocked out.";
|
||||||
} else {
|
} else {
|
||||||
cout << "OK, have a nice day."; //exit to customer login
|
cout << "OK, have a nice day."; // exit to customer login
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -230,7 +226,7 @@ void new_customer() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void new_admin() {
|
void new_admin() {
|
||||||
int vtype = 2; //revision required! Needs to be set to NULL
|
int vtype = 2; // revision required! Needs to be set to NULL
|
||||||
string name;
|
string name;
|
||||||
string password;
|
string password;
|
||||||
string telephone;
|
string telephone;
|
||||||
@ -255,3 +251,66 @@ void new_parkspot(vector<Park_spot>& spots) {
|
|||||||
spots.push_back(newspot);
|
spots.push_back(newspot);
|
||||||
cout << "New parking spot sucessfully created.\n";
|
cout << "New parking spot sucessfully created.\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// time stuff-----------------------------------------------------
|
||||||
|
|
||||||
|
pair<int, int> create_month_period() {
|
||||||
|
std::time_t t = std::time(0);
|
||||||
|
std::tm* date = std::localtime(&t);
|
||||||
|
int month, year = 0;
|
||||||
|
cout << "Which month do you want a report on?[6 2018 for June 2018]\n";
|
||||||
|
cin >> month >> year;
|
||||||
|
date->tm_year = year - 1900;
|
||||||
|
date->tm_mday = 1;
|
||||||
|
date->tm_mon = month - 1;
|
||||||
|
pair<int, int> period;
|
||||||
|
period.first = mktime(date);
|
||||||
|
date->tm_mon = month;
|
||||||
|
period.second = mktime(date);
|
||||||
|
return period;
|
||||||
|
}
|
||||||
|
|
||||||
|
pair<int, int> create_week_period() {
|
||||||
|
std::time_t t = std::time(0);
|
||||||
|
std::tm* date = std::localtime(&t);
|
||||||
|
int day, month, year = 0;
|
||||||
|
cout << "Which month do you want a report on?[ 20 6 2018 for June 20th, 2018]\n";
|
||||||
|
cin >> day >> month >> year;
|
||||||
|
date->tm_year = year - 1900;
|
||||||
|
date->tm_mday = day;
|
||||||
|
date->tm_mon = month - 1;
|
||||||
|
date->tm_hour = 0;
|
||||||
|
date->tm_min = 0;
|
||||||
|
pair<int, int> period;
|
||||||
|
period.first = mktime(date);
|
||||||
|
period.second = period.first + 604800; // plus 7 days in seconds
|
||||||
|
return period;
|
||||||
|
}
|
||||||
|
|
||||||
|
// ------------------------------ report stuff
|
||||||
|
|
||||||
|
void report_all_spots(bool weekly) {
|
||||||
|
pair<int, int> period;
|
||||||
|
if (weekly) {
|
||||||
|
pair<int, int> period = create_week_period();
|
||||||
|
} else {
|
||||||
|
pair<int, int> period = create_month_period();
|
||||||
|
}
|
||||||
|
|
||||||
|
reports_from_allparkspots(period); // TODO: namechange of reports_from_allparkspots in query?
|
||||||
|
}
|
||||||
|
|
||||||
|
void report_single_spot(bool weekly) {
|
||||||
|
cout << "Which parking spot would you like a report on?\n";
|
||||||
|
cout << "Parking spot ID: ";
|
||||||
|
int spotID;
|
||||||
|
cin >> spotID;
|
||||||
|
cin.ignore(10000, '\n');
|
||||||
|
pair<int, int> period;
|
||||||
|
if (weekly) {
|
||||||
|
pair<int, int> period = create_week_period();
|
||||||
|
} else {
|
||||||
|
pair<int, int> period = create_month_period();
|
||||||
|
}
|
||||||
|
reports_from_parkspot(spotID, period);
|
||||||
|
}
|
||||||
|
63
Query.cpp
63
Query.cpp
@ -84,33 +84,6 @@ int query_role_customer(int id){
|
|||||||
//------------------------------- parkspot info
|
//------------------------------- parkspot info
|
||||||
|
|
||||||
|
|
||||||
pair<int, int> create_month_period(int month, int year) {
|
|
||||||
std::time_t t = std::time(0);
|
|
||||||
std::tm* date = std::localtime(&t);
|
|
||||||
date->tm_year = year - 1900;
|
|
||||||
date->tm_mday = 1;
|
|
||||||
date->tm_mon = month - 1;
|
|
||||||
pair<int, int> period;
|
|
||||||
period.first = mktime(date);
|
|
||||||
date->tm_mon = month;
|
|
||||||
period.second = mktime(date);
|
|
||||||
return period;
|
|
||||||
}
|
|
||||||
|
|
||||||
pair<int, int> create_week_period(int day, int month, int year){
|
|
||||||
std::time_t t = std::time(0);
|
|
||||||
std::tm* date = std::localtime(&t);
|
|
||||||
date->tm_year = year - 1900;
|
|
||||||
date->tm_mday = day;
|
|
||||||
date->tm_mon = month - 1;
|
|
||||||
date->tm_hour = 0;
|
|
||||||
date->tm_min = 0;
|
|
||||||
pair<int, int> period;
|
|
||||||
period.first = mktime(date);
|
|
||||||
period.second = period.first + 604800; // plus 7 days in seconds
|
|
||||||
return period;
|
|
||||||
}
|
|
||||||
|
|
||||||
// -- parkspots info, report gen
|
// -- parkspots info, report gen
|
||||||
|
|
||||||
Park_spot query_parkspot_with_id(int id, vector<Park_spot>& parkspots) {
|
Park_spot query_parkspot_with_id(int id, vector<Park_spot>& parkspots) {
|
||||||
@ -121,22 +94,12 @@ Park_spot query_parkspot_with_id(int id, vector<Park_spot>& parkspots) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void reports_from_parkspot(int spotid, bool weekly) {
|
void reports_from_parkspot(int spotid, pair<int, int> period) {
|
||||||
std::time_t t = std::time(0); // get time now
|
|
||||||
std::tm* now = std::localtime(&t);
|
|
||||||
|
|
||||||
if (weekly) {
|
|
||||||
now->tm_wday = 1;
|
|
||||||
} else {
|
|
||||||
now->tm_mday = 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
int s_since_epoch = mktime(now);
|
|
||||||
|
|
||||||
vector<Park_time> park_times;
|
vector<Park_time> park_times;
|
||||||
SQLite::Statement query(data::db, "SELECT * FROM Park_time WHERE spot_id = ? AND start > ?;");
|
SQLite::Statement query(data::db, "SELECT * FROM Park_time WHERE spot_id = ? AND start > ? AND end < ?;");
|
||||||
query.bind(1, spotid);
|
query.bind(1, spotid);
|
||||||
query.bind(2, s_since_epoch);
|
query.bind(2, period.first);
|
||||||
|
query.bind(3, period.second);
|
||||||
while (query.executeStep()) {
|
while (query.executeStep()) {
|
||||||
int id = query.getColumn(0);
|
int id = query.getColumn(0);
|
||||||
int cid = query.getColumn(1);
|
int cid = query.getColumn(1);
|
||||||
@ -152,20 +115,12 @@ void reports_from_parkspot(int spotid, bool weekly) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void reports_from_allparkspots(bool weekly) {
|
void reports_from_allparkspots(pair<int, int> period) {
|
||||||
std::time_t t = std::time(0); // get time now
|
|
||||||
std::tm* now = std::localtime(&t);
|
|
||||||
if (weekly) {
|
|
||||||
now->tm_wday = 1;
|
|
||||||
} else {
|
|
||||||
now->tm_mday = 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
int s_since_epoch = mktime(now);
|
|
||||||
|
|
||||||
vector<Park_time> park_times;
|
vector<Park_time> park_times;
|
||||||
SQLite::Statement query(data::db, "SELECT * FROM Park_time WHERE start > ?;");
|
SQLite::Statement query(data::db, "SELECT * FROM Park_time WHERE start > ? AND end < >;");
|
||||||
query.bind(1, s_since_epoch);
|
query.bind(1, period.first);
|
||||||
|
query.bind(2, period.second);
|
||||||
|
|
||||||
while (query.executeStep()) {
|
while (query.executeStep()) {
|
||||||
int id = query.getColumn(0);
|
int id = query.getColumn(0);
|
||||||
int cid = query.getColumn(1);
|
int cid = query.getColumn(1);
|
||||||
|
@ -5,10 +5,19 @@
|
|||||||
|
|
||||||
using std::cin;
|
using std::cin;
|
||||||
|
|
||||||
|
|
||||||
void interface(vector<Park_spot>& spots);
|
void interface(vector<Park_spot>& spots);
|
||||||
void interface_member(vector<Park_spot>& spots, Customer& c);
|
void interface_member(vector<Park_spot>& spots, Customer& c);
|
||||||
void interface_admin(vector<Park_spot>& spots);
|
void interface_admin(vector<Park_spot>& spots);
|
||||||
void park(Customer& c, vector<Park_spot>& spots);
|
void park(Customer& c, vector<Park_spot>& spots);
|
||||||
void new_customer();
|
void new_customer();
|
||||||
void new_admin();
|
void new_admin();
|
||||||
void new_parkspot(vector<Park_spot>& spots);
|
void new_parkspot(vector<Park_spot>& spots);
|
||||||
|
|
||||||
|
// time creation
|
||||||
|
pair<int, int> create_month_period() ;
|
||||||
|
pair<int, int> create_week_period();
|
||||||
|
|
||||||
|
// report stuff
|
||||||
|
void report_single_spot(bool weekly);
|
||||||
|
void report_all_spots(bool weekly)
|
@ -62,11 +62,10 @@ vector<Park_spot> populate_spots();
|
|||||||
Park_spot query_parkspot_with_id(int id, vector<Park_spot>& parkspots);
|
Park_spot query_parkspot_with_id(int id, vector<Park_spot>& parkspots);
|
||||||
int query_role_customer(int id);
|
int query_role_customer(int id);
|
||||||
|
|
||||||
void reports_from_parkspot(int spotid, bool weekly = false);
|
void reports_from_parkspot(int spotid, pair<int, int> period);
|
||||||
void reports_from_allparkspots(bool weekly = false);
|
void reports_from_allparkspots(pair<int, int> period);
|
||||||
|
|
||||||
void current_status_parkspots(vector<Park_spot>& spots);
|
void current_status_parkspots(vector<Park_spot>& spots);
|
||||||
|
|
||||||
pair<int, int> create_month_period(int month, int year) ;
|
|
||||||
pair<int, int> create_week_period(int day, int month, int year);
|
|
||||||
#endif // CUSTOMER_H
|
#endif // CUSTOMER_H
|
||||||
|
Loading…
Reference in New Issue
Block a user