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
|
#ifndef __QuickTime_Support_hpp__
#define __QuickTime_Support_hpp__ 1
// =================================================================================================
// Copyright Adobe
// Copyright 2009 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.
// =================================================================================================
#include "public/include/XMP_Environment.h" // ! This must be the first include.
#include "public/include/XMP_Const.h"
#include "public/include/XMP_IO.hpp"
#include <string>
#include <vector>
#include <map>
#include "XMPFiles/source/XMPFiles_Impl.hpp"
#include "XMPFiles/source/FormatSupport/ISOBaseMedia_Support.hpp"
#include "XMPFiles/source/FormatSupport/MOOV_Support.hpp"
// =================================================================================================
// =================================================================================================
// =================================================================================================
// TradQT_Manager
// ==============
// Support for selected traditional QuickTime metadata items. The supported items are the children
// of the 'moov'/'udta' box whose type begins with 0xA9, a MacRoman copyright symbol. Each of these
// is a box whose contents are a sequence of "mini boxes" analogous to XMP AltText arrays. Each mini
// box has a 16-bit size, 16-bit language code, and text. The language code values are the old
// Macintosh Script Manager langXyz codes, the text encoding is implicit, see Mac Script.h.
enum { // List of recognized items from the QuickTime 'moov'/'udta' box.
// These items are defined by Adobe.
kQTilst_Reel = 0xA952454CUL, // 'REL'
kQTilst_Timecode = 0xA954494DUL, // 'TIM'
kQTilst_TimeScale = 0xA9545343UL, // 'TSC'
kQTilst_TimeSize = 0xA954535AUL // 'TSZ'
};
enum {
ksmRoman = 0,
ksmJapanese = 1,
ksmTradChinese = 2, /* Traditional Chinese*/
ksmKorean = 3,
ksmArabic = 4,
ksmHebrew = 5,
ksmGreek = 6,
ksmCyrillic = 7,
ksmRSymbol = 8, /* Right-left symbol*/
ksmDevanagari = 9,
ksmGurmukhi = 10,
ksmGujarati = 11,
ksmOriya = 12,
ksmBengali = 13,
ksmTamil = 14,
ksmTelugu = 15,
ksmKannada = 16, /* Kannada/Kanarese*/
ksmMalayalam = 17,
ksmSinhalese = 18,
ksmBurmese = 19,
ksmKhmer = 20, /* Khmer/Cambodian*/
ksmThai = 21,
ksmLao = 22,
ksmGeorgian = 23,
ksmArmenian = 24,
ksmSimpChinese = 25, /* Simplified Chinese*/
ksmTibetan = 26,
ksmMongolian = 27,
ksmEthiopic = 28,
ksmGeez = 28, /* Synonym for ksmEthiopic*/
ksmCentralEuroRoman = 29, /* For Czech, Slovak, Polish, Hungarian, Baltic langs*/
ksmVietnamese = 30,
ksmExtArabic = 31, /* extended Arabic*/
ksmUninterp = 32 /* uninterpreted symbols, e.g. palette symbols*/
};
enum {
kNoMacLang = 0xFFFF,
kNoMacScript = 0xFFFF
};
enum { // Values for the type field at the start of a 'data' box.
kData_Implicit = 0, // Implicit (unique) based on the box type
kData_UTF_8 = 1, // UTF-8 text, no nul terminator
kData_UTF_16 = 2, // Big endian UTF-16 text
kData_ShiftJIS = 3, // ShiftJIS text
};
extern bool ConvertToMacLang ( const std::string & utf8Value, XMP_Uns16 macLang, std::string * macValue );
extern bool ConvertFromMacLang ( const std::string & macValue, XMP_Uns16 macLang, std::string * utf8Value );
class TradQT_Manager {
public:
TradQT_Manager() : changed(false) {};
bool ParseCachedBoxes ( const MOOV_Manager & moovMgr );
bool ImportSimpleXMP ( XMP_Uns32 id, SXMPMeta * xmp, XMP_StringPtr ns, XMP_StringPtr prop ) const;
bool ImportLangAltXMP ( XMP_Uns32 id, SXMPMeta * xmp, XMP_StringPtr ns, XMP_StringPtr langArray ) const;
void ExportSimpleXMP ( XMP_Uns32 id, const SXMPMeta & xmp, XMP_StringPtr ns, XMP_StringPtr prop,
bool createWithZeroLang = false );
void ExportLangAltXMP ( XMP_Uns32 id, const SXMPMeta & xmp, XMP_StringPtr ns, XMP_StringPtr langArray );
bool IsChanged() const { return this->changed; };
void UpdateChangedBoxes ( MOOV_Manager * moovMgr );
//Functions for supporting "moov/meta" atom
private:
struct ValueInfo {
bool marked;
XMP_Uns16 macLang;
XMP_StringPtr xmpLang; // ! Only set if macLang is known, i.e. the value can be converted.
std::string macValue;
ValueInfo() : marked(false), macLang(kNoMacLang), xmpLang("") {};
};
typedef std::vector<ValueInfo> ValueVector;
typedef ValueVector::iterator ValueInfoPos;
typedef ValueVector::const_iterator ValueInfoCPos;
struct ParsedBoxInfo {
XMP_Uns32 id;
ValueVector values;
bool changed;
ParsedBoxInfo() : id(0), changed(false) {};
ParsedBoxInfo ( XMP_Uns32 _id ) : id(_id), changed(false) {};
};
typedef std::map < XMP_Uns32, ParsedBoxInfo > InfoMap; // Metadata item kind and content info.
typedef InfoMap::iterator InfoMapPos;
typedef InfoMap::const_iterator InfoMapCPos;
InfoMap parsedBoxes;
bool changed;
bool ImportLangItem ( const ValueInfo & qtItem, SXMPMeta * xmp, XMP_StringPtr ns, XMP_StringPtr langArray ) const;
//Data Structures to handle metadata in moov/meta atom
struct DataBoxInfo {
std::string value;
XMP_Uns32 dataType;
XMP_Uns32 localeInfo;
DataBoxInfo(XMP_Uns32 dt, XMP_Uns32 l) : dataType(dt), localeInfo(l) {};
};
typedef std::vector<DataBoxInfo> DataBoxInfoVector;
struct MetaItemBoxInfo {
std::string key;
XMP_Uns32 type;//key_index
DataBoxInfoVector values;
size_t firstText; // Index of the first text value.
MetaItemBoxInfo() : type(0), firstText(std::string::npos) {};
MetaItemBoxInfo(XMP_Uns32 t) : type(t), firstText(std::string::npos) {};
};
typedef std::vector<MetaItemBoxInfo> MetaItemBoxInfoVector;
MetaItemBoxInfoVector MetaBoxItemList;
bool ConvertQTDateTime(XMP_StringPtr dateStr, XMP_DateTime* xmpDateTime);
bool ConvertXMPDateTime(std::string& strValue);
bool FormatLocationToGPSProperty(XMP_StringPtr, XMP_StringPtr, std::string&, XMP_Uns32 &);
bool FormatGPSPropertyToLocation(std::string &xmpValue, XMP_StringPtr propName);
bool isValidType(XMP_Uns32 typeCode);
bool DecodeString(const std::string & iTunesValue, XMP_Uns16 typeCode, std::string * utf8Value);
}; // TradQT_Manager
#endif // __QuickTime_Support_hpp__
|