summaryrefslogtreecommitdiff
path: root/SubscriptionManager.h
blob: fc96448356020558ccf071969d5e43413011a131 (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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
#ifndef SUBSCRIPTIONMANAGER_H
#define SUBSCRIPTIONMANAGER_H

#include <vdr/tools.h>
#include <vdr/status.h>
#include <string>
#include <iostream>
#include <map>
//#include <mutex>
#include <sstream>
#include "hlsPlayerControl.h"
#include "PVideo.h"

namespace plexclient
{

class cSubscriberStatus : public cStatus
{
protected:
	virtual void Replaying(const cControl *DvbPlayerControl, const char *Name, const char *FileName, bool On);

public:
	cSubscriberStatus();
	bool PlayerPaused;
	bool PlayerStopped;
	cControl* pControl;
	Video* pVideo;
	int Volume;

};

class Subscriber
{
	friend class SubscriptionManager;
public:
	std::string m_iCommandId;
	Subscriber() {};
	Subscriber(std::string protocol, std::string host, int port, std::string uuid, std::string commandId);

	std::string GetUuid() {
		return m_sUuid;
	}

	void SendUpdate(std::string msg, bool isNav);

	virtual std::string to_string() {
		return "Subscriber-> Host: " + m_sHost + "; Port: " + std::string(itoa(m_iPort)) + "; Uuid:" + m_sUuid + "; CmdID:" + m_iCommandId;
	}

private:
	std::string m_sProtocol;
	std::string m_sHost;
	int m_iPort;
	std::string m_sUuid;

	int m_iAge;
};


class SubscriptionManager
{
public:
	static SubscriptionManager& GetInstance() {
		static SubscriptionManager instance;
		return instance;
	}
	void AddSubscriber(Subscriber subs);
	void RemoveSubscriber(std::string uuid);
	void UpdateSubscriber(std::string uuid, std::string commandId);
	std::string GetMsg(std::string commandId);
	void Notify();

private:
	SubscriptionManager();
	cMutexLock m_myLock;
	cMutex m_myMutex;
	std::map<std::string, Subscriber> m_mSubcribers;
	cSubscriberStatus* m_pStatus;
	bool m_bStoppedSent;

	void NotifyServer();
	void Cleanup();
	std::string GetTimelineXml();
};

class ActionManager
{
public:
	static ActionManager& GetInstance() {
		static ActionManager instance;
		return instance;
	}
	void AddAction(Video video);
	Video GetAction();
	bool IsAction();

private:
	cMutexLock m_myLock;
	cMutex m_myMutex;
	ActionManager();
	Video m_Action;
	bool m_isAction;
};

}

#endif // SUBSCRIPTIONMANAGER_H