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 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316
|
#ifndef __RIFF_hpp__
#define __RIFF_hpp__ 1
// =================================================================================================
// ADOBE SYSTEMS INCORPORATED
// Copyright 2009 Adobe Systems Incorporated
// 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.
// =================================================================================================
#include "XMP_Environment.h" // ! This must be the first include.
#include <vector>
#include <map>
#include "XMPFiles_Impl.hpp"
// ahead declaration:
class RIFF_MetaHandler;
namespace RIFF {
enum ChunkType {
chunk_GENERAL, //unknown or not relevant
chunk_CONTAINER,
chunk_XMP,
chunk_VALUE,
chunk_JUNK,
NO_CHUNK // used as precessor to first chunk, etc.
};
// ahead declarations
class Chunk;
class ContainerChunk;
class ValueChunk;
class XMPChunk;
// (scope: only used in RIFF_Support and RIFF_Handler.cpp
// ==> no need to overspecify with lengthy names )
typedef std::vector<Chunk*> chunkVect; // coulddo: narrow down toValueChunk (could give trouble with JUNK though)
typedef chunkVect::iterator chunkVectIter; // or refactor ??
typedef std::vector<ContainerChunk*> containerVect;
typedef containerVect::iterator containerVectIter;
typedef std::map<XMP_Uns32,ValueChunk*> valueMap;
typedef valueMap::iterator valueMapIter;
// format chunks+types
const XMP_Uns32 kChunk_RIFF = 0x46464952;
const XMP_Uns32 kType_AVI_ = 0x20495641;
const XMP_Uns32 kType_AVIX = 0x58495641;
const XMP_Uns32 kType_WAVE = 0x45564157;
const XMP_Uns32 kChunk_JUNK = 0x4B4E554A;
const XMP_Uns32 kChunk_JUNQ = 0x514E554A;
// other container chunks
const XMP_Uns32 kChunk_LIST = 0x5453494C;
const XMP_Uns32 kType_INFO = 0x4F464E49;
const XMP_Uns32 kType_Tdat = 0x74616454;
// other relevant chunks
const XMP_Uns32 kChunk_XMP = 0x584D505F; // "_PMX"
// relevant for Index Correction
// LIST:
const XMP_Uns32 kType_hdrl = 0x6C726468;
const XMP_Uns32 kType_strl = 0x6C727473;
const XMP_Uns32 kChunk_indx = 0x78646E69;
const XMP_Uns32 kChunk_ixXX = 0x58587869;
const XMP_Uns32 kType_movi = 0x69766F6D;
//should occur only in AVI
const XMP_Uns32 kChunk_Cr8r = 0x72387243;
const XMP_Uns32 kChunk_PrmL = 0x4C6D7250;
//should occur only in WAV
const XMP_Uns32 kChunk_DISP = 0x50534944;
const XMP_Uns32 kChunk_bext = 0x74786562;
// LIST/INFO constants
const XMP_Uns32 kPropChunkIART = 0x54524149;
const XMP_Uns32 kPropChunkICMT = 0x544D4349;
const XMP_Uns32 kPropChunkICOP = 0x504F4349;
const XMP_Uns32 kPropChunkICRD = 0x44524349;
const XMP_Uns32 kPropChunkIENG = 0x474E4549;
const XMP_Uns32 kPropChunkIGNR = 0x524E4749;
const XMP_Uns32 kPropChunkINAM = 0x4D414E49;
const XMP_Uns32 kPropChunkISFT = 0x54465349;
const XMP_Uns32 kPropChunkIARL = 0x4C524149;
const XMP_Uns32 kPropChunkIMED = 0x44454D49;
const XMP_Uns32 kPropChunkISRF = 0x46525349;
const XMP_Uns32 kPropChunkICMS = 0x4C524149;
const XMP_Uns32 kPropChunkIPRD = 0x534D4349;
const XMP_Uns32 kPropChunkISRC = 0x44525049;
const XMP_Uns32 kPropChunkITCH = 0x43525349;
const XMP_Uns32 kPropChunk_tc_O =0x4F5F6374;
const XMP_Uns32 kPropChunk_tc_A =0x415F6374;
const XMP_Uns32 kPropChunk_rn_O =0x4F5F6E72;
const XMP_Uns32 kPropChunk_rn_A =0x415F6E72;
///////////////////////////////////////////////////////////////
enum PropType { // from a simplified, opinionated legacy angle
prop_SIMPLE,
prop_TIMEVALUE,
prop_LOCALIZED_TEXT,
prop_ARRAYITEM, // ( here: a solitary one)
};
struct Mapping {
XMP_Uns32 chunkID;
const char* ns;
const char* prop;
PropType propType;
};
// bext Mappings, piece-by-piece:
static Mapping bextDescription = { 0, kXMP_NS_BWF, "description", prop_SIMPLE };
static Mapping bextOriginator = { 0, kXMP_NS_BWF, "originator", prop_SIMPLE };
static Mapping bextOriginatorRef = { 0, kXMP_NS_BWF, "originatorReference", prop_SIMPLE };
static Mapping bextOriginationDate = { 0, kXMP_NS_BWF, "originationDate", prop_SIMPLE };
static Mapping bextOriginationTime = { 0, kXMP_NS_BWF, "originationTime", prop_SIMPLE };
static Mapping bextTimeReference = { 0, kXMP_NS_BWF, "timeReference", prop_SIMPLE };
static Mapping bextVersion = { 0, kXMP_NS_BWF, "version", prop_SIMPLE };
static Mapping bextUMID = { 0, kXMP_NS_BWF, "umid", prop_SIMPLE };
static Mapping bextCodingHistory = { 0, kXMP_NS_BWF, "codingHistory", prop_SIMPLE };
// LIST:INFO properties
static Mapping listInfoProps[] = {
// reconciliations CS4 and before:
{ kPropChunkIART, kXMP_NS_DM, "artist" , prop_SIMPLE },
{ kPropChunkICMT, kXMP_NS_DM, "logComment" , prop_SIMPLE },
{ kPropChunkICOP, kXMP_NS_DC, "rights" , prop_LOCALIZED_TEXT },
{ kPropChunkICRD, kXMP_NS_XMP, "CreateDate" , prop_SIMPLE },
{ kPropChunkIENG, kXMP_NS_DM, "engineer" , prop_SIMPLE },
{ kPropChunkIGNR, kXMP_NS_DM, "genre" , prop_SIMPLE },
{ kPropChunkINAM, kXMP_NS_DC, "title" , prop_LOCALIZED_TEXT }, // ( was wrongly dc:album in pre-CS4)
{ kPropChunkISFT, kXMP_NS_XMP, "CreatorTool", prop_SIMPLE },
// RIFF/*/LIST/INFO properties, new in CS5, both AVI and WAV
{ kPropChunkIMED, kXMP_NS_DC, "source" , prop_SIMPLE },
{ kPropChunkISRF, kXMP_NS_DC, "type" , prop_ARRAYITEM },
// TO ENABLE { kPropChunkIARL, kXMP_NS_DC, "subject" , prop_SIMPLE }, // array !! (not x-default language alternative)
//{ kPropChunkICMS, to be decided, "" , prop_SIMPLE },
//{ kPropChunkIPRD, to be decided, "" , prop_SIMPLE },
//{ kPropChunkISRC, to be decided, "" , prop_SIMPLE },
//{ kPropChunkITCH, to be decided, "" , prop_SIMPLE },
{ 0, 0, 0 } // sentinel
};
static Mapping listTdatProps[] = {
// reconciliations CS4 and before:
{ kPropChunk_tc_O, kXMP_NS_DM, "startTimecode" , prop_TIMEVALUE }, // special: must end up in dm:timeValue child
{ kPropChunk_tc_A, kXMP_NS_DM, "altTimecode" , prop_TIMEVALUE }, // special: must end up in dm:timeValue child
{ kPropChunk_rn_O, kXMP_NS_DM, "tapeName" , prop_SIMPLE },
{ kPropChunk_rn_A, kXMP_NS_DM, "altTapeName" , prop_SIMPLE },
{ 0, 0, 0 } // sentinel
};
// =================================================================================================
// ImportCr8rItems
// ===============
#pragma pack ( push, 1 )
struct PrmLBoxContent {
XMP_Uns32 magic;
XMP_Uns32 size;
XMP_Uns16 verAPI;
XMP_Uns16 verCode;
XMP_Uns32 exportType;
XMP_Uns16 MacVRefNum;
XMP_Uns32 MacParID;
char filePath[260];
};
enum { kExportTypeMovie = 0, kExportTypeStill = 1, kExportTypeAudio = 2, kExportTypeCustom = 3 };
struct Cr8rBoxContent {
XMP_Uns32 magic;
XMP_Uns32 size;
XMP_Uns16 majorVer;
XMP_Uns16 minorVer;
XMP_Uns32 creatorCode;
XMP_Uns32 appleEvent;
char fileExt[16];
char appOptions[16];
char appName[32];
};
#pragma pack ( pop )
// static getter, determines appropriate chunkType (peeking)and returns
// the respective constructor. It's the caller's responsibility to
// delete obtained chunk.
Chunk* getChunk ( ContainerChunk* parent, RIFF_MetaHandler* handler );
class Chunk
{
public:
ChunkType chunkType; // set by constructor
ContainerChunk* parent; // 0 on top-level
XMP_Uns32 id; // the first four bytes, first byte of highest value
XMP_Int64 oldSize; // actual chunk size INCLUDING the 8/12 header bytes,
XMP_Int64 oldPos; // file position of this chunk
// both set as part of changesAndSize()
XMP_Int64 newSize;
bool hasChange;
bool needSizeFix; // used in changesAndSize() only
// Constructors ///////////////////////
// parsing
Chunk( ContainerChunk* parent, RIFF_MetaHandler* handler, bool skip, ChunkType c /*= chunk_GENERAL*/ );
// ad-hoc creation
Chunk( ContainerChunk* parent, ChunkType c, XMP_Uns32 id );
/* returns true, if something has changed in chunk (which needs specific write-out,
this->newSize is expected to be set by this routine */
virtual void changesAndSize( RIFF_MetaHandler* handler );
virtual std::string toString(XMP_Uns8 level = 0);
virtual void write( RIFF_MetaHandler* handler, LFA_FileRef file, bool isMainChunk = false );
virtual ~Chunk();
}; // class Chunk
class XMPChunk : public Chunk
{
public:
XMPChunk( ContainerChunk* parent );
XMPChunk( ContainerChunk* parent, RIFF_MetaHandler* handler );
void changesAndSize( RIFF_MetaHandler* handler );
void write( RIFF_MetaHandler* handler, LFA_FileRef file, bool isMainChunk = false );
};
// any chunk, whose value should be stored, e.g. LIST:INFO, LIST:Tdat
class ValueChunk : public Chunk
{
public:
std::string oldValue, newValue;
// for ad-hoc creation (upon write)
ValueChunk( ContainerChunk* parent, std::string value, XMP_Uns32 id );
// for parsing
ValueChunk( ContainerChunk* parent, RIFF_MetaHandler* handler );
enum { kNULisOptional = true };
void SetValue( std::string value, bool optionalNUL = false );
void changesAndSize( RIFF_MetaHandler* handler );
void write( RIFF_MetaHandler* handler, LFA_FileRef file, bool isMainChunk = false );
// own destructor not needed.
};
// relevant (level 1) JUNQ and JUNK chunks...
class JunkChunk : public Chunk
{
public:
// construction
JunkChunk( ContainerChunk* parent, XMP_Int64 size );
// parsing
JunkChunk( ContainerChunk* parent, RIFF_MetaHandler* handler );
// own destructor not needed.
void changesAndSize( RIFF_MetaHandler* handler );
void write( RIFF_MetaHandler* handler, LFA_FileRef file, bool isMainChunk = false );
};
class ContainerChunk : public Chunk
{
public:
XMP_Uns32 containerType; // e.g. kType_INFO as in "LIST:INFO"
chunkVect children; // used for cleanup/destruction, ordering...
valueMap childmap; // only for efficient *value* access (inside LIST), *not* used for other containers
// construct
ContainerChunk( ContainerChunk* parent, XMP_Uns32 id, XMP_Uns32 containerType );
// parse
ContainerChunk( ContainerChunk* parent, RIFF_MetaHandler* handler );
bool removeValue( XMP_Uns32 id );
/* returns iterator to (first) occurence of this chunk.
iterator to the end of the map if chunk pointer is not found */
chunkVectIter getChild( Chunk* needle );
void replaceChildWithJunk( Chunk* child, bool deleteChild = true );
void changesAndSize( RIFF_MetaHandler* handler );
std::string toString(XMP_Uns8 level = 0);
void write( RIFF_MetaHandler* handler, LFA_FileRef file, bool isMainChunk = false );
// destroy
void release(); // used by destructor and on error in constructor
~ContainerChunk();
}; // class ContainerChunk
} // namespace RIFF
#endif // __RIFF_hpp__
|