tagparser/matroska/matroskatag.h

111 lines
2.5 KiB
C
Raw Normal View History

2015-04-22 19:22:01 +02:00
#ifndef MEDIA_MATROSKATAG_H
#define MEDIA_MATROSKATAG_H
2015-09-06 19:57:33 +02:00
#include "./matroskatagfield.h"
2016-05-26 01:59:22 +02:00
#include "./matroskatagid.h"
2015-09-06 15:42:18 +02:00
2015-09-06 19:57:33 +02:00
#include "../fieldbasedtag.h"
2015-04-22 19:22:01 +02:00
namespace Media {
class EbmlElement;
class MatroskaTag;
2016-08-29 15:43:05 +02:00
class TAG_PARSER_EXPORT MatroskaTagMaker
2015-04-22 19:22:01 +02:00
{
friend class MatroskaTag;
public:
void make(std::ostream &stream) const;
const MatroskaTag &tag() const;
uint64 requiredSize() const;
private:
MatroskaTagMaker(MatroskaTag &tag, Diagnostics &diag);
2015-04-22 19:22:01 +02:00
MatroskaTag &m_tag;
uint64 m_targetsSize;
uint64 m_simpleTagsSize;
std::vector<MatroskaTagFieldMaker> m_maker;
2015-04-22 19:22:01 +02:00
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>
2015-04-22 19:22:01 +02:00
{
friend class FieldMapBasedTag<MatroskaTag>;
2015-04-22 19:22:01 +02:00
public:
MatroskaTag();
static constexpr TagType tagType = TagType::MatroskaTag;
static constexpr const char *tagName = "Matroska tag";
static constexpr TagTextEncoding defaultTextEncoding = TagTextEncoding::Utf8;
2015-04-22 19:22:01 +02:00
bool canEncodingBeUsed(TagTextEncoding encoding) const;
bool supportsTarget() const;
2016-05-26 01:59:22 +02:00
TagTargetLevel targetLevel() const;
2015-04-22 19:22:01 +02:00
void parse(EbmlElement &tagElement, Diagnostics &diag);
MatroskaTagMaker prepareMaking(Diagnostics &diag);
void make(std::ostream &stream, Diagnostics &diag);
2015-04-22 19:22:01 +02:00
protected:
IdentifierType internallyGetFieldId(KnownField field) const;
KnownField internallyGetKnownField(const IdentifierType &id) const;
2015-04-22 19:22:01 +02:00
private:
void parseTargets(EbmlElement &targetsElement, Diagnostics &diag);
2015-04-22 19:22:01 +02:00
};
/*!
* \brief Constructs a new tag.
*/
inline MatroskaTag::MatroskaTag()
{}
2016-05-26 01:59:22 +02:00
inline bool MatroskaTag::supportsTarget() const
{
return true;
}
inline TagTargetLevel MatroskaTag::targetLevel() const
{
return matroskaTagTargetLevel(m_target.level());
}
2015-04-22 19:22:01 +02:00
inline bool MatroskaTag::canEncodingBeUsed(TagTextEncoding encoding) const
{
return encoding == TagTextEncoding::Utf8;
}
}
#endif // MEDIA_MATROSKATAG_H