1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
|
/*
* SystemBackendPosix.cpp
*
* Copyright (C) 2008 Matthias Schiffer <matthias@gamezock.de>
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "SystemBackendPosix.h"
#include <Core/ThreadManager.h>
#include <stdio.h>
#include <stdlib.h>
namespace Mad {
namespace Modules {
boost::shared_ptr<SystemBackendPosix> SystemBackendPosix::backend;
void SystemBackendPosix::getFSInfo(std::vector<Common::SystemManager::FSInfo> *fsInfo) throw(Core::Exception) {
Core::ThreadManager::get()->detach();
FILE *pipe = popen("/bin/df -P -k", "r");
if(!pipe)
throw(Core::Exception(Core::Exception::NOT_AVAILABLE));
char buffer[1024];
std::string output;
while(!feof(pipe)) {
if(fgets(buffer, sizeof(buffer), pipe) != 0)
output += buffer;
}
pclose(pipe);
if(!fsInfo)
return;
fsInfo->clear();
std::istringstream stream(output);
std::string str;
std::getline(stream, str); // ignore first line
while(!stream.eof()) {
std::getline(stream, str);
char *fsName = new char[str.length()+1];
char *mountedOn = new char[str.length()+1];
Common::SystemManager::FSInfo info;
if(std::sscanf(str.c_str(), "%s %lld %lld %lld %*d%% %s", fsName, &info.total, &info.used, &info.available, mountedOn) == 5) {
info.fsName = fsName;
info.mountedOn = mountedOn;
fsInfo->push_back(info);
}
delete [] fsName;
delete [] mountedOn;
}
return;
}
void SystemBackendPosix::shutdown() throw(Core::Exception) {
Core::ThreadManager::get()->detach();
if(system("/sbin/halt") != 0)
throw(Core::Exception(Core::Exception::NOT_AVAILABLE));
}
void SystemBackendPosix::reboot() throw(Core::Exception) {
Core::ThreadManager::get()->detach();
if(system("/sbin/reboot") != 0)
throw(Core::Exception(Core::Exception::NOT_AVAILABLE));
}
}
}
extern "C" {
void SystemBackendPosix_init() {
Mad::Modules::SystemBackendPosix::registerBackend();
}
void SystemBackendPosix_deinit() {
Mad::Modules::SystemBackendPosix::unregisterBackend();
}
}
|