summaryrefslogtreecommitdiff
path: root/XMPCommon/ImplHeaders/ErrorImpl.h
blob: 10e55f297bf7008eba776853b6b4a04d46029e14 (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
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
#ifndef ErrorImpl_h__
#define ErrorImpl_h__ 1

// =================================================================================================
// 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. If you have received this file from a source other 
// than Adobe, then your use, modification, or distribution of it requires the prior written permission
// of Adobe.
// =================================================================================================

#if !(IMPLEMENTATION_HEADERS_CAN_BE_INCLUDED)
	#error "Not adhering to design constraints"
	// this file should only be included from its own cpp file
#endif

#include "XMPCommon/Interfaces/IError_I.h"
#include "XMPCommon/BaseClasses/MemoryManagedObject.h"
#include "XMPCommon/ImplHeaders/SharedObjectImpl.h"
#include "XMPCommon/Interfaces/IUTF8String_I.h"

#if XMP_WinBuild
	#pragma warning( push )
	#pragma warning( disable : 4250 )
#endif

namespace XMP_COMPONENT_INT_NAMESPACE {

	class ErrorImpl
		: public virtual IError_I
		, public virtual SharedObjectImpl
		, public virtual MemoryManagedObject
	{
	public:
		ErrorImpl( eErrorDomain domain, eErrorCode code, eErrorSeverity severity );
		virtual ~ErrorImpl() __NOTHROW__ ;

		virtual eErrorCode APICALL GetCode() const;
		virtual eErrorDomain APICALL GetDomain() const;
		virtual eErrorSeverity APICALL GetSeverity() const;
		virtual spcIUTF8String APICALL GetMessage() const;
		virtual spcIUTF8String APICALL GetLocation() const;
		virtual spcIUTF8String APICALL GetParameter( sizet index ) const;
		virtual sizet APICALL GetParametersCount() const __NOTHROW__;
		virtual spIError APICALL GetNextError();
		virtual spIError APICALL SetNextError( const spIError & error );
		virtual void APICALL SetMessage( const char * message, sizet len = npos ) __NOTHROW__;
		virtual void APICALL SetLocation( const char * fileName, sizet lineNumber ) __NOTHROW__;
		virtual void APICALL AppendParameter( const char * parameter, sizet len = npos ) __NOTHROW__;
		virtual void APICALL AppendParameter( void * addressParameter ) __NOTHROW__;
		virtual void APICALL AppendParameter( const uint32 & integerValue ) __NOTHROW__;
		virtual void APICALL AppendParameter( const uint64 & integerValue ) __NOTHROW__;
		virtual void APICALL AppendParameter( const int32 & integerValue ) __NOTHROW__;
		virtual void APICALL AppendParameter( const int64 & integerValue ) __NOTHROW__;
		virtual void APICALL AppendParameter( const float & floatValue ) __NOTHROW__;
		virtual void APICALL AppendParameter( const double & doubleValue ) __NOTHROW__;
		virtual void APICALL AppendParameter( bool booleanValue ) __NOTHROW__;

	protected:
		eErrorCode				mErrorCode;
		eErrorDomain			mErrorDomain;
		eErrorSeverity			mErrorSeverity;
		spIUTF8String			mLocation;
		spIUTF8String			mMessage;
		mmcIUTF8StringList		mParameters;
		spIError				mNextError;

	#ifdef FRIEND_CLASS_DECLARATION
		FRIEND_CLASS_DECLARATION();
	#endif
		REQ_FRIEND_CLASS_DECLARATION();
	};
}

#if XMP_WinBuild
	#pragma warning( pop )
#endif

#endif  // ErrorImpl_h__