summaryrefslogtreecommitdiffstats
path: root/xbmc/utils/RssReader.h
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-10 18:07:22 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-10 18:07:22 +0000
commitc04dcc2e7d834218ef2d4194331e383402495ae1 (patch)
tree7333e38d10d75386e60f336b80c2443c1166031d /xbmc/utils/RssReader.h
parentInitial commit. (diff)
downloadkodi-c04dcc2e7d834218ef2d4194331e383402495ae1.tar.xz
kodi-c04dcc2e7d834218ef2d4194331e383402495ae1.zip
Adding upstream version 2:20.4+dfsg.upstream/2%20.4+dfsg
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'xbmc/utils/RssReader.h')
-rw-r--r--xbmc/utils/RssReader.h67
1 files changed, 67 insertions, 0 deletions
diff --git a/xbmc/utils/RssReader.h b/xbmc/utils/RssReader.h
new file mode 100644
index 0000000..ae9d2f7
--- /dev/null
+++ b/xbmc/utils/RssReader.h
@@ -0,0 +1,67 @@
+/*
+ * 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 "threads/CriticalSection.h"
+#include "threads/Thread.h"
+#include "utils/IRssObserver.h"
+#include "utils/XBMCTinyXML.h"
+
+#include <list>
+#include <string>
+#include <vector>
+
+namespace KODI::TIME
+{
+struct SystemTime;
+}
+
+class CRssReader : public CThread
+{
+public:
+ CRssReader();
+ ~CRssReader() override;
+
+ void Create(IRssObserver* aObserver, const std::vector<std::string>& aUrl, const std::vector<int>& times, int spacesBetweenFeeds, bool rtl);
+ bool Parse(const std::string& data, int iFeed, const std::string& charset);
+ void getFeed(vecText &text);
+ void AddTag(const std::string &addTag);
+ void AddToQueue(int iAdd);
+ void UpdateObserver();
+ void SetObserver(IRssObserver* observer);
+ void CheckForUpdates();
+ void requestRefresh();
+ float m_savedScrollPixelPos;
+
+private:
+ void Process() override;
+ bool Parse(int iFeed);
+ void GetNewsItems(TiXmlElement* channelXmlNode, int iFeed);
+ void AddString(std::wstring aString, int aColour, int iFeed);
+ void UpdateFeed();
+ void OnExit() override;
+ int GetQueueSize();
+
+ IRssObserver* m_pObserver;
+
+ std::vector<std::wstring> m_strFeed;
+ std::vector<std::wstring> m_strColors;
+ std::vector<KODI::TIME::SystemTime*> m_vecTimeStamps;
+ std::vector<int> m_vecUpdateTimes;
+ int m_spacesBetweenFeeds;
+ CXBMCTinyXML m_xml;
+ std::list<std::string> m_tagSet;
+ std::vector<std::string> m_vecUrls;
+ std::vector<int> m_vecQueue;
+ bool m_bIsRunning;
+ bool m_rtlText;
+ bool m_requestRefresh;
+
+ CCriticalSection m_critical;
+};