Moved JobObject as well as the remaining GUI functions into the MUtilities library.
[MUtilities.git] / include / MUtils / OSSupport.h
blob7db998816d511eda540ec12278b55019791ea3c0
1 ///////////////////////////////////////////////////////////////////////////////
2 // MuldeR's Utilities for Qt
3 // Copyright (C) 2004-2014 LoRd_MuldeR <MuldeR2@GMX.de>
4 //
5 // This library is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU Lesser General Public
7 // License as published by the Free Software Foundation; either
8 // version 2.1 of the License, or (at your option) any later version.
9 //
10 // This library is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 // Lesser General Public License for more details.
15 // You should have received a copy of the GNU Lesser General Public
16 // License along with this library; if not, write to the Free Software
17 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 // http://www.gnu.org/licenses/lgpl-2.1.txt
20 //////////////////////////////////////////////////////////////////////////////////
22 #pragma once
24 //MUtils
25 #include <MUtils/Global.h>
27 //Qt
28 #include <QString>
29 #include <QDate>
31 ///////////////////////////////////////////////////////////////////////////////
33 namespace MUtils
35 namespace OS
37 namespace Version
39 //Supported OS types
40 typedef enum
42 OS_UNKNOWN = 0,
43 OS_WINDOWS = 1
45 os_type_t;
47 //OS version struct
48 typedef struct _os_info_t
50 unsigned int type;
51 unsigned int versionMajor;
52 unsigned int versionMinor;
53 bool overrideFlag;
55 //comparision operators
56 inline bool operator== (const _os_info_t &rhs) const { return (type == rhs.type) && (versionMajor == rhs.versionMajor) && ((versionMinor == rhs.versionMinor)); }
57 inline bool operator!= (const _os_info_t &rhs) const { return (type != rhs.type) || (versionMajor != rhs.versionMajor) || ((versionMinor != rhs.versionMinor)); }
58 inline bool operator> (const _os_info_t &rhs) const { return (type == rhs.type) && ((versionMajor > rhs.versionMajor) || ((versionMajor == rhs.versionMajor) && (versionMinor > rhs.versionMinor))); }
59 inline bool operator>= (const _os_info_t &rhs) const { return (type == rhs.type) && ((versionMajor > rhs.versionMajor) || ((versionMajor == rhs.versionMajor) && (versionMinor >= rhs.versionMinor))); }
60 inline bool operator< (const _os_info_t &rhs) const { return (type == rhs.type) && ((versionMajor < rhs.versionMajor) || ((versionMajor == rhs.versionMajor) && (versionMinor < rhs.versionMinor))); }
61 inline bool operator<= (const _os_info_t &rhs) const { return (type == rhs.type) && ((versionMajor < rhs.versionMajor) || ((versionMajor == rhs.versionMajor) && (versionMinor <= rhs.versionMinor))); }
63 os_version_t;
65 //Known Windows NT versions
66 static const os_version_t WINDOWS_WIN2K = { OS_WINDOWS, 5, 0 }; // 2000
67 static const os_version_t WINDOWS_WINXP = { OS_WINDOWS, 5, 1 }; // XP
68 static const os_version_t WINDOWS_XPX64 = { OS_WINDOWS, 5, 2 }; // XP_x64
69 static const os_version_t WINDOWS_VISTA = { OS_WINDOWS, 6, 0 }; // Vista
70 static const os_version_t WINDOWS_WIN70 = { OS_WINDOWS, 6, 1 }; // 7
71 static const os_version_t WINDOWS_WIN80 = { OS_WINDOWS, 6, 2 }; // 8
72 static const os_version_t WINDOWS_WIN81 = { OS_WINDOWS, 6, 3 }; // 8.1
73 static const os_version_t WINDOWS_WN100 = { OS_WINDOWS, 6, 4 }; // 10
75 //Unknown OS
76 static const os_version_t UNKNOWN_OPSYS = { OS_UNKNOWN, 0, 0 }; // N/A
79 //Known Folders IDs
80 typedef enum
82 FOLDER_LOCALAPPDATA = 0,
83 FOLDER_PROGRAMFILES = 2,
84 FOLDER_SYSTEMFOLDER = 3,
85 FOLDER_SYSTROOT_DIR = 4
87 known_folder_t;
89 //Network connection types
90 typedef enum
92 NETWORK_TYPE_ERR = 0, /*unknown*/
93 NETWORK_TYPE_NON = 1, /*not connected*/
94 NETWORK_TYPE_YES = 2 /*connected*/
96 network_type_t;
98 //System message
99 MUTILS_API void system_message_nfo(const wchar_t *const title, const wchar_t *const text);
100 MUTILS_API void system_message_wrn(const wchar_t *const title, const wchar_t *const text);
101 MUTILS_API void system_message_err(const wchar_t *const title, const wchar_t *const text);
103 //CLI Arguments
104 MUTILS_API const QStringList &arguments(void);
106 //Get the OS version
107 MUTILS_API const Version::os_version_t &os_version(void);
108 MUTILS_API const char *os_friendly_name(const MUtils::OS::Version::os_version_t &os_version);
109 MUTILS_API const bool &running_on_wine(void);
111 //Get known Folder
112 MUTILS_API const QString &known_folder(known_folder_t folder_id);
114 //Current Date & Time
115 MUTILS_API QDate current_date(void);
116 MUTILS_API quint64 current_file_time(void);
118 //Check for process elevation
119 MUTILS_API bool is_elevated(bool *bIsUacEnabled = NULL);
120 MUTILS_API bool user_is_admin(void);
122 //Network Status
123 MUTILS_API int network_status(void);
125 //Message handler
126 MUTILS_API bool handle_os_message(const void *const message, long *result);
128 //Sleep
129 MUTILS_API void sleep_ms(const size_t &duration);
131 //Is executable file?
132 MUTILS_API bool is_executable_file(const QString &path);
134 //Shutdown & Hibernation
135 MUTILS_API bool is_hibernation_supported(void);
136 MUTILS_API bool shutdown_computer(const QString &message, const unsigned long timeout, const bool forceShutdown, const bool hibernate);
138 //Free diskspace
139 MUTILS_API bool free_diskspace(const QString &path, quint64 &freeSpace);
141 //Shell open
142 MUTILS_API bool shell_open(const QWidget *parent, const QString &url, const bool explore = false);
143 MUTILS_API bool shell_open(const QWidget *parent, const QString &url, const QString &parameters, const QString &directory, const bool explore = false);
145 //Open media file
146 MUTILS_API bool open_media_file(const QString &mediaFilePath);
148 //Process priority
149 MUTILS_API bool change_process_priority(const int priority);
150 MUTILS_API bool change_process_priority(const QProcess *proc, const int priority);
152 //Process ID
153 MUTILS_API quint32 process_id(const QProcess *proc);
155 //System timer resolution
156 MUTILS_API bool setup_timer_resolution(const quint32 &interval = 1);
157 MUTILS_API bool reset_timer_resolution(const quint32 &interval = 1);
159 MUTILS_API bool check_key_state_esc(void);
161 //Check if debugger is present
162 MUTILS_API void check_debugger(void);
164 //Error handling
165 MUTILS_API void fatal_exit(const wchar_t* const errorMessage);
169 ///////////////////////////////////////////////////////////////////////////////