Android-cuttlefish cvd tool
native_filesystem.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
20#include <memory>
21#include <string_view>
22
24#include "cuttlefish/io/io.h"
26
27namespace cuttlefish {
28
30 public:
32 std::string_view path) override;
33
34 Result<uint32_t> FileAttributes(std::string_view path) const override;
35
37 std::string_view path) override;
38
39 Result<void> DeleteFile(std::string_view path) override;
40
42 std::string_view path) override;
43};
44
45} // namespace cuttlefish
Definition: native_filesystem.h:29
Result< uint32_t > FileAttributes(std::string_view path) const override
Definition: native_filesystem.cc:39
Result< std::unique_ptr< ReaderSeeker > > OpenReadOnly(std::string_view path) override
Definition: native_filesystem.cc:48
Result< std::unique_ptr< ReaderWriterSeeker > > OpenReadWrite(std::string_view path) override
Definition: native_filesystem.cc:53
Result< std::unique_ptr< ReaderWriterSeeker > > CreateFile(std::string_view path) override
Definition: native_filesystem.cc:33
Result< void > DeleteFile(std::string_view path) override
Definition: native_filesystem.cc:43
Definition: filesystem.h:37
Definition: alloc_driver.h:20
tl::expected< T, StackTraceError > Result
Definition: result_type.h:30