Android-cuttlefish cvd tool
lazily_loaded_file.h
Go to the documentation of this file.
1//
2// Copyright (C) 2025 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#pragma once
16
17#include <stddef.h>
18
19#include <memory>
20#include <string>
21
22#include "cuttlefish/io/io.h"
24
25namespace cuttlefish {
26
28 public:
29 static Result<LazilyLoadedFile> Create(std::string filename, size_t size,
30 std::unique_ptr<ReaderSeeker>);
31
35
36 Result<size_t> Read(char*, size_t);
37 Result<void> Seek(size_t);
38
39 private:
40 struct Impl;
41
42 LazilyLoadedFile(std::unique_ptr<Impl>);
43
44 std::unique_ptr<Impl> impl_;
45};
46
47} // namespace cuttlefish
Definition: lazily_loaded_file.h:27
LazilyLoadedFile & operator=(LazilyLoadedFile &&)
Definition: lazily_loaded_file.cc:96
static Result< LazilyLoadedFile > Create(std::string filename, size_t size, std::unique_ptr< ReaderSeeker >)
Definition: lazily_loaded_file.cc:62
Result< size_t > Read(char *, size_t)
Definition: lazily_loaded_file.cc:102
std::unique_ptr< Impl > impl_
Definition: lazily_loaded_file.h:44
Result< void > Seek(size_t)
Definition: lazily_loaded_file.cc:107
LazilyLoadedFile(LazilyLoadedFile &&)
Definition: lazily_loaded_file.cc:82
~LazilyLoadedFile()
Definition: lazily_loaded_file.cc:86
uint32_t size
Definition: io.h:2
Definition: alloc_driver.h:20
tl::expected< T, StackTraceError > Result
Definition: result_type.h:30
Definition: lazily_loaded_file.cc:46