polybar-dwm/tests/unit_tests/utils
Patrick Ziegler 26be83f893
module: Implement action router (#2336)
* module: Implement proof of concept action router

Action implementation inside module becomes much cleaner because each
module just registers action names together with a callback (pointer to
member function) and the action router does the rest.

* Make input function final

This forces all modules to use the action router

* modules: Catch exceptions in action handlers

* Use action router for all modules

* Use action_ prefix for function names

The mpd module's 'stop' action overwrote the base module's stop function
which caused difficult to debug behavior.

To prevent this in the future we now prefix each function that is
responsible for an action with 'action_'

* Cleanup

* actions: Throw exception when re-registering action

Action names are unique inside modules. Unfortunately there is no way to
ensure this statically, the next best thing is to crash the module and
let the user know that this is a bug.

* Formatting

* actions: Ignore data for actions without data

This is the same behavior as before.

* action_router: Write tests
2021-01-04 10:25:52 +01:00
..
action_router.cpp module: Implement action router (#2336) 2021-01-04 10:25:52 +01:00
actions.cpp actions: Move parsing to utility file 2020-11-26 20:53:53 +01:00
color.cpp New Tag Parser (#2303) 2020-12-17 20:37:28 +01:00
command.cpp add command unit tests 2020-05-08 23:24:29 +02:00
file.cpp add command unit tests 2020-05-08 23:24:29 +02:00
math.cpp fix(alsa): Remove upper bound to get_volume (#2184) 2020-09-20 14:26:17 +02:00
memory.cpp refactor(tests): Migrate to googletest 2018-04-10 00:56:51 +02:00
process.cpp fix(process): fork_detached created zombie processes 2020-12-12 02:37:21 +01:00
scope.cpp tests: Convert scope test to gtest 2018-06-10 16:42:07 +02:00
string.cpp Display correct(binary) unit prefixes in memory module (#2211) 2020-11-27 23:30:09 +01:00