summaryrefslogtreecommitdiff
path: root/client.cxx
blob: 26d8ad9fd9e9e29e73a643389833e256741aa0bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#include <cstddef>
#include <memory>
#include <QObject>
#include <icclient/client.h>
#include <icclient/member.h>
#include "qicclient/catalog.hxx"
#include "qicclient/basket.hxx"
#include "qicclient/client.hxx"

namespace QICClient {

	Client::Client(char const* url, char const* certificate)
	{
		icclient_init(url, certificate);
	}

	Client::~Client()
	{
		icclient_cleanup();
	}

	void Client::results(QString const& prodGroup,
			size_t (*handler)(void*, size_t, size_t, void*))
	{
		icclient_catalog* catalog = nullptr;
		icclient_results(prodGroup.toLatin1().constData(), handler, &catalog);
		if (catalog) emit gotResults(new Catalog{catalog});
	}

	void Client::allProducts(size_t (*handler)(void*, size_t, size_t, void*))
	{
		icclient_catalog* catalog = nullptr;
		icclient_allproducts(handler, &catalog);
		if (catalog) emit gotResults(new Catalog{catalog});
	}

	void Client::flyPage(QString const& sku,
			size_t (*handler)(void*, size_t, size_t, void*))
	{
		icclient_product* product = nullptr;
		icclient_flypage(sku.toLatin1().constData(), handler, &product);
		if (product) emit gotFlyPage(shared_ptr<Product>{new Product{product}});
	}

	void Client::order(QString const& sku, Catalog const& catalog, Basket& order)
	{
		auto c_order = order.data();
		icclient_ord_order(sku.toLatin1().constData(), catalog.constData(),
				&c_order);
		order.setData(c_order);
	}

}