2018-09-03 22:50:12 +02:00
|
|
|
import logging
|
2018-09-04 00:21:34 +02:00
|
|
|
import sys
|
2018-09-03 22:50:12 +02:00
|
|
|
|
2018-09-04 00:21:34 +02:00
|
|
|
from kmk.common.consts import DiodeOrientation
|
|
|
|
from kmk.common.event_defs import (INIT_FIRMWARE_EVENT, KEY_DOWN_EVENT,
|
|
|
|
KEY_UP_EVENT)
|
2018-09-03 22:50:12 +02:00
|
|
|
|
|
|
|
|
|
|
|
class ReduxStore:
|
|
|
|
def __init__(self, reducer, log_level=logging.NOTSET):
|
|
|
|
self.reducer = reducer
|
|
|
|
self.logger = logging.getLogger(__name__)
|
|
|
|
self.logger.setLevel(log_level)
|
|
|
|
self.state = self.reducer(logger=self.logger)
|
2018-09-04 00:21:34 +02:00
|
|
|
self.callbacks = []
|
2018-09-03 22:50:12 +02:00
|
|
|
|
|
|
|
def dispatch(self, action):
|
|
|
|
self.logger.debug('Dispatching action: {}'.format(action))
|
|
|
|
self.state = self.reducer(self.state, action)
|
|
|
|
self.logger.debug('Dispatching complete: {}'.format(action))
|
|
|
|
|
2018-09-17 08:20:16 +02:00
|
|
|
self.logger.debug('New state: {}'.format(self.state))
|
2018-09-04 00:21:34 +02:00
|
|
|
|
|
|
|
for cb in self.callbacks:
|
|
|
|
if cb is not None:
|
|
|
|
try:
|
|
|
|
cb(self.state, action)
|
|
|
|
except Exception as e:
|
|
|
|
self.logger.error('Callback failed, moving on')
|
|
|
|
print(sys.print_exception(e), file=sys.stderr)
|
|
|
|
|
2018-09-03 22:50:12 +02:00
|
|
|
def get_state(self):
|
|
|
|
return self.state
|
|
|
|
|
2018-09-04 00:21:34 +02:00
|
|
|
def subscribe(self, callback):
|
|
|
|
self.callbacks.append(callback)
|
|
|
|
return len(self.callbacks) - 1
|
|
|
|
|
|
|
|
def unsubscribe(self, idx):
|
|
|
|
self.callbacks[idx] = None
|
|
|
|
|
2018-09-03 22:50:12 +02:00
|
|
|
|
|
|
|
class InternalState:
|
|
|
|
modifiers_pressed = frozenset()
|
|
|
|
keys_pressed = frozenset()
|
2018-09-04 00:21:34 +02:00
|
|
|
keymap = []
|
|
|
|
row_pins = []
|
|
|
|
col_pins = []
|
|
|
|
matrix = []
|
|
|
|
diode_orientation = DiodeOrientation.COLUMNS
|
|
|
|
|
|
|
|
@property
|
|
|
|
def __dict__(self):
|
|
|
|
return {
|
|
|
|
'keys_pressed': self.keys_pressed,
|
|
|
|
'modifiers_pressed': self.modifiers_pressed,
|
|
|
|
'keymap': self.keymap,
|
|
|
|
'col_pins': self.col_pins,
|
|
|
|
'row_pins': self.row_pins,
|
|
|
|
'diode_orientation': self.diode_orientation,
|
|
|
|
}
|
2018-09-03 22:50:12 +02:00
|
|
|
|
|
|
|
def __repr__(self):
|
2018-09-04 00:21:34 +02:00
|
|
|
return 'InternalState({})'.format(self.__dict__)
|
2018-09-03 22:50:12 +02:00
|
|
|
|
2018-09-04 00:21:34 +02:00
|
|
|
def copy(self, **kwargs):
|
2018-09-03 22:50:12 +02:00
|
|
|
new_state = InternalState()
|
|
|
|
|
2018-09-04 00:21:34 +02:00
|
|
|
for k, v in self.__dict__.items():
|
|
|
|
if hasattr(new_state, k):
|
|
|
|
setattr(new_state, k, v)
|
2018-09-03 22:50:12 +02:00
|
|
|
|
2018-09-04 00:21:34 +02:00
|
|
|
for k, v in kwargs.items():
|
|
|
|
if hasattr(new_state, k):
|
|
|
|
setattr(new_state, k, v)
|
2018-09-03 22:50:12 +02:00
|
|
|
|
|
|
|
return new_state
|
|
|
|
|
|
|
|
|
|
|
|
def kmk_reducer(state=None, action=None, logger=None):
|
|
|
|
if state is None:
|
|
|
|
state = InternalState()
|
|
|
|
|
|
|
|
if logger is not None:
|
|
|
|
logger.debug('Reducer received state of None, creating new')
|
|
|
|
|
|
|
|
if action is None:
|
|
|
|
if logger is not None:
|
|
|
|
logger.debug('No action received, returning state unmodified')
|
|
|
|
|
|
|
|
return state
|
|
|
|
|
|
|
|
if action['type'] == KEY_UP_EVENT:
|
2018-09-04 00:21:34 +02:00
|
|
|
return state.copy(
|
|
|
|
keys_pressed=frozenset(
|
|
|
|
key for key in state.keys_pressed if key != action['keycode']
|
|
|
|
),
|
|
|
|
matrix=[
|
|
|
|
r if ridx != action['row'] else [
|
|
|
|
c if cidx != action['col'] else False
|
|
|
|
for cidx, c in enumerate(r)
|
|
|
|
]
|
|
|
|
for ridx, r in enumerate(state.matrix)
|
|
|
|
],
|
|
|
|
)
|
2018-09-03 22:50:12 +02:00
|
|
|
|
|
|
|
if action['type'] == KEY_DOWN_EVENT:
|
2018-09-04 00:21:34 +02:00
|
|
|
return state.copy(
|
|
|
|
keys_pressed=(
|
|
|
|
state.keys_pressed | {action['keycode']}
|
|
|
|
),
|
|
|
|
matrix=[
|
|
|
|
r if ridx != action['row'] else [
|
|
|
|
c if cidx != action['col'] else True
|
|
|
|
for cidx, c in enumerate(r)
|
|
|
|
]
|
|
|
|
for ridx, r in enumerate(state.matrix)
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
if action['type'] == INIT_FIRMWARE_EVENT:
|
|
|
|
return state.copy(
|
|
|
|
keymap=action['keymap'],
|
|
|
|
row_pins=action['row_pins'],
|
|
|
|
col_pins=action['col_pins'],
|
|
|
|
diode_orientation=action['diode_orientation'],
|
|
|
|
matrix=[
|
|
|
|
[False for c in action['col_pins']]
|
|
|
|
for r in action['row_pins']
|
|
|
|
],
|
|
|
|
)
|