sl@0: // Copyright (c) 2001-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: // sl@0: // sl@0: sl@0: /** sl@0: @file UriUtilsCommon.h sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: sl@0: #ifndef __URIUTILSCOMMON_H__ sl@0: #define __URIUTILSCOMMON_H__ sl@0: sl@0: // System includes sl@0: // sl@0: #include sl@0: sl@0: /** Error Base value */ sl@0: const TInt KUriUtilsErrorBase = -5000; sl@0: sl@0: /** sl@0: enum TUriError sl@0: Enum defining the error and panic codes used in the UriUtils components. sl@0: @publishedAll sl@0: @released sl@0: @since 6.0 sl@0: */ sl@0: enum TUriUtilsError sl@0: { sl@0: /** Error specifying the use of an invalid component index */ sl@0: KUriUtilsErrBadComponentIndex = KUriUtilsErrorBase, sl@0: /** Error specifying the use of a base uri path is not absolute and not empty */ sl@0: KUriUtilsErrBadBasePath = KUriUtilsErrorBase - 1, sl@0: /** Error specifying that a buffer is not big enough to append a component and delimiters */ sl@0: KUriUtilsErrBufferOverflow = KUriUtilsErrorBase - 2, sl@0: /** Error specifying the use of an supported parsing mode */ sl@0: KUriUtilsErrBadDelimitedParserMode = KUriUtilsErrorBase - 3, sl@0: /** Error specifying that the delimiting character is not set */ sl@0: KUriUtilsErrNoDelimiter = KUriUtilsErrorBase - 4, sl@0: /** Error specifying that the data has not been parsed */ sl@0: KUriUtilsErrNotParsed = KUriUtilsErrorBase - 5, sl@0: /** Error specifying that a 16-bit character was found in data to be escape encode */ sl@0: KUriUtilsErr16BitChar = KUriUtilsErrorBase - 6, sl@0: /** Error specifying that a badly formed escape triple was found in data being escape decoded */ sl@0: KUriUtilsErrBadEscapeTriple = KUriUtilsErrorBase - 7, sl@0: /** Error specifying that charconv was unable to convert the input data */ sl@0: KUriUtilsCannotConvert = KUriUtilsErrorBase - 8, sl@0: /** Error specifying that there was empty data */ sl@0: KUriUtilsErrEmptyData = KUriUtilsErrorBase - 9, sl@0: /** Error specifying that there is no character representation of an integer */ sl@0: KUriUtilsErrNoIntegerInData = KUriUtilsErrorBase - 10, sl@0: /** Error code specifying an invalid uri */ sl@0: KUriUtilsErrInvalidUri = KUriUtilsErrorBase - 11, sl@0: /** Error code for unsupported escaping mode */ sl@0: KUriUtilsErrBadEscapeMode = KUriUtilsErrorBase - 12, sl@0: /** Error code for unsupported text whitespace removal mode */ sl@0: KUriUtilsErrBadTextRemoveMode = KUriUtilsErrorBase - 13, sl@0: /** Quoted string could not be decoded as it is malformed. */ sl@0: KUriUtilsErrDecodeMalformedQuotedString = KUriUtilsErrorBase - 14, sl@0: /** Error code specifying an invalid scheme */ sl@0: KUriUtilsErrInvalidScheme = KUriUtilsErrorBase - 15, sl@0: /** Error code specifying an invalid username and/or password */ sl@0: KUriUtilsErrInvalidUserInfo = KUriUtilsErrorBase - 16, sl@0: /** Error code specifying an invalid host */ sl@0: KUriUtilsErrInvalidHost = KUriUtilsErrorBase - 17, sl@0: /** Error code specifying an invalid port */ sl@0: KUriUtilsErrInvalidPort = KUriUtilsErrorBase - 18, sl@0: /** Error code specifying an invalid path */ sl@0: KUriUtilsErrInvalidPath = KUriUtilsErrorBase - 19, sl@0: /** Error code specifying an invalid sip parameter */ sl@0: KUriUtilsErrInvalidParam = KUriUtilsErrorBase - 20, sl@0: /** Error code specifying an invalid query */ sl@0: KUriUtilsErrInvalidQuery = KUriUtilsErrorBase - 21, sl@0: /** Error code specifying an invalid sip headers */ sl@0: KUriUtilsErrInvalidHeaders = KUriUtilsErrorBase - 22, sl@0: /** Error code specifying an invalid fragment */ sl@0: KUriUtilsErrInvalidFragment = KUriUtilsErrorBase - 23, sl@0: /** Error code specifying that schemes are not equivalent */ sl@0: KUriUtilsErrDifferentScheme = KUriUtilsErrorBase - 24, sl@0: /** Error code specifying that usernames and passwords are not equivalent */ sl@0: KUriUtilsErrDifferentUserInfo = KUriUtilsErrorBase - 25, sl@0: /** Error code specifying that hosts are not equivalent */ sl@0: KUriUtilsErrDifferentHost = KUriUtilsErrorBase - 26, sl@0: /** Error code specifying that ports are not equivalent */ sl@0: KUriUtilsErrDifferentPort = KUriUtilsErrorBase - 27, sl@0: /** Error code specifying that paths are not equivalent */ sl@0: KUriUtilsErrDifferentPath = KUriUtilsErrorBase - 28, sl@0: /** Error code specifying that queries are not equivalent */ sl@0: KUriUtilsErrDifferentQuery = KUriUtilsErrorBase - 30, sl@0: /** Error code specifying that fragments are not equivalent */ sl@0: KUriUtilsErrDifferentFragment = KUriUtilsErrorBase - 32, sl@0: /** Error code specifying that a non-numeric character was found in data */ sl@0: KUriUtilsErrMalformedInteger = KUriUtilsErrorBase - 33 sl@0: }; sl@0: sl@0: // Constants sl@0: // sl@0: /** Scheme Delimiter */ sl@0: const TInt KSchemeDelimiter = ':'; sl@0: /** Userinfo Delimiter */ sl@0: const TInt KUserinfoDelimiter = '@'; sl@0: /** Equals Separator */ sl@0: const TInt KUserPwdSeparator = ':'; sl@0: /** close Brace */ sl@0: const TInt KEqualsSeparator = '='; sl@0: /** Slash Delimiter */ sl@0: const TInt KPortDelimiter = ':'; sl@0: /** close Brace */ sl@0: const TInt KSlashDelimiter = '/'; sl@0: /** Fragment Delimiter */ sl@0: const TInt KQueryDelimiter = '?'; sl@0: /** close Brace */ sl@0: const TInt KFragmentDelimiter = '#'; sl@0: /** param delimiter */ sl@0: const TInt KParamDelimiter = ';'; sl@0: /** open Brace */ sl@0: const TInt KIPv6UriOpenBrace = '['; sl@0: /** close Brace */ sl@0: const TInt KIPv6UriCloseBrace = ']'; sl@0: sl@0: #endif // __URIUTILSCOMMON_H__