Android-cuttlefish cvd tool
shared_fd.h
Go to the documentation of this file.
1//
2// Copyright (C) 2026 The Android Open Source Project
3//
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at
7//
8// http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
15
16#pragma once
17
18#include <stdint.h>
19
21#include "cuttlefish/io/io.h"
23
24namespace cuttlefish {
25
27 public:
28 explicit SharedFdIo(SharedFD);
29
30 Result<void> Visit(IoVisitor&) override;
31 Result<uint64_t> Read(void* buf, uint64_t count) override;
32 Result<uint64_t> Write(const void* buf, uint64_t count) override;
33 Result<uint64_t> SeekSet(uint64_t offset) override;
34 Result<uint64_t> SeekCur(int64_t offset) override;
35 Result<uint64_t> SeekEnd(int64_t offset) override;
36 Result<uint64_t> PRead(void* buf, uint64_t count,
37 uint64_t offset) const override;
38 Result<uint64_t> PWrite(const void* buf, uint64_t count,
39 uint64_t offset) override;
40 Result<void> Truncate(uint64_t size) override;
41
42 private:
44};
45
46} // namespace cuttlefish
Definition: io.h:106
Definition: shared_fd.h:124
Definition: shared_fd.h:26
SharedFdIo(SharedFD)
Definition: shared_fd.cc:30
Result< uint64_t > SeekEnd(int64_t offset) override
Definition: shared_fd.cc:56
Result< uint64_t > PRead(void *buf, uint64_t count, uint64_t offset) const override
Definition: shared_fd.cc:62
Result< uint64_t > Write(const void *buf, uint64_t count) override
Definition: shared_fd.cc:41
Result< void > Visit(IoVisitor &) override
Definition: shared_fd.cc:32
Result< uint64_t > SeekSet(uint64_t offset) override
Definition: shared_fd.cc:45
Result< uint64_t > Read(void *buf, uint64_t count) override
Definition: shared_fd.cc:37
Result< uint64_t > SeekCur(int64_t offset) override
Definition: shared_fd.cc:50
Result< uint64_t > PWrite(const void *buf, uint64_t count, uint64_t offset) override
Definition: shared_fd.cc:67
SharedFD fd_
Definition: shared_fd.h:43
Result< void > Truncate(uint64_t size) override
Definition: shared_fd.cc:72
uint32_t size
Definition: io.h:2
Definition: alloc_driver.h:20
tl::expected< T, StackTraceError > Result
Definition: result_type.h:30