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 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356
|
// =================================================================================================
// Copyright Adobe
// Copyright 2010 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 _IMetadata_h_
#define _IMetadata_h_
#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 "source/XMP_LibUtils.hpp"
#include "XMPFiles/source/NativeMetadataSupport/ValueObject.h"
#include <map>
/**
* The class IMetadata is supposed to store any unique metadata.
* It provides a generic interface to store any data types or arrays of any data types.
* The requirements for used datatypes are defined by the class ValueObject and its derived classes.
* For each single value as well as for the container as a whole modification and existing state is provided.
* It also provids methods to parse a byte block to distinct values or to serialize values to a byte block.
* IMetadata is an abstract class due to the method isEmptyValue(...). Derived classes needs to implement this
* method. It has to define when a certain value is "empty", since "empty" values are not stored but removed
* from the container.
*
*/
class IMetadata
{
public:
/**
* ctor/dtor
*/
IMetadata();
virtual ~IMetadata();
/**
* Parses the given memory block and creates a data model representation
* We assume that any metadata block is < 4GB so that we can savely use 32bit sizes.
* Throws exceptions if parsing is not possible
*
* @param input The byte buffer to parse
* @param size Size of the given byte buffer
*/
virtual void parse( const XMP_Uns8* input, XMP_Uns64 size );
/**
* Parses the given file and creates a data model representation
* Throws exceptions if parsing is not possible
*
* @param input The file to parse
*/
virtual void parse( XMP_IO* input );
/**
* Serializes the data model to a memory block.
* The method creates a buffer and pass it to the parameter 'buffer'. The callee of
* the method is responsible to delete the buffer later on.
* We assume that any metadata block is < 4GB so that we can savely use 32bit sizes.
* Throws exceptions if serializing is not possible
*
* @param buffer Buffer that gets filled with serialized data
* @param size Size of passed in buffer
*
* @ return Buffer size
*/
virtual XMP_Uns64 serialize( XMP_Uns8** buffer );
/**
* Return true if any values of this container was modified
*/
virtual bool hasChanged() const;
/**
* Reset dirty flag
*/
virtual void resetChanges();
/**
* Return true if the no metadata are available in this container
*/
virtual bool isEmpty() const;
/**
* Set value for passed identifier
*
* @param id Identifier of value
* @param value New value of passed data type
*/
template<class T> void setValue( XMP_Uns32 id, const T& value );
/**
* Set array for passed identifier
*
* @param id Identifier of value
* @param value Pointer to the array
* @param bufferSize Number of array elements
*/
template<class T> void setArray( XMP_Uns32 id, const T* buffer, XMP_Uns32 numElements);
/**
* Return value for passed identifier.
* If the value doesn't exists an exception is thrown!
*
* @param id Identifier of value
* @return Value of passed data type
*/
template<class T> const T& getValue( XMP_Uns32 id ) const;
/**
* Return array for passed identifier
* If the array doesn't exists an exception is thrown!
*
* @param id Identifier of value
* @param outBuffer Array
* @return Number of array elements
*/
template<class T> const T* getArray( XMP_Uns32 id, XMP_Uns32& outSize ) const;
/**
* Remove value for passed identifier
*
* @param id Identifier of value
*/
virtual void deleteValue( XMP_Uns32 id );
/**
* Remove all stored values
*/
virtual void deleteAll();
/**
* Return true if an value for the passed identifier exists
*
* @param id Identifier of value
*/
virtual bool valueExists( XMP_Uns32 id ) const;
/**
* Return true if the value for the passed identifier was changed
*
* @param id Identifier of value
*/
virtual bool valueChanged( XMP_Uns32 id ) const;
protected:
/**
* Is the value of the passed ValueObject that belongs to the given id "empty"?
* Derived classes are required to implement this method and define "empty"
* for its values.
* Needed for setValue and setArray.
*
* @param id Identifier of passed value
* @param valueObj Value to inspect
*
* @return True if the value is "empty"
*/
virtual bool isEmptyValue( XMP_Uns32 id, ValueObject& valueObj ) = 0;
/**
* Validates the value for the passed identifier
* @param id Identifier of value
* @param value pointer to value object
*/
virtual bool valueValid( XMP_Uns32 id, ValueObject * value );
/**
* Modify the value for the passed identifier
* @param id Identifier of value
* @param value pointer to value object
*/
virtual void valueModify( XMP_Uns32 id, ValueObject * value );
private:
// Operators hidden on purpose
IMetadata( const IMetadata& ) {};
IMetadata& operator=( const IMetadata& ) { return *this; };
protected:
typedef std::map<XMP_Uns32, ValueObject*> ValueMap;
ValueMap mValues;
bool mDirty;
};
template<class T> void IMetadata::setValue( XMP_Uns32 id, const T& value )
{
TValueObject<T>* valueObj = NULL;
//
// find existing value for id
//
ValueMap::iterator iterator = mValues.find( id );
if( iterator != mValues.end() )
{
//
// value exists, set new value
//
valueObj = dynamic_cast<TValueObject<T>*>( iterator->second );
if( valueObj != NULL )
{
TValueObject< T > newValueObj( value );
if ( valueValid( id, &newValueObj ) ) {
valueModify( id, &newValueObj );
valueObj->setValue( newValueObj.getValue() );
}
}
else
{
XMP_Throw ( "Invalid identifier", kXMPErr_InternalFailure );
}
}
else
{
//
// value doesn't exists yet and is not "empty"
// so add a new value to the map
//
TValueObject< T > newValueObj( value );
if ( this->valueValid( id, &newValueObj ) )
{
this->valueModify( id, &newValueObj );
valueObj = new TValueObject<T>( newValueObj.getValue() );
mValues[id] = valueObj;
mDirty = true; // the new created value isn't dirty, but the container becomes dirty
}
}
//
// check if the value is "empty"
//
if( valueObj == NULL || this->isEmptyValue( id, *valueObj ) )
{
//
// value is "empty", delete it
//
this->deleteValue( id );
}
}
template<class T> void IMetadata::setArray( XMP_Uns32 id, const T* buffer, XMP_Uns32 numElements )
{
TArrayObject<T>* arrayObj = NULL;
//
// find existing value for id
//
ValueMap::iterator iterator = mValues.find( id );
if( iterator != mValues.end() )
{
//
// value exists, set new value
//
arrayObj = dynamic_cast<TArrayObject<T>*>( iterator->second );
if( arrayObj != NULL )
{
arrayObj->setArray( buffer, numElements );
}
else
{
XMP_Throw ( "Invalid identifier", kXMPErr_InternalFailure );
}
}
else
{
//
// value doesn't exists yet and is not "empty"
// so add a new value to the map
//
arrayObj = new TArrayObject<T>( buffer, numElements );
mValues[id] = arrayObj;
mDirty = true; // the new created value isn't dirty, but the container becomes dirty
}
//
// check if the value is "empty"
//
if( this->isEmptyValue( id, *arrayObj ) )
{
//
// value is "empty", delete it
//
this->deleteValue( id );
}
}
template<class T> const T& IMetadata::getValue( XMP_Uns32 id ) const
{
ValueMap::const_iterator iterator = mValues.find( id );
if( iterator != mValues.end() )
{
//
// values exists, return value string
//
TValueObject<T>* valueObj = dynamic_cast<TValueObject<T>*>( iterator->second );
if( valueObj != NULL )
{
return valueObj->getValue();
}
else
{
XMP_Throw ( "Invalid identifier", kXMPErr_InternalFailure );
}
}
else
{
//
// value for id doesn't exists, throw an exception
//
XMP_Throw ( "Invalid identifier", kXMPErr_InternalFailure );
}
}
template<class T> const T* IMetadata::getArray( XMP_Uns32 id, XMP_Uns32& outSize ) const
{
ValueMap::const_iterator iterator = mValues.find( id );
if( iterator != mValues.end() )
{
//
// values exists, return value string
//
TArrayObject<T>* arrayObj = dynamic_cast<TArrayObject<T>*>( iterator->second );
if( arrayObj != NULL )
{
return arrayObj->getArray( outSize );
}
else
{
XMP_Throw ( "Invalid identifier", kXMPErr_InternalFailure );
}
}
else
{
//
// value for id doesn't exists, throw an exception
//
XMP_Throw ( "Invalid identifier", kXMPErr_InternalFailure );
}
}
#endif
|