summaryrefslogtreecommitdiff
path: root/client.cxx
blob: 9abb0813d3f87126fe06158b1a80783e62685fa8 (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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
#include <cstddef>
#include <memory>
#include <QObject>
#include "qicclient.hxx"
#include "qicclient/ord.hxx"

static QICClient::Client* client;

static void handleResults(icclient_fetch_t* fetch)
{
	client->emitResults(fetch);
}

static void callback(icclient_catalog* catalog)
{
	client->emitCatalog(catalog);
	icclient_free_catalog(catalog);
}

namespace QICClient {

	Client::Client(char const* sampleURL, char const* image_Dir, char const* certificate)
	{
		client = this;
		icclient_init(sampleURL, image_Dir, certificate);
	}

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

	void Client::results(QString const& prodGroup)
	{
		icclient_results(prodGroup.toLatin1().constData(), [](icclient_catalog* catalog) {
				icclient_free_catalog(catalog);
				}, handleResults);
	}
/*
	void Client::results(QString const& prodGroup, void (*handler)(icclient_fetch_t*))
	{
		icclient_results(prodGroup.toLatin1().constData(), callback, handler);
	}
*/
	void Client::allProducts()
	{
		icclient_allproducts([](icclient_catalog* catalog) {
				icclient_free_catalog(catalog);
				}, handleResults);
	}

	void Client::allproducts(void (*handler)(icclient_fetch_t* fetch))
	{
		icclient_allproducts(callback, handler);
	}

	void Client::emitResults(icclient_fetch_t* fetch)
	{
		emit gotResults(fetch);
	}

	void Client::emitCatalog(icclient_catalog* catalog)
	{
		emit gotCatalog(new Catalog{catalog});
	}

	void Client::flyPage(QString const& sku,void (*handler)(icclient_fetch_t*))
	{
		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, Ord& order)
	{
		auto c_order = order.data();
		icclient_ord_order(sku.toLatin1().constData(), catalog.constData(),
				&c_order);
		order.setData(c_order);
	}

}