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.
|
|
|
|
|
|
|
|
#include "atom/common/asar/scoped_temporary_file.h"
|
|
|
|
|
2014-09-25 23:25:17 +08:00
|
|
|
#include <vector>
|
|
|
|
|
2015-01-09 17:45:50 -08:00
|
|
|
#include "base/files/file_util.h"
|
2014-09-25 16:56:50 +08:00
|
|
|
#include "base/threading/thread_restrictions.h"
|
|
|
|
|
|
|
|
namespace asar {
|
|
|
|
|
2018-04-17 21:55:30 -04:00
|
|
|
ScopedTemporaryFile::ScopedTemporaryFile() {}
|
2014-09-25 16:56:50 +08:00
|
|
|
|
|
|
|
ScopedTemporaryFile::~ScopedTemporaryFile() {
|
|
|
|
if (!path_.empty()) {
|
2015-02-02 17:03:52 -08:00
|
|
|
base::ThreadRestrictions::ScopedAllowIO allow_io;
|
|
|
|
// On Windows it is very likely the file is already in use (because it is
|
|
|
|
// mostly used for Node native modules), so deleting it now will halt the
|
|
|
|
// program.
|
2015-02-02 16:09:35 -08:00
|
|
|
#if defined(OS_WIN)
|
2015-02-02 17:03:52 -08:00
|
|
|
base::DeleteFileAfterReboot(path_);
|
2015-02-02 16:09:35 -08:00
|
|
|
#else
|
2014-09-25 16:56:50 +08:00
|
|
|
base::DeleteFile(path_, false);
|
2015-02-02 16:09:35 -08:00
|
|
|
#endif
|
2014-09-25 16:56:50 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-02 11:04:47 +08:00
|
|
|
bool ScopedTemporaryFile::Init(const base::FilePath::StringType& ext) {
|
2014-09-25 16:56:50 +08:00
|
|
|
if (!path_.empty())
|
|
|
|
return true;
|
|
|
|
|
|
|
|
base::ThreadRestrictions::ScopedAllowIO allow_io;
|
2015-12-02 11:36:29 +08:00
|
|
|
if (!base::CreateTemporaryFile(&path_))
|
2015-12-01 11:57:32 -04:00
|
|
|
return false;
|
|
|
|
|
2015-12-02 11:36:29 +08:00
|
|
|
#if defined(OS_WIN)
|
2015-12-02 11:04:47 +08:00
|
|
|
// Keep the original extension.
|
2015-12-02 11:36:29 +08:00
|
|
|
if (!ext.empty()) {
|
|
|
|
base::FilePath new_path = path_.AddExtension(ext);
|
|
|
|
if (!base::Move(path_, new_path))
|
|
|
|
return false;
|
|
|
|
path_ = new_path;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return true;
|
2014-09-25 16:56:50 +08:00
|
|
|
}
|
|
|
|
|
2015-05-11 11:02:17 +08:00
|
|
|
bool ScopedTemporaryFile::InitFromFile(base::File* src,
|
2015-12-02 11:04:47 +08:00
|
|
|
const base::FilePath::StringType& ext,
|
2018-04-17 21:55:30 -04:00
|
|
|
uint64_t offset,
|
|
|
|
uint64_t size) {
|
2015-05-11 11:02:17 +08:00
|
|
|
if (!src->IsValid())
|
2014-09-25 16:56:50 +08:00
|
|
|
return false;
|
|
|
|
|
2015-12-01 11:57:32 -04:00
|
|
|
if (!Init(ext))
|
2014-09-25 16:56:50 +08:00
|
|
|
return false;
|
|
|
|
|
|
|
|
std::vector<char> buf(size);
|
2015-05-11 11:02:17 +08:00
|
|
|
int len = src->Read(offset, buf.data(), buf.size());
|
2014-09-25 16:56:50 +08:00
|
|
|
if (len != static_cast<int>(size))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
base::File dest(path_, base::File::FLAG_OPEN | base::File::FLAG_WRITE);
|
|
|
|
if (!dest.IsValid())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return dest.WriteAtCurrentPos(buf.data(), buf.size()) ==
|
2018-04-17 21:55:30 -04:00
|
|
|
static_cast<int>(size);
|
2014-09-25 16:56:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace asar
|