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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
/*******************************************************************************
GPU sensor
Copyright (C) 2024 Mavridis Philippe <mavridisf@gmail.com>
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/>.
Improvements and feedback are welcome!
*******************************************************************************/
// TQt
#include <tqregexp.h>
// TDE
#include <kstandarddirs.h>
#include <kdebug.h>
// Superkaramba
#include "gpusensor.h"
GPUSensor::GPUSensor(TQString gpuDriver, TQString gpuId, int interval)
: Sensor(interval), m_gpuDriver(gpuDriver), m_gpuId(gpuId)
{
if (m_gpuDriver.lower() == "nvidia")
{
TQString nvsmi = TDEStandardDirs::findExe("nvidia-smi");
if (nvsmi.isNull())
{
kdError() << "The NVidia System Management Interface software is not avaiable." << endl;
return;
}
m_command << nvsmi << "--query-gpu" << "utilization.gpu"
<< "--format=csv,noheader";
if (!m_gpuId.isNull())
{
m_command << TQString("--id=%1").arg(m_gpuId);
}
}
else
{
kdError() << "Unsupported driver specified for GPU sensor (" << m_gpuDriver << ");" << endl
<< "\tSupported drivers are: nvidia" << endl;
}
connect(&m_proc, TQ_SIGNAL(receivedStdout(TDEProcess*, char*, int)),
this, TQ_SLOT(receivedStdout(TDEProcess*, char*, int)));
connect(&m_proc, TQ_SIGNAL(processExited(TDEProcess*)),
this, TQ_SLOT(processExited(TDEProcess*)));
}
GPUSensor::~GPUSensor()
{
}
void GPUSensor::update()
{
if (m_command.isEmpty()) return;
m_proc.clearArguments();
m_proc << m_command;
m_proc.start(TDEProcess::NotifyOnExit, TDEProcess::Stdout);
}
void GPUSensor::receivedStdout(TDEProcess *proc, char *buffer, int buflen)
{
buffer[buflen] = 0;
m_buffer += TQCString(buffer);
}
TQString GPUSensor::getLoad()
{
if (m_gpuDriver.lower() == "nvidia")
{
return m_buffer.left(m_buffer.length() - 3);
}
return TQString::null;
}
#define SUB_FORMAT_STR(fstring, value) \
format.replace(TQRegExp(#fstring, false), value)
void GPUSensor::processExited(TDEProcess *proc)
{
SensorParams *sp;
Meter *meter;
TQString format;
TQString load = getLoad();
m_buffer = TQString::null;
TQObjectListIt it(*objList);
while (it != 0)
{
sp = (SensorParams*)(*it);
meter = sp->getMeter();
format = sp->getParam("FORMAT");
if( format.length() == 0)
{
format = "%v";
}
SUB_FORMAT_STR(%load, load);
SUB_FORMAT_STR(%v, load);
meter->setValue(format);
++it;
}
}
#undef SUB_FORMAT_STR
void GPUSensor::setMaxValue(SensorParams *sp)
{
sp->getMeter()->setMax(100);
}
#include "gpusensor.moc"
|