summaryrefslogtreecommitdiffstats
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2020-11-28Add separate store for client and port metadataDavid Robillard4-1/+134
2020-11-28Print metadata about creation eventsDavid Robillard1-2/+42
2020-11-28Factor out getting client and port metadata and send it with eventsDavid Robillard7-49/+206
2020-11-28Clean up order of ALSA event handlingDavid Robillard1-19/+26
2020-11-28Move PortType to its own headerDavid Robillard7-9/+35
2020-11-28Move SignalDirection to its own headerDavid Robillard8-8/+36
2020-11-28Add utilities for printing eventsDavid Robillard2-0/+113
2020-11-28Remove NoopEventDavid Robillard2-7/+1
2020-11-28Remove alternative USE_FULL_REFRESH Jack DBus codeDavid Robillard2-58/+2
2020-11-28Fix sample rate with Jack DBusDavid Robillard1-3/+3
2020-11-28Rename ModuleType to SignalDirectionDavid Robillard11-66/+70
2020-11-28Move handle_event() to separate filesDavid Robillard8-8/+38
2020-11-28Index clients and ports by IDDavid Robillard12-111/+162
2020-11-28Factor out ClientTypeDavid Robillard3-10/+33
2020-11-28Remove null port IDsDavid Robillard2-18/+6
This statically ensures that a PortID is always valid.
2020-11-28Make PatchageEvent a variantDavid Robillard6-119/+132
2020-11-28Remove useless doc commentsDavid Robillard7-33/+4
2020-11-28Factor out Connector from PatchageCanvasDavid Robillard7-82/+168
This finally breaks the dependency of the canvas on the entire application, and fixes the confusing situation where it wasn't clear whether connect/disconnect methods made/broke connections on the canvas or on the system.
2020-11-28Simplify driver connection interfaceDavid Robillard10-157/+91
2020-11-28Always index Jack ports and refer to them by nameDavid Robillard9-186/+176
The Jack API annoyingly doesn't provide a way to get an ID from a port name. Since notification callbacks apparently don't have to worry about realtime concerns anymore, simply use the full name string as an ID everywhere. This means that every Jack port has a non-null ID, and all ports are always indexed, so the kludges for this in the canvas can be removed.
2020-11-28Remove Queue and use std::queue in JackDriverDavid Robillard3-141/+2
Jack notification handlers do not need to be realtime safe.
2020-11-28Log attachment message for Jack DBusDavid Robillard1-0/+2
2020-11-28Fix connections with Jack DBusDavid Robillard1-2/+2
2020-11-28Clean up error messages in Jack DBus driverDavid Robillard1-3/+3
2020-11-27Fix spelling error in AlsaDriver.cppDennis Braun1-1/+1
2020-11-27Make method constDavid Robillard1-1/+1
2020-11-27Ensure that modules always have an IDDavid Robillard6-4/+123
2020-11-27Remove use of PatchagePort from Driver connection interfaceDavid Robillard9-94/+204
2020-11-27Ensure that ports always have an IDDavid Robillard6-11/+22
2020-11-27Add missing namespace qualificationDavid Robillard1-1/+1
2020-11-27Use a consistent style for log messagesDavid Robillard6-66/+75
2020-11-27Use prettier names for log methodsDavid Robillard9-72/+69
2020-11-27Factor out log from Patchage classDavid Robillard13-126/+270
Towards saner dependencies.
2020-11-27Fix warnings in Jack DBus driverDavid Robillard2-80/+82
2020-11-27Replace boost::format with fmtDavid Robillard7-65/+71
2020-11-27Explicitly delete or define all special member functionsDavid Robillard8-13/+48
2020-11-27Strengthen warning flagsDavid Robillard3-10/+12
2020-11-27Fix shadowingDavid Robillard1-27/+35
2020-11-27Use "override"David Robillard7-39/+49
2020-11-27Remove reliance on deprecated implicit assignment operatorDavid Robillard1-6/+16
2020-11-27Update copyright date in GUIDavid Robillard1-1/+1
2020-11-27Move Legend implementation to a separate source fileDavid Robillard2-54/+93
2020-11-27Use default for empty destructorDavid Robillard1-2/+2
2020-11-27Add missing whitespaceDavid Robillard1-1/+2
2020-11-27Make Driver::destroy_all() pure virtualDavid Robillard1-4/+4
2020-11-27Fix unused parameter warningsDavid Robillard11-46/+100
2020-11-27Store location passed in signal rather than the current oneDavid Robillard1-2/+1
In practice, these are the same, but this is the intent of the API.
2020-11-27Avoid default arguments on virtual methodsDavid Robillard2-2/+2
2020-11-27Make single-argument constructors explicitDavid Robillard4-4/+5
2020-11-27Don't use else after returnDavid Robillard5-22/+34
I don't always agree with this one, but in this case it's reasonable enough.