2010-05-21 03:13:36 +02:00
|
|
|
// Copyright (c) 2010, Amar Takhar <verm@aegisub.org>
|
|
|
|
//
|
|
|
|
// Permission to use, copy, modify, and distribute this software for any
|
|
|
|
// purpose with or without fee is hereby granted, provided that the above
|
|
|
|
// copyright notice and this permission notice appear in all copies.
|
|
|
|
//
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
// WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
// MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
// ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
// WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
// ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
// OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
|
|
|
|
/// @file io.cpp
|
|
|
|
/// @brief Windows IO methods.
|
2012-10-21 16:57:48 +02:00
|
|
|
/// @ingroup libaegisub
|
2010-05-21 03:13:36 +02:00
|
|
|
|
2013-01-04 16:01:50 +01:00
|
|
|
#include "libaegisub/io.h"
|
2010-05-21 03:13:36 +02:00
|
|
|
|
2012-01-12 23:31:54 +01:00
|
|
|
#include <libaegisub/access.h>
|
2013-01-04 16:01:50 +01:00
|
|
|
#include "libaegisub/fs.h"
|
2010-06-03 20:09:00 +02:00
|
|
|
#include "libaegisub/log.h"
|
2014-04-23 22:53:24 +02:00
|
|
|
#include "libaegisub/make_unique.h"
|
2010-05-21 03:13:36 +02:00
|
|
|
#include "libaegisub/util.h"
|
|
|
|
|
2013-01-04 16:01:50 +01:00
|
|
|
#include <boost/filesystem/fstream.hpp>
|
2014-05-23 00:40:16 +02:00
|
|
|
#include <boost/filesystem/operations.hpp>
|
2012-10-21 17:04:02 +02:00
|
|
|
|
2010-05-21 03:13:36 +02:00
|
|
|
namespace agi {
|
|
|
|
namespace io {
|
|
|
|
|
2014-03-21 22:23:52 +01:00
|
|
|
std::unique_ptr<std::istream> Open(fs::path const& file, bool binary) {
|
2010-06-03 20:09:00 +02:00
|
|
|
LOG_D("agi/io/open/file") << file;
|
2010-05-21 03:13:36 +02:00
|
|
|
|
2014-04-23 22:53:24 +02:00
|
|
|
auto stream = agi::make_unique<boost::filesystem::ifstream>(file, (binary ? std::ios::binary : std::ios::in));
|
2014-05-27 04:37:40 +02:00
|
|
|
if (stream->fail()) {
|
|
|
|
acs::CheckFileRead(file);
|
|
|
|
throw IOFatal("Unknown fatal error occurred opening " + file.string());
|
|
|
|
}
|
2010-05-21 03:13:36 +02:00
|
|
|
|
2014-03-21 22:23:52 +01:00
|
|
|
return std::unique_ptr<std::istream>(stream.release());
|
2010-05-21 03:13:36 +02:00
|
|
|
}
|
|
|
|
|
2013-01-04 16:01:50 +01:00
|
|
|
Save::Save(fs::path const& file, bool binary)
|
2012-10-21 17:04:02 +02:00
|
|
|
: file_name(file)
|
2013-07-03 05:05:06 +02:00
|
|
|
, tmp_name(unique_path(file.parent_path()/(file.stem().string() + "_tmp_%%%%" + file.extension().string())))
|
2012-10-21 17:04:02 +02:00
|
|
|
{
|
2010-06-03 20:09:00 +02:00
|
|
|
LOG_D("agi/io/save/file") << file;
|
2010-05-21 03:13:36 +02:00
|
|
|
|
2014-04-23 22:53:24 +02:00
|
|
|
fp = agi::make_unique<boost::filesystem::ofstream>(tmp_name, binary ? std::ios::binary : std::ios::out);
|
2014-05-27 04:37:40 +02:00
|
|
|
if (!fp->good()) {
|
|
|
|
acs::CheckDirWrite(file.parent_path());
|
|
|
|
acs::CheckFileWrite(file);
|
2013-01-04 16:01:50 +01:00
|
|
|
throw fs::WriteDenied(tmp_name);
|
2014-05-27 04:37:40 +02:00
|
|
|
}
|
2010-05-21 03:13:36 +02:00
|
|
|
}
|
|
|
|
|
2015-07-30 16:07:28 +02:00
|
|
|
Save::~Save() noexcept(false) {
|
2014-03-21 22:23:52 +01:00
|
|
|
fp.reset(); // Need to close before rename on Windows to unlock the file
|
2013-07-03 04:49:45 +02:00
|
|
|
for (int i = 0; i < 10; ++i) {
|
|
|
|
try {
|
|
|
|
fs::Rename(tmp_name, file_name);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
catch (agi::fs::FileSystemError const&) {
|
|
|
|
// Retry up to ten times in case it's just locked by a poorly-written antivirus scanner
|
|
|
|
if (i == 9)
|
|
|
|
throw;
|
|
|
|
util::sleep_for(100);
|
|
|
|
}
|
|
|
|
}
|
2010-05-21 03:13:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace io
|
|
|
|
} // namespace agi
|