Compare commits

..

No commits in common. "3be241810283e49827fafbd32e6334583b05ba49" and "2fb72f17018f24abf4f0bb7a6ac3f18c8f63c8c5" have entirely different histories.

13 changed files with 37 additions and 228 deletions

View file

@ -14,7 +14,6 @@ set(CORE_SOURCES
seller.cpp seller.cpp
article.cpp article.cpp
sale.cpp sale.cpp
marketplace.cpp
) )
add_library(core STATIC ${CORE_SOURCES}) add_library(core STATIC ${CORE_SOURCES})

View file

@ -20,8 +20,4 @@ std::string Article::getDescription() { return description_; }
Seller* Article::getSeller() { return sellerPtr_; } Seller* Article::getSeller() { return sellerPtr_; }
int Article::getPrice() { return price_; } int Article::getPrice() { return price_; }
int Article::getArticleNo() {
return articleNo_;
}

View file

@ -24,7 +24,6 @@ class Article : public Entity
//void setSeller(std::shared_ptr<Seller> sellerPtr); //void setSeller(std::shared_ptr<Seller> sellerPtr);
void setSeller(Seller* sellerPtr); void setSeller(Seller* sellerPtr);
int getArticleNo();
std::string getDescription(); std::string getDescription();
Seller* getSeller(); Seller* getSeller();
int getPrice(); int getPrice();

View file

