#include "qicclient.hxx" #include "qicclient/ord.hxx" namespace QICClient { static Client* client; Client::Client(char const* sampleURL, char const* image_Dir, char const* certificate) { client = this; icclient_init(sampleURL, image_Dir, certificate); } Client::~Client() { icclient_cleanup(); } static void catalogHandler(icclient_response* response) { client->emitCatalog(QString{response->data}); icclient_free_response(response); } static void catalogCallback(struct icclient_catalog* catalog) { icclient_free_catalog(catalog); } void Client::catalog(QString const& prodGroup) { icclient_catalog(prodGroup.toLatin1().constData(), catalogHandler, nullptr); } void Client::allProducts() { icclient_allproducts(catalogHandler, nullptr); } static void productHandler(icclient_response* response) { client->emitProduct(QString{response->data}); icclient_free_response(response); } void Client::product(QString const& sku) { icclient_product(sku.toLatin1().constData(), productHandler, nullptr); } void Client::defaultCatalog(QString const& prodGroup) { icclient_catalog(prodGroup.toLatin1().constData(), nullptr, catalogCallback); } void Client::defaultAllProducts() { icclient_allproducts(nullptr, catalogCallback); } void Client::emitCatalog(QString const& catalog) { emit gotCatalog(catalog); } void Client::emitProduct(QString const& product) { emit gotProduct(product); } void Client::order(QString const& sku, Catalog const& catalog, Ord& order) { auto c_order = order.data(); icclient_ord_order(sku.toLatin1().constData(), catalog.constData(), &c_order); order.setData(c_order); } }