]> git.sesse.net Git - nageru/blob - alsa_pool.h
Fix an issue where the mixer lagging too much behind CEF would cause us to display...
[nageru] / alsa_pool.h
1 #ifndef _ALSA_POOL_H
2 #define _ALSA_POOL_H 1
3
4 #include <atomic>
5 #include <memory>
6 #include <mutex>
7 #include <string>
8 #include <thread>
9 #include <unordered_map>
10 #include <vector>
11
12 class ALSAInput;
13 class DeviceSpecProto;
14
15 // The class dealing with the collective of all ALSA cards in the system.
16 // In particular, it deals with enumeration of cards, and hotplug of new ones.
17 class ALSAPool {
18 public:
19         ALSAPool();
20         ~ALSAPool();
21
22         struct Device {
23                 enum class State {
24                         // There is no card here. (There probably used to be one,
25                         // but it got removed.) We don't insert a card before
26                         // we've actually probed it, ie., we know whether it
27                         // can be captured from at all, and what its name is.
28                         EMPTY,
29
30                         // This card is ready for capture, as far as we know.
31                         // (It could still be used by someone else; we don't know
32                         // until we try to open it.)
33                         READY,
34
35                         // We are trying to start capture from this card, but we are not
36                         // streaming yet. Note that this could in theory go on forever,
37                         // if the card is in use by some other process; in the UI,
38                         // we will show this state as “(busy)”.
39                         STARTING,
40
41                         // The card is capturing and sending data. If there's a fatal error,
42                         // it could go back to STARTING, or it could go to DEAD
43                         // (depending on the error).
44                         RUNNING,
45
46                         // The card is gone (e.g., unplugged). However, since there's
47                         // still a bus using it, we can't just remove the entry.
48                         // If the card comes back (ie., a new card is plugged in,
49                         // and we believe it has the same configuration), it could be
50                         // installed in place of this card, and then presumably be put
51                         // back into STARTING or RUNNING.
52                         DEAD
53                 } state = State::EMPTY;
54
55                 std::string address;  // E.g. “hw:0,0”.
56                 std::string name, info;
57                 unsigned num_channels;
58                 ALSAInput *input = nullptr;  // nullptr iff EMPTY or DEAD.
59
60                 // Whether the AudioMixer is interested in this card or not.
61                 // “Interested” could mean either of two things: Either it is part of
62                 // a bus mapping, or it is in the process of enumerating devices
63                 // (to show to the user). A card that is _not_ held can disappear
64                 // at any given time as a result of an error or hotplug event;
65                 // a card that is held will go to the DEAD state instead.
66                 bool held = false;
67
68                 std::string display_name() const { return name + " (" + info + ")"; }
69         };
70
71         void init();
72
73         // Get the list of all current devices. Note that this will implicitly mark
74         // all of the returned devices as held, since the input mapping UI needs
75         // some kind of stability when the user is to choose. Thus, when you are done
76         // with the list and have set a new mapping, you must go through all the devices
77         // you don't want and release them using release_device().
78         std::vector<Device> get_devices();
79
80         void hold_device(unsigned index);
81         void release_device(unsigned index);  // Note: index is allowed to go out of bounds.
82
83         // If device is held, start or restart capture. If device is not held,
84         // stop capture if it isn't already.
85         void reset_device(unsigned index);
86
87         // Note: The card must be held. Returns OUTPUT_FREQUENCY if the card is in EMPTY or DEAD.
88         unsigned get_capture_frequency(unsigned index);
89
90         // Note: The card must be held.
91         Device::State get_card_state(unsigned index);
92
93         // Only for ALSAInput.
94         void set_card_state(unsigned index, Device::State state);
95
96         // Just a short form for taking <mu> and then moving the card to
97         // EMPTY or DEAD state. Only for ALSAInput and for internal use.
98         void free_card(unsigned index);
99
100         // Create a new card, mark it immediately as DEAD and hold it.
101         // Returns the new index.
102         unsigned create_dead_card(const std::string &name, const std::string &info, unsigned num_channels);
103
104         // Make a protobuf representation of the given card, so that it can be
105         // matched against at a later stage. For AudioMixer only.
106         // The given card must be held.
107         void serialize_device(unsigned index, DeviceSpecProto *serialized);
108
109 private:
110         mutable std::mutex mu;
111         std::vector<Device> devices;  // Under mu.
112         std::vector<std::unique_ptr<ALSAInput>> inputs;  // Under mu, corresponds 1:1 to devices.
113
114         // Keyed on device address (e.g. “hw:0,0”). If there's an entry here,
115         // it means we already have a thread doing retries, so we shouldn't
116         // start a new one.
117         std::unordered_map<std::string, unsigned> add_device_tries_left;  // Under add_device_mutex.
118         std::mutex add_device_mutex;
119
120         static constexpr int num_retries = 10;
121
122         void inotify_thread_func();
123         void enumerate_devices();
124
125         // Try to add an input at the given card/device. If it succeeds, return
126         // synchronously. If not, fire off a background thread to try up to
127         // <num_retries> times.
128         void probe_device_with_retry(unsigned card_index, unsigned dev_index);
129         void probe_device_retry_thread_func(unsigned card_index, unsigned dev_index);
130
131         enum class ProbeResult {
132                 SUCCESS,
133                 DEFER,
134                 FAILURE
135         };
136         ProbeResult probe_device_once(unsigned card_index, unsigned dev_index);
137
138         void unplug_device(unsigned card_index, unsigned dev_index);
139
140         // Must be called with <mu> held. Will allocate a new entry if needed.
141         // The returned entry will be set to READY state.
142         unsigned find_free_device_index(const std::string &name,
143                                         const std::string &info,
144                                         unsigned num_channels,
145                                         const std::string &address);
146
147         std::atomic<bool> should_quit{false};
148         int should_quit_fd;
149         std::thread inotify_thread;
150         std::atomic<int> retry_threads_running{0};
151
152         friend class ALSAInput;
153 };
154
155 #endif  // !defined(_ALSA_POOL_H)