os/ossrv/genericservices/httputils/inc/UriUtilsCommon.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/genericservices/httputils/inc/UriUtilsCommon.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,134 @@
     1.4 +// Copyright (c) 2001-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +// 
    1.18 +// 
    1.19 +//
    1.20 +
    1.21 +/**
    1.22 + @file UriUtilsCommon.h
    1.23 + @publishedAll
    1.24 + @released
    1.25 +*/
    1.26 +
    1.27 +#ifndef __URIUTILSCOMMON_H__
    1.28 +#define __URIUTILSCOMMON_H__
    1.29 +
    1.30 +// System includes
    1.31 +//
    1.32 +#include <e32base.h>
    1.33 +
    1.34 +/** Error Base value */
    1.35 +const TInt KUriUtilsErrorBase		= -5000;
    1.36 +
    1.37 +/**	
    1.38 +enum TUriError
    1.39 +Enum defining the error and panic codes used in the UriUtils components.
    1.40 +@publishedAll
    1.41 +@released
    1.42 +@since 6.0
    1.43 +*/
    1.44 +enum TUriUtilsError
    1.45 +	{
    1.46 +	/** Error specifying the use of an invalid component index */
    1.47 +	KUriUtilsErrBadComponentIndex			= KUriUtilsErrorBase,
    1.48 +	/** Error specifying the use of a base uri path is not absolute and not empty */
    1.49 +	KUriUtilsErrBadBasePath					= KUriUtilsErrorBase - 1,
    1.50 +	/** Error specifying that a buffer is not big enough to append a component and delimiters */
    1.51 +	KUriUtilsErrBufferOverflow				= KUriUtilsErrorBase - 2,
    1.52 +	/** Error specifying the use of an supported parsing mode */
    1.53 +	KUriUtilsErrBadDelimitedParserMode		= KUriUtilsErrorBase - 3,
    1.54 +	/** Error specifying that the delimiting character is not set */
    1.55 +	KUriUtilsErrNoDelimiter					= KUriUtilsErrorBase - 4,
    1.56 +	/** Error specifying that the data has not been parsed */
    1.57 +	KUriUtilsErrNotParsed					= KUriUtilsErrorBase - 5,
    1.58 +	/** Error specifying that a 16-bit character was found in data to be escape encode */
    1.59 +	KUriUtilsErr16BitChar					= KUriUtilsErrorBase - 6,
    1.60 +	/** Error specifying that a badly formed escape triple was found in data being escape decoded */
    1.61 +	KUriUtilsErrBadEscapeTriple				= KUriUtilsErrorBase - 7,
    1.62 +	/** Error specifying that charconv was unable to convert the input data */
    1.63 +	KUriUtilsCannotConvert					= KUriUtilsErrorBase - 8,
    1.64 +	/** Error specifying that there	was empty data */
    1.65 +	KUriUtilsErrEmptyData					= KUriUtilsErrorBase - 9,
    1.66 +	/** Error specifying that there is no character representation of an integer */
    1.67 +	KUriUtilsErrNoIntegerInData			= KUriUtilsErrorBase - 10,
    1.68 +	/** Error code specifying an invalid uri */
    1.69 +	KUriUtilsErrInvalidUri					= KUriUtilsErrorBase - 11,
    1.70 +	/** Error code for unsupported escaping mode */
    1.71 +	KUriUtilsErrBadEscapeMode				= KUriUtilsErrorBase - 12,
    1.72 +	/** Error code for unsupported text whitespace removal mode */
    1.73 +	KUriUtilsErrBadTextRemoveMode			= KUriUtilsErrorBase - 13,
    1.74 +	/**	Quoted string could not be decoded as it is malformed. */
    1.75 +	KUriUtilsErrDecodeMalformedQuotedString	= KUriUtilsErrorBase - 14,
    1.76 +	/** Error code specifying an invalid scheme */
    1.77 +	KUriUtilsErrInvalidScheme				= KUriUtilsErrorBase - 15,
    1.78 +	/** Error code specifying an invalid username and/or password */
    1.79 +	KUriUtilsErrInvalidUserInfo				= KUriUtilsErrorBase - 16,
    1.80 +	/** Error code specifying an invalid host */
    1.81 +	KUriUtilsErrInvalidHost					= KUriUtilsErrorBase - 17,
    1.82 +	/** Error code specifying an invalid port */
    1.83 +	KUriUtilsErrInvalidPort					= KUriUtilsErrorBase - 18,
    1.84 +	/** Error code specifying an invalid path */
    1.85 +	KUriUtilsErrInvalidPath					= KUriUtilsErrorBase - 19,
    1.86 +	/** Error code specifying an invalid sip parameter */
    1.87 +	KUriUtilsErrInvalidParam				= KUriUtilsErrorBase - 20,
    1.88 +	/** Error code specifying an invalid query */
    1.89 +	KUriUtilsErrInvalidQuery				= KUriUtilsErrorBase - 21,
    1.90 +	/** Error code specifying an invalid sip headers */
    1.91 +	KUriUtilsErrInvalidHeaders				= KUriUtilsErrorBase - 22,
    1.92 +	/** Error code specifying an invalid fragment */
    1.93 +	KUriUtilsErrInvalidFragment				= KUriUtilsErrorBase - 23,
    1.94 +	/** Error code specifying that schemes are not equivalent */
    1.95 +	KUriUtilsErrDifferentScheme				= KUriUtilsErrorBase - 24, 
    1.96 +	/** Error code specifying that usernames and passwords are not equivalent */
    1.97 +	KUriUtilsErrDifferentUserInfo			= KUriUtilsErrorBase - 25,
    1.98 +	/** Error code specifying that hosts are not equivalent */
    1.99 +	KUriUtilsErrDifferentHost				= KUriUtilsErrorBase - 26,
   1.100 +	/** Error code specifying that ports are not equivalent */
   1.101 +	KUriUtilsErrDifferentPort				= KUriUtilsErrorBase - 27,
   1.102 +	/** Error code specifying that paths are not equivalent */
   1.103 +	KUriUtilsErrDifferentPath				= KUriUtilsErrorBase - 28,
   1.104 +	/** Error code specifying that queries are not equivalent */
   1.105 +	KUriUtilsErrDifferentQuery				= KUriUtilsErrorBase - 30,
   1.106 +	/** Error code specifying that fragments are not equivalent */
   1.107 +    KUriUtilsErrDifferentFragment			= KUriUtilsErrorBase - 32,
   1.108 +	/** Error code specifying that a non-numeric character was found in data */
   1.109 +    KUriUtilsErrMalformedInteger			= KUriUtilsErrorBase - 33
   1.110 +	};
   1.111 +
   1.112 +// Constants
   1.113 +//
   1.114 +/** Scheme Delimiter */
   1.115 +const TInt KSchemeDelimiter		= ':';
   1.116 +/** Userinfo Delimiter */
   1.117 +const TInt KUserinfoDelimiter	= '@';
   1.118 +/** Equals Separator */
   1.119 +const TInt KUserPwdSeparator	= ':';
   1.120 +/** close Brace */
   1.121 +const TInt KEqualsSeparator		= '=';
   1.122 +/** Slash Delimiter */
   1.123 +const TInt KPortDelimiter		= ':';
   1.124 +/** close Brace */
   1.125 +const TInt KSlashDelimiter		= '/';
   1.126 +/** Fragment Delimiter */
   1.127 +const TInt KQueryDelimiter		= '?';
   1.128 +/** close Brace */
   1.129 +const TInt KFragmentDelimiter	= '#';
   1.130 +/** param delimiter */
   1.131 +const TInt KParamDelimiter		= ';';
   1.132 +/** open Brace */
   1.133 +const TInt KIPv6UriOpenBrace	= '[';
   1.134 +/** close Brace */
   1.135 +const TInt KIPv6UriCloseBrace	= ']';
   1.136 +
   1.137 +#endif	// __URIUTILSCOMMON_H__