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"
|
2013-01-04 16:01:50 +01:00
|
|
|
#include "libaegisub/path.h"
|
2010-05-21 03:13:36 +02:00
|
|
|
#include "libaegisub/util.h"
|
|
|
|
|
2013-01-04 16:01:50 +01:00
|
|
|
#include <boost/filesystem.hpp>
|
|
|
|
#include <boost/filesystem/fstream.hpp>
|
2012-10-21 17:04:02 +02:00
|
|
|
|
2010-05-21 03:13:36 +02:00
|
|
|
namespace agi {
|
|
|
|
namespace io {
|
|
|
|
|
2013-01-04 16:01:50 +01:00
|
|
|
std::ifstream* 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
|
|
|
acs::CheckFileRead(file);
|
|
|
|
|
2013-01-04 16:01:50 +01:00
|
|
|
auto stream = new boost::filesystem::ifstream(file, (binary ? std::ios::binary : std::ios::in));
|
2010-05-21 03:13:36 +02:00
|
|
|
|
|
|
|
if (stream->fail()) {
|
|
|
|
delete stream;
|
|
|
|
throw IOFatal("Unknown fatal error as occurred");
|
|
|
|
}
|
|
|
|
|
|
|
|
return stream;
|
|
|
|
}
|
|
|
|
|
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-01-04 16:01:50 +01: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;
|
2013-01-04 16:01:50 +01:00
|
|
|
acs::CheckDirWrite(file.parent_path());
|
2010-05-21 03:13:36 +02:00
|
|
|
|
|
|
|
try {
|
|
|
|
acs::CheckFileWrite(file);
|
2013-01-04 16:01:50 +01:00
|
|
|
}
|
|
|
|
catch (fs::FileNotFound const&) {
|
|
|
|
// Not an error
|
2010-05-21 03:13:36 +02:00
|
|
|
}
|
|
|
|
|
2013-01-04 16:01:50 +01:00
|
|
|
fp = new boost::filesystem::ofstream(tmp_name, binary ? std::ios::binary : std::ios::out);
|
2012-10-22 00:21:24 +02:00
|
|
|
if (!fp->good()) {
|
|
|
|
delete fp;
|
2013-01-04 16:01:50 +01:00
|
|
|
throw fs::WriteDenied(tmp_name);
|
2012-10-22 00:21:24 +02:00
|
|
|
}
|
2010-05-21 03:13:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Save::~Save() {
|
2013-01-04 16:01:50 +01:00
|
|
|
delete fp; // Explicitly delete to unlock file on Windows
|
|
|
|
fs::Rename(tmp_name, file_name);
|
2010-05-21 03:13:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
std::ofstream& Save::Get() {
|
|
|
|
return *fp;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace io
|
|
|
|
} // namespace agi
|