@ -145,7 +145,7 @@ void Database::beginTransaction() { exec("BEGIN TRANSACTION"); }
void Database::endTransaction() { exec("END TRANSACTION"); } void Database::endTransaction() { exec("END TRANSACTION"); }
unsigned int Database::storeSellers(std::vector<std::shared_ptr<Seller>>& sellers) unsigned int Database::storeSellers(std::vector<Seller>& sellers)
{ {
int retCode{}; int retCode{};
int count{}; int count{};
@ -154,7 +154,7 @@ unsigned int Database::storeSellers(std::vector<std::shared_ptr<Seller>>& seller
beginTransaction(); beginTransaction();
for (auto& seller : sellers) { for (auto& seller : sellers) {
if (seller->getState() == Seller::State::NEW) { if (seller.getState() == Entity::State::NEW) {
retCode = sqlite3_prepare_v2( retCode = sqlite3_prepare_v2(
db_, db_,
"INSERT INTO sellers" "INSERT INTO sellers"
@ -165,52 +165,16 @@ unsigned int Database::storeSellers(std::vector<std::shared_ptr<Seller>>& seller
if (retCode != SQLITE_OK) if (retCode != SQLITE_OK)
throw std::runtime_error(sqlite3_errmsg(db_)); throw std::runtime_error(sqlite3_errmsg(db_));
int test = sqlite3_bind_text(stmt, sqlite3_bind_parameter_index(stmt, ":uuid"),
boost::uuids::to_string(seller->getUuid()).c_str(), -1, SQLITE_TRANSIENT);
std::cout << "!!! TEST: " << test << "\n";
sqlite3_bind_int(stmt, sqlite3_bind_parameter_index(stmt, ":seller_no"),
seller->getSellerNo());
sqlite3_bind_text(stmt, sqlite3_bind_parameter_index(stmt, ":first_name"),
seller->getFirstName().c_str(), -1, SQLITE_TRANSIENT);
sqlite3_bind_text(stmt, sqlite3_bind_parameter_index(stmt, ":last_name"),
seller->getLastName().c_str(), -1, SQLITE_TRANSIENT);
sqlite3_bind_int(stmt, sqlite3_bind_parameter_index(stmt, ":num_offered_articles"),
seller->numArticlesOffered());
retCode = sqlite3_step(stmt);
if (retCode != SQLITE_DONE) {
std::string errMsg(sqlite3_errmsg(db_));
sqlite3_finalize(stmt);
throw std::runtime_error(errMsg);
}
seller->setState(Seller::State::OK);
++count;
sqlite3_finalize(stmt);
} else if (seller->getState() == Seller::State::UPDATE) {
// TODO
retCode = sqlite3_prepare_v2(
db_,
"UPDATE sellers SET"
" seller_no = :seller_no, first_name = :first_name,"
" last_name = :last_name, num_offered_articles = :num_offered_articles"
" WHERE id = :uuid",
-1, &stmt, nullptr);
if (retCode != SQLITE_OK)
throw std::runtime_error(sqlite3_errmsg(db_));
sqlite3_bind_text(stmt, sqlite3_bind_parameter_index(stmt, ":uuid"), sqlite3_bind_text(stmt, sqlite3_bind_parameter_index(stmt, ":uuid"),
boost::uuids::to_string(seller->getUuid()).c_str(), -1, SQLITE_TRANSIENT); boost::uuids::to_string(seller.getUuid()).c_str(), -1, nullptr);
sqlite3_bind_int(stmt, sqlite3_bind_parameter_index(stmt, ":seller_no"), sqlite3_bind_int(stmt, sqlite3_bind_parameter_index(stmt, ":seller_no"),
seller->getSellerNo()); seller.getSellerNo());
sqlite3_bind_text(stmt, sqlite3_bind_parameter_index(stmt, ":first_name"), sqlite3_bind_text(stmt, sqlite3_bind_parameter_index(stmt, ":first_name"),
seller->getFirstName().c_str(), -1, SQLITE_TRANSIENT); seller.getFirstName().c_str(), -1, nullptr);
sqlite3_bind_text(stmt, sqlite3_bind_parameter_index(stmt, ":last_name"), sqlite3_bind_text(stmt, sqlite3_bind_parameter_index(stmt, ":last_name"),
seller->getLastName().c_str(), -1, SQLITE_TRANSIENT); seller.getLastName().c_str(), -1, nullptr);
sqlite3_bind_int(stmt, sqlite3_bind_parameter_index(stmt, ":num_offered_articles"), sqlite3_bind_int(stmt, sqlite3_bind_parameter_index(stmt, ":num_offered_articles"),
seller->numArticlesOffered()); seller.numArticlesOffered());
retCode = sqlite3_step(stmt); retCode = sqlite3_step(stmt);
@ -220,68 +184,12 @@ unsigned int Database::storeSellers(std::vector<std::shared_ptr<Seller>>& seller
sqlite3_finalize(stmt); sqlite3_finalize(stmt);
throw std::runtime_error(errMsg); throw std::runtime_error(errMsg);
} }
seller->setState(Seller::State::OK); seller.setState(Seller::State::OK);
++count; ++count;
sqlite3_finalize(stmt); sqlite3_finalize(stmt);
} else if (seller->getState() == Seller::State::DELETE) {
count += static_cast<int>(seller->getArticles(false).size());
// TODO
}
if (seller->getState() != Seller::State::DELETE) {
count += storeArticles(stmt, seller->getArticles(false));
} }
} }
endTransaction(); endTransaction();
return count;
}
unsigned int Database::storeArticles(sqlite3_stmt* stmt, std::vector<Article*> articles)
{
int retCode{};
int count{};
for (auto& article : articles) {
if (article->getState() == Article::State::NEW) {
retCode = sqlite3_prepare_v2(
db_,
"INSERT INTO articles"
" (id, seller_id, source_no, article_no, description, price)"
" VALUES (:uuid, :seller_id, :source_no, :article_no, :desc, :price)",
-1, &stmt, nullptr);
if (retCode != SQLITE_OK)
throw std::runtime_error(sqlite3_errmsg(db_));
sqlite3_bind_text(stmt, sqlite3_bind_parameter_index(stmt, ":uuid"),
boost::uuids::to_string(article->getUuid()).c_str(), -1, SQLITE_TRANSIENT);
sqlite3_bind_text(stmt, sqlite3_bind_parameter_index(stmt, ":seller_id"),
boost::uuids::to_string(article->getSeller()->getUuid()).c_str(), -1,
SQLITE_TRANSIENT);
sqlite3_bind_int(stmt, sqlite3_bind_parameter_index(stmt, ":source_no"),
article->getSourceNo());
sqlite3_bind_int(stmt, sqlite3_bind_parameter_index(stmt, ":article_no"),
article->getArticleNo());
sqlite3_bind_text(stmt, sqlite3_bind_parameter_index(stmt, ":desctiption"),
article->getDescription().c_str(), -1, SQLITE_TRANSIENT);
sqlite3_bind_int(stmt, sqlite3_bind_parameter_index(stmt, ":price"),
article->getPrice());
retCode = sqlite3_step(stmt);
if (retCode != SQLITE_DONE) {
std::string errMsg(sqlite3_errmsg(db_));
sqlite3_finalize(stmt);
throw std::runtime_error(errMsg);
}
article->setState(Seller::State::OK);
++count;
sqlite3_finalize(stmt);
} else if (article->getState() == Article::State::UPDATE) {
}
}
return count; return count;
} }

View file

@ -9,23 +9,21 @@
class Database class Database
{ {
public: public:
Database(const std::string& dbname); Database(const std::string& dbname);
~Database(); ~Database();
Database(const Database&) = delete; Database(const Database&) = delete;
Database& operator=(const Database&) = delete; Database& operator=(const Database&) = delete;
void exec(const std::string& sql); void exec(const std::string& sql);
void init(); void init();
unsigned int storeSellers(std::vector<std::shared_ptr<Seller>>& sellers); unsigned int storeSellers(std::vector<Seller>& sellers);
private:
private: sqlite3 *db_;
sqlite3* db_;
std::string dbname_; std::string dbname_;
void beginTransaction(); void beginTransaction();
void endTransaction(); void endTransaction();
void createNew(); void createNew();
int getVersion(); int getVersion();
unsigned int storeArticles(sqlite3_stmt* stmt, std::vector<Article*> articles);
}; };
#endif // DATABASE_H #endif // DATABASE_H

View file

@ -22,12 +22,4 @@ void Entity::setUuidFromString(const std::string& uuidString)
inline Entity::State Entity::getState() const inline Entity::State Entity::getState() const
{ {
return state_; return state_;
}
void Entity::setSourceNo(int sourceNo) {
sourceNo_ = sourceNo;
}
int Entity::getSourceNo() const {
return sourceNo_;
} }

View file

@ -12,20 +12,15 @@ class Entity
enum class State { NEW, UPDATE, DELETE, OK }; enum class State { NEW, UPDATE, DELETE, OK };
virtual ~Entity() = 0; virtual ~Entity() = 0;
const boost::uuids::uuid& getUuid() const { return uuid_; };
void createUuid(); void createUuid();
void setUuidFromString(const std::string& uuidString); void setUuidFromString(const std::string& uuidString);
void setState(State state) { state_ = state; }
void setSourceNo(int sourceNo);
const boost::uuids::uuid& getUuid() const { return uuid_; };
virtual State getState() const; virtual State getState() const;
virtual int getSourceNo() const; void setState(State state) { state_ = state; }
private: private:
boost::uuids::uuid uuid_{}; boost::uuids::uuid uuid_{};
State state_{State::NEW}; State state_{State::NEW};
int sourceNo_{};
}; };
#endif // ENTITY_H #endif // ENTITY_H

View file

@ -1,9 +0,0 @@
#include "marketplace.h"
#include "database.h"
void Marketplace::storeToDb() {
const std::string DB_PATH{"/tmp/kima2.db"};
Database db(DB_PATH);
db.storeSellers(sellers_);
}

View file

@ -1,21 +0,0 @@
#ifndef MARKETPLACE_H
#define MARKETPLACE_H
#include "article.h"
#include "sale.h"
#include "seller.h"
#include <vector>
class Marketplace
{
public:
void storeToDb();
void loadFromDb();
private:
std::vector<std::shared_ptr<Seller>> sellers_;
//std::vector<std::shared_ptr<Article>> articles_;
std::vector<std::shared_ptr<Sale>> sales_;
};
#endif

View file

@ -8,33 +8,9 @@ void Sale::addArticle(std::shared_ptr<Article> articlePtr)
articles_.push_back(articlePtr); articles_.push_back(articlePtr);
} }
std::vector<Article*> Sale::getArticles()
{
std::vector<Article*> articles(articles_.size());
for (const auto& article : articles_) {
articles.push_back(article.get());
}
return articles;
}
void Sale::removeArticle(const Article* articlePtr)
{
auto it = std::find_if(articles_.begin(), articles_.end(),
[&articlePtr](auto art) { return art.get() == articlePtr; });
if (it != articles_.end()) {
(*it)->setSale(nullptr);
articles_.erase(it);
}
}
int Sale::sumInCents() int Sale::sumInCents()
{ {
int sum = std::accumulate(articles_.begin(), articles_.end(), 0, int sum = std::accumulate(articles_.begin(), articles_.end(), 0,
[](int a, std::shared_ptr<Article> b) { return a + b->getPrice(); }); [](int a, std::shared_ptr<Article> b) { return a + b->getPrice(); });
return sum; return sum;
} }
std::string Sale::getTimestamp() { return timestamp_; }
void Sale::setTimestamp(const std::string& timestamp) { timestamp_ = timestamp; }

