Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2007)

Side by Side Diff: content/browser/device_orientation/data_fetcher_impl_android.h

Issue 18572014: Implement Android shared memory data fetcher for Device Motion. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@renderer-sync-12June-tryASYNC-2-bis-tryRebase-6
Patch Set: added OWNERS file Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 CHROME_BROWSER_DEVICE_ORIENTATION_DATA_FETCHER_IMPL_ANDROID_H_ 5 #ifndef CHROME_BROWSER_DEVICE_ORIENTATION_DATA_FETCHER_IMPL_ANDROID_H_
6 #define CHROME_BROWSER_DEVICE_ORIENTATION_DATA_FETCHER_IMPL_ANDROID_H_ 6 #define CHROME_BROWSER_DEVICE_ORIENTATION_DATA_FETCHER_IMPL_ANDROID_H_
7 7
8 #include "base/android/scoped_java_ref.h" 8 #include "base/android/scoped_java_ref.h"
9 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
10 #include "base/synchronization/lock.h" 10 #include "base/synchronization/lock.h"
11 #include "content/browser/device_orientation/data_fetcher.h" 11 #include "content/browser/device_orientation/data_fetcher.h"
12 #include "content/browser/device_orientation/data_fetcher_shared_memory.h"
12 #include "content/browser/device_orientation/device_data.h" 13 #include "content/browser/device_orientation/device_data.h"
13 14
14 namespace content { 15 namespace content {
15 16
16 class Orientation; 17 class Orientation;
17 18
18 // Android implementation of DeviceOrientation API. 19 // Android implementation of DeviceOrientation API.
19 20
20 // Android's SensorManager has a push API, whereas Chrome wants to pull data. 21 // Android's SensorManager has a push API, whereas Chrome wants to pull data.
21 // To fit them together, we store incoming sensor events in a 1-element buffer. 22 // To fit them together, we store incoming sensor events in a 1-element buffer.
22 // SensorManager calls SetOrientation() which pushes a new value (discarding the 23 // SensorManager calls SetOrientation() which pushes a new value (discarding the
23 // previous value if any). Chrome calls GetDeviceData() which reads the most 24 // previous value if any). Chrome calls GetDeviceData() which reads the most
24 // recent value. Repeated calls to GetDeviceData() will return the same value. 25 // recent value. Repeated calls to GetDeviceData() will return the same value.
25 26
26 class DataFetcherImplAndroid : public DataFetcher { 27 class DataFetcherImplAndroid
28 : public DataFetcher, public DataFetcherSharedMemory {
27 public: 29 public:
28 // Must be called at startup, before Create(). 30 // Must be called at startup, before Create().
29 static void Init(JNIEnv* env); 31 static void Init(JNIEnv* env);
30 32
33 static DataFetcherImplAndroid* instance();
34
31 // Factory function. We'll listen for events for the lifetime of this object. 35 // Factory function. We'll listen for events for the lifetime of this object.
32 // Returns NULL on error. 36 // Returns NULL on error.
33 static DataFetcher* Create(); 37 static DataFetcher* Create();
34 38
35 virtual ~DataFetcherImplAndroid(); 39 virtual ~DataFetcherImplAndroid();
36 40
37 // Called from Java via JNI. 41 // Called from Java via JNI.
38 void GotOrientation(JNIEnv*, jobject, 42 void GotOrientation(JNIEnv*, jobject,
39 double alpha, double beta, double gamma); 43 double alpha, double beta, double gamma);
40 void GotAcceleration(JNIEnv*, jobject, 44 void GotAcceleration(JNIEnv*, jobject,
41 double x, double y, double z); 45 double x, double y, double z);
42 void GotAccelerationIncludingGravity(JNIEnv*, jobject, 46 void GotAccelerationIncludingGravity(JNIEnv*, jobject,
43 double x, double y, double z); 47 double x, double y, double z);
44 void GotRotationRate(JNIEnv*, jobject, 48 void GotRotationRate(JNIEnv*, jobject,
45 double alpha, double beta, double gamma); 49 double alpha, double beta, double gamma);
46 50
47 // Implementation of DataFetcher. 51 // Implementation of DataFetcher.
48 virtual const DeviceData* GetDeviceData(DeviceData::Type type) OVERRIDE; 52 virtual const DeviceData* GetDeviceData(DeviceData::Type type) OVERRIDE;
49 53
50 private: 54 // Implementation of the new API using shared memory.
55
56 virtual bool NeedsPolling() OVERRIDE { return false; }
57 virtual bool FetchDeviceMotionDataIntoBuffer() OVERRIDE;
58 virtual bool StartFetchingDeviceMotionData(
59 DeviceMotionHardwareBuffer* buffer) OVERRIDE;
60 virtual void StopFetchingDeviceMotionData() OVERRIDE;
61
62 protected:
bulach 2013/07/04 08:23:36 why is it protected? styleguide forbids non-privat
timvolodine 2013/07/04 12:02:52 I needed a couple of methods to be protected for e
51 DataFetcherImplAndroid(); 63 DataFetcherImplAndroid();
52 const Orientation* GetOrientation(); 64 const Orientation* GetOrientation();
53 65
54 // Wrappers for JNI methods. 66 // Wrappers for JNI methods.
55 // TODO(timvolodine): move the DeviceData::Type enum to the service class 67 // TODO(timvolodine): move the DeviceData::Type enum to the service class
56 // once it is implemented. 68 // once it is implemented.
57 bool Start(DeviceData::Type event_type, int rate_in_milliseconds); 69 virtual bool Start(DeviceData::Type event_type, int rate_in_milliseconds);
58 void Stop(DeviceData::Type event_type); 70 virtual void Stop(DeviceData::Type event_type);
59 71
60 virtual int GetNumberActiveDeviceMotionSensors(); 72 virtual int GetNumberActiveDeviceMotionSensors();
73 void CheckBufferReadyToRead();
61 74
62 // Value returned by GetDeviceData. 75 // Value returned by GetDeviceData.
63 scoped_refptr<Orientation> current_orientation_; 76 scoped_refptr<Orientation> current_orientation_;
64 77
65 // 1-element buffer, written by GotOrientation, read by GetDeviceData. 78 // 1-element buffer, written by GotOrientation, read by GetDeviceData.
66 base::Lock next_orientation_lock_; 79 base::Lock next_orientation_lock_;
67 scoped_refptr<Orientation> next_orientation_; 80 scoped_refptr<Orientation> next_orientation_;
68 81
69 // The Java provider of orientation info. 82 // The Java provider of orientation info.
70 base::android::ScopedJavaGlobalRef<jobject> device_orientation_; 83 base::android::ScopedJavaGlobalRef<jobject> device_orientation_;
84 int number_active_device_motion_sensors_;
85 int receivedMotionData[3];
bulach 2013/07/04 08:23:36 nit: received_motion_data. also, I think using the
timvolodine 2013/07/04 12:02:52 Done.
86 DeviceMotionHardwareBuffer* device_motion_buffer_;
87 bool is_buffer_ready_;
71 88
72 DISALLOW_COPY_AND_ASSIGN(DataFetcherImplAndroid); 89 DISALLOW_COPY_AND_ASSIGN(DataFetcherImplAndroid);
73 }; 90 };
74 91
75 } // namespace content 92 } // namespace content
76 93
77 #endif // CHROME_BROWSER_DEVICE_ORIENTATION_DATA_FETCHER_IMPL_ANDROID_H_ 94 #endif // CHROME_BROWSER_DEVICE_ORIENTATION_DATA_FETCHER_IMPL_ANDROID_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698