This repository was archived by the owner on Nov 10, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHardwareWrapper.cpp
More file actions
547 lines (484 loc) · 17.4 KB
/
Copy pathHardwareWrapper.cpp
File metadata and controls
547 lines (484 loc) · 17.4 KB
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
/*
================================================================================
MIT License
Copyright (c) 2025 gafoo
This file is part of the HardView project:
https://github.com/gafoo173/HardView
Licensed under the MIT License.
See the LICENSE file in the project root for more details.
================================================================================
*/
#include "pch.h"
#include "HardwareWrapper.h"
#include <vector>
#include <msclr/marshal_cppstd.h>
#include <ObjBase.h>
#include <string>
#pragma comment(lib, "Ole32.lib")
using namespace System::IO;
using namespace System::Reflection;
using namespace System;
using namespace LibreHardwareMonitor::Hardware;
using namespace msclr::interop;
public ref class MonitorManager abstract sealed
{
private:
static System::Object^ computer = nullptr;
static Assembly^ ResolveAssembly(Object^ sender, ResolveEventArgs^ args)
{
String^ baseDir = Path::GetDirectoryName(Assembly::GetExecutingAssembly()->Location);
String^ dllName = (gcnew AssemblyName(args->Name))->Name + ".dll";
String^ fullPath = Path::Combine(baseDir, dllName);
if (File::Exists(fullPath))
return Assembly::LoadFrom(fullPath);
return nullptr;
}
static double GetTemperatureForHardwareType(HardwareType type, String^ sensorNamePartialMatch)
{
Init();
auto comp = safe_cast<LibreHardwareMonitor::Hardware::Computer^>(computer);
if (comp == nullptr)
return -99.0;
for each(IHardware ^ hardware in comp->Hardware)
{
if (hardware->HardwareType == type)
{
for each(ISensor ^ sensor in hardware->Sensors)
{
if (sensor->SensorType == SensorType::Temperature &&
(sensorNamePartialMatch == nullptr || sensor->Name->Contains(sensorNamePartialMatch)))
{
return sensor->Value.HasValue ? sensor->Value.Value : -1.0;
}
}
}
}
return -1.0;
}
static double GetFanRpmForHardwareType(HardwareType type, String^ sensorNamePartialMatch)
{
Init();
auto comp = safe_cast<LibreHardwareMonitor::Hardware::Computer^>(computer);
if (comp == nullptr)
return -99.0;
for each(IHardware ^ hardware in comp->Hardware)
{
if (hardware->HardwareType == type)
{
for each(ISensor ^ sensor in hardware->Sensors)
{
if (sensor->SensorType == SensorType::Fan &&
(sensorNamePartialMatch == nullptr || sensor->Name->Contains(sensorNamePartialMatch)))
{
return sensor->Value.HasValue ? sensor->Value.Value : -1.0;
}
}
}
}
return -1.0;
}
public:
static MonitorManager()
{
AppDomain::CurrentDomain->AssemblyResolve +=
gcnew ResolveEventHandler(&MonitorManager::ResolveAssembly);
}
static void Init()
{
if (computer == nullptr)
{
LibreHardwareMonitor::Hardware::Computer^ comp = gcnew LibreHardwareMonitor::Hardware::Computer();
comp->IsCpuEnabled = true;
comp->IsGpuEnabled = true;
comp->IsMotherboardEnabled = true;
comp->IsStorageEnabled = true;
comp->IsMemoryEnabled = true;
comp->IsControllerEnabled = true;
comp->IsNetworkEnabled = true;
comp->Open();
computer = comp;
}
}
static void Update()
{
auto comp = safe_cast<LibreHardwareMonitor::Hardware::Computer^>(computer);
if (comp != nullptr)
{
for each(IHardware ^ hardware in comp->Hardware)
hardware->Update();
}
}
static void SpecificUpdate(int componentId)
{
Init();
auto comp = safe_cast<LibreHardwareMonitor::Hardware::Computer^>(computer);
if (comp == nullptr)
return;
for each(IHardware ^ hardware in comp->Hardware)
{
switch (componentId)
{
case 1: // Motherboard
if (hardware->HardwareType == HardwareType::Motherboard)
hardware->Update();
break;
case 2: // SuperIO
if (hardware->HardwareType == HardwareType::SuperIO)
hardware->Update();
break;
case 3: // CPU
if (hardware->HardwareType == HardwareType::Cpu)
hardware->Update();
break;
case 4: // Memory
if (hardware->HardwareType == HardwareType::Memory)
hardware->Update();
break;
case 5: // GPU (Nvidia + AMD + Intel)
if (hardware->HardwareType == HardwareType::GpuNvidia ||
hardware->HardwareType == HardwareType::GpuAmd ||
hardware->HardwareType == HardwareType::GpuIntel)
{
hardware->Update();
}
break;
case 6: // Storage
if (hardware->HardwareType == HardwareType::Storage)
hardware->Update();
break;
case 7: // Network
if (hardware->HardwareType == HardwareType::Network)
hardware->Update();
break;
case 8: // Cooler
if (hardware->HardwareType == HardwareType::Cooler)
hardware->Update();
break;
case 9: // EmbeddedController
if (hardware->HardwareType == HardwareType::EmbeddedController)
hardware->Update();
break;
case 10: // PSU
if (hardware->HardwareType == HardwareType::Psu)
hardware->Update();
break;
case 11: // Battery
if (hardware->HardwareType == HardwareType::Battery)
hardware->Update();
break;
default:
break;
}
}
}
static double GetCpuTemperature()
{
return GetTemperatureForHardwareType(HardwareType::Cpu, "Package");
}
static double GetGpuTemperature()
{
double temp = GetTemperatureForHardwareType(HardwareType::GpuNvidia, nullptr);
if (temp == -1.0) temp = GetTemperatureForHardwareType(HardwareType::GpuAmd, nullptr);
if (temp == -1.0) temp = GetTemperatureForHardwareType(HardwareType::GpuIntel, nullptr);
return temp;
}
static double GetMotherboardTemperature()
{
return GetTemperatureForHardwareType(HardwareType::Motherboard, nullptr);
}
static double GetStorageTemperature()
{
return GetTemperatureForHardwareType(HardwareType::Storage, nullptr);
}
static double GetAverageCpuCoreTemperature()
{
Init();
auto comp = safe_cast<LibreHardwareMonitor::Hardware::Computer^>(computer);
if (comp == nullptr)
return -1.0;
for each(IHardware ^ hw in comp->Hardware)
{
if (hw->HardwareType != HardwareType::Cpu) continue;
for each(ISensor ^ s in hw->Sensors)
{
if (s->SensorType == SensorType::Temperature &&
s->Name->Contains("Core Average") &&
s->Value.HasValue)
{
return s->Value.Value;
}
}
}
double total = 0.0;
int count = 0;
for each(IHardware ^ hw in comp->Hardware)
{
if (hw->HardwareType != HardwareType::Cpu) continue;
for each(ISensor ^ s in hw->Sensors)
{
if (s->SensorType != SensorType::Temperature || !s->Value.HasValue) continue;
String^ name = s->Name;
bool isDerived = name->Contains("Average") || name->Contains("Max") || name->Contains("Distance");
bool isPerCore = name->StartsWith("CPU Core #") || name->StartsWith("Core #");
if (!isDerived && isPerCore)
{
total += s->Value.Value;
count++;
}
}
}
return count ? (total / count) : -1.0;
}
static double GetMaxCpuCoreTemperature()
{
Init();
auto comp = safe_cast<LibreHardwareMonitor::Hardware::Computer^>(computer);
if (comp == nullptr)
return -1.0;
for each(IHardware ^ hw in comp->Hardware)
{
if (hw->HardwareType != HardwareType::Cpu) continue;
for each(ISensor ^ s in hw->Sensors)
{
if (s->SensorType == SensorType::Temperature &&
s->Name->Contains("Core Max") &&
s->Value.HasValue)
{
return s->Value.Value;
}
}
}
double maxTemp = -1.0;
for each(IHardware ^ hw in comp->Hardware)
{
if (hw->HardwareType != HardwareType::Cpu) continue;
for each(ISensor ^ s in hw->Sensors)
{
if (s->SensorType != SensorType::Temperature || !s->Value.HasValue) continue;
String^ name = s->Name;
bool isDerived = name->Contains("Average") || name->Contains("Max") || name->Contains("Distance");
bool isPerCore = name->StartsWith("CPU Core #") || name->StartsWith("Core #");
if (!isDerived && isPerCore)
{
if (s->Value.Value > maxTemp)
maxTemp = s->Value.Value;
}
}
}
return maxTemp;
}
static std::vector<std::string> GetAllSensorNames()
{
Init();
std::vector<std::string> sensorNames;
auto comp = safe_cast<LibreHardwareMonitor::Hardware::Computer^>(computer);
if (comp == nullptr)
return sensorNames;
for each(IHardware ^ hardware in comp->Hardware)
{
for each(ISensor ^ sensor in hardware->Sensors)
{
String^ fullSensorName = String::Format("{0} - {1} - {2}",
hardware->Name, sensor->SensorType.ToString(), sensor->Name);
sensorNames.push_back(marshal_as<std::string>(fullSensorName));
}
}
return sensorNames;
}
static double GetCpuFanRpmInternal()
{
return GetFanRpmForHardwareType(HardwareType::Cpu, nullptr);
}
static double GetGpuFanRpmInternal()
{
double rpm = GetFanRpmForHardwareType(HardwareType::GpuNvidia, nullptr);
if (rpm == -1.0) rpm = GetFanRpmForHardwareType(HardwareType::GpuAmd, nullptr);
return rpm;
}
static void GetAllFanData(std::vector<std::string>& fanNames, std::vector<double>& rpms)
{
Init();
auto comp = safe_cast<LibreHardwareMonitor::Hardware::Computer^>(computer);
if (comp == nullptr)
return;
for each(IHardware ^ hardware in comp->Hardware)
{
for each(ISensor ^ sensor in hardware->Sensors)
{
if (sensor->SensorType == SensorType::Fan)
{
String^ fullFanName = String::Format("{0} - {1}", hardware->Name, sensor->Name);
fanNames.push_back(marshal_as<std::string>(fullFanName));
rpms.push_back(sensor->Value.HasValue ? sensor->Value.Value : -1.0);
}
}
}
}
static double GetSpecificSensorValueInternal(String^ fullSensorNameManaged)
{
Init();
auto comp = safe_cast<LibreHardwareMonitor::Hardware::Computer^>(computer);
if (comp == nullptr || fullSensorNameManaged == nullptr)
return -99.0;
for each(IHardware ^ hardware in comp->Hardware)
{
for each(ISensor ^ sensor in hardware->Sensors)
{
String^ currentSensorFullName = String::Format("{0} - {1} - {2}",
hardware->Name, sensor->SensorType.ToString(), sensor->Name);
if (currentSensorFullName->Equals(fullSensorNameManaged))
{
return sensor->Value.HasValue ? sensor->Value.Value : -1.0;
}
}
}
return -1.0;
}
};
// C-style functions to be exported from DLL
extern "C" __declspec(dllexport) void InitHardwareMonitor()
{
MonitorManager::Init();
}
extern "C" __declspec(dllexport) double GetCpuTemperature()
{
return MonitorManager::GetCpuTemperature();
}
extern "C" __declspec(dllexport) double GetGpuTemperature()
{
return MonitorManager::GetGpuTemperature();
}
extern "C" __declspec(dllexport) double GetMotherboardTemperature()
{
return MonitorManager::GetMotherboardTemperature();
}
extern "C" __declspec(dllexport) double GetStorageTemperature()
{
return MonitorManager::GetStorageTemperature();
}
extern "C" __declspec(dllexport) double GetAverageCpuCoreTemperature()
{
return MonitorManager::GetAverageCpuCoreTemperature();
}
extern "C" __declspec(dllexport) double GetMaxCpuCoreTemperature()
{
return MonitorManager::GetMaxCpuCoreTemperature();
}
extern "C" __declspec(dllexport) void GetAvailableSensors(char*** sensorNames, int* count)
{
std::vector<std::string> names = MonitorManager::GetAllSensorNames();
*count = names.size();
*sensorNames = (char**)CoTaskMemAlloc(sizeof(char*) * (*count));
if (*sensorNames == nullptr) {
*count = 0;
return;
}
for (int i = 0; i < *count; ++i)
{
size_t len = names[i].length() + 1;
(*sensorNames)[i] = (char*)CoTaskMemAlloc(len);
if ((*sensorNames)[i] == nullptr) {
for (int j = 0; j < i; ++j) {
CoTaskMemFree((*sensorNames)[j]);
}
CoTaskMemFree(*sensorNames);
*sensorNames = nullptr;
*count = 0;
return;
}
strcpy_s((*sensorNames)[i], len, names[i].c_str());
}
}
extern "C" __declspec(dllexport) void FreeSensorNames(char** sensorNames, int count)
{
if (sensorNames != nullptr)
{
for (int i = 0; i < count; ++i)
{
if (sensorNames[i] != nullptr)
{
CoTaskMemFree(sensorNames[i]);
}
}
CoTaskMemFree(sensorNames);
}
}
extern "C" __declspec(dllexport) double GetCpuFanRpm()
{
return MonitorManager::GetCpuFanRpmInternal();
}
extern "C" __declspec(dllexport) double GetGpuFanRpm()
{
return MonitorManager::GetGpuFanRpmInternal();
}
extern "C" __declspec(dllexport) void GetAllFanRpms(char*** fanNames, double** rpms, int* count)
{
std::vector<std::string> namesVec;
std::vector<double> rpmsVec;
MonitorManager::GetAllFanData(namesVec, rpmsVec);
*count = namesVec.size();
if (*count == 0) {
*fanNames = nullptr;
*rpms = nullptr;
return;
}
*fanNames = (char**)CoTaskMemAlloc(sizeof(char*) * (*count));
*rpms = (double*)CoTaskMemAlloc(sizeof(double) * (*count));
if (*fanNames == nullptr || *rpms == nullptr) {
if (*fanNames != nullptr) CoTaskMemFree(*fanNames);
if (*rpms != nullptr) CoTaskMemFree(*rpms);
*fanNames = nullptr;
*rpms = nullptr;
*count = 0;
return;
}
for (int i = 0; i < *count; ++i)
{
size_t len = namesVec[i].length() + 1;
(*fanNames)[i] = (char*)CoTaskMemAlloc(len);
if ((*fanNames)[i] == nullptr) {
for (int j = 0; j < i; ++j) CoTaskMemFree((*fanNames)[j]);
CoTaskMemFree(*fanNames);
CoTaskMemFree(*rpms);
*fanNames = nullptr;
*rpms = nullptr;
*count = 0;
return;
}
strcpy_s((*fanNames)[i], len, namesVec[i].c_str());
(*rpms)[i] = rpmsVec[i];
}
}
extern "C" __declspec(dllexport) void FreeFanData(char** fanNames, double* rpms, int count)
{
if (fanNames != nullptr)
{
for (int i = 0; i < count; ++i)
{
if (fanNames[i] != nullptr)
{
CoTaskMemFree(fanNames[i]);
}
}
CoTaskMemFree(fanNames);
}
if (rpms != nullptr)
{
CoTaskMemFree(rpms);
}
}
// New C-style exported function to get a specific sensor value by its full name
extern "C" __declspec(dllexport) double GetSpecificSensorValue(const char* fullSensorName)
{
// Marshal const char* to System::String^
String^ fullSensorNameManaged = marshal_as<String^>(fullSensorName);
return MonitorManager::GetSpecificSensorValueInternal(fullSensorNameManaged);
}
extern "C" __declspec(dllexport) void UpdateHardwareMonitor()
{
MonitorManager::Update();
}
extern "C" __declspec(dllexport) void SpecificUpdateHardwareTemp(int componentId)
{
MonitorManager::SpecificUpdate(componentId);
}