Spaces:
Running
Running
File size: 4,050 Bytes
5f923cd | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 | // Copyright 2024 The ODML Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef THIRD_PARTY_ODML_LITERT_LM_RUNTIME_UTIL_MEMORY_MAPPED_FILE_H_
#define THIRD_PARTY_ODML_LITERT_LM_RUNTIME_UTIL_MEMORY_MAPPED_FILE_H_
#include <cstddef>
#include <cstdint>
#include <memory>
#include <string>
#include <utility>
#include "absl/memory/memory.h" // from @com_google_absl
#include "absl/status/statusor.h" // from @com_google_absl
#include "absl/strings/string_view.h" // from @com_google_absl
#include "runtime/util/scoped_file.h"
namespace litert::lm {
// Represents a memory mapped file. All memory will be accessible while this
// object exists and will be cleaned up when it is destroyed.
class MemoryMappedFile {
public:
// Move constructor and move assignment operator
MemoryMappedFile(MemoryMappedFile&&) = default;
MemoryMappedFile& operator=(MemoryMappedFile&&) = default;
// Delete copy operations
MemoryMappedFile(const MemoryMappedFile&) = delete;
MemoryMappedFile& operator=(const MemoryMappedFile&) = delete;
// Gets the required alignment for a file offset passed to Create().
static size_t GetOffsetAlignment();
// Creates a read-only MemoryMappedFile object.
static absl::StatusOr<std::unique_ptr<MemoryMappedFile>> Create(
absl::string_view path);
// Creates a MemoryMappedFile object from the platform file handle. This does
// not take ownership of the passed handle. The `key` passed here is an
// optimization when mapping the same file with different offsets.
static absl::StatusOr<std::unique_ptr<MemoryMappedFile>> Create(
ScopedFile::PlatformFile file, uint64_t offset = 0u, uint64_t length = 0u,
absl::string_view key = "");
// Creates a mutable MemoryMappedFile object, any modification through data()
// pointer will be carried over to the underlying path.
static absl::StatusOr<std::unique_ptr<MemoryMappedFile>> CreateMutable(
absl::string_view path);
// Creates a MemoryMappedFile object from the platform file handle. This does
// not take ownership of the passed handle. The `key` passed here is an
// optimization when mapping the same file with different offsets.
static absl::StatusOr<std::unique_ptr<MemoryMappedFile>> CreateMutable(
ScopedFile::PlatformFile file, uint64_t offset = 0u, uint64_t length = 0u,
absl::string_view key = "");
virtual ~MemoryMappedFile() = default;
// Returns the file size in bytes.
virtual uint64_t length() = 0;
// Returns a pointer to the file data.
virtual void* data() = 0;
protected:
// Protected default constructor to prevent direct instantiation
MemoryMappedFile() = default;
};
// Represents an in-memory file from a memory data. This is useful for
// in-memory data that are not backed by a file. For example, the unit test data
// and the image or audio data passed as raw bytes.
class InMemoryFile : public MemoryMappedFile {
public:
// Creates a InMemoryFile object from a memory data.
static absl::StatusOr<std::unique_ptr<InMemoryFile>> Create(
std::string blob) {
return absl::WrapUnique(new InMemoryFile(std::move(blob)));
}
// Returns the size of the memory data.
uint64_t length() override { return blob_.size(); }
// Returns a pointer to the memory data.
void* data() override { return blob_.data(); }
private:
explicit InMemoryFile(std::string blob) : blob_(std::move(blob)) {}
std::string blob_;
};
} // namespace litert::lm
#endif // THIRD_PARTY_ODML_LITERT_LM_RUNTIME_UTIL_MEMORY_MAPPED_FILE_H_
|