mirror of
https://github.com/chromium/crashpad.git
synced 2024-12-29 00:32:35 +08:00
50ed179e9a
Use BUILDFLAG(IS_*) instead of defined(OS_*). This was generated mostly mechnically by performing the following steps: - sed -i '' -E -e 's/defined\(OS_/BUILDFLAG(IS_/g' \ -e 's%([ !])OS_([A-Z]+)%\1BUILDFLAG(IS_\2)%g' \ $(git grep -l 'OS_' '**/*.c' '**/*.cc' '**/*.h' '**/*.m' '**/*.mm') - sed -i '' -e 's/#ifdef BUILDFLAG(/#if BUILDFLAG(/' \ $(git grep -l '#ifdef BUILDFLAG(' '**/*.c' '**/*.cc' '**/*.h' '**/*.m' '**/*.mm') - gsed -i -z -E -e \ 's%(.*)#include "%\1#include "build/buildflag.h"\n#include "%' \ $(git grep -l 'BUILDFLAG(IS_' '**/*.c' '**/*.cc' '**/*.h' '**/*.m' '**/*.mm') - Spot checks to move #include "build/buildflag.h" to the correct parts of files. - sed -i '' -E -e \ 's%^(#include "build/buildflag.h")$%#include "build/build_config.h"\n\1%' \ $(grep -L '^#include "build/build_config.h"$' $(git grep -l 'BUILDFLAG(IS_' '**/*.c' '**/*.cc' '**/*.h' '**/*.m' '**/*.mm')) - Add “clang-format off” around tool usage messages. - git cl format - Update mini_chromium to 85ba51f98278 (intermediate step). TESTING ONLY). - for f in $(git grep -l '^#include "build/buildflag.h"$' '**/*.c' '**/*.cc' '**/*.h' '**/*.m' '**/*.mm'); do \ grep -v '^#include "build/buildflag.h"$' "${f}" > /tmp/z; \ cp /tmp/z "${f}"; done - git cl format - Update mini_chromium to 735143774c5f (intermediate step). - Update mini_chromium to f41420eb45fa (as checked in). - Update mini_chromium to 6e2f204b4ae1 (as checked in). For ease of review and inspection, each of these steps is uploaded as a new patch set in a review series. This includes an update of mini_chromium to 6e2f204b4ae1: f41420eb45fa Use BUILDFLAG for OS checking 6e2f204b4ae1 Include what you use: string_util.h uses build_config.h Bug: chromium:1234043 Change-Id: Ieef86186f094c64e59b853729737e36982f8cf69 Reviewed-on: https://chromium-review.googlesource.com/c/crashpad/crashpad/+/3400258 Reviewed-by: Joshua Peraza <jperaza@chromium.org> Commit-Queue: Mark Mentovai <mark@chromium.org>
193 lines
6.7 KiB
C++
193 lines
6.7 KiB
C++
// Copyright 2014 The Crashpad Authors. All rights reserved.
|
|
//
|
|
// 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 CRASHPAD_UTIL_FILE_FILE_WRITER_H_
|
|
#define CRASHPAD_UTIL_FILE_FILE_WRITER_H_
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <vector>
|
|
|
|
#include "base/files/file_path.h"
|
|
#include "build/build_config.h"
|
|
#include "util/file/file_io.h"
|
|
#include "util/file/file_seeker.h"
|
|
|
|
namespace crashpad {
|
|
|
|
//! \brief A version of `iovec` with a `const` #iov_base field.
|
|
//!
|
|
//! This structure is intended to be used for write operations.
|
|
//
|
|
// Type compatibility with iovec is tested with static assertions in the
|
|
// implementation file.
|
|
struct WritableIoVec {
|
|
//! \brief The base address of a memory region for output.
|
|
const void* iov_base;
|
|
|
|
//! \brief The size of the memory pointed to by #iov_base.
|
|
size_t iov_len;
|
|
};
|
|
|
|
//! \brief An interface to write to files and other file-like objects with
|
|
//! semantics matching the underlying platform (POSIX or Windows).
|
|
class FileWriterInterface : public virtual FileSeekerInterface {
|
|
public:
|
|
virtual ~FileWriterInterface() {}
|
|
|
|
//! \brief Wraps LoggingWriteFile(), or provides an implementation with
|
|
//! identical semantics.
|
|
//!
|
|
//! \return `true` if the operation succeeded, `false` if it failed, with an
|
|
//! error message logged.
|
|
virtual bool Write(const void* data, size_t size) = 0;
|
|
|
|
//! \brief Wraps `writev()` on POSIX or provides an alternate implementation
|
|
//! with identical semantics. This method will write entire buffers,
|
|
//! continuing after a short write or after being interrupted. On
|
|
//! non-POSIX this is a simple wrapper around Write().
|
|
//!
|
|
//! \return `true` if the operation succeeded, `false` if it failed, with an
|
|
//! error message logged.
|
|
//!
|
|
//! \note The contents of \a iovecs are undefined when this method returns.
|
|
virtual bool WriteIoVec(std::vector<WritableIoVec>* iovecs) = 0;
|
|
};
|
|
|
|
//! \brief A file writer backed by a FileHandle.
|
|
//!
|
|
//! FileWriter requires users to provide a FilePath to open, but this class
|
|
//! accepts an already-open FileHandle instead. Like FileWriter, this class may
|
|
//! write to a filesystem-based file, but unlike FileWriter, this class is not
|
|
//! responsible for creating or closing the file. Users of this class must
|
|
//! ensure that the file handle is closed appropriately elsewhere. Objects of
|
|
//! this class may be used to write to file handles not associated with
|
|
//! filesystem-based files, although special attention should be paid to the
|
|
//! Seek() method, which may not function on file handles that do not refer to
|
|
//! disk-based files.
|
|
//!
|
|
//! This class is expected to be used when other code is responsible for
|
|
//! creating files and already provides file handles.
|
|
class WeakFileHandleFileWriter : public FileWriterInterface {
|
|
public:
|
|
explicit WeakFileHandleFileWriter(FileHandle file_handle);
|
|
|
|
WeakFileHandleFileWriter(const WeakFileHandleFileWriter&) = delete;
|
|
WeakFileHandleFileWriter& operator=(const WeakFileHandleFileWriter&) = delete;
|
|
|
|
~WeakFileHandleFileWriter() override;
|
|
|
|
// FileWriterInterface:
|
|
bool Write(const void* data, size_t size) override;
|
|
bool WriteIoVec(std::vector<WritableIoVec>* iovecs) override;
|
|
|
|
// FileSeekerInterface:
|
|
|
|
//! \copydoc FileWriterInterface::Seek()
|
|
//!
|
|
//! \note This method is only guaranteed to function on file handles referring
|
|
//! to disk-based files.
|
|
FileOffset Seek(FileOffset offset, int whence) override;
|
|
|
|
private:
|
|
void set_file_handle(FileHandle file_handle) { file_handle_ = file_handle; }
|
|
|
|
FileHandle file_handle_; // weak
|
|
|
|
// FileWriter uses this class as its internal implementation, and it needs to
|
|
// be able to call set_file_handle(). FileWriter cannot initialize a
|
|
// WeakFileHandleFileWriter with a correct file descriptor at the time of
|
|
// construction because no file descriptor will be available until
|
|
// FileWriter::Open() is called.
|
|
friend class FileWriter;
|
|
};
|
|
|
|
//! \brief A file writer implementation that wraps traditional system file
|
|
//! operations on files accessed through the filesystem.
|
|
class FileWriter : public FileWriterInterface {
|
|
public:
|
|
FileWriter();
|
|
|
|
FileWriter(const FileWriter&) = delete;
|
|
FileWriter& operator=(const FileWriter&) = delete;
|
|
|
|
~FileWriter() override;
|
|
|
|
// FileWriterInterface:
|
|
|
|
//! \brief Wraps LoggingOpenFileForWrite().
|
|
//!
|
|
//! \return `true` if the operation succeeded, `false` if it failed, with an
|
|
//! error message logged.
|
|
//!
|
|
//! \note After a successful call, this method cannot be called again until
|
|
//! after Close().
|
|
bool Open(const base::FilePath& path,
|
|
FileWriteMode write_mode,
|
|
FilePermissions permissions);
|
|
|
|
#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)
|
|
//! \brief Wraps LoggingOpenMemoryFileForWrite().
|
|
//!
|
|
//! \return `true` if the operation succeeded, `false` if it failed, with an
|
|
//! error message logged.
|
|
//!
|
|
//! \note After a successful call, this method or Open() cannot be called
|
|
// again until after Close().
|
|
bool OpenMemfd(const base::FilePath& path);
|
|
|
|
//! \brief Returns the underlying file descriptor.
|
|
//!
|
|
//! \note This is used when this writes to a Memfd.
|
|
int fd();
|
|
#endif
|
|
|
|
//! \brief Wraps CheckedCloseHandle().
|
|
//!
|
|
//! \note It is only valid to call this method on an object that has had a
|
|
//! successful Open() that has not yet been matched by a subsequent call
|
|
//! to this method.
|
|
void Close();
|
|
|
|
// FileWriterInterface:
|
|
|
|
//! \copydoc FileWriterInterface::Write()
|
|
//!
|
|
//! \note It is only valid to call this method between a successful Open() and
|
|
//! a Close().
|
|
bool Write(const void* data, size_t size) override;
|
|
|
|
//! \copydoc FileWriterInterface::WriteIoVec()
|
|
//!
|
|
//! \note It is only valid to call this method between a successful Open() and
|
|
//! a Close().
|
|
bool WriteIoVec(std::vector<WritableIoVec>* iovecs) override;
|
|
|
|
// FileSeekerInterface:
|
|
|
|
//! \copydoc FileWriterInterface::Seek()
|
|
//!
|
|
//! \note It is only valid to call this method between a successful Open() and
|
|
//! a Close().
|
|
FileOffset Seek(FileOffset offset, int whence) override;
|
|
|
|
private:
|
|
ScopedFileHandle file_;
|
|
WeakFileHandleFileWriter weak_file_handle_file_writer_;
|
|
};
|
|
|
|
} // namespace crashpad
|
|
|
|
#endif // CRASHPAD_UTIL_FILE_FILE_WRITER_H_
|