-
-
Notifications
You must be signed in to change notification settings - Fork 236
/
Copy pathsensors.py
129 lines (103 loc) · 3.04 KB
/
sensors.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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
# 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 defines all supported hardware in virtual classes and their abstract methods to access sensors
# To be overriden by child sensors classes
from abc import ABC, abstractmethod
from typing import List, Tuple
class Cpu(ABC):
@staticmethod
@abstractmethod
def percentage(interval: float) -> float:
pass
@staticmethod
@abstractmethod
def frequency() -> float:
pass
@staticmethod
@abstractmethod
def load() -> Tuple[float, float, float]: # 1 / 5 / 15min avg (%)
pass
@staticmethod
@abstractmethod
def temperature() -> float:
pass
@staticmethod
@abstractmethod
def fan_percent(fan_name: str = None) -> float:
pass
class Gpu(ABC):
@staticmethod
@abstractmethod
def stats() -> Tuple[
float, float, float, float, float]: # load (%) / used mem (%) / used mem (Mb) / total mem (Mb) / temp (°C)
pass
@staticmethod
@abstractmethod
def fps() -> int:
pass
@staticmethod
@abstractmethod
def fan_percent() -> float:
pass
@staticmethod
@abstractmethod
def frequency() -> float:
pass
@staticmethod
@abstractmethod
def is_available() -> bool:
pass
@staticmethod
@abstractmethod
def get_gpu_names() -> List[str]:
pass
class Memory(ABC):
@staticmethod
@abstractmethod
def swap_percent() -> float:
pass
@staticmethod
@abstractmethod
def virtual_percent() -> float:
pass
@staticmethod
@abstractmethod
def virtual_used() -> int: # In bytes
pass
@staticmethod
@abstractmethod
def virtual_free() -> int: # In bytes
pass
class Disk(ABC):
@staticmethod
@abstractmethod
def disk_usage_percent() -> float:
pass
@staticmethod
@abstractmethod
def disk_used() -> int: # In bytes
pass
@staticmethod
@abstractmethod
def disk_free() -> int: # In bytes
pass
class Net(ABC):
@staticmethod
@abstractmethod
def stats(if_name, interval) -> Tuple[
int, int, int, int]: # up rate (B/s), uploaded (B), dl rate (B/s), downloaded (B)
pass