blob: 117cffde3b2255eb86ea8e517d4f4166e625d18b [file] [log] [blame]
// Copyright 2018 The Fuchsia 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 PLATFORM_HANDLE_H
#define PLATFORM_HANDLE_H
#include <memory>
#include "platform_port.h"
namespace magma {
class PlatformHandle {
public:
PlatformHandle() = default;
virtual ~PlatformHandle() = default;
virtual bool GetCount(uint32_t* count_out) = 0;
virtual uint32_t release() = 0;
// Registers an async wait delivered on the given |port| when the given handle is readable,
// or if the handle has a peer and the peer is closed.
// On success returns true and |key_out| is set.
virtual bool WaitAsync(PlatformPort* port, uint64_t* key_out) = 0;
static bool duplicate_handle(uint32_t handle_in, uint32_t* handle_out);
static std::unique_ptr<PlatformHandle> Create(uint32_t handle);
static bool SupportsGetCount();
private:
PlatformHandle(const PlatformHandle&) = delete;
PlatformHandle& operator=(const PlatformHandle&) = delete;
};
} // namespace magma
#endif // PLATFORM_HANDLE_H