Customer almost done. need to make ctor that can make Customer from db

This commit is contained in:
MassiveAtoms
2019-06-26 23:32:06 -03:00
parent b377ca043d
commit 77919e4ce0
5 changed files with 76 additions and 32 deletions

View File

@ -1,9 +1,27 @@
#include "headers/Customer.h"
#include <iostream>
// moet aangepast worden om een verhicle_type toe te voegen
Customer::Customer(int id_, string name_, Verhicle_type verhicle_) : id{id_}, name{name_}, verhicle{verhicle_}, card_code{gen_cardcode()} {}
// constructors
Customer::Customer(string name_, Verhicle_type verhicle_, SQLite::Database& db):
name{name_}, verhicle{verhicle_},
card_code{gen_cardcode()}
{
id = auto_increment_db(db) + 1;
save_db(db);
}
Customer::Customer(int id_, string name_, string card_code_, Verhicle_type verhicle_, vector<Park_time> instances)
: name{name_},
card_code{card_code_},
verhicle{verhicle_},
park_instances{instances}
{
}
// clock methods ====================================================================================
/*
creert een park_time object met start time= nu, en voegt t toe aan een vector.
*/
@ -15,7 +33,7 @@ void Customer::clock_in(int s_id) {
// edit de laatste park_time obj in de vector zodat de end_time = now.
void Customer::clock_out(int s_id) { park_instances[park_instances.size() - 1].clock_out(id, s_id); }
// monthly report generation. moet nog een manier vinden om af te bakenen.
// report gen
void Customer::gen_monthly() {
std::cout << "NAME: " << name << " card code: " << card_code << "\n";
std::cout << "-------------------------------------------------\n";
@ -26,23 +44,49 @@ void Customer::gen_monthly() {
std::cout << "-------------------------------------------------\n\n";
}
void Customer::update_db(SQLite::Database& database) {
string statement{"insert into Customer values (, '', '', )"};
//================================================================================================
// functions that interact with the database
void Customer::save_db(SQLite::Database& database) {
string statement{"insert into Customer values (, '', '', );"};
// after ( = 28)
statement.insert(38, std::to_string(int(verhicle)));
statement.insert(36, card_code);
statement.insert(32, name);
statement.insert(29, std::to_string(id));
std::cout << statement;
statement.insert(29, "null");
SQLite::Transaction transaction(database);
database.exec(statement);
transaction.commit();
}
//
void Customer::update_db(SQLite::Database& database) {
string statement = "UPDATE Customer SET name = \"\", card_code = \"\" where id = '';";
statement.insert(58, std::to_string(id));
statement.insert(44, card_code);
statement.insert(28, name);
// std::cout << statement; TODO: set some logging here
database.exec(statement);
}
// used to generate random card codes that will be used to authenticate users.
// they represent contactless rf cards that users will use to authenticate
void Customer::delete_db(SQLite::Database& database) {
string statement = "delete from Customer where id= ;";
statement.insert(statement.length() - 2, std::to_string(id));
// std::cout << statement;
SQLite::Transaction transaction(database);
database.exec(statement);
transaction.commit();
}
int Customer::auto_increment_db(SQLite::Database& database) {
SQLite::Statement max_id(database, "select max(id) from Customer;");
int id = 0;
max_id.executeStep();
id = max_id.getColumn(0);
max_id.reset();
return id;
}
// random helpers=============================================================
std::mt19937 mt(time(0));
std::uniform_int_distribution<int> dist(65, 127);