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

Side by Side Diff: device/generic_sensor/platform_sensor_android.cc

Issue 2284613002: [sensors] Android platform adaptation for Generic Sensor API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased. Created 4 years, 3 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
(Empty)
1 // Copyright 2016 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.
4
5 #include "device/generic_sensor/platform_sensor_android.h"
6
7 #include "base/android/context_utils.h"
8 #include "base/bind.h"
9 #include "base/message_loop/message_loop.h"
10 #include "device/generic_sensor/platform_sensor_configuration_android.h"
11 #include "jni/PlatformSensor_jni.h"
12
13 using base::android::AttachCurrentThread;
14 using base::android::JavaRef;
15
16 namespace device {
17
18 // static
19 bool PlatformSensorAndroid::RegisterJNI(JNIEnv* env) {
20 return RegisterNativesImpl(env);
21 }
22
23 PlatformSensorAndroid::PlatformSensorAndroid(
24 mojom::SensorType type,
25 mojo::ScopedSharedBufferMapping mapping,
26 uint64_t buffer_size,
27 PlatformSensorProvider* provider,
28 const JavaRef<jobject>& java_sensor)
29 : PlatformSensor(type, std::move(mapping), provider),
30 task_runner_(base::MessageLoop::current()->task_runner()) {
31 JNIEnv* env = AttachCurrentThread();
32 j_object_.Reset(java_sensor);
33
34 jobject byte_buffer =
35 env->NewDirectByteBuffer(shared_buffer_mapping_.get(), buffer_size);
36 Java_PlatformSensor_initPlatformSensorAndroid(
37 env, j_object_.obj(), reinterpret_cast<jlong>(this), byte_buffer);
38 }
39
40 PlatformSensorAndroid::~PlatformSensorAndroid() = default;
41
42 mojom::ReportingMode PlatformSensorAndroid::GetReportingMode() {
43 JNIEnv* env = AttachCurrentThread();
44 return static_cast<mojom::ReportingMode>(
45 Java_PlatformSensor_getReportingMode(env, j_object_.obj()));
46 }
47
48 PlatformSensorConfiguration PlatformSensorAndroid::GetDefaultConfiguration() {
49 JNIEnv* env = AttachCurrentThread();
50 base::android::ScopedJavaLocalRef<jobject> configuration =
51 Java_PlatformSensor_getDefaultConfiguration(env, j_object_.obj());
52 return PlatformSensorConfigurationAndroid::Convert(env, configuration);
53 }
54
55 bool PlatformSensorAndroid::StartSensor(
56 const PlatformSensorConfiguration& configuration) {
57 JNIEnv* env = AttachCurrentThread();
58 return Java_PlatformSensor_startSensor(
59 env, j_object_.obj(),
60 PlatformSensorConfigurationAndroid::Create(env, configuration).obj());
61 }
62
63 void PlatformSensorAndroid::StopSensor() {
64 JNIEnv* env = AttachCurrentThread();
65 Java_PlatformSensor_stopSensor(env, j_object_.obj());
66 }
67
68 bool PlatformSensorAndroid::CheckSensorConfiguration(
69 const PlatformSensorConfiguration& configuration) {
70 JNIEnv* env = AttachCurrentThread();
71 return Java_PlatformSensor_checkSensorConfiguration(
72 env, j_object_.obj(),
73 PlatformSensorConfigurationAndroid::Create(env, configuration).obj());
74 }
75
76 void PlatformSensorAndroid::NotifyPlatformSensorReadingChanged(
77 JNIEnv*,
78 const JavaRef<jobject>& caller) {
79 task_runner_->PostTask(
80 FROM_HERE,
81 base::Bind(&PlatformSensorAndroid::NotifySensorReadingChanged, this));
82 }
83
84 void PlatformSensorAndroid::NotifyPlatformSensorError(
85 JNIEnv*,
86 const JavaRef<jobject>& caller) {
87 task_runner_->PostTask(
88 FROM_HERE, base::Bind(&PlatformSensorAndroid::NotifySensorError, this));
89 }
90
91 } // namespace device
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698