os/ossrv/genericservices/httputils/inc/UriUtils.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 UriUtils.h
sl@0
    20
 @publishedAll
sl@0
    21
 @released
sl@0
    22
*/
sl@0
    23
sl@0
    24
#ifndef __URIUTILS_H__
sl@0
    25
#define __URIUTILS_H__
sl@0
    26
sl@0
    27
// System includes
sl@0
    28
//
sl@0
    29
#include <e32base.h>
sl@0
    30
#include <authority8.h>
sl@0
    31
#include <uri8.h>
sl@0
    32
#include <uri16.h>
sl@0
    33
sl@0
    34
sl@0
    35
/**
sl@0
    36
  Comments :
sl@0
    37
  @publishedAll
sl@0
    38
  @released
sl@0
    39
*/
sl@0
    40
class UriUtils
sl@0
    41
	{
sl@0
    42
public:
sl@0
    43
/** 
sl@0
    44
	Enum defining a flag used to indicate host type.
sl@0
    45
	@publishedAll
sl@0
    46
	@released
sl@0
    47
	@since 9.1	
sl@0
    48
 */
sl@0
    49
	enum TUriHostType
sl@0
    50
		{
sl@0
    51
		/** 
sl@0
    52
			Indicates host is of type IPv6. Example: 1080:0:0:0:8:800:200C:417A 
sl@0
    53
		 */
sl@0
    54
		EIPv6Host,
sl@0
    55
		/**
sl@0
    56
			Indicates host is of type IPv4. Example: 192.168.202.18 
sl@0
    57
		 */
sl@0
    58
		EIPv4Host,
sl@0
    59
		/** 
sl@0
    60
			Indicates host is in text form. Example: www.mypage.com 
sl@0
    61
		 */
sl@0
    62
		ETextHost,
sl@0
    63
		};
sl@0
    64
sl@0
    65
	IMPORT_C static CUri8* ConvertToInternetFormL(const TUriC16& aUri);
sl@0
    66
	IMPORT_C static CUri16* ConvertToDisplayFormL(const TUriC8& aUri);
sl@0
    67
sl@0
    68
	IMPORT_C static CUri8* CreateUriL(const TDesC& aUri);
sl@0
    69
	IMPORT_C static CAuthority8* CreateAuthorityL(const TDesC& aAuthority) ;
sl@0
    70
sl@0
    71
	IMPORT_C static TBool HasInvalidChars(const TDesC8& aData);
sl@0
    72
	IMPORT_C static TBool HasInvalidChars(const TDesC16& aData);
sl@0
    73
sl@0
    74
	IMPORT_C static TUriHostType HostType(const TDesC8& aHost);
sl@0
    75
	IMPORT_C static TUriHostType HostType(const TDesC16& aHost);
sl@0
    76
	IMPORT_C static CUri8* NormaliseUriL(const TUriC8& aUri);
sl@0
    77
	};
sl@0
    78
sl@0
    79
#endif	// __URIUTILS_H__