summaryrefslogtreecommitdiffstats
path: root/xbmc/addons/AddonUpdateRules.cpp
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/addons/AddonUpdateRules.cpp
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/addons/AddonUpdateRules.cpp')
-rw-r--r--xbmc/addons/AddonUpdateRules.cpp104
1 files changed, 104 insertions, 0 deletions
diff --git a/xbmc/addons/AddonUpdateRules.cpp b/xbmc/addons/AddonUpdateRules.cpp
new file mode 100644
index 0000000..7d9d43a
--- /dev/null
+++ b/xbmc/addons/AddonUpdateRules.cpp
@@ -0,0 +1,104 @@
+/*
+ * Copyright (C) 2005-2020 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.
+ */
+
+#include "AddonUpdateRules.h"
+
+#include "AddonDatabase.h"
+#include "addons/addoninfo/AddonInfo.h"
+#include "utils/log.h"
+
+#include <mutex>
+
+using namespace ADDON;
+
+bool CAddonUpdateRules::RefreshRulesMap(const CAddonDatabase& db)
+{
+ m_updateRules.clear();
+ db.GetAddonUpdateRules(m_updateRules);
+ return true;
+}
+
+bool CAddonUpdateRules::IsAutoUpdateable(const std::string& id) const
+{
+ std::unique_lock<CCriticalSection> lock(m_critSection);
+ return m_updateRules.find(id) == m_updateRules.end();
+}
+
+bool CAddonUpdateRules::IsUpdateableByRule(const std::string& id, AddonUpdateRule updateRule) const
+{
+ std::unique_lock<CCriticalSection> lock(m_critSection);
+ const auto& updateRulesEntry = m_updateRules.find(id);
+ return (updateRulesEntry == m_updateRules.end() ||
+ std::none_of(updateRulesEntry->second.begin(), updateRulesEntry->second.end(),
+ [updateRule](AddonUpdateRule rule) { return rule == updateRule; }));
+}
+
+bool CAddonUpdateRules::AddUpdateRuleToList(CAddonDatabase& db,
+ const std::string& id,
+ AddonUpdateRule updateRule)
+{
+ std::unique_lock<CCriticalSection> lock(m_critSection);
+
+ if (!IsUpdateableByRule(id, updateRule))
+ {
+ return true;
+ }
+
+ if (db.AddUpdateRuleForAddon(id, updateRule))
+ {
+ m_updateRules[id].emplace_back(updateRule);
+ return true;
+ }
+ return false;
+}
+
+bool CAddonUpdateRules::RemoveUpdateRuleFromList(CAddonDatabase& db,
+ const std::string& id,
+ AddonUpdateRule updateRule)
+{
+ return (updateRule != AddonUpdateRule::ANY && RemoveFromUpdateRuleslist(db, id, updateRule));
+}
+
+bool CAddonUpdateRules::RemoveAllUpdateRulesFromList(CAddonDatabase& db, const std::string& id)
+{
+ return RemoveFromUpdateRuleslist(db, id, AddonUpdateRule::ANY);
+}
+
+bool CAddonUpdateRules::RemoveFromUpdateRuleslist(CAddonDatabase& db,
+ const std::string& id,
+ AddonUpdateRule updateRule)
+{
+ std::unique_lock<CCriticalSection> lock(m_critSection);
+
+ const auto& updateRulesEntry = m_updateRules.find(id);
+ if (updateRulesEntry != m_updateRules.end())
+ {
+ bool onlySingleRule = (updateRulesEntry->second.size() == 1);
+
+ if (updateRule == AddonUpdateRule::ANY ||
+ (onlySingleRule && updateRulesEntry->second.front() == updateRule))
+ {
+ if (db.RemoveAllUpdateRulesForAddon(id))
+ {
+ m_updateRules.erase(id);
+ return true;
+ }
+ }
+ else if (!onlySingleRule)
+ {
+ const auto& position =
+ std::find(updateRulesEntry->second.begin(), updateRulesEntry->second.end(), updateRule);
+ if (position != updateRulesEntry->second.end() && db.RemoveUpdateRuleForAddon(id, updateRule))
+ {
+ updateRulesEntry->second.erase(position);
+ return true;
+ }
+ }
+ }
+ return false;
+}