-
Notifications
You must be signed in to change notification settings - Fork 86
/
Copy pathbrowser.hpp
108 lines (92 loc) · 3.23 KB
/
browser.hpp
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
//
// browser.hpp
//
// Copyright (c) 2019 2020 Andrea Bondavalli. All rights reserved.
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
#ifndef _BROWSER_HPP_
#define _BROWSER_HPP_
#include <boost/multi_index/hashed_index.hpp>
#include <boost/multi_index/indexed_by.hpp>
#include <boost/multi_index/member.hpp>
#include <boost/multi_index/ordered_index.hpp>
#include <boost/multi_index_container.hpp>
#include <chrono>
#include <future>
#include <list>
#include <shared_mutex>
#include <thread>
#include "config.hpp"
#include "igmp.hpp"
#include "mdns_client.hpp"
#include "sap.hpp"
#include "utils.hpp"
using namespace boost::multi_index;
using namespace std::chrono;
struct RemoteSource {
std::string id;
std::string source;
std::string address;
std::string name;
std::string domain; /* mDNS only */
SDPOrigin origin;
std::string sdp;
uint32_t last_seen{0}; /* seconds from daemon startup */
uint32_t announce_period{0}; /* period between annoucements */
time_point<steady_clock> last_seen_timepoint{steady_clock::now()};
};
class Browser : public MDNSClient {
public:
static std::shared_ptr<Browser> create(std::shared_ptr<Config> config);
Browser() = delete;
Browser(const Browser&) = delete;
Browser& operator=(const Browser&) = delete;
bool init() override;
bool terminate() override;
uint32_t get_last_update_ts() const { return last_update_; }
std::list<RemoteSource> get_remote_sources(
const std::string& source = "all") const;
protected:
// singleton, use create() to build
explicit Browser(std::shared_ptr<Config> config) : MDNSClient(config){};
bool worker();
void on_change_rtsp_source(const std::string& name,
const std::string& domain,
const RtspSource& source) override;
void on_remove_rtsp_source(const std::string& name,
const std::string& domain) override;
private:
std::future<bool> res_;
std::atomic_bool running_{false};
/* current sources */
struct id_tag {};
using by_id =
hashed_unique<tag<id_tag>,
member<RemoteSource, std::string, &RemoteSource::id>>;
struct name_tag {};
using by_name = ordered_non_unique<
tag<name_tag>,
member<RemoteSource, std::string, &RemoteSource::name>>;
using sources_t =
multi_index_container<RemoteSource, indexed_by<by_id, by_name>>;
sources_t sources_;
mutable std::shared_mutex sources_mutex_;
SAP sap_{config_->get_sap_mcast_addr()};
IGMP igmp_;
std::chrono::time_point<std::chrono::steady_clock> startup_{
std::chrono::steady_clock::now()};
uint32_t last_update_{0}; /* seconds from daemon startup */
};
#endif