tagparser/tagvalue.cpp

481 lines
15 KiB
C++
Raw Normal View History

2015-09-06 19:57:33 +02:00
#include "./tagvalue.h"
2015-09-06 15:42:18 +02:00
2015-09-06 19:57:33 +02:00
#include "./id3/id3genres.h"
2015-04-22 19:22:01 +02:00
#include <c++utilities/conversion/binaryconversion.h>
#include <c++utilities/conversion/stringconversion.h>
#include <c++utilities/conversion/conversionexception.h>
#include <c++utilities/misc/memory.h>
#include <algorithm>
#include <utility>
using namespace std;
using namespace ConversionUtilities;
using namespace ChronoUtilities;
namespace Media {
/*!
* \class Media::TagValue
* \brief The TagValue class wraps values of different types. It is meant to be assigned to a tag field.
*
* For a list of supported types see Media::TagDataType.
*/
/*!
* \brief Constructs an empty TagValue.
*/
TagValue::TagValue() :
m_size(0),
m_type(TagDataType::Undefined),
m_labeledAsReadonly(false),
m_encoding(TagTextEncoding::Latin1),
m_descEncoding(TagTextEncoding::Latin1)
{}
/*!
* \brief Constructs a new TagValue holding a copy of the given \a text.
* \param text Specifies the text.
* \param encoding Specifies the encoding of the given string as TagTextEncoding.
*/
TagValue::TagValue(const string &text, TagTextEncoding encoding) :
m_size(text.size()),
m_type(TagDataType::Text),
m_labeledAsReadonly(false),
m_encoding(encoding),
m_descEncoding(TagTextEncoding::Latin1)
{
if(m_size) {
m_ptr = make_unique<char []>(m_size);
text.copy(m_ptr.get(), m_size);
}
}
/*!
* \brief Constructs a new TagValue holding the given integer \a value.
*/
TagValue::TagValue(int value) :
TagValue(reinterpret_cast<const char *>(&value), sizeof(value), TagDataType::Integer)
{}
/*!
* \brief Constructs a new TagValue with a copy of the given \a data.
*
* \param data Specifies a pointer to the data.
* \param length Specifies the length of the data.
* \param type Specifies the type of the data as TagDataType.
* \param encoding Specifies the encoding of the data as TagTextEncoding. The
* encoding will only be considered if a text is assigned.
*/
TagValue::TagValue(const char *data, size_t length, TagDataType type, TagTextEncoding encoding) :
m_size(length),
m_type(type),
m_labeledAsReadonly(false),
m_encoding(encoding),
m_descEncoding(TagTextEncoding::Latin1)
{
if(length) {
m_ptr = make_unique<char []>(m_size);
std::copy(data, data + length, m_ptr.get());
}
}
/*!
* \brief Constructs a new TagValue holding with the given \a data.
*
* The data is not copied. It is moved.
*
* \param data Specifies a pointer to the data.
* \param length Specifies the length of the data.
* \param type Specifies the type of the data as TagDataType.
* \param encoding Specifies the encoding of the data as TagTextEncoding. The
* encoding will only be considered if a text is assigned.
*/
TagValue::TagValue(std::unique_ptr<char[]> &&data, size_t length, TagDataType type, TagTextEncoding encoding) :
m_size(length),
m_type(type),
m_labeledAsReadonly(false),
m_encoding(encoding),
m_descEncoding(TagTextEncoding::Latin1)
{
if(length) {
m_ptr = move(data);
}
}
/*!
* \brief Constructs a new TagValue holding a copy of the given PositionInSet \a value.
* \param value Specifies the PositionInSet.
*/
TagValue::TagValue(const PositionInSet &value) :
TagValue(reinterpret_cast<const char *>(&value), sizeof(value), TagDataType::PositionInSet)
{}
/*!
* \brief Constructs a new TagValue holding a copy of the given TagValue instance.
* \param other Specifies another TagValue instance.
*/
TagValue::TagValue(const TagValue &other) :
m_size(other.m_size),
m_type(other.m_type),
m_dec(other.m_dec),
m_mimeType(other.m_mimeType),
m_lng(other.m_lng),
m_labeledAsReadonly(other.m_labeledAsReadonly),
m_encoding(other.m_encoding),
m_descEncoding(other.m_descEncoding)
{
if(!other.isEmpty()) {
m_ptr = make_unique<char []>(m_size);
std::copy(other.m_ptr.get(), other.m_ptr.get() + other.m_size, m_ptr.get());
}
}
/*!
* \brief Assigns the value of another TagValue to the current instance.
*/
TagValue &TagValue::operator=(const TagValue &other)
{
if(this != &other) {
m_size = other.m_size;
m_type = other.m_type;
m_dec = other.m_dec;
m_mimeType = other.m_mimeType;
m_lng = other.m_lng;
m_labeledAsReadonly = other.m_labeledAsReadonly;
m_encoding = other.m_encoding;
m_descEncoding = other.m_descEncoding;
if(other.isEmpty()) {
m_ptr.reset();
} else {
m_ptr = make_unique<char[]>(m_size);
std::copy(other.m_ptr.get(), other.m_ptr.get() + other.m_size, m_ptr.get());
}
}
return *this;
}
/*!
* \brief Destroys the TagValue.
*/
TagValue::~TagValue()
{}
/*!
* \brief Wipes assigned meta data.
* - Clears description, mime type and language.
* - Resets the read-only flag to false.
* - Resets the encoding to TagTextEncoding::Latin1.
* - Resets the data type to TagDataType::Undefined.
*/
void TagValue::clearMetadata()
{
m_dec.clear();
m_mimeType.clear();
m_lng.clear();
m_labeledAsReadonly = false;
m_encoding = TagTextEncoding::Latin1;
m_type = TagDataType::Undefined;
}
/*!
* \brief Wipes assigned data including meta data.
* \sa clearData()
* \sa clearMetadata()
*/
void TagValue::clearDataAndMetadata()
{
clearData();
clearMetadata();
}
/*!
* \brief Converts the value of the current TagValue object to its equivalent
* integer representation.
* \throws Throws ConversionException an failure.
*/
int32 TagValue::toInteger() const
{
if(!isEmpty()) {
switch(m_type) {
case TagDataType::Text:
return ConversionUtilities::stringToNumber<int32>(string(m_ptr.get(), m_size));
case TagDataType::Integer:
case TagDataType::StandardGenreIndex:
2015-07-27 23:10:35 +02:00
if(m_size == sizeof(int32)) {
auto res = *reinterpret_cast<int32 *>(m_ptr.get());
2015-04-22 19:22:01 +02:00
return res;
} else {
2015-07-27 23:10:35 +02:00
throw ConversionException("Can not convert assigned data to integer because the data size is not appropriate.");
2015-04-22 19:22:01 +02:00
}
break;
default:
2015-07-27 23:10:35 +02:00
throw ConversionException("Can not convert binary data/picture/time span/date time to integer.");
2015-04-22 19:22:01 +02:00
}
}
return 0;
}
/*!
* \brief Converts the value of the current TagValue object to its equivalent
* standard genre index.
* \throws Throws ConversionException an failure.
*/
int TagValue::toStandardGenreIndex() const
{
if(!isEmpty()) {
int index = 0;
switch(m_type) {
case TagDataType::Text: {
string s(m_ptr.get(), m_size);
try {
index = ConversionUtilities::stringToNumber<int32>(s);
} catch (ConversionException &) {
index = Id3Genres::indexFromString(s);
}
break;
} case TagDataType::StandardGenreIndex:
case TagDataType::Integer:
if(m_size == sizeof(int)) {
index = *reinterpret_cast<int *>(m_ptr.get());
} else {
throw ConversionException("The assigned data is of unappropriate size.");
}
break;
default:
throw ConversionException("It is not possible to convert assigned data to a number because of its incompatible type.");
}
if(Id3Genres::isIndexSupported(index)) {
return index;
} else {
throw ConversionException("The assigned number is not a valid standard genre index.");
}
}
return 0;
}
/*!
* \brief Converts the value of the current TagValue object to its equivalent
* PositionInSet representation.
* \throws Throws ConversionException an failure.
*/
PositionInSet TagValue::toPositionIntSet() const
{
if(!isEmpty()) {
switch(m_type) {
case TagDataType::Text:
return PositionInSet(string(m_ptr.get(), m_size));
case TagDataType::Integer:
case TagDataType::PositionInSet:
2015-07-27 23:10:35 +02:00
switch(m_size) {
case sizeof(int32):
2015-04-22 19:22:01 +02:00
return PositionInSet(*(reinterpret_cast<int *>(m_ptr.get())));
2015-07-27 23:10:35 +02:00
case 2 * sizeof(int32):
2015-04-22 19:22:01 +02:00
return PositionInSet(*(reinterpret_cast<int32 *>(m_ptr.get())), *(reinterpret_cast<int32 *>(m_ptr.get() + sizeof(int32))));
2015-07-27 23:10:35 +02:00
default:
throw ConversionException("The size of the assigned data is not appropriate.");
2015-04-22 19:22:01 +02:00
}
default:
2015-07-27 23:10:35 +02:00
throw ConversionException("Can not convert binary data/genre index/picture to \"position in set\".");
2015-04-22 19:22:01 +02:00
}
}
return PositionInSet();
}
/*!
* \brief Converts the value of the current TagValue object to its equivalent
* TimeSpan representation.
* \throws Throws ConversionException an failure.
*/
TimeSpan TagValue::toTimeSpan() const
{
if(!isEmpty()) {
switch(m_type) {
case TagDataType::Text:
return TimeSpan::fromSeconds(ConversionUtilities::stringToNumber<int64>(string(m_ptr.get(), m_size)));
case TagDataType::Integer:
case TagDataType::TimeSpan:
2015-07-27 23:10:35 +02:00
switch(m_size) {
case sizeof(int32):
2015-04-22 19:22:01 +02:00
return TimeSpan(*(reinterpret_cast<int32 *>(m_ptr.get())));
2015-07-27 23:10:35 +02:00
case sizeof(int64):
2015-04-22 19:22:01 +02:00
return TimeSpan(*(reinterpret_cast<int64 *>(m_ptr.get())));
2015-07-27 23:10:35 +02:00
default:
throw ConversionException("The size of the assigned data is not appropriate.");
2015-04-22 19:22:01 +02:00
}
default:
2015-07-27 23:10:35 +02:00
throw ConversionException("Can not convert binary data/genre index/position in set/picture to time span.");
2015-04-22 19:22:01 +02:00
}
}
return TimeSpan();
}
/*!
* \brief Converts the value of the current TagValue object to its equivalent
* DateTime representation.
* \throws Throws ConversionException an failure.
*/
DateTime TagValue::toDateTime() const
{
if(!isEmpty()) {
switch(m_type) {
case TagDataType::Text:
return DateTime::fromString(string(m_ptr.get(), m_size));
case TagDataType::Integer:
case TagDataType::TimeSpan:
if(m_size == sizeof(int32)) {
return DateTime(*(reinterpret_cast<int32 *>(m_ptr.get())));
} else if(m_size == sizeof(int64)) {
return DateTime(*(reinterpret_cast<int64 *>(m_ptr.get())));
} else {
throw ConversionException("The assigned data is of unappropriate size.");
}
default:
2015-07-27 23:10:35 +02:00
throw ConversionException("Can not convert binary data/genre index/position in set/picture to date time.");
2015-04-22 19:22:01 +02:00
}
}
return DateTime();
}
/*!
* \brief Converts the value of the current TagValue object to its equivalent
* std::string representation.
* \throws Throws ConversionException an failure.
*/
string TagValue::toString() const
{
string res;
toString(res);
return res;
}
/*!
* \brief Converts the value of the current TagValue object to its equivalent
* std::string representation.
2015-07-27 23:10:35 +02:00
* \throws Throws ConversionException on failure.
2015-04-22 19:22:01 +02:00
*/
void TagValue::toString(string &result) const
{
if(!isEmpty()) {
switch(m_type) {
case TagDataType::Text:
2015-07-27 23:10:35 +02:00
result.assign(m_ptr.get(), m_size);
2015-04-22 19:22:01 +02:00
return;
case TagDataType::Integer:
result = ConversionUtilities::numberToString(toInteger());
return;
case TagDataType::PositionInSet:
result = toPositionIntSet().toString();
return;
case TagDataType::StandardGenreIndex:
if(const char *genreName = Id3Genres::stringFromIndex(toInteger())) {
2015-07-27 23:10:35 +02:00
result.assign(genreName);
2015-04-22 19:22:01 +02:00
return;
2015-07-27 23:10:35 +02:00
} else {
throw ConversionException("No string representation for the assigned standard genre index available.");
2015-04-22 19:22:01 +02:00
}
break;
case TagDataType::TimeSpan:
result = toTimeSpan().toString();
return;
default:
2015-07-27 23:10:35 +02:00
throw ConversionException("Can not convert binary data/picture to string.");
2015-04-22 19:22:01 +02:00
}
}
result.clear();
}
/*!
* \brief Assigns a copy of the given \a text.
* \param text Specifies the text to be assigned.
* \param encoding Specifies the encoding of the given \a text.
*/
void TagValue::assignText(const string &text, TagTextEncoding encoding)
{
m_size = text.length();
m_type = TagDataType::Text;
m_encoding = encoding;
if(m_size > 0) {
m_ptr = make_unique<char []>(m_size);
text.copy(m_ptr.get(), m_size);
} else {
m_ptr.reset();
}
}
/*!
* \brief Assigns the given integer \a value.
* \param value Specifies the integer to be assigned.
*/
void TagValue::assignInteger(int value)
{
m_size = sizeof(value);
m_ptr = make_unique<char []>(m_size);
std::copy(reinterpret_cast<const char *>(&value), reinterpret_cast<const char *>(&value) + m_size, m_ptr.get());
m_type = TagDataType::Integer;
m_encoding = TagTextEncoding::Latin1;
}
/*!
* \brief Assigns the given standard genre \a index to be assigned.
* \param index Specifies the index to be assigned.
* \sa <a href="http://en.wikipedia.org/wiki/ID3#List_of_genres">List of genres - Wikipedia</a>
*/
void TagValue::assignStandardGenreIndex(int index)
{
assignInteger(index);
m_type = TagDataType::StandardGenreIndex;
}
/*!
* \brief Assigns a copy of the given \a data.
* \param data Specifies the data to be assigned.
* \param length Specifies the length of the data.
* \param type Specifies the type of the data as TagDataType.
* \param encoding Specifies the encoding of the data as TagTextEncoding. The
* encoding will only be considered if a text is assigned.
*/
void TagValue::assignData(const char *data, size_t length, TagDataType type, TagTextEncoding encoding)
{
m_size = length;
m_type = type;
m_encoding = encoding;
if(m_size > 0) {
m_ptr.reset(new char[m_size]);
std::copy(data, data + length, m_ptr.get());
} else {
m_ptr.reset();
}
}
/*!
* \brief Assigns the given \a data. Takes ownership.
*
* The specified data is not copied. It is moved.
*
* \param data Specifies the data to be assigned.
* \param length Specifies the length of the data.
* \param type Specifies the type of the data as TagDataType.
* \param encoding Specifies the encoding of the data as TagTextEncoding. The
* encoding will only be considered if a text is assigned.
*/
void TagValue::assignData(unique_ptr<char[]> &&data, size_t length, TagDataType type, TagTextEncoding encoding)
{
m_size = length;
m_type = type;
m_encoding = encoding;
m_ptr = move(data);
}
/*!
* \brief Returns an empty TagValue.
*/
const TagValue &TagValue::empty()
{
static TagValue emptyTagValue;
return emptyTagValue;
}
}