os/ossrv/genericservices/httputils/inc/UriUtilsCommon.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2001-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
// 
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
/**
sl@0
    19
 @file UriUtilsCommon.h
sl@0
    20
 @publishedAll
sl@0
    21
 @released
sl@0
    22
*/
sl@0
    23
sl@0
    24
#ifndef __URIUTILSCOMMON_H__
sl@0
    25
#define __URIUTILSCOMMON_H__
sl@0
    26
sl@0
    27
// System includes
sl@0
    28
//
sl@0
    29
#include <e32base.h>
sl@0
    30
sl@0
    31
/** Error Base value */
sl@0
    32
const TInt KUriUtilsErrorBase		= -5000;
sl@0
    33
sl@0
    34
/**	
sl@0
    35
enum TUriError
sl@0
    36
Enum defining the error and panic codes used in the UriUtils components.
sl@0
    37
@publishedAll
sl@0
    38
@released
sl@0
    39
@since 6.0
sl@0
    40
*/
sl@0
    41
enum TUriUtilsError
sl@0
    42
	{
sl@0
    43
	/** Error specifying the use of an invalid component index */
sl@0
    44
	KUriUtilsErrBadComponentIndex			= KUriUtilsErrorBase,
sl@0
    45
	/** Error specifying the use of a base uri path is not absolute and not empty */
sl@0
    46
	KUriUtilsErrBadBasePath					= KUriUtilsErrorBase - 1,
sl@0
    47
	/** Error specifying that a buffer is not big enough to append a component and delimiters */
sl@0
    48
	KUriUtilsErrBufferOverflow				= KUriUtilsErrorBase - 2,
sl@0
    49
	/** Error specifying the use of an supported parsing mode */
sl@0
    50
	KUriUtilsErrBadDelimitedParserMode		= KUriUtilsErrorBase - 3,
sl@0
    51
	/** Error specifying that the delimiting character is not set */
sl@0
    52
	KUriUtilsErrNoDelimiter					= KUriUtilsErrorBase - 4,
sl@0
    53
	/** Error specifying that the data has not been parsed */
sl@0
    54
	KUriUtilsErrNotParsed					= KUriUtilsErrorBase - 5,
sl@0
    55
	/** Error specifying that a 16-bit character was found in data to be escape encode */
sl@0
    56
	KUriUtilsErr16BitChar					= KUriUtilsErrorBase - 6,
sl@0
    57
	/** Error specifying that a badly formed escape triple was found in data being escape decoded */
sl@0
    58
	KUriUtilsErrBadEscapeTriple				= KUriUtilsErrorBase - 7,
sl@0
    59
	/** Error specifying that charconv was unable to convert the input data */
sl@0
    60
	KUriUtilsCannotConvert					= KUriUtilsErrorBase - 8,
sl@0
    61
	/** Error specifying that there	was empty data */
sl@0
    62
	KUriUtilsErrEmptyData					= KUriUtilsErrorBase - 9,
sl@0
    63
	/** Error specifying that there is no character representation of an integer */
sl@0
    64
	KUriUtilsErrNoIntegerInData			= KUriUtilsErrorBase - 10,
sl@0
    65
	/** Error code specifying an invalid uri */
sl@0
    66
	KUriUtilsErrInvalidUri					= KUriUtilsErrorBase - 11,
sl@0
    67
	/** Error code for unsupported escaping mode */
sl@0
    68
	KUriUtilsErrBadEscapeMode				= KUriUtilsErrorBase - 12,
sl@0
    69
	/** Error code for unsupported text whitespace removal mode */
sl@0
    70
	KUriUtilsErrBadTextRemoveMode			= KUriUtilsErrorBase - 13,
sl@0
    71
	/**	Quoted string could not be decoded as it is malformed. */
sl@0
    72
	KUriUtilsErrDecodeMalformedQuotedString	= KUriUtilsErrorBase - 14,
sl@0
    73
	/** Error code specifying an invalid scheme */
sl@0
    74
	KUriUtilsErrInvalidScheme				= KUriUtilsErrorBase - 15,
sl@0
    75
	/** Error code specifying an invalid username and/or password */
sl@0
    76
	KUriUtilsErrInvalidUserInfo				= KUriUtilsErrorBase - 16,
sl@0
    77
	/** Error code specifying an invalid host */
sl@0
    78
	KUriUtilsErrInvalidHost					= KUriUtilsErrorBase - 17,
sl@0
    79
	/** Error code specifying an invalid port */
sl@0
    80
	KUriUtilsErrInvalidPort					= KUriUtilsErrorBase - 18,
sl@0
    81
	/** Error code specifying an invalid path */
sl@0
    82
	KUriUtilsErrInvalidPath					= KUriUtilsErrorBase - 19,
sl@0
    83
	/** Error code specifying an invalid sip parameter */
sl@0
    84
	KUriUtilsErrInvalidParam				= KUriUtilsErrorBase - 20,
sl@0
    85
	/** Error code specifying an invalid query */
sl@0
    86
	KUriUtilsErrInvalidQuery				= KUriUtilsErrorBase - 21,
sl@0
    87
	/** Error code specifying an invalid sip headers */
sl@0
    88
	KUriUtilsErrInvalidHeaders				= KUriUtilsErrorBase - 22,
sl@0
    89
	/** Error code specifying an invalid fragment */
sl@0
    90
	KUriUtilsErrInvalidFragment				= KUriUtilsErrorBase - 23,
sl@0
    91
	/** Error code specifying that schemes are not equivalent */
sl@0
    92
	KUriUtilsErrDifferentScheme				= KUriUtilsErrorBase - 24, 
sl@0
    93
	/** Error code specifying that usernames and passwords are not equivalent */
sl@0
    94
	KUriUtilsErrDifferentUserInfo			= KUriUtilsErrorBase - 25,
sl@0
    95
	/** Error code specifying that hosts are not equivalent */
sl@0
    96
	KUriUtilsErrDifferentHost				= KUriUtilsErrorBase - 26,
sl@0
    97
	/** Error code specifying that ports are not equivalent */
sl@0
    98
	KUriUtilsErrDifferentPort				= KUriUtilsErrorBase - 27,
sl@0
    99
	/** Error code specifying that paths are not equivalent */
sl@0
   100
	KUriUtilsErrDifferentPath				= KUriUtilsErrorBase - 28,
sl@0
   101
	/** Error code specifying that queries are not equivalent */
sl@0
   102
	KUriUtilsErrDifferentQuery				= KUriUtilsErrorBase - 30,
sl@0
   103
	/** Error code specifying that fragments are not equivalent */
sl@0
   104
    KUriUtilsErrDifferentFragment			= KUriUtilsErrorBase - 32,
sl@0
   105
	/** Error code specifying that a non-numeric character was found in data */
sl@0
   106
    KUriUtilsErrMalformedInteger			= KUriUtilsErrorBase - 33
sl@0
   107
	};
