OSDN Git Service

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