View file

@ -5,25 +5,17 @@
#include <vector> #include <vector>
#include "boost/date_time/posix_time/posix_time.hpp" #include <boost/date_time.hpp>
class Article; class Article;
class Sale : public Entity class Sale : public Entity
{ {
public: public:
void addArticle(std::shared_ptr<Article> articlePtr);
void setTimestamp(const std::string& timestamp);
std::vector<Article*> getArticles();
std::string getTimestamp();
int sumInCents(); int sumInCents();
void addArticle(std::shared_ptr<Article> articlePtr);
void removeArticle(const Article* articlePtr);
private: private:
std::string timestamp_{ boost::posix_time::ptime systemTime_{boost::posix_time::second_clock::local_time()};
boost::posix_time::to_iso_extended_string(boost::posix_time::second_clock::local_time())};
std::vector<std::shared_ptr<Article>> articles_{}; std::vector<std::shared_ptr<Article>> articles_{};
}; };

View file

@ -17,28 +17,23 @@ BOOST_AUTO_TEST_CASE(store_seller_fail)
{ {
Database db(":memory:"); Database db(":memory:");
db.init(); db.init();
std::vector<std::shared_ptr<Seller>> sellers; std::vector<Seller> sellers;
sellers.push_back(std::make_shared<Seller>()); sellers.push_back({});
sellers.push_back(std::make_shared<Seller>()); sellers.push_back({});
BOOST_CHECK_THROW(db.storeSellers(sellers), std::runtime_error); BOOST_CHECK_THROW(db.storeSellers(sellers), std::runtime_error);
} }
BOOST_AUTO_TEST_CASE(store_sellers_succ) BOOST_AUTO_TEST_CASE(store_sellers_succ)
{ {
Database db(":memory:"); Database db(":memory:");
db.init(); db.init();
std::vector<std::shared_ptr<Seller>> sellers; std::vector<Seller> sellers;
auto a = std::make_shared<Seller>(); Seller a{};
a->createUuid(); a.createUuid();
a->setSellerNo(1); a.setSellerNo(1);
auto b = std::make_shared<Seller>("Max", "Mustermann"); Seller b{};
b->createUuid(); b.createUuid();
b->setSellerNo(2); b.setSellerNo(2);
auto c = std::make_shared<Article>(); BOOST_TEST(a.getUuid() != b.getUuid());
c->createUuid();
c->setPrice(500);
c->setDescription("Test");
b->addArticle(c);
BOOST_TEST(a->getUuid() != b->getUuid());
sellers.push_back(a); sellers.push_back(a);
sellers.push_back(b); sellers.push_back(b);
BOOST_CHECK_NO_THROW(db.storeSellers(sellers)); BOOST_CHECK_NO_THROW(db.storeSellers(sellers));
@ -48,14 +43,14 @@ BOOST_AUTO_TEST_CASE(seller_states)
{ {
Database db(":memory:"); Database db(":memory:");
db.init(); db.init();
std::vector<std::shared_ptr<Seller>> sellers; std::vector<Seller> sellers;
auto a = std::make_shared<Seller>(); Seller a;
a->setSellerNo(3); a.setSellerNo(3);
a->createUuid(); a.createUuid();
sellers.push_back(a); sellers.push_back(a);
std::cout << "Anzahl sellers: " << sellers.size() << "\n"; std::cout << "Anzahl sellers: " << sellers.size() << "\n";
BOOST_TEST((sellers.at(0)->getState() == Entity::State::NEW)); BOOST_TEST((sellers.at(0).getState() == Entity::State::NEW));
BOOST_TEST(db.storeSellers(sellers) == 1); BOOST_TEST(db.storeSellers(sellers) == 1);
BOOST_TEST((sellers.at(0)->getState() == Entity::State::OK)); BOOST_TEST((sellers.at(0).getState() == Entity::State::OK));
BOOST_TEST(db.storeSellers(sellers) == 0); BOOST_TEST(db.storeSellers(sellers) == 0);
} }

View file

@ -30,15 +30,4 @@ BOOST_AUTO_TEST_CASE(articles_sum)
BOOST_TEST(sale.sumInCents() == 550); BOOST_TEST(sale.sumInCents() == 550);
BOOST_TEST(seller.getArticles(true).size() == 10); BOOST_TEST(seller.getArticles(true).size() == 10);
}
BOOST_AUTO_TEST_CASE(remove_article) {
auto art = std::make_shared<Article>();
Sale sale{};
BOOST_TEST(art->isSold() == false);
sale.addArticle(art);
BOOST_TEST(art->isSold() == true);
sale.removeArticle(art.get());
BOOST_TEST(art->isSold() == false);
} }