summaryrefslogtreecommitdiffstats
path: root/xbmc/filesystem/DirectoryHistory.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/filesystem/DirectoryHistory.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/filesystem/DirectoryHistory.h')
-rw-r--r--xbmc/filesystem/DirectoryHistory.h67
1 files changed, 67 insertions, 0 deletions
diff --git a/xbmc/filesystem/DirectoryHistory.h b/xbmc/filesystem/DirectoryHistory.h
new file mode 100644
index 0000000..49f1873
--- /dev/null
+++ b/xbmc/filesystem/DirectoryHistory.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 <map>
+#include <string>
+#include <vector>
+
+class CDirectoryHistory
+{
+public:
+ class CHistoryItem
+ {
+ public:
+ CHistoryItem() = default;
+ virtual ~CHistoryItem() = default;
+ std::string m_strItem;
+ std::string m_strDirectory;
+ };
+
+ class CPathHistoryItem
+ {
+ public:
+ CPathHistoryItem() = default;
+ virtual ~CPathHistoryItem() = default;
+
+ const std::string& GetPath(bool filter = false) const;
+
+ std::string m_strPath;
+ std::string m_strFilterPath;
+ };
+
+ CDirectoryHistory() = default;
+ virtual ~CDirectoryHistory();
+
+ void SetSelectedItem(const std::string& strSelectedItem, const std::string& strDirectory);
+ const std::string& GetSelectedItem(const std::string& strDirectory) const;
+ void RemoveSelectedItem(const std::string& strDirectory);
+
+ void AddPath(const std::string& strPath, const std::string &m_strFilterPath = "");
+ void AddPathFront(const std::string& strPath, const std::string &m_strFilterPath = "");
+ std::string GetParentPath(bool filter = false);
+ std::string RemoveParentPath(bool filter = false);
+ void ClearPathHistory();
+ void ClearSearchHistory();
+ void DumpPathHistory();
+
+ /*! \brief Returns whether a path is in the history.
+ \param path to test
+ \return true if the path is in the history, false otherwise.
+ */
+ bool IsInHistory(const std::string &path) const;
+
+private:
+ static std::string preparePath(const std::string &strDirectory, bool tolower = true);
+
+ typedef std::map<std::string, CHistoryItem> HistoryMap;
+ HistoryMap m_vecHistory;
+ std::vector<CPathHistoryItem> m_vecPathHistory; ///< History of traversed directories
+ static bool IsMusicSearchUrl(CPathHistoryItem &i);
+};