OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef MEDIA_MIDI_MIDI_MANAGER_ALSA_H_ | 5 #ifndef MEDIA_MIDI_MIDI_MANAGER_ALSA_H_ |
6 #define MEDIA_MIDI_MIDI_MANAGER_ALSA_H_ | 6 #define MEDIA_MIDI_MIDI_MANAGER_ALSA_H_ |
7 | 7 |
8 #include <alsa/asoundlib.h> | 8 #include <alsa/asoundlib.h> |
9 #include <map> | 9 #include <map> |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
| 13 #include "base/gtest_prod_util.h" |
13 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" |
14 #include "base/synchronization/lock.h" | 15 #include "base/synchronization/lock.h" |
15 #include "base/threading/thread.h" | 16 #include "base/threading/thread.h" |
16 #include "media/midi/midi_manager.h" | 17 #include "media/midi/midi_manager.h" |
17 | 18 |
| 19 #if defined(USE_UDEV) |
| 20 #include "device/udev_linux/scoped_udev.h" |
| 21 #endif // defined(USE_UDEV) |
| 22 |
18 namespace media { | 23 namespace media { |
19 | 24 |
20 class MidiManagerAlsa : public MidiManager { | 25 class MEDIA_EXPORT MidiManagerAlsa : public MidiManager { |
21 public: | 26 public: |
22 MidiManagerAlsa(); | 27 MidiManagerAlsa(); |
23 ~MidiManagerAlsa() override; | 28 ~MidiManagerAlsa() override; |
24 | 29 |
25 // MidiManager implementation. | 30 // MidiManager implementation. |
26 void StartInitialization() override; | 31 void StartInitialization() override; |
27 void DispatchSendMidiData(MidiManagerClient* client, | 32 void DispatchSendMidiData(MidiManagerClient* client, |
28 uint32 port_index, | 33 uint32 port_index, |
29 const std::vector<uint8>& data, | 34 const std::vector<uint8>& data, |
30 double timestamp) override; | 35 double timestamp) override; |
31 | 36 |
32 private: | 37 private: |
| 38 FRIEND_TEST_ALL_PREFIXES(MidiManagerAlsaTest, ExtractManufacturer); |
| 39 FRIEND_TEST_ALL_PREFIXES(MidiManagerAlsaTest, UdevEscape); |
| 40 |
33 // An internal callback that runs on MidiSendThread. | 41 // An internal callback that runs on MidiSendThread. |
34 void SendMidiData(uint32 port_index, | 42 void SendMidiData(uint32 port_index, |
35 const std::vector<uint8>& data); | 43 const std::vector<uint8>& data); |
36 | 44 |
37 void EventReset(); | 45 void EventReset(); |
38 void EventLoop(); | 46 void EventLoop(); |
39 | 47 |
| 48 // Extracts the manufacturer using heuristics and a variety of sources. |
| 49 static std::string ExtractManufacturer( |
| 50 const std::string& udev_id_vendor_enc, |
| 51 const std::string& udev_id_vendor_id, |
| 52 const std::string& udev_id_vendor_from_database, |
| 53 const std::string& alsa_name, |
| 54 const std::string& alsa_longname); |
| 55 |
| 56 // Decodes just \xXX in strings. |
| 57 static std::string UnescapeUdev(const std::string& s); |
| 58 |
40 // Alsa seq handles. | 59 // Alsa seq handles. |
41 snd_seq_t* in_client_; | 60 snd_seq_t* in_client_; |
42 snd_seq_t* out_client_; | 61 snd_seq_t* out_client_; |
43 int out_client_id_; | 62 int out_client_id_; |
44 | 63 |
45 // One input port, many output ports. | 64 // One input port, many output ports. |
46 int in_port_; | 65 int in_port_; |
47 std::vector<int> out_ports_; | 66 std::vector<int> out_ports_; |
48 | 67 |
49 // Mapping from Alsa client:port to our index. | 68 // Mapping from Alsa client:port to our index. |
50 typedef std::map<int, uint32> SourceMap; | 69 typedef std::map<int, uint32> SourceMap; |
51 SourceMap source_map_; | 70 SourceMap source_map_; |
52 | 71 |
53 // Alsa event <-> MIDI coders. | 72 // Alsa event <-> MIDI coders. |
54 snd_midi_event_t* decoder_; | 73 snd_midi_event_t* decoder_; |
55 typedef std::vector<snd_midi_event_t*> EncoderList; | 74 typedef std::vector<snd_midi_event_t*> EncoderList; |
56 EncoderList encoders_; | 75 EncoderList encoders_; |
57 | 76 |
| 77 // udev, for querying hardware devices. |
| 78 #if defined(USE_UDEV) |
| 79 device::ScopedUdevPtr udev_; |
| 80 #endif // defined(USE_UDEV) |
| 81 |
58 base::Thread send_thread_; | 82 base::Thread send_thread_; |
59 base::Thread event_thread_; | 83 base::Thread event_thread_; |
60 | 84 |
61 bool event_thread_shutdown_; // guarded by shutdown_lock_ | 85 bool event_thread_shutdown_; // guarded by shutdown_lock_ |
62 base::Lock shutdown_lock_; // guards event_thread_shutdown_ | 86 base::Lock shutdown_lock_; // guards event_thread_shutdown_ |
63 | 87 |
64 DISALLOW_COPY_AND_ASSIGN(MidiManagerAlsa); | 88 DISALLOW_COPY_AND_ASSIGN(MidiManagerAlsa); |
65 }; | 89 }; |
66 | 90 |
67 } // namespace media | 91 } // namespace media |
68 | 92 |
69 #endif // MEDIA_MIDI_MIDI_MANAGER_ALSA_H_ | 93 #endif // MEDIA_MIDI_MIDI_MANAGER_ALSA_H_ |
OLD | NEW |