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