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
|
#ifndef XMPCoreErrorCodes_h__
#define XMPCoreErrorCodes_h__ 1
// =================================================================================================
// Copyright Adobe
// Copyright 2015 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 "XMPCore/XMPCoreDefines.h"
#include "XMPCommon/XMPCommonErrorCodes.h"
namespace AdobeXMPCore {
typedef enum {
//! Indicates no error.
kDMECNone = 0,
//! Indicates that IXMPNameSpacePrefixMap has an entry missing.
kDMECNameSpacePrefixMapEntryMissing = 1,
//! Indicates that a different type of node is present than one user is expecting
kDMECDifferentNodeTypePresent = 2,
//! Indicates that node is already a child of another parent.
kDMECNodeAlreadyAChild = 3,
//! Indicates a node with the same qualified name or index already exists.
kDMECNodeAlreadyExists = 4,
//! Indicates no such node exists.
kDMECNoSuchNodeExists = 5,
//! Indicates current array element type is not same as that of other child items
kDMECArrayItemTypeDifferent = 6,
//! Indicates invalid path segment inside a path.
kDMECInvalidPathSegment = 7,
//! Indicates Bad schema parameter
kDMECBadSchema = 101,
//! Indicates Bad XPath parameter
kDMECBadXPath = 102,
//! Indicates Bad options parameter
kDMECBadOptions = 103,
//! Indicates Bad iteration position
kDMECBadIterPosition = 104,
//! Indicates Unicode error
kDMECBadUnicode = 105,
//! Indicates XMP format error
kDMECValidationError = 106,
//! Indicates Empty iterator
kDMECEmptyIterator = 107,
//! Maximum value this enum can hold, should be treated as invalid value.
kDMECMaxValue = kMaxEnumValue
} eDataModelErrorCode;
//!
//! @brief Indicates various errors encountered during parsing.
//!
typedef enum {
//! Indicates no error.
kPECNone = 0,
//! Indicates XML parsing error.
kPECBadXML = 1,
//! RDF format error
kPECBadRDF = 2,
//! XMP format error
kPECBadXMP = 3,
//! Context Node is invalid
kPECInvalidContextNode = 4,
//! Context Node is not a composite node
kPECContextNodeIsNonComposite = 5,
//! Parent of Context Node is not an array node
kPECContextNodeParentIsNonArray = 6,
//! Maximum value this enum can hold, should be treated as invalid value.
kPECMaxValue = kMaxEnumValue
} eParserErrorCode;
//!
//! @brief Indicates various errors encountered during serialization.
//!
typedef enum {
//! Indicates no error.
kSECNone = 0,
//! Indicates serialization failed to achieve size requirement.
kSECSizeExceed = 1,
//! Indicates un registered namespace encountered during serialization.
kSECUnRegisteredNameSpace = 2,
//! Maximum value this enum can hold, should be treated as invalid value.
kSECMaxValue = kMaxEnumValue
} eSerializerErrorCode;
}
#endif // XMPCoreErrorCodes_h__
|