summaryrefslogtreecommitdiff
path: root/XMPCommon/source/ErrorNotifierWrapperImpl.cpp
blob: 18767e4d3bfc5591ed9b8ba1b73ce500fae0774c (plain)
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
// =================================================================================================
// Copyright Adobe
// Copyright 2014 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 "XMPCommon/XMPCommonFwdDeclarations_I.h"
namespace XMP_COMPONENT_INT_NAMESPACE {
	class ErrorNotifierWrapperImpl_v1;
}
#define FRIEND_CLASS_DECLARATION() friend class XMP_COMPONENT_INT_NAMESPACE::ErrorNotifierWrapperImpl_v1;
#define IMPLEMENTATION_HEADERS_CAN_BE_INCLUDED 1
	#include "XMPCommon/ImplHeaders/ErrorNotifierWrapperImpl.h"
#undef IMPLEMENTATION_HEADERS_CAN_BE_INCLUDED
#undef FRIEND_CLASS_DECLARATION

#include "XMPCommon/Utilities/TWrapperFunctions_I.h"

namespace XMP_COMPONENT_INT_NAMESPACE {

	bool APICALL ErrorNotifierWrapperImpl_v1::Notify( const spcIError & err ) {
		uint32 exceptionCaught( 0 );
		uint32 returnValue = mErrorNotifier->notify( err.get(), exceptionCaught );
		if ( exceptionCaught ) {
			return false;
		}
		return returnValue != 0 ? true : false;
	}

	ErrorNotifierWrapperImpl_v1::ErrorNotifierWrapperImpl_v1( IErrorNotifier_v1 * errorNotifier )
		: mErrorNotifier( errorNotifier ) {}

	pIErrorNotifier CreateErrorNotifierWrapperImpl( pIErrorNotifier_base errorNotifier ) {
		if ( errorNotifier == NULL )
			return NULL;
		// start with the highest available version and keep on going down
		if ( IErrorNotifier_v1 * ptr = dynamic_cast< IErrorNotifier_v1 * >( errorNotifier ) ) {
			return new ErrorNotifierWrapperImpl_v1( errorNotifier );
		} else {
			return NULL;
		}
	}
}