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