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
|
/*
* Copyright (C) 2005-2018 Team Kodi
* This file is part of Kodi - https://kodi.tv
*
* SPDX-License-Identifier: GPL-2.0-or-later
* See LICENSES/README.md for more information.
*/
#pragma once
#include "settings/lib/ISettingCallback.h"
#include "settings/lib/ISettingsHandler.h"
#include "threads/CriticalSection.h"
#include <map>
#include <string>
#include <vector>
class CRssReader;
class IRssObserver;
typedef struct
{
bool rtl;
std::vector<std::chrono::nanoseconds> interval;
std::vector<std::string> url;
} RssSet;
typedef std::map<int, RssSet> RssUrls;
class CRssManager : public ISettingCallback, public ISettingsHandler
{
public:
static CRssManager& GetInstance();
void OnSettingsLoaded() override;
void OnSettingsUnloaded() override;
void OnSettingAction(const std::shared_ptr<const CSetting>& setting) override;
void Start();
void Stop();
bool Load();
bool Reload();
void Clear();
bool IsActive() const { return m_bActive; }
bool GetReader(int controlID, int windowID, IRssObserver* observer, CRssReader *&reader);
const RssUrls& GetUrls() const { return m_mapRssUrls; }
protected:
CRssManager();
~CRssManager() override;
private:
CRssManager(const CRssManager&) = delete;
CRssManager& operator=(const CRssManager&) = delete;
struct READERCONTROL
{
int controlID;
int windowID;
CRssReader *reader;
};
std::vector<READERCONTROL> m_readers;
RssUrls m_mapRssUrls;
bool m_bActive;
CCriticalSection m_critical;
};
|