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
|
from dataclasses import dataclass
import logging
import time
from typing import TYPE_CHECKING, Iterator, Optional
from threading import Thread
from pyalsa.alsaseq import (
SeqEvent,
Sequencer,
SEQ_PORT_CAP_NO_EXPORT,
SEQ_PORT_CAP_READ,
SEQ_PORT_CAP_SUBS_READ,
SEQ_PORT_CAP_WRITE,
SEQ_PORT_CAP_SUBS_WRITE,
SEQ_PORT_TYPE_APPLICATION,
SEQ_CLIENT_SYSTEM,
SEQ_PORT_SYSTEM_ANNOUNCE,
SEQ_EVENT_CLIENT_START,
SEQ_EVENT_CLIENT_EXIT,
SEQ_EVENT_PORT_START,
SEQ_EVENT_PORT_EXIT,
SEQ_EVENT_PORT_SUBSCRIBED,
SEQ_EVENT_PORT_UNSUBSCRIBED,
)
from patshared import PortType
from .port_data import PortData
from .jack_bases import PatchEngineOuterMissing
if TYPE_CHECKING:
from patch_engine import PatchEngine
_logger = logging.getLogger(__name__)
PORT_IS_INPUT = 0x1
PORT_IS_OUTPUT = 0x2
PORT_IS_PHYSICAL = 0x4
_PORT_READS = SEQ_PORT_CAP_READ | SEQ_PORT_CAP_SUBS_READ
_PORT_WRITES = SEQ_PORT_CAP_WRITE | SEQ_PORT_CAP_SUBS_WRITE
@dataclass
class AlsaPort:
name: str
id: int
caps: int
physical: bool
def pb_name(self, mode_str: str, client: 'AlsaClient'):
return (
f":ALSA_{mode_str}:{client.id}:{self.id}:"
f"{client.name}:{self.name}")
@dataclass
class AlsaConn:
source_client_id: int
source_port_id: int
dest_client_id: int
dest_port_id: int
def as_port_names(
self, clients: dict[int, 'AlsaClient']) \
-> Optional[tuple[str, str]]:
src_client = clients.get(self.source_client_id)
dest_client = clients.get(self.dest_client_id)
if src_client is None or dest_client is None:
return None
src_port = src_client.ports.get(self.source_port_id)
dest_port = dest_client.ports.get(self.dest_port_id)
if src_port is None or dest_port is None:
return None
return (src_port.pb_name('OUT', src_client),
dest_port.pb_name('IN', dest_client))
class AlsaClient:
def __init__(self, alsa_mng: 'AlsaManager', name: str, id: int):
self.alsa_mng = alsa_mng
self.name = name
self.id = id
self.ports = dict[int, AlsaPort]()
def __repr__(self) -> str:
return f"AlsaClient({self.name}, {self.id})"
def add_port(self, port_id: int):
try:
port_info = self.alsa_mng.seq.get_port_info(port_id, self.id)
caps = port_info['capability']
except:
return
if caps & SEQ_PORT_CAP_NO_EXPORT:
return
if not(caps & _PORT_READS == _PORT_READS
or caps & _PORT_WRITES == _PORT_WRITES):
return
physical = not bool(port_info['type'] & SEQ_PORT_TYPE_APPLICATION)
self.ports[port_id] = AlsaPort(
port_info['name'], port_id, caps, physical)
class AlsaManager:
def __init__(self, jack_mng: 'PatchEngine'):
self.pbe = jack_mng.peo
self.seq = Sequencer(clientname='raysession')
self._all_alsa_connections = list[AlsaConn]()
self._connections = list[AlsaConn]()
self._clients = dict[int, AlsaClient]()
self._clients_names = dict[int, str]()
self._stopping = False
self._event_thread = Thread(target=self.read_events)
port_caps = (SEQ_PORT_CAP_WRITE
| SEQ_PORT_CAP_SUBS_WRITE
| SEQ_PORT_CAP_NO_EXPORT)
input_id = self.seq.create_simple_port(
name="raysession_port",
type=SEQ_PORT_TYPE_APPLICATION,
caps=port_caps)
self.seq.connect_ports(
(SEQ_CLIENT_SYSTEM, SEQ_PORT_SYSTEM_ANNOUNCE),
(self.seq.client_id, input_id))
def get_the_graph(self):
if self.seq is None:
return
clients = self.seq.connection_list()
self._clients_names.clear()
self._clients.clear()
self._all_alsa_connections.clear()
for client in clients:
client_name, client_id, port_list = client
self._clients_names[client_id] = client_name
self._clients[client_id] = AlsaClient(
self, client_name, client_id)
for port_name, port_id, connection_list in port_list:
self._clients[client_id].add_port(port_id)
connections = connection_list[0]
for connection in connections:
conn_client_id, conn_port_id = connection[:2]
self._all_alsa_connections.append(
AlsaConn(client_id, port_id,
conn_client_id, conn_port_id))
def add_client_to_patchbay(self, client_name: str):
if self.pbe is None:
raise PatchEngineOuterMissing
self.pbe.alsa_client_added(client_name)
def remove_client_from_patchbay(self, client_name: str):
if self.pbe is None:
raise PatchEngineOuterMissing
self.pbe.alsa_client_removed(client_name)
def add_port_to_patchbay(self, client: AlsaClient, port: AlsaPort):
if self.pbe is None:
raise PatchEngineOuterMissing
port_flags = 0
if port.physical:
port_flags = PORT_IS_PHYSICAL
if port.caps & _PORT_READS == _PORT_READS:
self.pbe.port_added(
port.pb_name('OUT', client),
PortType.MIDI_ALSA,
port_flags | PORT_IS_OUTPUT,
client.id * 0x10000 + port.id)
if port.caps & _PORT_WRITES == _PORT_WRITES:
self.pbe.port_added(
port.pb_name('IN', client),
PortType.MIDI_ALSA,
port_flags | PORT_IS_INPUT,
client.id * 0x10000 + port.id)
def remove_port_from_patchbay(self, client: AlsaClient, port: AlsaPort):
if self.pbe is None:
raise PatchEngineOuterMissing
if port.caps & _PORT_READS == _PORT_READS:
self.pbe.port_removed(
port.pb_name('OUT', client))
if port.caps & _PORT_WRITES == _PORT_WRITES:
self.pbe.port_removed(
port.pb_name('IN', client))
def add_all_ports(self):
if self.pbe is None:
raise PatchEngineOuterMissing
if self._event_thread.is_alive():
self.stop_events_loop()
self.get_the_graph()
for client in self._clients.values():
if client.name == 'System':
continue
self.add_client_to_patchbay(client.name)
for port in client.ports.values():
self.add_port_to_patchbay(client, port)
for conn in self._all_alsa_connections:
source_client = self._clients.get(conn.source_client_id)
dest_client = self._clients.get(conn.dest_client_id)
if source_client is None or dest_client is None:
continue
source_port = source_client.ports.get(conn.source_port_id)
dest_port = dest_client.ports.get(conn.dest_port_id)
if source_port is None or dest_port is None:
continue
self._connections.append(conn)
self.pbe.connection_added(
(source_port.pb_name('OUT', source_client),
dest_port.pb_name('IN', dest_client))
)
self._event_thread.start()
def parse_ports_and_flags(self) -> Iterator[PortData]:
for client_id, client in self._clients.items():
if client.name == 'System':
continue
for port_id, port in client.ports.items():
port_flags = 0
if port.physical:
port_flags = PORT_IS_PHYSICAL
if port.caps & _PORT_READS == _PORT_READS:
yield PortData(
port.pb_name('OUT', client),
PortType.MIDI_ALSA,
port_flags | PORT_IS_OUTPUT,
client.id * 0x10000 + port.id)
if port.caps & _PORT_WRITES == _PORT_WRITES:
yield PortData(
port.pb_name('IN', client),
PortType.MIDI_ALSA,
port_flags | PORT_IS_INPUT,
client.id * 0x10000 + port.id)
def parse_connections(self) -> Iterator[tuple[str, str]]:
for conn in self._connections:
src_client = self._clients.get(conn.source_client_id)
dest_client = self._clients.get(conn.dest_client_id)
if src_client is None or dest_client is None:
continue
src_port = src_client.ports.get(conn.source_port_id)
dest_port = dest_client.ports.get(conn.dest_port_id)
if src_port is None or dest_port is None:
continue
yield (src_port.pb_name('OUT', src_client),
dest_port.pb_name('IN', dest_client))
def connect_ports(self, port_out_name: str, port_in_name: str,
disconnect=False) -> bool:
try:
_, alsa_key, src_client_id, src_port_id, *rest = \
port_out_name.split(':')
_, alsa_key, dest_client_id, dest_port_id, *rest = \
port_in_name.split(':')
src_client_id, src_port_id \
= int(src_client_id), int(src_port_id)
dest_client_id, dest_port_id \
= int(dest_client_id), int(dest_port_id)
except BaseException as e:
if disconnect:
_logger.warning(
f'Failed to find ALSA ports to disconnect: '
f'{port_out_name} -> {port_in_name}\n{str(e)}')
else:
_logger.warning(
f'Failed to find ALSA ports to connect: '
f'{port_out_name} -> {port_in_name}\n{str(e)}')
return False
try:
if disconnect:
self.seq.disconnect_ports(
(src_client_id, src_port_id),
(dest_client_id, dest_port_id))
else:
self.seq.connect_ports(
(src_client_id, src_port_id),
(dest_client_id, dest_port_id),
0, 0, 0, 0)
except BaseException as e:
# TODO: investigate
# very strange, connect_ports often raise an exception
# but achieve to connect the ports
# So, sadly lets consider the connection is a success
return True
return True
def _process_event(self, event: SeqEvent):
if self.pbe is None:
raise PatchEngineOuterMissing
data = event.get_data()
if event.type == SEQ_EVENT_CLIENT_START:
try:
client_id = data['addr.client']
client_info = self.seq.get_client_info(client_id)
except:
return
n_tries = 0
client_outed = False
# Sometimes client name is not ready
while client_info['name'] == f'Client-{client_id}':
time.sleep(0.010)
try:
client_info = self.seq.get_client_info(client_id)
except:
client_outed = True
break
n_tries += 1
if n_tries >= 5:
break
if client_outed:
return
self._clients[client_id] = AlsaClient(
self, client_info['name'], client_id)
self.add_client_to_patchbay(self._clients[client_id].name)
elif event.type == SEQ_EVENT_CLIENT_EXIT:
client_id = data['addr.client']
client = self._clients.get(client_id)
if client is not None:
for port in client.ports.values():
self.remove_port_from_patchbay(client, port)
self.remove_client_from_patchbay(client.name)
del self._clients[client_id]
elif event.type == SEQ_EVENT_PORT_START:
client_id, port_id = data['addr.client'], data['addr.port']
client = self._clients.get(client_id)
if client is None:
return
client.add_port(port_id)
port = client.ports.get(port_id)
if port is None:
return
self.add_port_to_patchbay(client, port)
elif event.type == SEQ_EVENT_PORT_EXIT:
client_id, port_id = data['addr.client'], data['addr.port']
client = self._clients.get(client_id)
if client is None:
return
port = client.ports.get(port_id)
if port is None:
return
to_rm_conns = list[AlsaConn]()
for conn in self._connections:
if (client_id, port_id) in (
(conn.source_client_id, conn.source_port_id),
(conn.dest_client_id, conn.dest_port_id)):
to_rm_conns.append(conn)
for conn in to_rm_conns:
port_names = conn.as_port_names(self._clients)
if port_names is not None:
self.pbe.connection_removed(port_names)
self.remove_port_from_patchbay(client, port)
elif event.type == SEQ_EVENT_PORT_SUBSCRIBED:
sender_client = self._clients.get(data['connect.sender.client'])
dest_client = self._clients.get(data['connect.dest.client'])
if sender_client is None or dest_client is None:
return
sender_port = sender_client.ports.get(data['connect.sender.port'])
dest_port = dest_client.ports.get(data['connect.dest.port'])
if sender_port is None or dest_port is None:
return
self._connections.append(
AlsaConn(sender_client.id, sender_port.id,
dest_client.id, dest_port.id))
self.pbe.connection_added(
(sender_port.pb_name('OUT', sender_client),
dest_port.pb_name('IN', dest_client)))
elif event.type == SEQ_EVENT_PORT_UNSUBSCRIBED:
sender_client = self._clients.get(data['connect.sender.client'])
dest_client = self._clients.get(data['connect.dest.client'])
if sender_client is None or dest_client is None:
return
sender_port = sender_client.ports.get(data['connect.sender.port'])
dest_port = dest_client.ports.get(data['connect.dest.port'])
if sender_port is None or dest_port is None:
return
for conn in self._connections:
if (conn.source_client_id == sender_client.id
and conn.source_port_id == sender_port.id
and conn.dest_client_id == dest_client.id
and conn.dest_port_id == dest_port.id):
self._connections.remove(conn)
break
self.pbe.connection_removed(
(sender_port.pb_name('OUT', sender_client),
dest_port.pb_name('IN', dest_client))
)
def read_events(self):
if self.pbe is None:
raise PatchEngineOuterMissing
while True:
if self._stopping:
break
for event in self.seq.receive_events(timeout=128, maxevents=1):
self._process_event(event)
def stop_events_loop(self):
if not self._event_thread.is_alive():
return
self._stopping = True
self._event_thread.join()
for client in self._clients.values():
for port in client.ports.values():
self.remove_port_from_patchbay(client, port)
del self._event_thread
self._stopping = False
self._event_thread = Thread(target=self.read_events)
def exit(self):
self.seq.exit()
|