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
|
// =================================================================================================
// 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.
// =================================================================================================
#include "XMPFiles/source/NativeMetadataSupport/IMetadata.h"
//-----------------------------------------------------------------------------
//
// IMetadata::IMetadata(...)
//
// Purpose: ctor/dtor
//
//-----------------------------------------------------------------------------
IMetadata::IMetadata()
: mDirty(false)
{
}
IMetadata::~IMetadata()
{
for( ValueMap::iterator iter = mValues.begin(); iter != mValues.end(); iter++ )
{
delete iter->second;
}
}
//-----------------------------------------------------------------------------
//
// IMetadata::parse(...)
//
// Purpose: 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
//
//-----------------------------------------------------------------------------
void IMetadata::parse( const XMP_Uns8* /*input*/, XMP_Uns64 /*size*/ )
{
XMP_Throw ( "Method not implemented", kXMPErr_Unimplemented );
}
//-----------------------------------------------------------------------------
//
// IMetadata::parse(...)
//
// Purpose: Parses the given file and creates a data model representation
// Throws exceptions if parsing is not possible
//
//-----------------------------------------------------------------------------
void IMetadata::parse( XMP_IO* /*input*/ )
{
XMP_Throw ( "Method not implemented", kXMPErr_Unimplemented );
}
//-----------------------------------------------------------------------------
//
// IMetadata::serialize(...)
//
// Purpose: 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
//
//-----------------------------------------------------------------------------
XMP_Uns64 IMetadata::serialize( XMP_Uns8** /*buffer*/ )
{
XMP_Throw ( "Method not implemented", kXMPErr_Unimplemented );
}
//-----------------------------------------------------------------------------
//
// IMetadata::hasChanged(...)
//
// Purpose: Return true if any values of this container was modified
//
//-----------------------------------------------------------------------------
bool IMetadata::hasChanged() const
{
bool isDirty = mDirty;
for( ValueMap::const_iterator iter=mValues.begin(); ! isDirty && iter != mValues.end(); iter++ )
{
isDirty = iter->second->hasChanged();
}
return isDirty;
}
//-----------------------------------------------------------------------------
//
// IMetadata::resetChanges(...)
//
// Purpose: Reset dirty flag
//
//-----------------------------------------------------------------------------
void IMetadata::resetChanges()
{
mDirty = false;
for( ValueMap::iterator iter=mValues.begin(); iter != mValues.end(); iter++ )
{
iter->second->resetChanged();
}
}
//-----------------------------------------------------------------------------
//
// IMetadata::isEmpty(...)
//
// Purpose: Return true if the no metadata are available in this container
//
//-----------------------------------------------------------------------------
bool IMetadata::isEmpty() const
{
return mValues.empty();
}
//-----------------------------------------------------------------------------
//
// IMetadata::deleteValue(...)
//
// Purpose: Remove value for passed identifier
//
//-----------------------------------------------------------------------------
void IMetadata::deleteValue( XMP_Uns32 id )
{
ValueMap::iterator iterator = mValues.find( id );
if( iterator != mValues.end() )
{
delete iterator->second;
mValues.erase( iterator );
mDirty = true;
}
}
//-----------------------------------------------------------------------------
//
// IMetadata::deleteAll(...)
//
// Purpose: Remove all stored values
//
//-----------------------------------------------------------------------------
void IMetadata::deleteAll()
{
mDirty = ( mValues.size() > 0 );
for( ValueMap::iterator iter = mValues.begin(); iter != mValues.end(); iter++ )
{
delete iter->second;
}
mValues.clear();
}
//-----------------------------------------------------------------------------
//
// IMetadata::valueExists(...)
//
// Purpose: Return true if an value for the passed identifier exists
//
//-----------------------------------------------------------------------------
bool IMetadata::valueExists( XMP_Uns32 id ) const
{
ValueMap::const_iterator iterator = mValues.find( id );
return ( iterator != mValues.end() );
}
//-----------------------------------------------------------------------------
//
// IMetadata::valueChanged(...)
//
// Purpose: Return true if the value for the passed identifier was changed
//
//-----------------------------------------------------------------------------
bool IMetadata::valueChanged( XMP_Uns32 id ) const
{
ValueMap::const_iterator iterator = mValues.find( id );
if( iterator != mValues.end() )
{
return iterator->second->hasChanged();
}
return false;
}
//-----------------------------------------------------------------------------
//
// IMetadata::valueValid(...)
//
// Purpose: Return true if the value for the passed identifier is valid
//
//-----------------------------------------------------------------------------
bool IMetadata::valueValid( XMP_Uns32 /*id*/, ValueObject * /*value*/ )
{
return true;
}
//-----------------------------------------------------------------------------
//
// IMetadata::valueValid(...)
//
// Purpose: Return true if the value for the passed identifier is valid
//
//-----------------------------------------------------------------------------
void IMetadata::valueModify(XMP_Uns32 /*id*/, ValueObject * /*value*/)
{
return;
}
|