summaryrefslogtreecommitdiff
path: root/SubscriptionManager.h
blob: 31fb213f922ea4291fbd183171f1101a19a4510c (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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
#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;
        cVideo *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 ReportProgress();

        void NotifyServer();

        void Cleanup();

        std::string GetTimelineXml();
    };

    enum class ActionType { Play, Display };
    struct Action {
        //cVideo video;
        std::shared_ptr<MediaContainer> container;
        ActionType type;
    };

    class ActionManager {
    public:
        static ActionManager &GetInstance() {
            static ActionManager instance;
            return instance;
        }

        void AddAction(Action action);

        Action GetAction();

        bool IsAction();

    private:
        cMutexLock m_myLock;
        cMutex m_myMutex;

        ActionManager();

        Action m_Action;
        bool m_isAction;
    };

}

#endif // SUBSCRIPTIONMANAGER_H