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 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672
|
// =================================================================================================
// 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"
#include "source/XMP_LibUtils.hpp"
#include "source/UnicodeInlines.incl_cpp"
#include <cstdio>
#include <cstring>
// =================================================================================================
#ifndef TraceThreadLocks
#define TraceThreadLocks 0
#endif
// -------------------------------------------------------------------------------------------------
extern "C" bool Initialize_LibUtils()
{
return true;
}
// -------------------------------------------------------------------------------------------------
extern "C" void Terminate_LibUtils(){
// Nothing to do.
}
// =================================================================================================
// Thread synchronization locks
// =================================================================================================
XMP_ReadWriteLock::XMP_ReadWriteLock() : beingWritten(false)
{
#if XMP_DebugBuild && HaveAtomicIncrDecr
this->lockCount = 0;
#if 0 //changing type of XMP_AtomicCounter from int32_t to std::atomic<int32_t>
// Atomic counter must be 32 or 64 bits and naturally aligned.
size_t counterSize = sizeof ( XMP_AtomicCounter );
size_t counterOffset = XMP_OffsetOf ( XMP_ReadWriteLock, lockCount );
XMP_Assert ( (counterSize == 4) || (counterSize == 8) ); // Counter must be 32 or 64 bits.
XMP_Assert ( (counterOffset & (counterSize-1)) == 0 ); // Counter must be naturally aligned.
#endif
#endif
XMP_BasicRWLock_Initialize ( this->lock );
#if TraceThreadLocks
fprintf ( stderr, "Created lock %.8X\n", this );
#endif
}
// ---------------------------------------------------------------------------------------------
XMP_ReadWriteLock::~XMP_ReadWriteLock()
{
#if TraceThreadLocks
fprintf ( stderr, "Deleting lock %.8X\n", this );
#endif
#if XMP_DebugBuild && HaveAtomicIncrDecr
XMP_Assert ( this->lockCount == 0 );
#endif
XMP_BasicRWLock_Terminate ( this->lock );
}
// ---------------------------------------------------------------------------------------------
void XMP_ReadWriteLock::Acquire ( bool forWriting )
{
#if TraceThreadLocks
fprintf ( stderr, "Acquiring lock %.8X for %s, count %d%s\n",
this, (forWriting ? "writing" : "reading"), this->lockCount, (this->beingWritten ? ", being written" : "") );
#endif
if ( forWriting ) {
XMP_BasicRWLock_AcquireForWrite ( this->lock );
this->beingWritten = forWriting;
#if XMP_DebugBuild && HaveAtomicIncrDecr
XMP_Assert ( this->lockCount == 0 );
#endif
} else {
XMP_BasicRWLock_AcquireForRead ( this->lock );
XMP_Assert ( ! this->beingWritten );
}
#if XMP_DebugBuild && HaveAtomicIncrDecr
XMP_AtomicIncrement ( this->lockCount );
#endif
#if TraceThreadLocks
fprintf ( stderr, "Acquired lock %.8X for %s, count %d%s\n",
this, (forWriting ? "writing" : "reading"), this->lockCount, (this->beingWritten ? ", being written" : "") );
#endif
}
// ---------------------------------------------------------------------------------------------
void XMP_ReadWriteLock::Release()
{
#if TraceThreadLocks
fprintf ( stderr, "Releasing lock %.8X, count %d%s\n", this, this->lockCount, (this->beingWritten ? ", being written" : "") );
#endif
#if XMP_DebugBuild && HaveAtomicIncrDecr
XMP_Assert ( this->lockCount > 0 );
XMP_AtomicDecrement ( this->lockCount ); // ! Do these before unlocking, that might release a waiting thread.
#endif
bool forWriting = this->beingWritten;
if ( forWriting ) {
this->beingWritten = false;
XMP_BasicRWLock_ReleaseFromWrite ( this->lock );
} else {
XMP_BasicRWLock_ReleaseFromRead ( this->lock );
}
#if TraceThreadLocks
fprintf ( stderr, "Released lock %.8X, count %d%s\n", this, this->lockCount, (this->beingWritten ? ", being written" : "") );
#endif
}
// =================================================================================================
#if UseHomeGrownLock
#if XMP_MacBuild | XMP_UNIXBuild | XMP_iOSBuild | XMP_AndroidBuild
// -----------------------------------------------------------------------------------------
// About pthread mutexes and conditions:
//
// The mutex protecting the condition must be locked before waiting for the condition. A
// thread can wait for a condition to be signaled by calling the pthread_cond_wait
// subroutine. The subroutine atomically unlocks the mutex and blocks the calling thread
// until the condition is signaled. When the call returns, the mutex is locked again.
#define InitializeBasicMutex(mutex) { int err = pthread_mutex_init ( &mutex, 0 ); XMP_Enforce ( err == 0 ); }
#define TerminateBasicMutex(mutex) { int err = pthread_mutex_destroy ( &mutex ); (void)err; XMP_Enforce_NoThrow ( err == 0 ); }
#define AcquireBasicMutex(mutex) { int err = pthread_mutex_lock ( &mutex ); XMP_Enforce ( err == 0 ); }
#define ReleaseBasicMutex(mutex) { int err = pthread_mutex_unlock ( &mutex ); XMP_Enforce ( err == 0 ); }
#define InitializeBasicQueue(queue) { int err = pthread_cond_init ( &queue, 0 ); XMP_Enforce ( err == 0 ); }
#define TerminateBasicQueue(queue) { int err = pthread_cond_destroy ( &queue ); (void)err; XMP_Enforce_NoThrow ( err == 0 ); }
#define WaitOnBasicQueue(queue,mutex) { int err = pthread_cond_wait ( &queue, &mutex ); XMP_Enforce ( err == 0 ); }
#define ReleaseOneBasicQueue(queue) { int err = pthread_cond_signal ( &queue ); XMP_Enforce ( err == 0 ); }
#define ReleaseAllBasicQueue(queue) { int err = pthread_cond_broadcast ( &queue ); XMP_Enforce ( err == 0 ); }
// -----------------------------------------------------------------------------------------
#elif XMP_WinBuild
// -----------------------------------------------------------------------------------------
#define InitializeBasicMutex(mutex) { InitializeCriticalSection ( &mutex ); }
#define TerminateBasicMutex(mutex) { DeleteCriticalSection ( &mutex ); }
#define AcquireBasicMutex(mutex) { EnterCriticalSection ( &mutex ); }
#define ReleaseBasicMutex(mutex) { LeaveCriticalSection ( &mutex ); }
#if ! BuildLocksForWinXP
// About Win32 condition variables (not on XP):
//
// Condition variables enable threads to atomically release a lock and enter the
// sleeping state. They can be used with critical sections or slim reader/writer (SRW)
// locks. Condition variables support operations that "wake one" or "wake all" waiting
// threads. After a thread is woken, it re-acquires the lock it released when the thread
// entered the sleeping state.
#define InitializeBasicQueue(queue) { InitializeConditionVariable ( &queue ); }
#define TerminateBasicQueue(queue) /* Do nothing. */
#define WaitOnBasicQueue(queue,mutex) \
{ BOOL ok = SleepConditionVariableCS ( &queue, &mutex, INFINITE /* timeout */ ); XMP_Enforce ( ok ); }
#define ReleaseOneBasicQueue(queue) { WakeConditionVariable ( &queue ); }
#define ReleaseAllBasicQueue(queue) { WakeAllConditionVariable ( &queue ); }
#else
// Need to create our own queue for Windows XP. This is not a general queue, it depends
// on the usage inside XMP_HomeGrownLock where the queueMutex guarantees that the
// queueing operations are done single threaded.
#define InitializeBasicQueue(queue) /* Do nothing. */
#define TerminateBasicQueue(queue) /* Do nothing. */
#define WaitOnBasicQueue(queue,mutex) { queue.Wait ( mutex ); }
#define ReleaseOneBasicQueue(queue) { queue.ReleaseOne(); }
#define ReleaseAllBasicQueue(queue) { queue.ReleaseAll(); }
// -------------------------------------------------------------------------------------
XMP_WinXP_HGQueue::XMP_WinXP_HGQueue() : queueEvent(0), waitCount(0), releaseAll(false)
{
this->queueEvent = CreateEvent ( NULL, FALSE, TRUE, NULL ); // Auto reset, initially clear.
XMP_Enforce ( this->queueEvent != 0 );
}
// -------------------------------------------------------------------------------------
XMP_WinXP_HGQueue::~XMP_WinXP_HGQueue()
{
CloseHandle ( this->queueEvent );
}
// -------------------------------------------------------------------------------------
void XMP_WinXP_HGQueue::Wait ( XMP_BasicMutex & queueMutex )
{
++this->waitCount; // ! Does not need atomic increment, protected by queue mutex.
ReleaseBasicMutex ( queueMutex );
DWORD status = WaitForSingleObject ( this->queueEvent, INFINITE );
if ( status != WAIT_OBJECT_0 ) XMP_Throw ( "Failure from WaitForSingleObject", kXMPErr_ExternalFailure );
AcquireBasicMutex ( queueMutex );
--this->waitCount; // ! Does not need atomic decrement, protected by queue mutex.
if ( this->releaseAll ) {
if ( this->waitCount == 0 ) {
this->releaseAll = false;
} else {
BOOL ok = SetEvent ( this->queueEvent );
if ( ! ok ) XMP_Throw ( "Failure from SetEvent", kXMPErr_ExternalFailure );
}
}
}
// -------------------------------------------------------------------------------------
void XMP_WinXP_HGQueue::ReleaseOne()
{
XMP_Assert ( ! this->releaseAll );
BOOL ok = SetEvent ( this->queueEvent );
if ( ! ok ) XMP_Throw ( "Failure from SetEvent", kXMPErr_ExternalFailure );
}
// -------------------------------------------------------------------------------------
void XMP_WinXP_HGQueue::ReleaseAll()
{
this->releaseAll = true;
BOOL ok = SetEvent ( this->queueEvent );
if ( ! ok ) XMP_Throw ( "Failure from SetEvent", kXMPErr_ExternalFailure );
}
#endif
// -----------------------------------------------------------------------------------------
#endif
// =============================================================================================
XMP_HomeGrownLock::XMP_HomeGrownLock() : lockCount(0), readersWaiting(0), writersWaiting(0), beingWritten(false)
{
InitializeBasicMutex ( this->queueMutex );
InitializeBasicQueue ( this->writerQueue );
InitializeBasicQueue ( this->readerQueue );
}
// =============================================================================================
XMP_HomeGrownLock::~XMP_HomeGrownLock() noexcept(false)
{
TerminateBasicMutex ( this->queueMutex );
TerminateBasicQueue ( this->writerQueue );
TerminateBasicQueue ( this->readerQueue );
}
// =============================================================================================
void XMP_HomeGrownLock::AcquireForRead()
{
XMP_AutoMutex autoMutex ( &this->queueMutex );
++this->readersWaiting; // ! Does not need atomic increment, protected by queue mutex.
while ( (this->beingWritten) || (this->writersWaiting > 0) ) {
// Don't allow more readers if writers are waiting.
WaitOnBasicQueue ( this->readerQueue, this->queueMutex );
}
--this->readersWaiting; // ! Does not need atomic decrement, protected by queue mutex.
XMP_Assert ( ! this->beingWritten );
++this->lockCount; // ! Does not need atomic increment, protected by queue mutex.
}
// =============================================================================================
void XMP_HomeGrownLock::AcquireForWrite()
{
XMP_AutoMutex autoMutex ( &this->queueMutex );
++this->writersWaiting; // ! Does not need atomic increment, protected by queue mutex.
while ( this->lockCount > 0 ) {
WaitOnBasicQueue ( this->writerQueue, this->queueMutex );
}
--this->writersWaiting; // ! Does not need atomic decrement, protected by queue mutex.
XMP_Assert ( (! this->beingWritten) && (this->lockCount == 0) );
++this->lockCount; // ! Does not need atomic increment, protected by queue mutex.
this->beingWritten = true;
}
// =============================================================================================
void XMP_HomeGrownLock::ReleaseFromRead()
{
XMP_AutoMutex autoMutex ( &this->queueMutex );
XMP_Assert ( (! this->beingWritten) && (this->lockCount > 0) );
--this->lockCount; // ! Does not need atomic decrement, protected by queue mutex.
if ( this->writersWaiting > 0 ) {
ReleaseOneBasicQueue ( this->writerQueue );
} else if ( this->readersWaiting > 0 ) {
ReleaseAllBasicQueue ( this->readerQueue );
}
}
// =============================================================================================
void XMP_HomeGrownLock::ReleaseFromWrite()
{
XMP_AutoMutex autoMutex ( &this->queueMutex );
XMP_Assert ( this->beingWritten && (this->lockCount == 1) );
--this->lockCount; // ! Does not need atomic decrement, protected by queue mutex.
this->beingWritten = false;
if ( this->writersWaiting > 0 ) {
ReleaseOneBasicQueue ( this->writerQueue );
} else if ( this->readersWaiting > 0 ) {
ReleaseAllBasicQueue ( this->readerQueue );
}
}
// =============================================================================================
#endif
// =================================================================================================
// Data structure dumping utilities
// ================================
void
DumpClearString ( const XMP_VarString & value, XMP_TextOutputProc outProc, void * refCon )
{
char buffer [20];
bool prevNormal;
XMP_Status status = 0;
XMP_StringPtr spanStart, spanEnd;
XMP_StringPtr valueEnd = &value[0] + value.size();
spanStart = &value[0];
while ( spanStart < valueEnd ) {
// Output the next span of regular characters.
for ( spanEnd = spanStart; spanEnd < valueEnd; ++spanEnd ) {
if ( *spanEnd > 0x7F ) break;
if ( (*spanEnd < 0x20) && (*spanEnd != kTab) && (*spanEnd != kLF) ) break;
}
if ( spanStart != spanEnd ) status = (*outProc) ( refCon, spanStart, (XMP_StringLen)(spanEnd-spanStart) );
if ( status != 0 ) break;
spanStart = spanEnd;
// Output the next span of irregular characters.
prevNormal = true;
for ( spanEnd = spanStart; spanEnd < valueEnd; ++spanEnd ) {
if ( ((0x20 <= *spanEnd) && (*spanEnd <= 0x7F)) || (*spanEnd == kTab) || (*spanEnd == kLF) ) break;
char space = ' ';
if ( prevNormal ) space = '<';
status = (*outProc) ( refCon, &space, 1 );
if ( status != 0 ) break;
OutProcHexByte ( *spanEnd );
prevNormal = false;
}
if ( ! prevNormal ) {
status = (*outProc) ( refCon, ">", 1 );
if ( status != 0 ) return;
}
spanStart = spanEnd;
}
} // DumpClearString
// -------------------------------------------------------------------------------------------------
static void
DumpStringMap ( const XMP_StringMap & map, XMP_StringPtr label, XMP_TextOutputProc outProc, void * refCon )
{
XMP_cStringMapPos currPos;
XMP_cStringMapPos endPos = map.end();
size_t maxLen = 0;
for ( currPos = map.begin(); currPos != endPos; ++currPos ) {
size_t currLen = currPos->first.size();
if ( currLen > maxLen ) maxLen = currLen;
}
OutProcNewline();
OutProcLiteral ( label );
OutProcNewline();
for ( currPos = map.begin(); currPos != endPos; ++currPos ) {
OutProcNChars ( " ", 2 );
DumpClearString ( currPos->first, outProc, refCon );
OutProcPadding ( maxLen - currPos->first.size() );
OutProcNChars ( " => ", 4 );
DumpClearString ( currPos->second, outProc, refCon );
OutProcNewline();
}
} // DumpStringMap
// =================================================================================================
// Namespace Tables
// =================================================================================================
XMP_NamespaceTable::XMP_NamespaceTable ( const XMP_NamespaceTable & presets )
{
XMP_AutoLock presetLock ( &presets.lock, kXMP_ReadLock );
this->uriToPrefixMap = presets.uriToPrefixMap;
this->prefixToURIMap = presets.prefixToURIMap;
} // XMP_NamespaceTable::XMP_NamespaceTable
// =================================================================================================
bool XMP_NamespaceTable::Define ( XMP_StringPtr _uri, XMP_StringPtr _suggPrefix,
XMP_StringPtr * prefixPtr, XMP_StringLen * prefixLen )
{
XMP_AutoLock tableLock ( &this->lock, kXMP_WriteLock );
bool prefixMatches = false;
XMP_Assert ( (_uri != 0) && (*_uri != 0) && (_suggPrefix != 0) && (*_suggPrefix != 0) );
XMP_VarString uri ( _uri );
XMP_VarString suggPrefix ( _suggPrefix );
if ( suggPrefix[suggPrefix.size()-1] != ':' ) suggPrefix += ':';
VerifySimpleXMLName ( _suggPrefix, _suggPrefix+suggPrefix.size()-1 ); // Exclude the colon.
XMP_StringMapPos uriPos = this->uriToPrefixMap.find ( uri );
if ( uriPos == this->uriToPrefixMap.end() ) {
// The URI is not yet registered, make sure we use a unique prefix.
XMP_VarString uniqPrefix ( suggPrefix );
int suffix = 0;
char buffer [32]; // AUDIT: Plenty of room for the "_%d_" suffix.
while ( true ) {
if ( this->prefixToURIMap.find ( uniqPrefix ) == this->prefixToURIMap.end() ) break;
++suffix;
snprintf ( buffer, sizeof(buffer), "_%d_:", suffix ); // AUDIT: Using sizeof for snprintf length is safe.
uniqPrefix = suggPrefix;
uniqPrefix.erase ( uniqPrefix.size()-1 ); // ! Remove the trailing ':'.
uniqPrefix += buffer;
}
// Add the new namespace to both maps.
XMP_StringPair newNS ( uri, uniqPrefix );
uriPos = this->uriToPrefixMap.insert ( this->uriToPrefixMap.end(), newNS );
newNS.first.swap ( newNS.second );
(void) this->prefixToURIMap.insert ( this->prefixToURIMap.end(), newNS );
}
// Return the actual prefix and see if it matches the suggested prefix.
if ( prefixPtr != 0 ) *prefixPtr = uriPos->second.c_str();
if ( prefixLen != 0 ) *prefixLen = (XMP_StringLen)uriPos->second.size();
prefixMatches = ( uriPos->second == suggPrefix );
return prefixMatches;
} // XMP_NamespaceTable::Define
// =================================================================================================
bool XMP_NamespaceTable::GetPrefix ( XMP_StringPtr _uri, XMP_StringPtr * prefixPtr, XMP_StringLen * prefixLen ) const
{
XMP_AutoLock tableLock ( &this->lock, kXMP_ReadLock );
bool found = false;
XMP_Assert ( (_uri != 0) && (*_uri != 0) );
XMP_VarString uri ( _uri );
XMP_cStringMapPos uriPos = this->uriToPrefixMap.find ( uri );
if ( uriPos != this->uriToPrefixMap.end() ) {
if ( prefixPtr != 0 ) *prefixPtr = uriPos->second.c_str();
if ( prefixLen != 0 ) *prefixLen = (XMP_StringLen)uriPos->second.size();
found = true;
}
return found;
} // XMP_NamespaceTable::GetPrefix
// =================================================================================================
bool XMP_NamespaceTable::GetURI ( XMP_StringPtr _prefix, XMP_StringPtr * uriPtr, XMP_StringLen * uriLen ) const
{
XMP_AutoLock tableLock ( &this->lock, kXMP_ReadLock );
bool found = false;
XMP_Assert ( (_prefix != 0) && (*_prefix != 0) );
XMP_VarString prefix ( _prefix );
if ( prefix[prefix.size()-1] != ':' ) prefix += ':';
XMP_cStringMapPos prefixPos = this->prefixToURIMap.find ( prefix );
if ( prefixPos != this->prefixToURIMap.end() ) {
if ( uriPtr != 0 ) *uriPtr = prefixPos->second.c_str();
if ( uriLen != 0 ) *uriLen = (XMP_StringLen)prefixPos->second.size();
found = true;
}
return found;
} // XMP_NamespaceTable::GetURI
// =================================================================================================
void XMP_NamespaceTable::Dump ( XMP_TextOutputProc outProc, void * refCon ) const
{
XMP_AutoLock tableLock ( &this->lock, kXMP_ReadLock );
XMP_cStringMapPos p2uEnd = this->prefixToURIMap.end(); // ! Move up to avoid gcc complaints.
XMP_cStringMapPos u2pEnd = this->uriToPrefixMap.end();
DumpStringMap ( this->prefixToURIMap, "Dumping namespace prefix to URI map", outProc, refCon );
if ( this->prefixToURIMap.size() != this->uriToPrefixMap.size() ) {
OutProcLiteral ( "** bad namespace map sizes **" );
XMP_Throw ( "Fatal namespace map problem", kXMPErr_InternalFailure );
}
for ( XMP_cStringMapPos nsLeft = this->prefixToURIMap.begin(); nsLeft != p2uEnd; ++nsLeft ) {
XMP_cStringMapPos nsOther = this->uriToPrefixMap.find ( nsLeft->second );
if ( (nsOther == u2pEnd) || (nsLeft != this->prefixToURIMap.find ( nsOther->second )) ) {
OutProcLiteral ( " ** bad namespace URI ** " );
DumpClearString ( nsLeft->second, outProc, refCon );
break;
}
for ( XMP_cStringMapPos nsRight = nsLeft; nsRight != p2uEnd; ++nsRight ) {
if ( nsRight == nsLeft ) continue; // ! Can't start at nsLeft+1, no operator+!
if ( nsLeft->second == nsRight->second ) {
OutProcLiteral ( " ** duplicate namespace URI ** " );
DumpClearString ( nsLeft->second, outProc, refCon );
break;
}
}
}
for ( XMP_cStringMapPos nsLeft = this->uriToPrefixMap.begin(); nsLeft != u2pEnd; ++nsLeft ) {
XMP_cStringMapPos nsOther = this->prefixToURIMap.find ( nsLeft->second );
if ( (nsOther == p2uEnd) || (nsLeft != this->uriToPrefixMap.find ( nsOther->second )) ) {
OutProcLiteral ( " ** bad namespace prefix ** " );
DumpClearString ( nsLeft->second, outProc, refCon );
break;
}
for ( XMP_cStringMapPos nsRight = nsLeft; nsRight != u2pEnd; ++nsRight ) {
if ( nsRight == nsLeft ) continue; // ! Can't start at nsLeft+1, no operator+!
if ( nsLeft->second == nsRight->second ) {
OutProcLiteral ( " ** duplicate namespace prefix ** " );
DumpClearString ( nsLeft->second, outProc, refCon );
break;
}
}
}
} // XMP_NamespaceTable::Dump
// =================================================================================================
static XMP_Bool matchdigit ( XMP_StringPtr text ) {
if ( *text >= '0' && *text <= '9' )
return true;
return false;
}
static XMP_Bool matchUpperCase ( XMP_StringPtr text ) {
if ( *text >= 'A' && *text <= 'Z' )
return true;
return false;
}
static XMP_Bool matchLowerCase ( XMP_StringPtr text ) {
if ( *text >= 'a' && *text <= 'z' )
return true;
return false;
}
/* matchhere: search for regexp at beginning of text */
static XMP_Bool matchhere ( XMP_StringPtr regexp, XMP_StringPtr text ) {
if ( regexp[0] == '\0' )
return true;
if ( regexp[0] == '\\' ) {
if ( regexp[1] == 'd' ) {
if ( matchdigit(text) )
return matchhere ( regexp+2, text+1 );
else
return false;
}
else if ( regexp[1] == 'W' ) {
if ( matchUpperCase(text) )
return matchhere ( regexp+2, text+1 );
else
return false;
}
else if ( regexp[1] == 'w' ) {
if ( matchLowerCase(text) )
return matchhere ( regexp+2, text+1 );
else
return false;
}
}
if ( regexp[0] == '$' && regexp[1] == '\0' )
return *text == '\0';
if ( *text != '\0' && regexp[0] == *text )
return matchhere ( regexp+1, text+1 );
return 0;
}
/* match: search for regexp anywhere in text */
static XMP_Bool match ( XMP_StringPtr regexp, XMP_StringPtr text ) {
if ( regexp[0] == '^' )
return matchhere ( regexp+1, text );
do { /* must look even if string is empty */
if ( matchhere ( regexp, text ) )
return true;
} while ( *text++ != '\0' );
return false;
}
XMP_Bool XMP_RegExp::Match ( XMP_StringPtr s )
{
if ( regExpStr.size() == 0 )
return true;
if ( s == NULL )
return false;
return match ( this->regExpStr.c_str(), s );
}
// =================================================================================================
|