Add DCPOMATIC_DISK define and don't build stuff needing boost dll library if we don...
[dcpomatic.git] / src / lib / cross.h
index 2e8b8e429bcc64670cd02741ea63fec882b44eec..6d3c2bd2ea17a8c1d346f2ead2a02642df289df7 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2012-2018 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2012-2020 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
@@ -29,6 +29,8 @@
 #include <IOKit/pwr_mgt/IOPMLib.h>
 #endif
 #include <boost/filesystem.hpp>
+#include <boost/thread/mutex.hpp>
+#include <boost/optional.hpp>
 
 #ifdef DCPOMATIC_WINDOWS
 #define WEXITSTATUS(w) (w)
 class Log;
 struct AVIOContext;
 
-void dcpomatic_sleep (int);
+void dcpomatic_sleep_seconds (int);
+void dcpomatic_sleep_milliseconds (int);
 extern std::string cpu_info ();
 extern void run_ffprobe (boost::filesystem::path, boost::filesystem::path);
 extern std::list<std::pair<std::string, std::string> > mount_info ();
 extern boost::filesystem::path openssl_path ();
+#ifdef DCPOMATIC_DISK
+extern boost::filesystem::path disk_writer_path ();
+#endif
 #ifdef DCPOMATIC_OSX
 extern boost::filesystem::path app_contents ();
 #endif
@@ -58,6 +64,15 @@ extern int avio_open_boost (AVIOContext** s, boost::filesystem::path file, int f
 extern boost::filesystem::path home_directory ();
 extern std::string command_and_read (std::string cmd);
 extern bool running_32_on_64 ();
+extern void unprivileged ();
+extern boost::filesystem::path config_path ();
+
+class PrivilegeEscalator
+{
+public:
+       PrivilegeEscalator ();
+       ~PrivilegeEscalator ();
+};
 
 /** @class Waker
  *  @brief A class which tries to keep the computer awake on various operating systems.
@@ -74,9 +89,40 @@ public:
        void nudge ();
 
 private:
+       boost::mutex _mutex;
 #ifdef DCPOMATIC_OSX
        IOPMAssertionID _assertion_id;
 #endif
 };
 
+class Drive
+{
+public:
+       Drive (std::string internal_name, uint64_t size, bool mounted, boost::optional<std::string> vendor, boost::optional<std::string> model)
+               : _internal_name(internal_name)
+               , _size(size)
+               , _mounted(mounted)
+               , _vendor(vendor)
+               , _model(model)
+       {}
+
+       std::string description () const;
+       std::string internal_name () const {
+               return _internal_name;
+       }
+       bool mounted () const {
+               return _mounted;
+       }
+
+private:
+       std::string _internal_name;
+       /** size in bytes */
+       uint64_t _size;
+       bool _mounted;
+       boost::optional<std::string> _vendor;
+       boost::optional<std::string> _model;
+};
+
+std::vector<Drive> get_drives ();
+
 #endif