Apply _RELATIVE relocations ahead of others.
[chromium-blink-merge.git] / content / browser / device_sensors / device_inertial_sensor_service.cc
blob840ce254bc1c0b284c97c931f77044e5b0bd6ff4
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.
5 #include "content/browser/device_sensors/device_inertial_sensor_service.h"
7 #include "base/bind.h"
8 #include "base/logging.h"
9 #include "base/memory/singleton.h"
10 #include "content/browser/device_sensors/data_fetcher_shared_memory.h"
12 namespace content {
14 DeviceInertialSensorService::DeviceInertialSensorService()
15 : num_light_readers_(0),
16 num_motion_readers_(0),
17 num_orientation_readers_(0),
18 is_shutdown_(false) {
21 DeviceInertialSensorService::~DeviceInertialSensorService() {
24 DeviceInertialSensorService* DeviceInertialSensorService::GetInstance() {
25 return Singleton<DeviceInertialSensorService,
26 LeakySingletonTraits<DeviceInertialSensorService> >::get();
29 void DeviceInertialSensorService::AddConsumer(ConsumerType consumer_type) {
30 if (!ChangeNumberConsumers(consumer_type, 1))
31 return;
33 DCHECK(GetNumberConsumers(consumer_type));
35 if (!data_fetcher_)
36 data_fetcher_.reset(new DataFetcherSharedMemory);
37 data_fetcher_->StartFetchingDeviceData(consumer_type);
40 void DeviceInertialSensorService::RemoveConsumer(ConsumerType consumer_type) {
41 if (!ChangeNumberConsumers(consumer_type, -1))
42 return;
44 if (GetNumberConsumers(consumer_type) == 0)
45 data_fetcher_->StopFetchingDeviceData(consumer_type);
48 bool DeviceInertialSensorService::ChangeNumberConsumers(
49 ConsumerType consumer_type, int delta) {
50 DCHECK(thread_checker_.CalledOnValidThread());
51 if (is_shutdown_)
52 return false;
54 switch (consumer_type) {
55 case CONSUMER_TYPE_MOTION:
56 num_motion_readers_ += delta;
57 DCHECK_GE(num_motion_readers_, 0);
58 return true;
59 case CONSUMER_TYPE_ORIENTATION:
60 num_orientation_readers_ += delta;
61 DCHECK_GE(num_orientation_readers_ , 0);
62 return true;
63 case CONSUMER_TYPE_LIGHT:
64 num_light_readers_ += delta;
65 DCHECK_GE(num_light_readers_, 0);
66 return true;
67 default:
68 NOTREACHED();
70 return false;
73 int DeviceInertialSensorService::GetNumberConsumers(
74 ConsumerType consumer_type) const {
75 switch (consumer_type) {
76 case CONSUMER_TYPE_MOTION:
77 return num_motion_readers_;
78 case CONSUMER_TYPE_ORIENTATION:
79 return num_orientation_readers_;
80 case CONSUMER_TYPE_LIGHT:
81 return num_light_readers_;
82 default:
83 NOTREACHED();
85 return 0;
88 base::SharedMemoryHandle
89 DeviceInertialSensorService::GetSharedMemoryHandleForProcess(
90 ConsumerType consumer_type, base::ProcessHandle handle) {
91 DCHECK(thread_checker_.CalledOnValidThread());
92 return data_fetcher_->GetSharedMemoryHandleForProcess(consumer_type, handle);
95 void DeviceInertialSensorService::Shutdown() {
96 if (data_fetcher_) {
97 data_fetcher_->StopFetchingAllDeviceData();
98 data_fetcher_.reset();
100 is_shutdown_ = true;
103 void DeviceInertialSensorService::SetDataFetcherForTesting(
104 DataFetcherSharedMemory* test_data_fetcher) {
105 if (data_fetcher_)
106 data_fetcher_->StopFetchingAllDeviceData();
107 data_fetcher_.reset(test_data_fetcher);
110 } // namespace content