blob: af1a1c2b6142dea0d2284f83ba2de3298b160e65 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_CHROMEOS_AUDIO_AUDIO_MIXER_CRAS_H_
#define CHROME_BROWSER_CHROMEOS_AUDIO_AUDIO_MIXER_CRAS_H_
#pragma once
#include <cras_client.h>
#include "base/basictypes.h"
#include "base/compiler_specific.h"
#include "base/memory/scoped_ptr.h"
#include "base/synchronization/lock.h"
#include "base/threading/thread.h"
#include "chrome/browser/chromeos/audio/audio_mixer.h"
namespace chromeos {
// Simple wrapper for sending volume and mute commands to the audio server on
// ChromeOS. Interaction happens on a background thread so that initialization
// can poll until the server is started.
class AudioMixerCras : public AudioMixer {
public:
AudioMixerCras();
virtual ~AudioMixerCras();
// AudioMixer implementation.
virtual void Init() OVERRIDE;
virtual double GetVolumePercent() OVERRIDE;
virtual void SetVolumePercent(double percent) OVERRIDE;
virtual bool IsMuted() OVERRIDE;
virtual void SetMuted(bool muted) OVERRIDE;
private:
// Tries to connect to CRAS. On failure, posts a delayed Connect() task to
// try again. Failure could occur if the CRAS server isn't running yet.
void Connect();
// Updates |client_| for current values of |volume_percent_| and
// |is_muted_|. No-op if not connected.
void ApplyState();
// Interfaces to the audio server.
struct cras_client *client_;
// Indicates if we have connected |client_| to the server.
bool client_connected_;
// Most recently-requested volume, in percent. This variable is updated
// immediately by SetVolumePercent() (post-initialization); the actual mixer
// volume is updated later on |thread_| by ApplyState().
double volume_percent_;
// Most recently-requested muting state.
bool is_muted_;
// Is there already a pending call to ApplyState() scheduled on |thread_|?
bool apply_is_pending_;
// Background thread used for interacting with CRAS.
scoped_ptr<base::Thread> thread_;
// Guards |volume_percent_|, |is_muted_|, and |apply_is_pending_|.
base::Lock lock_;
DISALLOW_COPY_AND_ASSIGN(AudioMixerCras);
};
} // namespace chromeos
#endif // CHROME_BROWSER_CHROMEOS_AUDIO_AUDIO_MIXER_CRAS_H_
|