2014-10-31 18:17:05 +00:00
|
|
|
// Copyright (c) 2014 GitHub, Inc.
|
2014-09-25 08:56:50 +00:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2019-06-19 20:56:58 +00:00
|
|
|
#ifndef SHELL_COMMON_ASAR_SCOPED_TEMPORARY_FILE_H_
|
|
|
|
#define SHELL_COMMON_ASAR_SCOPED_TEMPORARY_FILE_H_
|
2014-09-25 08:56:50 +00:00
|
|
|
|
|
|
|
#include "base/files/file_path.h"
|
2021-09-09 21:49:01 +00:00
|
|
|
#include "shell/common/asar/archive.h"
|
|
|
|
#include "third_party/abseil-cpp/absl/types/optional.h"
|
2014-09-25 08:56:50 +00:00
|
|
|
|
2015-05-11 02:47:07 +00:00
|
|
|
namespace base {
|
|
|
|
class File;
|
|
|
|
}
|
|
|
|
|
2014-09-25 08:56:50 +00:00
|
|
|
namespace asar {
|
|
|
|
|
|
|
|
// An object representing a temporary file that should be cleaned up when this
|
|
|
|
// object goes out of scope. Note that since deletion occurs during the
|
|
|
|
// destructor, no further error handling is possible if the directory fails to
|
|
|
|
// be deleted. As a result, deletion is not guaranteed by this class.
|
2014-09-25 12:38:12 +00:00
|
|
|
class ScopedTemporaryFile {
|
2014-09-25 08:56:50 +00:00
|
|
|
public:
|
|
|
|
ScopedTemporaryFile();
|
2020-07-14 01:13:34 +00:00
|
|
|
ScopedTemporaryFile(const ScopedTemporaryFile&) = delete;
|
|
|
|
ScopedTemporaryFile& operator=(const ScopedTemporaryFile&) = delete;
|
2014-09-25 12:38:12 +00:00
|
|
|
virtual ~ScopedTemporaryFile();
|
2014-09-25 08:56:50 +00:00
|
|
|
|
2015-12-01 15:57:32 +00:00
|
|
|
// Init an empty temporary file with a certain extension.
|
2015-12-02 03:04:47 +00:00
|
|
|
bool Init(const base::FilePath::StringType& ext);
|
2014-09-25 08:56:50 +00:00
|
|
|
|
2021-03-15 18:42:54 +00:00
|
|
|
// Init an temporary file and fill it with content of |path|.
|
|
|
|
bool InitFromFile(base::File* src,
|
|
|
|
const base::FilePath::StringType& ext,
|
|
|
|
uint64_t offset,
|
2021-09-09 21:49:01 +00:00
|
|
|
uint64_t size,
|
|
|
|
const absl::optional<IntegrityPayload>& integrity);
|
2021-03-15 18:42:54 +00:00
|
|
|
|
2014-09-25 08:56:50 +00:00
|
|
|
base::FilePath path() const { return path_; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
base::FilePath path_;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace asar
|
|
|
|
|
2019-06-19 20:56:58 +00:00
|
|
|
#endif // SHELL_COMMON_ASAR_SCOPED_TEMPORARY_FILE_H_
|