2006-06-30 22:56:16 +02:00
|
|
|
// Copyright (c) 2006, Rodrigo Braz Monteiro
|
|
|
|
// All rights reserved.
|
|
|
|
//
|
|
|
|
// Redistribution and use in source and binary forms, with or without
|
|
|
|
// modification, are permitted provided that the following conditions are met:
|
|
|
|
//
|
|
|
|
// * Redistributions of source code must retain the above copyright notice,
|
|
|
|
// this list of conditions and the following disclaimer.
|
|
|
|
// * Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
// this list of conditions and the following disclaimer in the documentation
|
|
|
|
// and/or other materials provided with the distribution.
|
|
|
|
// * Neither the name of the Aegisub Group nor the names of its contributors
|
|
|
|
// may be used to endorse or promote products derived from this software
|
|
|
|
// without specific prior written permission.
|
|
|
|
//
|
|
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
// POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
//
|
2009-07-29 07:43:02 +02:00
|
|
|
// Aegisub Project http://www.aegisub.org/
|
|
|
|
|
|
|
|
/// @file ass_attachment.cpp
|
|
|
|
/// @brief Manage files embedded in subtitles
|
|
|
|
/// @ingroup subs_storage
|
|
|
|
///
|
2006-06-30 22:56:16 +02:00
|
|
|
|
2009-01-04 07:31:48 +01:00
|
|
|
#include "config.h"
|
|
|
|
|
2006-06-30 22:56:16 +02:00
|
|
|
#include "ass_attachment.h"
|
|
|
|
|
2013-02-07 18:36:47 +01:00
|
|
|
#include <libaegisub/ass/uuencode.h>
|
2011-12-22 22:15:37 +01:00
|
|
|
#include <libaegisub/io.h>
|
|
|
|
|
2013-01-04 16:01:50 +01:00
|
|
|
#include <boost/algorithm/string/predicate.hpp>
|
|
|
|
#include <fstream>
|
|
|
|
|
|
|
|
AssAttachment::AssAttachment(std::string const& name, AssEntryGroup group)
|
2013-02-07 18:36:47 +01:00
|
|
|
: filename(name)
|
2012-11-25 01:08:29 +01:00
|
|
|
, group(group)
|
2011-12-22 22:15:28 +01:00
|
|
|
{
|
2013-01-04 16:01:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
AssAttachment::AssAttachment(agi::fs::path const& name, AssEntryGroup group)
|
|
|
|
: data(new std::vector<char>)
|
|
|
|
, filename(name.filename().string())
|
|
|
|
, group(group)
|
|
|
|
{
|
|
|
|
if (boost::iends_with(filename, ".ttf"))
|
|
|
|
filename = filename.substr(0, filename.size() - 4) + "_0" + filename.substr(filename.size() - 4);
|
|
|
|
|
|
|
|
std::unique_ptr<std::istream> file(agi::io::Open(name, true));
|
|
|
|
file->seekg(0, std::ios::end);
|
|
|
|
data->resize(file->tellg());
|
|
|
|
file->seekg(0, std::ios::beg);
|
|
|
|
file->read(&(*data)[0], data->size());
|
2006-06-30 22:56:16 +02:00
|
|
|
}
|
|
|
|
|
2010-06-24 08:13:06 +02:00
|
|
|
AssEntry *AssAttachment::Clone() const {
|
2012-02-01 01:47:38 +01:00
|
|
|
AssAttachment *clone = new AssAttachment(filename, group);
|
2006-06-30 23:59:20 +02:00
|
|
|
clone->data = data;
|
2006-06-30 22:56:16 +02:00
|
|
|
return clone;
|
|
|
|
}
|
2006-06-30 23:21:30 +02:00
|
|
|
|
2013-01-04 16:01:50 +01:00
|
|
|
const std::string AssAttachment::GetEntryData() const {
|
|
|
|
std::string entryData = (group == ENTRY_FONT ? "fontname: " : "filename: ") + filename + "\r\n";
|
2013-02-07 18:36:47 +01:00
|
|
|
if (data)
|
|
|
|
entryData += agi::ass::UUEncode(*data);
|
2006-07-01 01:37:30 +02:00
|
|
|
return entryData;
|
|
|
|
}
|
|
|
|
|
2013-01-04 16:01:50 +01:00
|
|
|
void AssAttachment::Extract(agi::fs::path const& filename) const {
|
|
|
|
agi::io::Save(filename, true).Get().write(&(*data)[0], data->size());
|
2006-07-01 05:06:21 +02:00
|
|
|
}
|
|
|
|
|
2013-01-04 16:01:50 +01:00
|
|
|
std::string AssAttachment::GetFileName(bool raw) const {
|
|
|
|
if (raw || !boost::iends_with(filename, ".ttf")) return filename;
|
2006-07-08 04:30:18 +02:00
|
|
|
|
|
|
|
// Remove stuff after last underscore if it's a font
|
2013-01-04 16:01:50 +01:00
|
|
|
std::string::size_type last_under = filename.rfind('_');
|
|
|
|
if (last_under == std::string::npos)
|
2011-12-22 22:15:28 +01:00
|
|
|
return filename;
|
2006-07-01 05:06:21 +02:00
|
|
|
|
2013-01-04 16:01:50 +01:00
|
|
|
return filename.substr(0, last_under) + ".ttf";
|
2006-06-30 23:59:20 +02:00
|
|
|
}
|
|
|
|
|
2011-12-22 22:15:28 +01:00
|
|
|
void AssAttachment::Finish() {
|
2013-02-07 18:36:47 +01:00
|
|
|
data = std::make_shared<std::vector<char>>(agi::ass::UUDecode(buffer));
|
2011-12-22 22:15:28 +01:00
|
|
|
buffer.clear();
|
2013-01-04 16:01:50 +01:00
|
|
|
buffer.shrink_to_fit();
|
2006-06-30 23:21:30 +02:00
|
|
|
}
|