aboutsummaryrefslogtreecommitdiff
path: root/xbmc/platform/linux/SysfsPath.h
diff options
context:
space:
mode:
Diffstat (limited to 'xbmc/platform/linux/SysfsPath.h')
-rw-r--r--xbmc/platform/linux/SysfsPath.h45
1 files changed, 45 insertions, 0 deletions
diff --git a/xbmc/platform/linux/SysfsPath.h b/xbmc/platform/linux/SysfsPath.h
new file mode 100644
index 0000000000..499d3d4a93
--- /dev/null
+++ b/xbmc/platform/linux/SysfsPath.h
@@ -0,0 +1,45 @@
+/*
+ * Copyright (C) 2011-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 "utils/log.h"
+
+#include <fstream>
+#include <string>
+
+class CSysfsPath
+{
+public:
+ CSysfsPath() = default;
+ CSysfsPath(const std::string& path) : m_path(path) {}
+ ~CSysfsPath() = default;
+
+ bool Exists();
+
+ template<typename T>
+ T Get()
+ {
+ std::ifstream file(m_path);
+
+ T value;
+
+ file >> value;
+
+ if (file.bad())
+ {
+ CLog::LogF(LOGERROR, "error reading from '{}'", m_path);
+ throw std::runtime_error("error reading from " + m_path);
+ }
+
+ return value;
+ }
+
+private:
+ std::string m_path;
+};