2014-10-31 11:17:05 -07:00
|
|
|
// Copyright (c) 2014 GitHub, Inc.
|
2014-09-25 16:56:50 +08:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2021-11-22 08:34:31 +01:00
|
|
|
#ifndef ELECTRON_SHELL_COMMON_ASAR_SCOPED_TEMPORARY_FILE_H_
|
|
|
|
#define ELECTRON_SHELL_COMMON_ASAR_SCOPED_TEMPORARY_FILE_H_
|
2014-09-25 16:56:50 +08:00
|
|
|
|
|
|
|
#include "base/files/file_path.h"
|
2021-09-09 14:49:01 -07:00
|
|
|
#include "shell/common/asar/archive.h"
|
|
|
|
#include "third_party/abseil-cpp/absl/types/optional.h"
|
2014-09-25 16:56:50 +08:00
|
|
|
|
2015-05-11 10:47:07 +08:00
|
|
|
namespace base {
|
|
|
|
class File;
|
|
|
|
}
|
|
|
|
|
2014-09-25 16:56:50 +08: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 20:38:12 +08:00
|
|
|
class ScopedTemporaryFile {
|
2014-09-25 16:56:50 +08:00
|
|
|
public:
|
|
|
|
ScopedTemporaryFile();
|
2020-07-13 18:13:34 -07:00
|
|
|
ScopedTemporaryFile(const ScopedTemporaryFile&) = delete;
|
|
|
|
ScopedTemporaryFile& operator=(const ScopedTemporaryFile&) = delete;
|
2014-09-25 20:38:12 +08:00
|
|
|
virtual ~ScopedTemporaryFile();
|
2014-09-25 16:56:50 +08:00
|
|
|
|
2015-12-01 11:57:32 -04:00
|
|
|
// Init an empty temporary file with a certain extension.
|
2015-12-02 11:04:47 +08:00
|
|
|
bool Init(const base::FilePath::StringType& ext);
|
2014-09-25 16:56:50 +08:00
|
|
|
|
2021-03-15 11:42:54 -07: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 14:49:01 -07:00
|
|
|
uint64_t size,
|
|
|
|
const absl::optional<IntegrityPayload>& integrity);
|
2021-03-15 11:42:54 -07:00
|
|
|
|
2014-09-25 16:56:50 +08:00
|
|
|
base::FilePath path() const { return path_; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
base::FilePath path_;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace asar
|
|
|
|
|
2021-11-22 08:34:31 +01:00
|
|
|
#endif // ELECTRON_SHELL_COMMON_ASAR_SCOPED_TEMPORARY_FILE_H_
|