blob: 1eb7b933795c82bfcc5e3ba9b6f6b9d4cc0a748b [file] [log] [blame]
// Copyright (c) 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_GAMEPAD_SHARED_BUFFER_H_
#define DEVICE_GAMEPAD_SHARED_BUFFER_H_
#include "base/memory/shared_memory.h"
#include "device/base/synchronization/shared_memory_seqlock_buffer.h"
#include "device/gamepad/gamepad_export.h"
#include "device/gamepad/public/cpp/gamepads.h"
namespace device {
/*
GamepadHardwareBuffer is stored in shared memory that's shared between the
browser which does the hardware polling, and the various consumers of the
gamepad state (renderers and NaCl plugins). The performance characteristics are
that we want low latency (so would like to avoid explicit communication via IPC
between producer and consumer) and relatively large data size.
Writer and reader operate on the same buffer assuming contention is low, and
contention is detected by using the associated SeqLock.
*/
typedef SharedMemorySeqLockBuffer<Gamepads> GamepadHardwareBuffer;
class DEVICE_GAMEPAD_EXPORT GamepadSharedBuffer {
public:
GamepadSharedBuffer();
~GamepadSharedBuffer();
base::SharedMemory* shared_memory();
Gamepads* buffer();
GamepadHardwareBuffer* hardware_buffer();
void WriteBegin();
void WriteEnd();
private:
base::SharedMemory shared_memory_;
GamepadHardwareBuffer* hardware_buffer_;
};
} // namespace device
#endif // DEVICE_GAMEPAD_SHARED_BUFFER_H_