-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCouriersMonitor.h
90 lines (72 loc) · 3.18 KB
/
CouriersMonitor.h
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
83
84
85
86
87
88
89
90
#ifndef COURIERSMONITOR_H
#define COURIERSMONITOR_H
#include <QObject>
#include <QVariantMap>
#include <QAbstractItemModel>
#include <QIdentityProxyModel>
#include <QSortFilterProxyModel>
class MongoDbPool;
class MongoDBCollection;
class WSClient;
class CouriersModel;
class OnlineCouriersModel;
class GotosModel;
class ClientsLocationsModel;
class CouriersModelManager;
class MapViewedGotosProxyModel;
class FilteredAndSortedGotosModel;
class CourierToGotoMapRoute;
class MapViewedCouriersProxyModel;
class FiltredOnlineCouriersModel;
class CouriersMonitor : public QObject
{
Q_OBJECT
public:
explicit CouriersMonitor(QObject *parent = nullptr);
void setAllCouriersModel(CouriersModel &allCouriersModel);
void setOnlineCouriersModel(CouriersModel &onlineCouriersModel);
void setGotosModel(GotosModel &gotosModel);
// Q_INVOKABLE void addGoto(const QString &courier_id, const QString &status,
// const QString &latitude, const QString &longitude,
// const QString &phone, const QString &start_time,
// const QString &from, const QString &address,
// const QString &description);
void setClientsLocationsModel(ClientsLocationsModel &clm);
CouriersModel *allCouriersModel();
// CouriersModel *onlineCouriersModel();
FiltredOnlineCouriersModel *onlineCouriersModel();
MapViewedCouriersProxyModel *mapViewedCouriersProxyModel();
QIdentityProxyModel *gotosModel(){return m_gotosModel;}
FilteredAndSortedGotosModel *filteredGotosModel();
ClientsLocationsModel *clientsLocationsModel();
MapViewedGotosProxyModel *mapViewedGotosProxyModel();
CourierToGotoMapRoute *mapRoute(){return m_mapRoute;}
public: //Qml Invokables
// Q_INVOKABLE void getGotoModelByCourierId(const QString &id);
Q_INVOKABLE void filterGotoModelByCourierId(const QString &id);
Q_INVOKABLE void addGoto(const QString &courierId, const QVariantMap &varMap);
Q_INVOKABLE void deleteGoto(const QString &courierId, const QString &gotoId);
Q_INVOKABLE void updateGoto(const QString &courierId, const QString &gotoId,
const QVariantMap &varMap);
Q_INVOKABLE void updateGotoStatus(const QString &courierId, const QString &gotoId, const QString &status);
Q_INVOKABLE QVariantMap getCourierData(const QString &courierId);
Q_INVOKABLE QVariantMap getGotoData(const QString &courierId, const QString &gotoId);
private: //Member functions
void connectWebSocket();
signals:
void courierAdded(const QVariantMap &courier);
void courierRemoved(const QVariantMap &courier);
void courierPositionChanged(const QVariantMap &courier);
void courierStatusChanged(const QVariantMap &courier);
private slots:
void onJsonObjectReceived(const QJsonObject &jsonObject);
private:
WSClient *m_wsClient;
CouriersModelManager * m_couriersModelManager = nullptr;
QIdentityProxyModel *m_gotosModel = nullptr;
MongoDbPool *m_pool = nullptr;
MongoDBCollection *m_gotosCollection = nullptr;
MongoDBCollection *m_clientsLocationsCollection = nullptr;
CourierToGotoMapRoute *m_mapRoute = nullptr;
};
#endif // COURIERSMONITOR_H