OSDN Git Service

Added get_file_version() function + workaround to make get_real_os_version() give...
[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 ///////////////////////////////////////////////////////////////////////////////
33
34 namespace MUtils
35 {
36         namespace OS
37         {
38                 namespace Version
39                 {
40                         //Supported OS types
41                         typedef enum
42                         {
43                                 OS_UNKNOWN = 0,
44                                 OS_WINDOWS = 1
45                         }
46                         os_type_t;
47
48                         //OS version struct
49                         typedef struct _os_info_t
50                         {
51                                 unsigned int type;
52                                 unsigned int versionMajor;
53                                 unsigned int versionMinor;
54                                 bool overrideFlag;
55
56                                 MUTILS_API bool operator== (const _os_info_t &rhs) const;
57                                 MUTILS_API bool operator!= (const _os_info_t &rhs) const;
58                                 MUTILS_API bool operator>  (const _os_info_t &rhs) const;
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                         }
63                         os_version_t;
64
65                         //Known Windows NT versions
66                         MUTILS_API extern const os_version_t WINDOWS_WIN2K;     // 2000
67                         MUTILS_API extern const os_version_t WINDOWS_WINXP;     // XP
68                         MUTILS_API extern const os_version_t WINDOWS_XPX64;     // XP_x64
69                         MUTILS_API extern const os_version_t WINDOWS_VISTA;     // Vista
70                         MUTILS_API extern const os_version_t WINDOWS_WIN70;     // 7
71                         MUTILS_API extern const os_version_t WINDOWS_WIN80;     // 8
72                         MUTILS_API extern const os_version_t WINDOWS_WIN81;     // 8.1
73                         MUTILS_API extern const os_version_t WINDOWS_WN100;     // 10
74
75                         //Unknown OS
76                         MUTILS_API extern const os_version_t UNKNOWN_OPSYS;     // N/A
77                 }
78
79                 //Known Folders IDs
80                 typedef enum
81                 {
82                         FOLDER_LOCALAPPDATA = 0,
83                         FOLDER_PROGRAMFILES = 2,
84                         FOLDER_SYSTEMFOLDER = 3,
85                         FOLDER_SYSTROOT_DIR = 4
86                 }
87                 known_folder_t;
88                 
89                 //Network connection types
90                 typedef enum
91                 {
92                         NETWORK_TYPE_ERR = 0,   /*unknown*/
93                         NETWORK_TYPE_NON = 1,   /*not connected*/
94                         NETWORK_TYPE_YES = 2    /*connected*/
95                 }
96                 network_type_t;
97                                 
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);
102
103                 //CLI Arguments
104                 typedef QMap<QString,QString> ArgumentMap;
105                 MUTILS_API const ArgumentMap &arguments(void);
106
107                 //Copy file
108                 typedef bool (*progress_callback_t)(const double &progress, void *const userData);
109                 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);
110
111                 //Get file version
112                 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);
113
114                 //Get the OS version
115                 MUTILS_API const Version::os_version_t &os_version(void);
116                 MUTILS_API const char *os_friendly_name(const MUtils::OS::Version::os_version_t &os_version);
117                 MUTILS_API const bool &running_on_wine(void);
118
119                 //Get known Folder
120                 MUTILS_API const QString &known_folder(known_folder_t folder_id);
121
122                 //Current Date & Time
123                 MUTILS_API QDate current_date(void);
124                 MUTILS_API quint64 current_file_time(void);
125
126                 //Check for process elevation
127                 MUTILS_API bool is_elevated(bool *bIsUacEnabled = NULL);
128                 MUTILS_API bool user_is_admin(void);
129
130                 //Network Status
131                 MUTILS_API int network_status(void);
132
133                 //Message handler
134                 MUTILS_API bool handle_os_message(const void *const message, long *result);
135
136                 //Sleep
137                 MUTILS_API void sleep_ms(const size_t &duration);
138
139                 //Is executable file?
140                 MUTILS_API bool is_executable_file(const QString &path);
141
142                 //Shutdown & Hibernation
143                 MUTILS_API bool is_hibernation_supported(void);
144                 MUTILS_API bool shutdown_computer(const QString &message, const unsigned long timeout, const bool forceShutdown, const bool hibernate);
145
146                 //Free diskspace
147                 MUTILS_API bool free_diskspace(const QString &path, quint64 &freeSpace);
148
149                 //Shell open
150                 MUTILS_API bool shell_open(const QWidget *parent, const QString &url, const bool explore = false);
151                 MUTILS_API bool shell_open(const QWidget *parent, const QString &url, const QString &parameters, const QString &directory, const bool explore = false);
152
153                 //Open media file
154                 MUTILS_API bool open_media_file(const QString &mediaFilePath);
155
156                 //Process priority
157                 MUTILS_API bool change_process_priority(const int priority);
158                 MUTILS_API bool change_process_priority(const QProcess *proc, const int priority);
159
160                 //Process ID
161                 MUTILS_API quint32 process_id(const QProcess *const proc);
162
163                 //Suspend or resume processv
164                 MUTILS_API bool suspend_process(const QProcess *proc, const bool suspend);
165
166                 //System timer resolution
167                 MUTILS_API bool setup_timer_resolution(const quint32 &interval = 1);
168                 MUTILS_API bool reset_timer_resolution(const quint32 &interval = 1);
169
170                 //Keyboard support
171                 MUTILS_API bool check_key_state_esc(void);
172
173                 //Shell notification
174                 MUTILS_API void shell_change_notification(void);
175
176                 //WOW64 redirection
177                 MUTILS_API bool wow64fsredir_disable(void *oldValue);
178                 MUTILS_API bool wow64fsredir_revert (void *oldValue);
179
180                 //Check if debugger is present
181                 MUTILS_API void check_debugger(void);
182
183                 //Error handling
184                 MUTILS_API void fatal_exit(const wchar_t* const errorMessage);
185         }
186 }
187
188 ///////////////////////////////////////////////////////////////////////////////