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"
|
|
|
|
|
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();
|
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
|
|
|
|
|
|
|
// Init an temporary file and fill it with content of |path|.
|
2015-12-01 15:57:32 +00:00
|
|
|
bool InitFromFile(base::File* src,
|
2015-12-02 03:04:47 +00:00
|
|
|
const base::FilePath::StringType& ext,
|
2018-04-18 01:44:10 +00:00
|
|
|
uint64_t offset,
|
|
|
|
uint64_t size);
|
2014-09-25 08:56:50 +00:00
|
|
|
|
|
|
|
base::FilePath path() const { return path_; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
base::FilePath path_;
|
|
|
|
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(ScopedTemporaryFile);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace asar
|
|
|
|
|
2019-06-19 20:56:58 +00:00
|
|
|
#endif // SHELL_COMMON_ASAR_SCOPED_TEMPORARY_FILE_H_
|