sl@0
   108
sl@0
   109
// Constants
sl@0
   110
//
sl@0
   111
/** Scheme Delimiter */
sl@0
   112
const TInt KSchemeDelimiter		= ':';
sl@0
   113
/** Userinfo Delimiter */
sl@0
   114
const TInt KUserinfoDelimiter	= '@';
sl@0
   115
/** Equals Separator */
sl@0
   116
const TInt KUserPwdSeparator	= ':';
sl@0
   117
/** close Brace */
sl@0
   118
const TInt KEqualsSeparator		= '=';
sl@0
   119
/** Slash Delimiter */
sl@0
   120
const TInt KPortDelimiter		= ':';
sl@0
   121
/** close Brace */
sl@0
   122
const TInt KSlashDelimiter		= '/';
sl@0
   123
/** Fragment Delimiter */
sl@0
   124
const TInt KQueryDelimiter		= '?';
sl@0
   125
/** close Brace */
sl@0
   126
const TInt KFragmentDelimiter	= '#';
sl@0
   127
/** param delimiter */
sl@0
   128
const TInt KParamDelimiter		= ';';
sl@0
   129
/** open Brace */
sl@0
   130
const TInt KIPv6UriOpenBrace	= '[';
sl@0
   131
/** close Brace */
sl@0
   132
const TInt KIPv6UriCloseBrace	= ']';
sl@0
   133
sl@0
   134
#endif	// __URIUTILSCOMMON_H__