tagparser/matroska/matroskatag.h

111 lines
2.4 KiB
C++

#ifndef MEDIA_MATROSKATAG_H
#define MEDIA_MATROSKATAG_H
#include "./matroskatagfield.h"
#include "./matroskatagid.h"
#include "../fieldbasedtag.h"
namespace Media {
class EbmlElement;
class MatroskaTag;
class TAG_PARSER_EXPORT MatroskaTagMaker
{
friend class MatroskaTag;
public:
void make(std::ostream &stream) const;
const MatroskaTag &tag() const;
uint64 requiredSize() const;
private:
MatroskaTagMaker(MatroskaTag &tag);
MatroskaTag &m_tag;
uint64 m_targetsSize;
uint64 m_simpleTagsSize;
std::vector<MatroskaTagFieldMaker> m_maker;
uint64 m_tagSize;
uint64 m_totalSize;
};
/*!
* \brief Returns the associated tag.
*/
inline const MatroskaTag &MatroskaTagMaker::tag() const
{
return m_tag;
}
/*!
* \brief Returns the number of bytes which will be written when making the tag.
*/
inline uint64 MatroskaTagMaker::requiredSize() const
{
return m_totalSize;
}
/*!
* \brief Defines traits for the TagField implementation of the MatroskaTag class.
*/
template <>
class TAG_PARSER_EXPORT FieldMapBasedTagTraits<MatroskaTag>
{
public:
typedef MatroskaTagField FieldType;
typedef std::less<typename FieldType::IdentifierType> Compare;
};
class TAG_PARSER_EXPORT MatroskaTag : public FieldMapBasedTag<MatroskaTag>
{
friend class FieldMapBasedTag<MatroskaTag>;
public:
MatroskaTag();
static constexpr TagType tagType = TagType::MatroskaTag;
static constexpr const char *tagName = "Matroska tag";
static constexpr TagTextEncoding defaultTextEncoding = TagTextEncoding::Utf8;
bool canEncodingBeUsed(TagTextEncoding encoding) const;
bool supportsTarget() const;
TagTargetLevel targetLevel() const;
void parse(EbmlElement &tagElement);
MatroskaTagMaker prepareMaking();
void make(std::ostream &stream);
protected:
IdentifierType internallyGetFieldId(KnownField field) const;
KnownField internallyGetKnownField(const IdentifierType &id) const;
private:
void parseTargets(EbmlElement &targetsElement);
};
/*!
* \brief Constructs a new tag.
*/
inline MatroskaTag::MatroskaTag()
{}
inline bool MatroskaTag::supportsTarget() const
{
return true;
}
inline TagTargetLevel MatroskaTag::targetLevel() const
{
return matroskaTagTargetLevel(m_target.level());
}
inline bool MatroskaTag::canEncodingBeUsed(TagTextEncoding encoding) const
{
return encoding == TagTextEncoding::Utf8;
}
}
#endif // MEDIA_MATROSKATAG_H