OSDN Git Service

Added function to a file's path from a handle (file descriptor).
[mutilities/MUtilities.git] / include / MUtils / OSSupport.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // MuldeR's Utilities for Qt
3 // Copyright (C) 2004-2015 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.
14 //
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
18 //
19 // http://www.gnu.org/licenses/lgpl-2.1.txt
20 //////////////////////////////////////////////////////////////////////////////////
21
22 #pragma once
23
24 //MUtils
25 #include <MUtils/Global.h>
26
27 //Qt
28 #include <QString>
29 #include <QMap>
30 #include <QDate>
31
32 //Forward declaration
33 class QFile;
34
35 ///////////////////////////////////////////////////////////////////////////////
36
37 namespace MUtils
38 {
39         namespace OS
40         {
41                 namespace Version
42                 {
43                         //Supported OS types
44                         typedef enum
45                         {
46                                 OS_UNKNOWN = 0,
47                                 OS_WINDOWS = 1
48                         }
49                         os_type_t;
50
51                         //OS version struct
52                         typedef struct _os_info_t
53                         {
54                                 unsigned int type;
55                                 unsigned int versionMajor;
56                                 unsigned int versionMinor;
57                                 bool overrideFlag;
58
59                                 MUTILS_API bool operator== (const _os_info_t &rhs) const;
60                                 MUTILS_API bool operator!= (const _os_info_t &rhs) const;
61                                 MUTILS_API bool operator>  (const _os_info_t &rhs) const;
62                                 MUTILS_API bool operator>= (const _os_info_t &rhs) const;
63                                 MUTILS_API bool operator<  (const _os_info_t &rhs) const;
64                                 MUTILS_API bool operator<= (const _os_info_t &rhs) const;
65                         }
66                         os_version_t;
67
68                         //Known Windows NT versions
69                         MUTILS_API extern const os_version_t WINDOWS_WIN2K;     // 2000
70                         MUTILS_API extern const os_version_t WINDOWS_WINXP;     // XP
71                         MUTILS_API extern const os_version_t WINDOWS_XPX64;     // XP_x64
72                         MUTILS_API extern const os_version_t WINDOWS_VISTA;     // Vista
73                         MUTILS_API extern const os_version_t WINDOWS_WIN70;     // 7
74                         MUTILS_API extern const os_version_t WINDOWS_WIN80;     // 8
75                         MUTILS_API extern const os_version_t WINDOWS_WIN81;     // 8.1
76                         MUTILS_API extern const os_version_t WINDOWS_WN100;     // 10
77
78                         //Unknown OS
79                         MUTILS_API extern const os_version_t UNKNOWN_OPSYS;     // N/A
80                 }
81
82                 //Known Folders IDs
83                 typedef enum
84                 {
85                         FOLDER_LOCALAPPDATA = 0,
86                         FOLDER_PROGRAMFILES = 2,
87                         FOLDER_SYSTEMFOLDER = 3,
88                         FOLDER_SYSTROOT_DIR = 4
89                 }
90                 known_folder_t;
91                 
92                 //Network connection types
93                 typedef enum
94                 {
95                         NETWORK_TYPE_ERR = 0,   /*unknown*/
96                         NETWORK_TYPE_NON = 1,   /*not connected*/
97                         NETWORK_TYPE_YES = 2    /*connected*/
98                 }
99                 network_type_t;
100                                 
101                 //System message
102                 MUTILS_API void system_message_nfo(const wchar_t *const title, const wchar_t *const text);
103                 MUTILS_API void system_message_wrn(const wchar_t *const title, const wchar_t *const text);
104                 MUTILS_API void system_message_err(const wchar_t *const title, const wchar_t *const text);
105
106                 //CLI Arguments
107                 typedef QMap<QString,QString> ArgumentMap;
108                 MUTILS_API const QStringList crack_command_line(const QString &command_line = QString());
109                 MUTILS_API const ArgumentMap &arguments(void);
110
111                 //Copy file
112                 typedef bool (*progress_callback_t)(const double &progress, void *const userData);
113                 MUTILS_API bool copy_file(const QString &sourcePath, const QString &outputPath, const bool &overwrite = true, const progress_callback_t callback = NULL, void *const userData = NULL);
114
115                 //Get file version
116                 MUTILS_API bool get_file_version(const QString fileName, quint16 *const major = NULL, quint16 *const minor = NULL, quint16 *const patch = NULL, quint16 *const build = NULL);
117
118                 //Get the OS version
119                 MUTILS_API const Version::os_version_t &os_version(void);
120                 MUTILS_API const char *os_friendly_name(const MUtils::OS::Version::os_version_t &os_version);
121                 MUTILS_API const bool &running_on_wine(void);
122
123                 //Get known Folder
124                 MUTILS_API const QString &known_folder(known_folder_t folder_id);
125
126                 //Current Date & Time
127                 MUTILS_API QDate current_date(void);
128                 MUTILS_API quint64 current_file_time(void);
129
130                 //Check for process elevation
131                 MUTILS_API bool is_elevated(bool *bIsUacEnabled = NULL);
132                 MUTILS_API bool user_is_admin(void);
133
134                 //Network Status
135                 MUTILS_API int network_status(void);
136
137                 //Message handler
138                 MUTILS_API bool handle_os_message(const void *const message, long *result);
139
140                 //Sleep
141                 MUTILS_API void sleep_ms(const size_t &duration);
142
143                 //Is executable file?
144                 MUTILS_API bool is_executable_file(const QString &path);
145
146                 //Shutdown & Hibernation
147                 MUTILS_API bool is_hibernation_supported(void);
148                 MUTILS_API bool shutdown_computer(const QString &message, const unsigned long timeout, const bool forceShutdown, const bool hibernate);
149
150                 //Free diskspace
151                 MUTILS_API bool free_diskspace(const QString &path, quint64 &freeSpace);
152
153                 //Shell open
154                 MUTILS_API bool shell_open(const QWidget *parent, const QString &url, const bool explore = false);
155                 MUTILS_API bool shell_open(const QWidget *parent, const QString &url, const QString &parameters, const QString &directory, const bool explore = false);
156
157                 //Open media file
158                 MUTILS_API bool open_media_file(const QString &mediaFilePath);
159
160                 //Process priority
161                 MUTILS_API bool change_process_priority(const int priority);
162                 MUTILS_API bool change_process_priority(const QProcess *proc, const int priority);
163
164                 //Process ID
165                 MUTILS_API quint32 process_id(const QProcess *const proc);
166
167                 //Suspend or resume processv
168                 MUTILS_API bool suspend_process(const QProcess *proc, const bool suspend);
169
170                 //System timer resolution
171                 MUTILS_API bool setup_timer_resolution(const quint32 &interval = 1);
172                 MUTILS_API bool reset_timer_resolution(const quint32 &interval = 1);
173
174                 //Set file time
175                 MUTILS_API bool set_file_time(const QFile &file,   const QDateTime &created = QDateTime(), const QDateTime &modified = QDateTime(), const QDateTime &accessed = QDateTime());
176                 MUTILS_API bool set_file_time(const QString &path, const QDateTime &created = QDateTime(), const QDateTime &modified = QDateTime(), const QDateTime &accessed = QDateTime());
177
178                 //Keyboard support
179                 MUTILS_API bool check_key_state_esc(void);
180
181                 //Shell notification
182                 MUTILS_API void shell_change_notification(void);
183
184                 //Get file path from descriptor
185                 MUTILS_API QString get_file_path(const int &fd);
186
187                 //WOW64 redirection
188                 MUTILS_API bool wow64fsredir_disable(void *oldValue);
189                 MUTILS_API bool wow64fsredir_revert (void *oldValue);
190
191                 //Check if debugger is present
192                 MUTILS_API void check_debugger(void);
193
194                 //Error handling
195                 MUTILS_API void fatal_exit(const wchar_t* const errorMessage);
196         }
197 }
198
199 ///////////////////////////////////////////////////////////////////////////////