| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 CONTENT_BROWSER_RENDERER_HOST_MEDIA_MIDI_HOST_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_MEDIA_MIDI_HOST_H_ |
| 6 #define CONTENT_BROWSER_RENDERER_HOST_MEDIA_MIDI_HOST_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_MEDIA_MIDI_HOST_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/gtest_prod_util.h" | 10 #include "base/gtest_prod_util.h" |
| 11 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
| 12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
| 13 #include "base/memory/scoped_vector.h" | 13 #include "base/memory/scoped_vector.h" |
| 14 #include "content/common/content_export.h" | 14 #include "content/common/content_export.h" |
| 15 #include "content/public/browser/browser_message_filter.h" | 15 #include "content/public/browser/browser_message_filter.h" |
| 16 #include "content/public/browser/browser_thread.h" | 16 #include "content/public/browser/browser_thread.h" |
| 17 #include "media/midi/midi_manager.h" | 17 #include "media/midi/midi_manager.h" |
| 18 | 18 |
| 19 namespace media { | 19 namespace media { |
| 20 class MIDIManager; | 20 class MidiManager; |
| 21 class MIDIMessageQueue; | 21 class MidiMessageQueue; |
| 22 } | 22 } |
| 23 | 23 |
| 24 namespace content { | 24 namespace content { |
| 25 | 25 |
| 26 class CONTENT_EXPORT MIDIHost | 26 class CONTENT_EXPORT MidiHost |
| 27 : public BrowserMessageFilter, | 27 : public BrowserMessageFilter, |
| 28 public media::MIDIManagerClient { | 28 public media::MidiManagerClient { |
| 29 public: | 29 public: |
| 30 // Called from UI thread from the owner of this object. | 30 // Called from UI thread from the owner of this object. |
| 31 MIDIHost(int renderer_process_id, media::MIDIManager* midi_manager); | 31 MidiHost(int renderer_process_id, media::MidiManager* midi_manager); |
| 32 | 32 |
| 33 // BrowserMessageFilter implementation. | 33 // BrowserMessageFilter implementation. |
| 34 virtual void OnDestruct() const OVERRIDE; | 34 virtual void OnDestruct() const OVERRIDE; |
| 35 virtual bool OnMessageReceived(const IPC::Message& message, | 35 virtual bool OnMessageReceived(const IPC::Message& message, |
| 36 bool* message_was_ok) OVERRIDE; | 36 bool* message_was_ok) OVERRIDE; |
| 37 | 37 |
| 38 // MIDIManagerClient implementation. | 38 // MidiManagerClient implementation. |
| 39 virtual void ReceiveMIDIData(uint32 port, | 39 virtual void ReceiveMidiData(uint32 port, |
| 40 const uint8* data, | 40 const uint8* data, |
| 41 size_t length, | 41 size_t length, |
| 42 double timestamp) OVERRIDE; | 42 double timestamp) OVERRIDE; |
| 43 virtual void AccumulateMIDIBytesSent(size_t n) OVERRIDE; | 43 virtual void AccumulateMidiBytesSent(size_t n) OVERRIDE; |
| 44 | 44 |
| 45 // Start session to access MIDI hardware. | 45 // Start session to access MIDI hardware. |
| 46 void OnStartSession(int client_id); | 46 void OnStartSession(int client_id); |
| 47 | 47 |
| 48 // Data to be sent to a MIDI output port. | 48 // Data to be sent to a MIDI output port. |
| 49 void OnSendData(uint32 port, | 49 void OnSendData(uint32 port, |
| 50 const std::vector<uint8>& data, | 50 const std::vector<uint8>& data, |
| 51 double timestamp); | 51 double timestamp); |
| 52 | 52 |
| 53 private: | 53 private: |
| 54 FRIEND_TEST_ALL_PREFIXES(MIDIHostTest, IsValidWebMIDIData); | 54 FRIEND_TEST_ALL_PREFIXES(MidiHostTest, IsValidWebMIDIData); |
| 55 friend class base::DeleteHelper<MIDIHost>; | 55 friend class base::DeleteHelper<MidiHost>; |
| 56 friend class BrowserThread; | 56 friend class BrowserThread; |
| 57 | 57 |
| 58 virtual ~MIDIHost(); | 58 virtual ~MidiHost(); |
| 59 | 59 |
| 60 // Returns true if |data| fulfills the requirements of MIDIOutput.send API | 60 // Returns true if |data| fulfills the requirements of MidiOutput.send API |
| 61 // defined in the WebMIDI spec. | 61 // defined in the WebMIDI spec. |
| 62 // - |data| must be any number of complete MIDI messages (data abbreviation | 62 // - |data| must be any number of complete MIDI messages (data abbreviation |
| 63 // called "running status" is disallowed). | 63 // called "running status" is disallowed). |
| 64 // - 1-byte MIDI realtime messages can be placed at any position of |data|. | 64 // - 1-byte MIDI realtime messages can be placed at any position of |data|. |
| 65 static bool IsValidWebMIDIData(const std::vector<uint8>& data); | 65 static bool IsValidWebMIDIData(const std::vector<uint8>& data); |
| 66 | 66 |
| 67 int renderer_process_id_; | 67 int renderer_process_id_; |
| 68 | 68 |
| 69 // Represents if the renderer has a permission to send/receive MIDI SysEX | 69 // Represents if the renderer has a permission to send/receive MIDI SysEX |
| 70 // messages. | 70 // messages. |
| 71 bool has_sys_ex_permission_; | 71 bool has_sys_ex_permission_; |
| 72 | 72 |
| 73 // |midi_manager_| talks to the platform-specific MIDI APIs. | 73 // |midi_manager_| talks to the platform-specific MIDI APIs. |
| 74 // It can be NULL if the platform (or our current implementation) | 74 // It can be NULL if the platform (or our current implementation) |
| 75 // does not support MIDI. If not supported then a call to | 75 // does not support MIDI. If not supported then a call to |
| 76 // OnRequestAccess() will always refuse access and a call to | 76 // OnRequestAccess() will always refuse access and a call to |
| 77 // OnSendData() will do nothing. | 77 // OnSendData() will do nothing. |
| 78 media::MIDIManager* const midi_manager_; | 78 media::MidiManager* const midi_manager_; |
| 79 | 79 |
| 80 // Buffers where data sent from each MIDI input port is stored. | 80 // Buffers where data sent from each MIDI input port is stored. |
| 81 ScopedVector<media::MIDIMessageQueue> received_messages_queues_; | 81 ScopedVector<media::MidiMessageQueue> received_messages_queues_; |
| 82 | 82 |
| 83 // The number of bytes sent to the platform-specific MIDI sending | 83 // The number of bytes sent to the platform-specific MIDI sending |
| 84 // system, but not yet completed. | 84 // system, but not yet completed. |
| 85 size_t sent_bytes_in_flight_; | 85 size_t sent_bytes_in_flight_; |
| 86 | 86 |
| 87 // The number of bytes successfully sent since the last time | 87 // The number of bytes successfully sent since the last time |
| 88 // we've acknowledged back to the renderer. | 88 // we've acknowledged back to the renderer. |
| 89 size_t bytes_sent_since_last_acknowledgement_; | 89 size_t bytes_sent_since_last_acknowledgement_; |
| 90 | 90 |
| 91 // Protects access to |sent_bytes_in_flight_|. | 91 // Protects access to |sent_bytes_in_flight_|. |
| 92 base::Lock in_flight_lock_; | 92 base::Lock in_flight_lock_; |
| 93 | 93 |
| 94 DISALLOW_COPY_AND_ASSIGN(MIDIHost); | 94 DISALLOW_COPY_AND_ASSIGN(MidiHost); |
| 95 }; | 95 }; |
| 96 | 96 |
| 97 } // namespace content | 97 } // namespace content |
| 98 | 98 |
| 99 #endif // CONTENT_BROWSER_RENDERER_HOST_MEDIA_MIDI_HOST_H_ | 99 #endif // CONTENT_BROWSER_RENDERER_HOST_MEDIA_MIDI_HOST_H_ |
| OLD | NEW |