ALL objects can be saved to db now
This commit is contained in:
parent
0eee67d3d9
commit
c058783a11
@ -53,7 +53,7 @@ void Customer::save_db() {
|
|||||||
statement.insert(38, std::to_string(int(verhicle)));
|
statement.insert(38, std::to_string(int(verhicle)));
|
||||||
statement.insert(36, card_code);
|
statement.insert(36, card_code);
|
||||||
statement.insert(32, name);
|
statement.insert(32, name);
|
||||||
statement.insert(29, "null");
|
statement.insert(29, to_string(id));
|
||||||
SQLite::Transaction transaction(data::db);
|
SQLite::Transaction transaction(data::db);
|
||||||
data::db.exec(statement);
|
data::db.exec(statement);
|
||||||
transaction.commit();
|
transaction.commit();
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
#include "headers/Park_spot.h"
|
#include "headers/Park_spot.h"
|
||||||
|
|
||||||
Park_spot::Park_spot(int id_){
|
Park_spot::Park_spot(){
|
||||||
parked = nullptr;
|
parked = nullptr;
|
||||||
id = id_;
|
id = auto_increment_db() + 1;
|
||||||
taken = false;
|
taken = false;
|
||||||
|
save_db();
|
||||||
}
|
}
|
||||||
|
|
||||||
// clock in en out, calls de juist(in/out) van de customer aan de hand van internal state van taken
|
// clock in en out, calls de juist(in/out) van de customer aan de hand van internal state van taken
|
||||||
@ -12,10 +13,61 @@ void Park_spot::clock(Customer* c_customer){
|
|||||||
parked = c_customer;
|
parked = c_customer;
|
||||||
taken = true;
|
taken = true;
|
||||||
parked->clock_in(id);
|
parked->clock_in(id);
|
||||||
|
update_db();
|
||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
taken = false;
|
taken = false;
|
||||||
parked->clock_out(id);
|
parked->clock_out(id);
|
||||||
parked = nullptr;
|
parked = nullptr;
|
||||||
|
update_db();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// --------------------- db functs
|
||||||
|
|
||||||
|
void Park_spot::update_db() {
|
||||||
|
string statement = "UPDATE Park_spot SET taken = '', customer_id = '' where id = '';";
|
||||||
|
// 29, 48, 62
|
||||||
|
statement.insert(63, to_string(id));
|
||||||
|
if (taken){
|
||||||
|
statement.insert(49, to_string(parked->id));
|
||||||
|
statement.insert(30, "true");
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
statement.insert(49, "NULL");
|
||||||
|
statement.insert(30, "false");
|
||||||
|
}
|
||||||
|
data::db.exec(statement);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void Park_spot::save_db() {
|
||||||
|
//(int id, bool taken, int customer_id)
|
||||||
|
string statement{"insert into Park_spot values ( , , );"};
|
||||||
|
// after ( = 28)
|
||||||
|
statement.insert(34, "NULL");
|
||||||
|
statement.insert(32, "false");
|
||||||
|
statement.insert(30, to_string(id));
|
||||||
|
SQLite::Transaction transaction(data::db);
|
||||||
|
data::db.exec(statement);
|
||||||
|
transaction.commit();
|
||||||
|
}
|
||||||
|
|
||||||
|
void Park_spot::delete_db() {
|
||||||
|
string statement = "delete from Park_spot where id= ;";
|
||||||
|
statement.insert(statement.length() - 2, std::to_string(id));
|
||||||
|
// std::cout << statement;
|
||||||
|
SQLite::Transaction transaction(data::db);
|
||||||
|
data::db.exec(statement);
|
||||||
|
transaction.commit();
|
||||||
|
}
|
||||||
|
|
||||||
|
int Park_spot::auto_increment_db() {
|
||||||
|
SQLite::Statement max_id(data::db, "select max(id) from Park_spot;");
|
||||||
|
int id = 0;
|
||||||
|
max_id.executeStep();
|
||||||
|
id = max_id.getColumn(0);
|
||||||
|
max_id.reset();
|
||||||
|
return id;
|
||||||
}
|
}
|
@ -77,7 +77,6 @@ void Park_time::update_db() {
|
|||||||
statement.insert(53, std::to_string(id));
|
statement.insert(53, std::to_string(id));
|
||||||
statement.insert(40, to_string(duration));
|
statement.insert(40, to_string(duration));
|
||||||
statement.insert(27, to_string(start_to_int() + duration));
|
statement.insert(27, to_string(start_to_int() + duration));
|
||||||
std::cout << statement; // TODO: set some logging here
|
|
||||||
data::db.exec(statement);
|
data::db.exec(statement);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -15,7 +15,11 @@ class Park_spot {
|
|||||||
int id;
|
int id;
|
||||||
bool taken;
|
bool taken;
|
||||||
Customer* parked; //TODO: think about memory management
|
Customer* parked; //TODO: think about memory management
|
||||||
Park_spot(int id_);
|
Park_spot();
|
||||||
void clock(Customer* c_customer);
|
void clock(Customer* c_customer);
|
||||||
private:
|
private:
|
||||||
|
void save_db();
|
||||||
|
void update_db();
|
||||||
|
void delete_db();
|
||||||
|
int auto_increment_db();
|
||||||
};
|
};
|
21
main.cpp
21
main.cpp
@ -5,6 +5,8 @@
|
|||||||
#include <vector>
|
#include <vector>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
|
#include <thread>
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Code strucure like this:
|
Code strucure like this:
|
||||||
class declarations zijn in /headers/class_naam.h, en definitions van de member
|
class declarations zijn in /headers/class_naam.h, en definitions van de member
|
||||||
@ -20,16 +22,25 @@ record die zegt dat een customer voor x tijd geparkeert heeft bij spot x, enz.
|
|||||||
De client clockt in en uit bij een spot.
|
De client clockt in en uit bij een spot.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
void Wait(int sec)
|
||||||
|
/*
|
||||||
|
a wait function where 1 sec represents 1 hour irl.
|
||||||
|
*/
|
||||||
|
{
|
||||||
|
std::this_thread::sleep_for(seconds{sec});
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
using std::cout;
|
using std::cout;
|
||||||
|
|
||||||
int main() {
|
int main() {
|
||||||
class Customer sagar{"nonsense", Verhicle_type::medium};
|
class Customer sagar{"Sagar Ramsaransing", Verhicle_type::medium};
|
||||||
sagar.update_db();
|
sagar.update_db();
|
||||||
|
Park_spot p1;
|
||||||
|
p1.clock(&sagar);
|
||||||
|
Wait(2);
|
||||||
|
p1.clock(&sagar);
|
||||||
|
|
||||||
Park_spot p1{1};
|
|
||||||
p1.clock(&sagar);
|
|
||||||
p1.clock(&sagar);
|
|
||||||
sagar.gen_monthly();
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user