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

Unified Diff: device/generic_sensor/platform_sensor_provider_base.h

Issue 2144623003: [sensors] Introduce Generic Sensor API interfaces (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Definition for PlatformSensorProvider ctor/dtor Created 4 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: device/generic_sensor/platform_sensor_provider_base.h
diff --git a/device/generic_sensor/platform_sensor_provider_base.h b/device/generic_sensor/platform_sensor_provider_base.h
new file mode 100644
index 0000000000000000000000000000000000000000..e37a984e85420823b8c27a76c2cc0acbb6a8d1a6
--- /dev/null
+++ b/device/generic_sensor/platform_sensor_provider_base.h
@@ -0,0 +1,60 @@
+// Copyright 2016 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 DEVICE_GENERIC_SENSOR_PLATFORM_SENSOR_PROVIDER_BASE_H_
+#define DEVICE_GENERIC_SENSOR_PLATFORM_SENSOR_PROVIDER_BASE_H_
+
+#include "base/macros.h"
+
+#include "base/threading/non_thread_safe.h"
+#include "device/generic_sensor/platform_sensor.h"
+
+namespace device {
+
+// Base class that defines factory methods for PlatformSensor creation.
+// Its implementations must be accessed via GetInstance() method.
+class PlatformSensorProviderBase : public base::NonThreadSafe {
+ public:
+ // Returns the PlatformSensorProviderBase singleton.
+ // Note: returns 'nullptr' if there is no available implementation for
+ // the current platform.
+ static PlatformSensorProviderBase* GetInstance();
+
+ // Creates new instance of PlatformSensor.
+ scoped_refptr<PlatformSensor> CreateSensor(mojom::SensorType type,
+ uint64_t size,
+ uint64_t offset);
+
+ // Gets previously created instance of PlatformSensor by sensor type |type|.
+ scoped_refptr<PlatformSensor> GetSensor(mojom::SensorType type);
+
+ // Shared buffer getters.
+ mojo::ScopedSharedBufferHandle CloneSharedBufferHandle();
+
+ protected:
+ PlatformSensorProviderBase();
+ virtual ~PlatformSensorProviderBase();
+
+ // Method that must be implemented by platform specific classes.
+ virtual scoped_refptr<PlatformSensor> CreateSensorInternal(
+ mojom::SensorType type,
+ mojo::ScopedSharedBufferMapping mapping,
+ uint64_t buffer_size) = 0;
+
+ private:
+ friend class PlatformSensor; // To call RemoveSensor();
+
+ bool CreateSharedBufferIfNeeded();
+ void RemoveSensor(mojom::SensorType type);
+
+ private:
+ std::map<mojom::SensorType, PlatformSensor*> sensor_map_;
+ mojo::ScopedSharedBufferHandle shared_buffer_handle_;
+
+ DISALLOW_COPY_AND_ASSIGN(PlatformSensorProviderBase);
+};
+
+} // namespace device
+
+#endif // DEVICE_GENERIC_SENSOR_PLATFORM_SENSOR_PROVIDER_BASE_H_
« no previous file with comments | « device/generic_sensor/platform_sensor_provider.h ('k') | device/generic_sensor/platform_sensor_provider_base.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698