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.
|
|
|
|
|
|
|
|
#ifndef ATOM_COMMON_ASAR_SCOPED_TEMPORARY_FILE_H_
|
|
|
|
#define ATOM_COMMON_ASAR_SCOPED_TEMPORARY_FILE_H_
|
|
|
|
|
|
|
|
#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
|
|
|
|
|
|
|
// Init an empty temporary file.
|
|
|
|
bool Init();
|
|
|
|
|
|
|
|
// Init an temporary file and fill it with content of |path|.
|
2015-05-11 03:02:17 +00:00
|
|
|
bool InitFromFile(base::File* src, uint64 offset, uint64 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
|
|
|
|
|
|
|
|
#endif // ATOM_COMMON_ASAR_SCOPED_TEMPORARY_FILE_H_
|