OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef MEDIA_MIDI_USB_MIDI_INPUT_STREAM_H_ |
| 6 #define MEDIA_MIDI_USB_MIDI_INPUT_STREAM_H_ |
| 7 |
| 8 #include <map> |
| 9 #include <vector> |
| 10 |
| 11 #include "base/basictypes.h" |
| 12 #include "base/containers/hash_tables.h" |
| 13 #include "media/base/media_export.h" |
| 14 #include "media/midi/usb_midi_jack.h" |
| 15 |
| 16 namespace media { |
| 17 |
| 18 class UsbMidiDevice; |
| 19 |
| 20 // UsbMidiInputStream converts USB-MIDI data to MIDI data. |
| 21 // See "USB Device Class Definition for MIDI Devices" Release 1.0, |
| 22 // Section 4 "USB-MIDI Event Packets" for details. |
| 23 class MEDIA_EXPORT UsbMidiInputStream { |
| 24 public: |
| 25 class Delegate { |
| 26 public: |
| 27 virtual ~Delegate() {} |
| 28 // This function is called when some data arrives to a USB-MIDI jack. |
| 29 // An input USB-MIDI jack corresponds to an input MIDIPortInfo. |
| 30 virtual void OnReceivedData(size_t jack_index, |
| 31 const uint8* data, |
| 32 size_t size, |
| 33 double timestamp) = 0; |
| 34 }; |
| 35 |
| 36 UsbMidiInputStream(const std::vector<UsbMidiJack>& jacks, |
| 37 Delegate* delegate); |
| 38 ~UsbMidiInputStream(); |
| 39 |
| 40 // This function should be called when some data arrives to a USB-MIDI |
| 41 // endpoint. This function converts the data to MIDI data and call |
| 42 // |delegate->OnReceivedData| with it. |
| 43 // |size| must be a multiple of |kPacketSize|. |
| 44 void OnReceivedData(UsbMidiDevice* device, |
| 45 int endpoint_number, |
| 46 const uint8* data, |
| 47 size_t size, |
| 48 double timestamp); |
| 49 |
| 50 private: |
| 51 static const size_t kPacketSize = 4; |
| 52 struct JackUniqueKey { |
| 53 JackUniqueKey(UsbMidiDevice* device, int endpoint_number, int cable_number); |
| 54 bool operator==(const JackUniqueKey& that) const; |
| 55 bool operator<(const JackUniqueKey& that) const; |
| 56 |
| 57 UsbMidiDevice* device; |
| 58 int endpoint_number; |
| 59 int cable_number; |
| 60 }; |
| 61 |
| 62 // Processes a USB-MIDI Event Packet. |
| 63 // The first |kPacketSize| bytes of |packet| must be accessible. |
| 64 void ProcessOnePacket(UsbMidiDevice* device, |
| 65 int endpoint_number, |
| 66 const uint8* packet, |
| 67 double timestamp); |
| 68 |
| 69 // A map from UsbMidiJack to its index in |jacks_|. |
| 70 std::map<JackUniqueKey, size_t> jack_dictionary_; |
| 71 |
| 72 // Not owned |
| 73 Delegate* delegate_; |
| 74 |
| 75 DISALLOW_COPY_AND_ASSIGN(UsbMidiInputStream); |
| 76 }; |
| 77 |
| 78 } // namespace media |
| 79 |
| 80 #endif // MEDIA_MIDI_USB_MIDI_INPUT_STREAM_H_ |
OLD | NEW |