1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
// =================================================================================================
// Copyright Adobe
// Copyright 2020 Adobe
// All Rights Reserved
//
// NOTICE: Adobe permits you to use, modify, and distribute this file in accordance with the terms
// of the Adobe license agreement accompanying it.
// =================================================================================================
#ifndef _BEXTMetadata_h_
#define _BEXTMetadata_h_
#include "public/include/XMP_Environment.h" // ! XMP_Environment.h must be the first included header.
#include "public/include/XMP_Const.h"
#include "public/include/XMP_IO.hpp"
#include "XMPFiles/source/NativeMetadataSupport/IMetadata.h"
namespace IFF_RIFF
{
/**
* BEXT Metadata model.
* Implements the IMetadata interface
*/
class BEXTMetadata : public IMetadata
{
public:
enum
{
kDescription, // std::string
kOriginator, // std::string
kOriginatorReference, // std::string
kOriginationDate, // std::string
kOriginationTime, // std::string
kTimeReference, // XMP_Uns64
kVersion, // XMP_Uns16
kUMID, // XMP_Uns8[64]
kCodingHistory // std::string
};
public:
/**
*ctor/dtor
*/
BEXTMetadata();
~BEXTMetadata();
/**
* Parses the given memory block and creates a data model representation
* The implementation expects that the memory block is the data area of
* the BEXT chunk.
* Throws exceptions if parsing is not possible
*
* @param input The byte buffer to parse
* @param size Size of the given byte buffer
*/
void parse( const XMP_Uns8* chunkData, XMP_Uns64 size );
/**
* See IMetadata::parse( const LFA_FileRef input )
*/
void parse( XMP_IO* input ) { IMetadata::parse( input ); }
/**
* Serializes the data model to a memory block.
* The memory block will be the data area of a BEXT chunk.
* Throws exceptions if serializing is not possible
*
* @param buffer Buffer that gets filled with serialized data
* @param size Size of passed in buffer
*
* @return Size of serialzed data (might be smaller than buffer size)
*/
XMP_Uns64 serialize( XMP_Uns8** buffer );
protected:
/**
* @see IMetadata::isEmptyValue
*/
virtual bool isEmptyValue( XMP_Uns32 id, ValueObject& valueObj );
/**
* Normalize line feeds to \CR\LF
* Mac <OS9: \r
* Linux: \n
* Win: \r\n
*/
static void NormalizeLF( std::string& str );
private:
// Operators hidden on purpose
BEXTMetadata( const BEXTMetadata& ) {};
BEXTMetadata& operator=( const BEXTMetadata& ) { return *this; };
};
}
#endif
|