tagparser/mp4/mp4tag.h

180 lines
4.8 KiB
C
Raw Normal View History

#ifndef TAG_PARSER_MP4TAG_H
#define TAG_PARSER_MP4TAG_H
2015-04-22 19:22:01 +02:00
2015-09-06 19:57:33 +02:00
#include "./mp4tagfield.h"
2015-04-22 19:22:01 +02:00
2015-09-06 19:57:33 +02:00
#include "../fieldbasedtag.h"
2015-04-22 19:22:01 +02:00
namespace TagParser
2015-04-22 19:22:01 +02:00
{
class Mp4Atom;
2015-12-10 13:50:46 +01:00
class Mp4Tag;
struct TAG_PARSER_EXPORT Mp4ExtendedFieldId
{
Mp4ExtendedFieldId(const char *mean = nullptr, const char *name = nullptr, bool updateOnly = false);
Mp4ExtendedFieldId(KnownField field);
operator bool() const;
bool matches(const Mp4TagField &field) const;
/// \brief mean parameter, usually Mp4TagExtendedMeanIds::iTunes
const char *mean;
/// \brief name parameter
const char *name;
/// \brief Whether only existing fields should be updated but *no* new extended field should be created
bool updateOnly;
};
/*!
* \brief Constructs a new instance with the specified parameter.
*/
inline Mp4ExtendedFieldId::Mp4ExtendedFieldId(const char *mean, const char *name, bool updateOnly) :
mean(mean),
name(name),
updateOnly(updateOnly)
{}
/*!
* \brief Returns whether valid parameter are assigned.
*/
inline Mp4ExtendedFieldId::operator bool() const
{
return mean && name;
}
/*!
* \brief Returns whether the current parameter match the specified \a field.
*/
inline bool Mp4ExtendedFieldId::matches(const Mp4TagField &field) const
{
return field.mean() == mean && field.name() == name;
}
2016-08-29 15:43:05 +02:00
class TAG_PARSER_EXPORT Mp4TagMaker
2015-12-10 13:50:46 +01:00
{
friend class Mp4Tag;
public:
void make(std::ostream &stream, Diagnostics &diag);
2015-12-10 13:50:46 +01:00
const Mp4Tag &tag() const;
uint64 requiredSize() const;
private:
Mp4TagMaker(Mp4Tag &tag, Diagnostics &diag);
2015-12-10 13:50:46 +01:00
Mp4Tag &m_tag;
std::vector<Mp4TagFieldMaker> m_maker;
2015-12-10 13:50:46 +01:00
uint64 m_metaSize;
uint64 m_ilstSize;
bool m_omitPreDefinedGenre;
};
/*!
* \brief Returns the associated tag.
*/
inline const Mp4Tag &Mp4TagMaker::tag() const
{
return m_tag;
}
/*!
* \brief Returns the number of bytes which will be written when making the tag.
*/
inline uint64 Mp4TagMaker::requiredSize() const
{
return m_metaSize;
}
2015-04-22 19:22:01 +02:00
/*!
* \brief Defines traits for the TagField implementation of the Mp4Tag class.
*/
template <>
class TAG_PARSER_EXPORT FieldMapBasedTagTraits<Mp4Tag>
{
public:
typedef Mp4TagField FieldType;
typedef std::less<typename FieldType::IdentifierType> Compare;
};
class TAG_PARSER_EXPORT Mp4Tag : public FieldMapBasedTag<Mp4Tag>
2015-04-22 19:22:01 +02:00
{
friend class FieldMapBasedTag<Mp4Tag>;
2015-04-22 19:22:01 +02:00
public:
Mp4Tag();
static constexpr TagType tagType = TagType::Mp4Tag;
static constexpr const char *tagName = "MP4/iTunes tag";
static constexpr TagTextEncoding defaultTextEncoding = TagTextEncoding::Utf8;
2015-04-22 19:22:01 +02:00
bool canEncodingBeUsed(TagTextEncoding encoding) const;
bool supportsField(KnownField field) const;
using FieldMapBasedTag<Mp4Tag>::value;
2015-04-22 19:22:01 +02:00
const TagValue &value(KnownField value) const;
using FieldMapBasedTag<Mp4Tag>::values;
std::vector<const TagValue *> values(KnownField field) const;
#ifdef LEGACY_API
2015-04-22 19:22:01 +02:00
const TagValue &value(const std::string mean, const std::string name) const;
#endif
const TagValue &value(const std::string &mean, const std::string &name) const;
const TagValue &value(const char *mean, const char *name) const;
using FieldMapBasedTag<Mp4Tag>::setValue;
2015-04-22 19:22:01 +02:00
bool setValue(KnownField field, const TagValue &value);
using FieldMapBasedTag<Mp4Tag>::setValues;
bool setValues(KnownField field, const std::vector<TagValue> &values);
#ifdef LEGACY_API
2015-04-22 19:22:01 +02:00
bool setValue(const std::string mean, const std::string name, const TagValue &value);
#endif
bool setValue(const std::string &mean, const std::string &name, const TagValue &value);
bool setValue(const char *mean, const char *name, const TagValue &value);
using FieldMapBasedTag<Mp4Tag>::hasField;
2015-04-22 19:22:01 +02:00
bool hasField(KnownField value) const;
void parse(Mp4Atom &metaAtom, Diagnostics &diag);
Mp4TagMaker prepareMaking(Diagnostics &diag);
void make(std::ostream &stream, Diagnostics &diag);
protected:
IdentifierType internallyGetFieldId(KnownField field) const;
KnownField internallyGetKnownField(const IdentifierType &id) const;
2015-04-22 19:22:01 +02:00
};
/*!
* \brief Constructs a new tag.
*/
inline Mp4Tag::Mp4Tag()
{}
inline bool Mp4Tag::supportsField(KnownField field) const
{
switch(field) {
case KnownField::EncoderSettings:
return true;
default:
return FieldMapBasedTag<Mp4Tag>::supportsField(field);
}
}
/*!
* \brief Returns the value of the field with the specified \a mean and \a name attributes.
*/
inline const TagValue &Mp4Tag::value(const std::string &mean, const std::string &name) const
{
return value(mean.data(), name.data());
}
/*!
* \brief Assigns the given \a value to the field with the specified \a mean and \a name attributes.
*/
inline bool Mp4Tag::setValue(const std::string &mean, const std::string &name, const TagValue &value)
{
return setValue(mean.data(), name.data(), value);
}
2015-04-22 19:22:01 +02:00
}
#endif // TAG_PARSER_MP4TAG_H