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 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433
|
// =================================================================================================
// Copyright Adobe
// Copyright 2011 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 "PluginBase.h"
#include "PluginUtils.h"
#include "source/Host_IO.hpp"
#include "XMP.incl_cpp"
#if XMP_WinBuild
#include <Windows.h>
#endif
#if ( XMP_MacBuild || XMP_UNIXBuild )
#include <sys/stat.h>
#endif
namespace XMP_PLUGIN
{
static bool GetModifyDate ( const char* filePath, XMP_DateTime* modifyDate );
void PluginBase::cacheFileData( XMP_IORef fileRef, XMP_StringPtr* xmpStr )
{
std::string buffer;
IOAdapter file( fileRef );
this->cacheFileData( file, buffer );
if( !buffer.empty() )
{
XMP_Uns32 length = (XMP_Uns32)buffer.size() + 1 ;
StringPtr bufferPtr = HostStringCreateBuffer( length );
memcpy( bufferPtr, buffer.c_str(), length );
*xmpStr = bufferPtr; // callee function should free the memory.
}
}
// ============================================================================
void PluginBase::updateFile( XMP_IORef fileRef, bool doSafeUpdate, XMP_StringPtr xmpStr )
{
IOAdapter file( fileRef );
std::string buffer( xmpStr );
this->updateFile( file, doSafeUpdate, buffer );
}
// ============================================================================
void PluginBase::writeTempFile( XMP_IORef srcFileRef, XMP_IORef tmpFileRef, XMP_StringPtr xmpStr )
{
IOAdapter srcFile( srcFileRef );
IOAdapter tmpFile( tmpFileRef );
std::string buffer( xmpStr );
this->writeTempFile( srcFile, tmpFile, buffer );
}
void PluginBase::FillMetadataFiles( StringVectorRef metadataFiles, SetStringVectorProc SetStringVector )
{
if ( metadataFiles == 0 )
XMP_Throw ( "A result file list vector must be provided", kXMPErr_BadParam );
std::vector<std::string> fileList; // Pass a local vector, not the client's.
(*SetStringVector)( metadataFiles, 0, 0 ); // Clear the client's result vector.
FillMetadataFiles( &fileList );
// since we are dealing with STL ojbects across different DLL boundaries,
// we are extracting const char* to actual path strings, constructing a vector
// using these pointers and then passing the address of the underlying data
// to the clients procedure which will repopulate its own vector of strings
// using this information.
if ( ! fileList.empty() ) {
const size_t fileCount = fileList.size();
std::vector<XMP_StringPtr> ptrArray;
ptrArray.reserve ( fileCount );
for ( size_t i = 0; i < fileCount; ++i ) {
ptrArray.push_back ( fileList[i].c_str() );
}
(*SetStringVector) ( metadataFiles, ptrArray.data(), (XMP_Uns32)fileCount );
}
}
void PluginBase::FillMetadataFiles( std::vector<std::string> * metadataFiles )
{
XMP_OptionBits flags = this->mHandlerFlags;
if ( (flags & kXMPFiles_UsesSidecarXMP) ||
(flags & kXMPFiles_FolderBasedFormat) ) {
XMP_Throw ( "Base implementation of FillMetadataFiles only for embedding handlers", kXMPErr_PluginFillMetadataFiles );
}
metadataFiles->push_back ( this->getPath() );
}
void PluginBase::FillAssociatedResources( StringVectorRef resourceList, SetStringVectorProc SetStringVector )
{
if ( resourceList == 0 )
XMP_Throw ( "A result file list vector must be provided", kXMPErr_BadParam );
std::vector<std::string> resList; // Pass a local vector, not the client's.
(*SetStringVector)( resourceList, 0, 0 ); // Clear the client's result vector.
FillAssociatedResources( &resList );
if ( ! resList.empty() ) {
const size_t fileCount = resList.size();
std::vector<XMP_StringPtr> ptrArray;
ptrArray.reserve ( fileCount );
for ( size_t i = 0; i < fileCount; ++i ) {
ptrArray.push_back ( resList[i].c_str() );
}
(*SetStringVector) ( resourceList, ptrArray.data(), (XMP_Uns32)fileCount );
}
}
void PluginBase::FillAssociatedResources( std::vector<std::string> * resourceList )
{
XMP_OptionBits flags = this->mHandlerFlags;
if ( (flags & kXMPFiles_HandlerOwnsFile) ||
(flags & kXMPFiles_UsesSidecarXMP) ||
(flags & kXMPFiles_FolderBasedFormat) ) {
XMP_Throw ( "GetAssociatedResources is not implemented for this file format", kXMPErr_PluginFillAssociatedResources );
}
resourceList->push_back ( this->getPath() );
}
// ============================================================================
// ============================================================================
// ============================================================================
void PluginBase::importToXMP( XMP_StringPtr* xmpStr, XMP_StringPtr* packetPtr , XMP_PacketInfo * packetInfo )
{
this->importToXMP( xmpStr );
}
// ============================================================================
void PluginBase::importToXMP( XMP_StringPtr* xmpStr )
{
// To be implemented by the Plug-In Developer
// Generally a Plugin developer should follow the following steps
// when implementing this function
// a) Create a XMP object from serialized XMP packet.
// b) Import the data from Non-XMP content to XMP object
// c) Serialize the XMP object to a dynamic buffer.
// Dynamic buffer is allocated using HostAPI HostStringCreateBuffer
// d) Copy the dynamic buffer address to xmpStr
}
// ============================================================================
void PluginBase::exportFromXMP( XMP_StringPtr xmpStr )
{
// To be implemented by the Plug-In Developer
// Generally a Plugin developer should follow the following steps
// when implementing this function
// a) Create a XMP object from serialized XMP packet.
// b) Export the data from XMP object to non-XMP Content.
}
// ============================================================================
bool PluginBase::getFileModDate ( XMP_DateTime * modDate )
{
XMP_OptionBits flags = this->getHandlerFlags();
const std::string & filePath = this->getPath();
if ( (flags & kXMPFiles_HandlerOwnsFile) ||
(flags & kXMPFiles_UsesSidecarXMP) ||
(flags & kXMPFiles_FolderBasedFormat) ||
filePath.empty() )
{
return false;
}
return GetModifyDate ( filePath.c_str(), modDate );
}
bool PluginBase::IsMetadataWritable ( )
{
XMP_OptionBits flags = this->getHandlerFlags();
const std::string & filePath = this->getPath();
if ( (flags & kXMPFiles_HandlerOwnsFile) ||
(flags & kXMPFiles_UsesSidecarXMP) ||
(flags & kXMPFiles_FolderBasedFormat) ||
filePath.empty() )
{
XMP_Throw ( "IsMetadataWritable is not implemented for this file format", kXMPErr_PluginIsMetadataWritable );
}
try {
return Host_IO::Writable( this->getPath().c_str() );
} catch ( ... ) {
}
return false;
}
// ============================================================================
bool PluginBase::checkAbort( bool doAbort /*= false*/)
{
bool abort = CheckAbort( this );
if( abort && doAbort )
{
throw XMP_Error( kXMPErr_UserAbort, "User abort" );
}
return abort;
}
// ============================================================================
bool PluginBase::checkFormatStandard( const std::string* path /*= NULL*/ )
{
const StringPtr _path = (const StringPtr)( path == NULL ? this->getPath().c_str() : path->c_str() );
return CheckFormatStandard( this, this->getFormat(), _path );
}
// ============================================================================
bool PluginBase::getXMPStandard( std::string& xmpStr, const std::string* path /*= NULL*/, bool* containsXMP /*= NULL*/ )
{
const StringPtr _path = (const StringPtr)( path == NULL ? this->getPath().c_str() : path->c_str() );
bool ret = GetXMPStandard( this, this->getFormat(), _path, xmpStr, containsXMP );
return ret;
}
// ============================================================================
bool PluginBase::getXMPStandard( std::string& xmpStr, XMP_OptionBits flags, const std::string* path /*= NULL*/, bool* containsXMP /*= NULL*/, std::string *packet /*= NULL*/, XMP_PacketInfo *packetInfo /*= NULL*/, ErrorCallbackInfo * errorCallback /*= NULL*/, XMP_ProgressTracker::CallbackInfo * progCBInfoPtr /*= NULL*/ )
{
const StringPtr _path = (const StringPtr)( path == NULL ? this->getPath().c_str() : path->c_str() );
bool ret = GetXMPStandard( this, this->getFormat(), _path, xmpStr, containsXMP, flags, packet, packetInfo, errorCallback, progCBInfoPtr );
return ret;
}
// ============================================================================
bool PluginBase::putXMPStandard( const XMP_StringPtr xmpStr, XMP_OptionBits flags /*= NULL */, const std::string* path /*= NULL*/, ErrorCallbackInfo * errorCallback /*= NULL*/ , XMP_ProgressTracker::CallbackInfo * progCBInfoPtr /*= NULL*/ )
{
const StringPtr _path = (const StringPtr)( path == NULL ? this->getPath().c_str() : path->c_str() );
bool ret = PutXMPStandard( this, this->getFormat(), _path, xmpStr, flags, errorCallback, progCBInfoPtr );
return ret;
}
// ============================================================================
bool PluginBase::getFileModDateStandardHandler( XMP_DateTime * modDate, XMP_Bool * isSuccess, XMP_OptionBits flags /*= NULL */, const std::string* path /*= NULL*/ )
{
const StringPtr _path = (const StringPtr)( path == NULL ? this->getPath().c_str() : path->c_str() );
bool ret = GetFileModDateStandardHandler( this, this->getFormat(), _path, modDate, isSuccess, flags );
return ret;
}
// ============================================================================
bool PluginBase::getAssociatedResourcesStandardHandler( std::vector<std::string> * resourceList, XMP_OptionBits flags /*= NULL */, const std::string* path /*= NULL*/ )
{
const StringPtr _path = (const StringPtr)( path == NULL ? this->getPath().c_str() : path->c_str() );
bool ret = GetAssociatedResourcesStandardHandler( this, this->getFormat(), _path, resourceList, flags );
return ret;
}
// ============================================================================
bool PluginBase::isMetadataWritableStandardHandler( XMP_Bool * isWritable, XMP_OptionBits flags /*= NULL */, const std::string* path /*= NULL*/ )
{
const StringPtr _path = (const StringPtr)( path == NULL ? this->getPath().c_str() : path->c_str() );
bool ret = IsMetadataWritableStandardHandler( this, this->getFormat(), _path, isWritable, flags );
return ret;
}
// ============================================================================
void PluginBase::SetErrorCallback ( XMPFiles_ErrorCallbackWrapper wrapperProc,
XMPFiles_ErrorCallbackProc clientProc,
void * context,
XMP_Uns32 limit )
{
this->mErrorCallback.Clear();
this->mErrorCallback.wrapperProc = wrapperProc;
this->mErrorCallback.clientProc = clientProc;
this->mErrorCallback.context = context;
this->mErrorCallback.limit = limit;
this->mErrorCallback.filePath = mPath;
}
// ============================================================================
#if XMP_WinBuild
static bool GetModifyDate ( const char* filePath, XMP_DateTime* modifyDate )
{
bool ret = false;
//
// open file
//
HANDLE fileHandle = INVALID_HANDLE_VALUE;
DWORD access = GENERIC_READ; // read only
DWORD share = FILE_SHARE_READ;
std::string wideName;
const size_t utf8Len = strlen(filePath);
const size_t maxLen = 2 * (utf8Len+1);
wideName.reserve ( maxLen );
wideName.assign ( maxLen, ' ' );
if( MultiByteToWideChar ( CP_UTF8, 0, filePath, -1, (LPWSTR)wideName.data(), (int)maxLen ) != 0 )
{
if ( GetFileAttributes ( (LPCWSTR)wideName.data() ) != INVALID_FILE_ATTRIBUTES )
{
fileHandle = CreateFileW ( (LPCWSTR)wideName.data(), access, share, 0, OPEN_EXISTING,
(FILE_ATTRIBUTE_NORMAL | FILE_FLAG_RANDOM_ACCESS), 0 );
}
}
//
// get the file modification time
//
if( fileHandle != INVALID_HANDLE_VALUE )
{
FILETIME binTime;
if ( GetFileTime ( fileHandle, 0, 0, &binTime ) )
{
SYSTEMTIME utcTime;
if ( FileTimeToSystemTime ( &binTime, &utcTime ) )
{
if ( modifyDate != NULL )
{
// Ignore the fractional seconds for consistency with UNIX and to avoid false newness even on
// Windows. Some other sources of time only resolve to seconds, we don't want 25.3 looking
// newer than 25.
modifyDate->year = utcTime.wYear;
modifyDate->month = utcTime.wMonth;
modifyDate->day = utcTime.wDay;
modifyDate->hasDate = true;
modifyDate->hour = utcTime.wHour;
modifyDate->minute = utcTime.wMinute;
modifyDate->second = utcTime.wSecond;
modifyDate->nanoSecond = 0; // See note above; winTime.wMilliseconds * 1000*1000;
modifyDate->hasTime = true;
modifyDate->tzSign = kXMP_TimeIsUTC;
modifyDate->tzHour = 0;
modifyDate->tzMinute = 0;
modifyDate->hasTimeZone = true;
}
ret = true;
}
}
CloseHandle ( fileHandle );
}
return ret;
}
#endif
#if ( XMP_MacBuild || XMP_UNIXBuild )
static bool GetModifyDate ( const char* filePath, XMP_DateTime* modifyDate )
{
bool ret = false;
struct stat info;
if ( stat ( filePath, &info ) == 0 )
{
if ( S_ISREG(info.st_mode) || S_ISDIR(info.st_mode) )
{
ret = true;
if( modifyDate != NULL )
{
struct tm posixUTC;
gmtime_r ( &(info.st_mtime), &posixUTC );
modifyDate->year = posixUTC.tm_year + 1900;
modifyDate->month = posixUTC.tm_mon + 1;
modifyDate->day = posixUTC.tm_mday;
modifyDate->hasDate = true;
modifyDate->hour = posixUTC.tm_hour;
modifyDate->minute = posixUTC.tm_min;
modifyDate->second = posixUTC.tm_sec;
modifyDate->nanoSecond = 0; // The time_t resolution is only to seconds.
modifyDate->hasTime = true;
modifyDate->tzSign = kXMP_TimeIsUTC;
modifyDate->tzHour = 0;
modifyDate->tzMinute = 0;
modifyDate->hasTimeZone = true;
}
}
}
return ret;
}
#endif
} //namespace XMP_PLUGIN
|