blob: 1d0bec38639e1516e8d63c585360aa5e86b4a849 [file] [log] [blame]
// Copyright 2016 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.
#include "lib/fxl/files/file.h"
#include <fcntl.h>
#include <limits.h>
#include <sys/stat.h>
#include <unistd.h>
#define FILE_CREATE_MODE 0666
#define BINARY_MODE 0
#include "lib/fxl/files/eintr_wrapper.h"
#include "lib/fxl/files/file_descriptor.h"
#include "lib/fxl/files/scoped_temp_dir.h"
#include "lib/fxl/files/unique_fd.h"
#include "lib/fxl/logging.h"
namespace files {
namespace {
template <typename T>
bool ReadFileDescriptor(int fd, T* result) {
FXL_DCHECK(result);
result->clear();
if (fd < 0)
return false;
constexpr size_t kBufferSize = 1 << 16;
size_t offset = 0;
ssize_t bytes_read = 0;
do {
offset += bytes_read;
result->resize(offset + kBufferSize);
bytes_read = HANDLE_EINTR(read(fd, &(*result)[offset], kBufferSize));
} while (bytes_read > 0);
if (bytes_read < 0) {
result->clear();
return false;
}
result->resize(offset + bytes_read);
return true;
}
} // namespace
bool WriteFile(const std::string& path, const char* data, ssize_t size) {
return WriteFileAt(AT_FDCWD, path, data, size);
}
bool WriteFileAt(int dirfd, const std::string& path, const char* data,
ssize_t size) {
fxl::UniqueFD fd(HANDLE_EINTR(openat(
dirfd, path.c_str(), O_CREAT | O_TRUNC | O_WRONLY, FILE_CREATE_MODE)));
if (!fd.is_valid())
return false;
return fxl::WriteFileDescriptor(fd.get(), data, size);
}
bool WriteFileInTwoPhases(const std::string& path, fxl::StringView data,
const std::string& temp_root) {
ScopedTempDir temp_dir(temp_root);
std::string temp_file_path;
if (!temp_dir.NewTempFile(&temp_file_path)) {
return false;
}
if (!WriteFile(temp_file_path, data.data(), data.size())) {
return false;
}
if (rename(temp_file_path.c_str(), path.c_str()) != 0) {
return false;
}
return true;
}
bool ReadFileToString(const std::string& path, std::string* result) {
return ReadFileToStringAt(AT_FDCWD, path, result);
}
bool ReadFileDescriptorToString(int fd, std::string* result) {
return ReadFileDescriptor(fd, result);
}
bool ReadFileToStringAt(int dirfd, const std::string& path,
std::string* result) {
fxl::UniqueFD fd(openat(dirfd, path.c_str(), O_RDONLY));
return ReadFileDescriptor(fd.get(), result);
}
bool ReadFileToVector(const std::string& path, std::vector<uint8_t>* result) {
fxl::UniqueFD fd(open(path.c_str(), O_RDONLY | BINARY_MODE));
return ReadFileDescriptor(fd.get(), result);
}
std::pair<uint8_t*, intptr_t> ReadFileToBytes(const std::string& path) {
std::pair<uint8_t*, intptr_t> failure_pair{nullptr, -1};
fxl::UniqueFD fd(open(path.c_str(), O_RDONLY | BINARY_MODE));
if (!fd.is_valid())
return failure_pair;
return ReadFileDescriptorToBytes(fd.get());
}
std::pair<uint8_t*, intptr_t> ReadFileDescriptorToBytes(int fd) {
std::pair<uint8_t*, intptr_t> failure_pair{nullptr, -1};
struct stat stat_buffer;
if (fstat(fd, &stat_buffer) != 0) {
return failure_pair;
}
intptr_t file_size = stat_buffer.st_size;
uint8_t* ptr = (uint8_t*)malloc(file_size);
size_t bytes_left = file_size;
size_t offset = 0;
while (bytes_left > 0) {
ssize_t bytes_read = HANDLE_EINTR(read(fd, &ptr[offset], bytes_left));
if (bytes_read < 0) {
return failure_pair;
}
offset += bytes_read;
bytes_left -= bytes_read;
}
return std::pair<uint8_t*, intptr_t>(ptr, file_size);
}
bool IsFile(const std::string& path) { return IsFileAt(AT_FDCWD, path); }
bool IsFileAt(int dirfd, const std::string& path) {
struct stat stat_buffer;
if (fstatat(dirfd, path.c_str(), &stat_buffer, /* flags = */ 0) != 0)
return false;
return S_ISREG(stat_buffer.st_mode);
}
bool GetFileSize(const std::string& path, uint64_t* size) {
return GetFileSizeAt(AT_FDCWD, path, size);
}
bool GetFileSizeAt(int dirfd, const std::string& path, uint64_t* size) {
struct stat stat_buffer;
if (fstatat(dirfd, path.c_str(), &stat_buffer, /* flags = */ 0) != 0)
return false;
*size = stat_buffer.st_size;
return true;
}
} // namespace files