-
-
Notifications
You must be signed in to change notification settings - Fork 238
/
Copy pathsensors_stub_random.py
115 lines (87 loc) · 3.76 KB
/
sensors_stub_random.py
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
# turing-smart-screen-python - a Python system monitor and library for USB-C displays like Turing Smart Screen or XuanFang
# https://github.com/mathoudebine/turing-smart-screen-python/
# Copyright (C) 2021-2023 Matthieu Houdebine (mathoudebine)
#
# 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 <https://www.gnu.org/licenses/>.
# This file will use randomly generated data instead of real hardware sensors
# For all platforms (Linux, Windows, macOS)
import random
from typing import Tuple, List
import library.sensors.sensors as sensors
class Cpu(sensors.Cpu):
@staticmethod
def percentage(interval: float) -> float:
return random.uniform(0, 100)
@staticmethod
def frequency() -> float:
return random.uniform(800, 3400)
@staticmethod
def load() -> Tuple[float, float, float]: # 1 / 5 / 15min avg (%):
return random.uniform(0, 100), random.uniform(0, 100), random.uniform(0, 100)
@staticmethod
def temperature() -> float:
return random.uniform(30, 90)
@staticmethod
def fan_percent(fan_name: str = None) -> float:
return random.uniform(0, 100)
class Gpu(sensors.Gpu):
@staticmethod
def stats() -> List[Tuple[float, float, float, float, float]]: # load (%) / used mem (%) / used mem (Mb) / total mem (Mb) / temp (°C)
gpu0 = (random.uniform(0, 100), random.uniform(0, 100), random.uniform(300, 16000), 16000.0, random.uniform(30, 90))
gpu1 = (random.uniform(0, 100), random.uniform(0, 100), random.uniform(300, 16000), 16000.0, random.uniform(30, 90))
return [gpu0, gpu1]
@staticmethod
def get_gpu_names() -> List[str]:
return ["Dummy GPU 0 (Rand)", "Dummy GPU 1 (Rand)"]
@staticmethod
def fps() -> List[int]:
return [random.randint(20, 120), random.randint(20, 120)]
@staticmethod
def fan_percent() -> List[float]:
return [random.uniform(0, 100), random.uniform(0, 100)]
@staticmethod
def frequency() -> List[float]:
return [random.uniform(800, 3400), random.uniform(800, 3400)]
@staticmethod
def is_available() -> bool:
return True
class Memory(sensors.Memory):
@staticmethod
def swap_percent() -> float:
return random.uniform(0, 100)
@staticmethod
def virtual_percent() -> float:
return random.uniform(0, 100)
@staticmethod
def virtual_used() -> int: # In bytes
return random.randint(300000000, 16000000000)
@staticmethod
def virtual_free() -> int: # In bytes
return random.randint(300000000, 16000000000)
class Disk(sensors.Disk):
@staticmethod
def disk_usage_percent() -> float:
return random.uniform(0, 100)
@staticmethod
def disk_used() -> int: # In bytes
return random.randint(1000000000, 2000000000000)
@staticmethod
def disk_free() -> int: # In bytes
return random.randint(1000000000, 2000000000000)
class Net(sensors.Net):
@staticmethod
def stats(if_name, interval) -> Tuple[
int, int, int, int]: # up rate (B/s), uploaded (B), dl rate (B/s), downloaded (B)
return random.randint(1000000, 999000000), random.randint(1000000, 999000000), random.randint(
1000000, 999000000), random.randint(1000000, 999000000)