Otclient  14/8/2020
platform.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2010-2020 OTClient <https://github.com/edubart/otclient>
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a copy
5  * of this software and associated documentation files (the "Software"), to deal
6  * in the Software without restriction, including without limitation the rights
7  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8  * copies of the Software, and to permit persons to whom the Software is
9  * furnished to do so, subject to the following conditions:
10  *
11  * The above copyright notice and this permission notice shall be included in
12  * all copies or substantial portions of the Software.
13  *
14  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
20  * THE SOFTWARE.
21  */
22 
23 #ifndef PLATFORM_H
24 #define PLATFORM_H
25 
26 #include <string>
27 #include <vector>
28 #include <framework/stdext/types.h>
29 
30 class Platform
31 {
32 public:
33  void processArgs(std::vector<std::string>& args);
34  bool spawnProcess(std::string process, const std::vector<std::string>& args);
35  int getProcessId();
36  bool isProcessRunning(const std::string& name);
37  bool killProcess(const std::string& name);
38  std::string getTempPath();
39  std::string getCurrentDir();
40  bool copyFile(std::string from, std::string to);
41  bool fileExists(std::string file);
42  bool removeFile(std::string file);
43  ticks_t getFileModificationTime(std::string file);
44  void openUrl(std::string url);
45  std::string getCPUName();
46  double getTotalSystemMemory();
47  std::string getOSName();
48  std::string traceback(const std::string& where, int level = 1, int maxDepth = 32);
49 };
50 
51 extern Platform g_platform;
52 
53 #endif
Platform::getCurrentDir
std::string getCurrentDir()
Definition: unixplatform.cpp:83
Platform::getCPUName
std::string getCPUName()
Definition: unixplatform.cpp:127
g_platform
Platform g_platform
Definition: platform.cpp:25
Platform::removeFile
bool removeFile(std::string file)
Definition: unixplatform.cpp:105
types.h
Platform::getTempPath
std::string getTempPath()
Definition: unixplatform.cpp:78
Platform::getOSName
std::string getOSName()
Definition: unixplatform.cpp:159
Platform::openUrl
void openUrl(std::string url)
Definition: unixplatform.cpp:120
ticks_t
int64 ticks_t
Definition: types.h:43
Platform::killProcess
bool killProcess(const std::string &name)
Definition: unixplatform.cpp:73
Platform::copyFile
bool copyFile(std::string from, std::string to)
Definition: unixplatform.cpp:94
Platform::traceback
std::string traceback(const std::string &where, int level=1, int maxDepth=32)
Definition: unixplatform.cpp:172
Platform::getFileModificationTime
ticks_t getFileModificationTime(std::string file)
Definition: unixplatform.cpp:112
Platform::processArgs
void processArgs(std::vector< std::string > &args)
Definition: unixplatform.cpp:34
Platform::fileExists
bool fileExists(std::string file)
Definition: unixplatform.cpp:99
Platform::isProcessRunning
bool isProcessRunning(const std::string &name)
Definition: unixplatform.cpp:68
Platform::getTotalSystemMemory
double getTotalSystemMemory()
Definition: unixplatform.cpp:143
Platform
Definition: platform.h:30
Platform::spawnProcess
bool spawnProcess(std::string process, const std::vector< std::string > &args)
Definition: unixplatform.cpp:39
Platform::getProcessId
int getProcessId()
Definition: unixplatform.cpp:63