#ifndef MOJO_SYSTEM_SHARED_BUFFER_DISPATCHER_H_
#define MOJO_SYSTEM_SHARED_BUFFER_DISPATCHER_H_
#include "base/macros.h"
#include "mojo/system/raw_shared_buffer.h"
#include "mojo/system/simple_dispatcher.h"
#include "mojo/system/system_impl_export.h"
namespace mojo {
namespace system {
class MOJO_SYSTEM_IMPL_EXPORT SharedBufferDispatcher : public SimpleDispatcher {
public:
static MojoResult ValidateOptions(
const MojoCreateSharedBufferOptions* in_options,
MojoCreateSharedBufferOptions* out_options);
static MojoResult Create(
const MojoCreateSharedBufferOptions& validated_options,
uint64_t num_bytes,
scoped_refptr<SharedBufferDispatcher>* result);
virtual Type GetType() const OVERRIDE;
private:
explicit SharedBufferDispatcher(
scoped_refptr<RawSharedBuffer> shared_buffer_);
virtual ~SharedBufferDispatcher();
virtual void CloseImplNoLock() OVERRIDE;
virtual scoped_refptr<Dispatcher>
CreateEquivalentDispatcherAndCloseImplNoLock() OVERRIDE;
virtual MojoResult DuplicateBufferHandleImplNoLock(
const MojoDuplicateBufferHandleOptions* options,
scoped_refptr<Dispatcher>* new_dispatcher) OVERRIDE;
virtual MojoResult MapBufferImplNoLock(
uint64_t offset,
uint64_t num_bytes,
MojoMapBufferFlags flags,
scoped_ptr<RawSharedBufferMapping>* mapping) OVERRIDE;
virtual MojoWaitFlags SatisfiedFlagsNoLock() const OVERRIDE;
virtual MojoWaitFlags SatisfiableFlagsNoLock() const OVERRIDE;
scoped_refptr<RawSharedBuffer> shared_buffer_;
DISALLOW_COPY_AND_ASSIGN(SharedBufferDispatcher);
};
}
}
#endif