-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsounds.py
194 lines (159 loc) · 6.08 KB
/
sounds.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
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
from enum import Enum, auto
import os
import json
from play_sound import playsound
import subprocess
from log import MeticulousLogger
from config import (
MeticulousConfig,
CONFIG_USER,
CONFIG_SYSTEM,
SOUNDS_THEME,
SOUNDS_ENABLED,
)
logger = MeticulousLogger.getLogger(__name__)
USER_SOUNDS = os.getenv("USER_SOUNDS", "/meticulous-user/sounds")
SYSTEM_SOUNDS = os.getenv("SYSTEM_SOUNDS", "/opt/meticulous-backend/sounds")
class Sounds(Enum):
STARTUP = auto()
HEATING_START = auto()
HEATING_END = auto()
BREWING_START = auto()
BREWING_END = auto()
ABORT = auto()
IDLE = auto()
NOTIFICATION = auto()
class SoundPlayer:
SUPPORTED_FORMATS = [".mp3", ".wav", ".ogg", ".flac"]
DEFAULT_THEME_NAME = "default"
KNOWN_THEMES = None
CURRENT_THEME_CONFIG = {}
CURRENT_THEME_NAME = ""
DEFAULT_THEME_CONFIG = {}
def init(emulation=False, play_startup_sound=True):
if not emulation:
# Set the output pin for the IMX som
command = ["gpioset", "gpiochip4", "25=1"]
subprocess.run(command)
# Theme detection
themes = {}
system_themes = SoundPlayer.scan_folder(SYSTEM_SOUNDS)
if USER_SOUNDS != "":
user_themes = SoundPlayer.scan_folder(USER_SOUNDS)
themes.update(user_themes)
themes.update(system_themes)
SoundPlayer.KNOWN_THEMES = themes
SoundPlayer.DEFAULT_THEME_CONFIG = SoundPlayer._load_theme(
SoundPlayer.DEFAULT_THEME_NAME
)
SoundPlayer.set_theme(MeticulousConfig[CONFIG_SYSTEM][SOUNDS_THEME])
if play_startup_sound:
SoundPlayer.play_event_sound(Sounds.STARTUP)
@staticmethod
def availableThemes():
if SoundPlayer.KNOWN_THEMES is None:
return {}
return SoundPlayer.KNOWN_THEMES
@staticmethod
def scan_folder(folder_path):
themefolders = {}
logger.info(f"Scanning Theme folder {folder_path}")
for root, dirs, files in os.walk(folder_path):
for dir in dirs:
subfolder_path = os.path.join(root, dir)
if SoundPlayer._has_config_file(subfolder_path):
themefolders[dir] = subfolder_path
logger.info(f"Found sound theme '{subfolder_path}'")
return themefolders
@staticmethod
def _has_config_file(subfolder_path):
try:
config_path = os.path.join(subfolder_path, "config.json")
with open(config_path) as f:
json.load(f)
return True
except Exception:
logger.info(f"'{subfolder_path}' has no config.json")
pass
return False
@staticmethod
def set_theme(theme_name):
"""
Set the current theme if it exists.
:param theme_name: The name of the theme to set as the current theme.
"""
if SoundPlayer.KNOWN_THEMES is None:
logger.warning(
"Manipulating theme before SoundPlayer was initialized. Ignoring."
)
return False
if theme_name in SoundPlayer.availableThemes() or theme_name is None:
MeticulousConfig[CONFIG_SYSTEM][SOUNDS_THEME] = theme_name
MeticulousConfig.save()
SoundPlayer.CURRENT_THEME_CONFIG = SoundPlayer.DEFAULT_THEME_CONFIG
new_theme = SoundPlayer._load_theme(theme_name)
SoundPlayer.CURRENT_THEME_CONFIG.update(new_theme)
SoundPlayer.CURRENT_THEME_NAME = theme_name
logger.info(f"Sound theme '{theme_name}' loaded")
return True
else:
logger.error(f"Error: Theme '{theme_name}' is not available.")
# Prevent infinite recursion
if theme_name != SoundPlayer.DEFAULT_THEME_NAME:
SoundPlayer.set_theme(SoundPlayer.DEFAULT_THEME_NAME)
return False
@staticmethod
def get_theme():
return SoundPlayer.CURRENT_THEME_CONFIG
@staticmethod
def _load_theme(theme_name):
if theme_name not in SoundPlayer.availableThemes():
return False
try:
theme_folder = SoundPlayer.availableThemes()[theme_name]
theme_config_file = open(os.path.join(theme_folder, "config.json"))
theme_config = json.load(theme_config_file)
return theme_config
except Exception:
return {}
@staticmethod
def play_event_sound(sound_event: Sounds):
return SoundPlayer.play_sound(sound_event.name.lower())
@staticmethod
def play_sound(sound_name):
if not MeticulousConfig[CONFIG_USER][SOUNDS_ENABLED]:
logger.info("No sounds enabled")
return True
if SoundPlayer.KNOWN_THEMES is None:
logger.warning(
"Playing sound before SoundPlayer was initialized. Ignoring."
)
return False
# Just in case we have a stale mapping
if (
SoundPlayer.CURRENT_THEME_NAME
!= MeticulousConfig[CONFIG_SYSTEM][SOUNDS_THEME]
):
SoundPlayer.set_theme(MeticulousConfig[CONFIG_SYSTEM][SOUNDS_THEME])
if sound_name not in SoundPlayer.CURRENT_THEME_CONFIG:
logger.info("Sound not found")
return False
theme_name = SoundPlayer.CURRENT_THEME_NAME
theme_path = SoundPlayer.KNOWN_THEMES[theme_name]
file_name = SoundPlayer.CURRENT_THEME_CONFIG.get(sound_name, {})
# Sound is disabled by the theme
if file_name in [{}, "", None]:
logger.info(f"Sound {sound_name} is disabled by the theme")
return True
file_path = os.path.join(theme_path, file_name)
file_path = os.path.abspath(file_path)
logger.info(f"Playing {sound_name} from {file_path}")
if not os.path.exists(file_path):
logger.warning(f"Sound file not found: {file_path}")
return False
try:
playsound(file_path, block=False)
except Exception as e:
logger.exception(f"Failed to play sound: {e}")
return False
return True