Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Convert HCI role and transport into enums #332

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 13 additions & 18 deletions bumble/controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,7 @@
import random
import struct
from bumble.colors import color
from bumble.core import (
BT_CENTRAL_ROLE,
BT_PERIPHERAL_ROLE,
BT_LE_TRANSPORT,
BT_BR_EDR_TRANSPORT,
)
from bumble.core import PhysicalTransport, Role

from bumble.hci import (
HCI_ACL_DATA_PACKET,
Expand Down Expand Up @@ -98,10 +93,10 @@ class CisLink:
class Connection:
controller: Controller
handle: int
role: int
role: Role
peer_address: Address
link: Any
transport: int
transport: PhysicalTransport
link_type: int

def __post_init__(self):
Expand Down Expand Up @@ -388,10 +383,10 @@ def on_link_central_connected(self, central_address):
connection = Connection(
controller=self,
handle=connection_handle,
role=BT_PERIPHERAL_ROLE,
role=Role.PERIPHERAL,
peer_address=peer_address,
link=self.link,
transport=BT_LE_TRANSPORT,
transport=PhysicalTransport.LE,
link_type=HCI_Connection_Complete_Event.ACL_LINK_TYPE,
)
self.peripheral_connections[peer_address] = connection
Expand Down Expand Up @@ -448,10 +443,10 @@ def on_link_peripheral_connection_complete(
connection = Connection(
controller=self,
handle=connection_handle,
role=BT_CENTRAL_ROLE,
role=Role.CENTRAL,
peer_address=peer_address,
link=self.link,
transport=BT_LE_TRANSPORT,
transport=PhysicalTransport.LE,
link_type=HCI_Connection_Complete_Event.ACL_LINK_TYPE,
)
self.central_connections[peer_address] = connection
Expand All @@ -467,7 +462,7 @@ def on_link_peripheral_connection_complete(
HCI_LE_Connection_Complete_Event(
status=status,
connection_handle=connection.handle if connection else 0,
role=BT_CENTRAL_ROLE,
role=Role.CENTRAL,
peer_address_type=le_create_connection_command.peer_address_type,
peer_address=le_create_connection_command.peer_address,
connection_interval=le_create_connection_command.connection_interval_min,
Expand Down Expand Up @@ -529,7 +524,7 @@ def on_link_encrypted(self, peer_address, _rand, _ediv, _ltk):

def on_link_acl_data(self, sender_address, transport, data):
# Look for the connection to which this data belongs
if transport == BT_LE_TRANSPORT:
if transport == PhysicalTransport.LE:
connection = self.find_le_connection_by_address(sender_address)
else:
connection = self.find_classic_connection_by_address(sender_address)
Expand Down Expand Up @@ -691,10 +686,10 @@ def on_classic_connection_complete(self, peer_address, status):
controller=self,
handle=connection_handle,
# Role doesn't matter in Classic because they are managed by HCI_Role_Change and HCI_Role_Discovery
role=BT_CENTRAL_ROLE,
role=Role.CENTRAL,
peer_address=peer_address,
link=self.link,
transport=BT_BR_EDR_TRANSPORT,
transport=PhysicalTransport.BR_EDR,
link_type=HCI_Connection_Complete_Event.ACL_LINK_TYPE,
)
self.classic_connections[peer_address] = connection
Expand Down Expand Up @@ -759,10 +754,10 @@ def on_classic_sco_connection_complete(
controller=self,
handle=connection_handle,
# Role doesn't matter in SCO.
role=BT_CENTRAL_ROLE,
role=Role.CENTRAL,
peer_address=peer_address,
link=self.link,
transport=BT_BR_EDR_TRANSPORT,
transport=PhysicalTransport.BR_EDR,
link_type=link_type,
)
self.classic_connections[peer_address] = connection
Expand Down
17 changes: 13 additions & 4 deletions bumble/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,20 @@
# -----------------------------------------------------------------------------
# fmt: off

BT_CENTRAL_ROLE = 0
BT_PERIPHERAL_ROLE = 1
class PhysicalTransport(enum.IntEnum):
BR_EDR = 0
LE = 1

BT_BR_EDR_TRANSPORT = 0
BT_LE_TRANSPORT = 1
class Role(enum.IntEnum):
CENTRAL = 0
PERIPHERAL = 1

# For backward compatibility.
BT_CENTRAL_ROLE = Role.CENTRAL
BT_PERIPHERAL_ROLE = Role.PERIPHERAL

BT_BR_EDR_TRANSPORT = PhysicalTransport.BR_EDR
BT_LE_TRANSPORT = PhysicalTransport.LE


# fmt: on
Expand Down
Loading