Location:
Uri8.h
Link against: inetprotutil.lib
class CUri8 : public CBase;
Dependencies : CBase
, TUriC8
. Comments : Provides modifying functionality on the components of a uri object, as defined in RFC2396. There are 5 components;
scheme. authority, path, query and fragment.
The object holds parsed uri information. It is owning. It uses 8-bit descriptors.
The functionality provided by this API allows the uri components to be set or removed from this parsed uri. Also, it provides
a reference to TUriC8
object so that the non-modifying functionality can be used.
CBase
- Base class for all classes to be instantiated on the heap
CUri8
- Dependencies :
Defined in CUri8
:
CreateFileUriL()
, CreatePrivateFileUriL()
, NewL()
, NewL()
, NewLC()
, NewLC()
, RemoveComponentL()
, ResolveL()
, SetComponentL()
, Uri()
, ~CUri8()
Inherited from CBase
:
Delete()
,
Extension_()
,
operator new()
static IMPORT_C CUri8 *NewL(const TUriC8 &aUri);
Static factory constructor. Uses two phase construction and leaves nothing on the CleanupStack
. Creates a uri object which is a copy of the input parameter aUri.
A fully constructed and initialized CUri8 object.
|
|
static IMPORT_C CUri8 *NewLC(const TUriC8 &aUri);
Static factory constructor. Uses two phase construction and leaves a pointer to created object on the CleanupStack
. Creates a uri object which is a copy of the input parameter aUri.
A fully constructed and initialized CUri8 object.
|
|
static IMPORT_C CUri8 *NewL();
Static factory constructor. Uses two phase construction and leaves nothing on the CleanupStack
. Creates a uri object which is empty.
A fully constructed and initialized CUri8 object.
|
static IMPORT_C CUri8 *NewLC();
Static factory constructor. Uses two phase construction and leaves a pointer to created object on the CleanupStack
. Creates a uri object which is empty.
A fully constructed and initialized CUri8 object.
|
static IMPORT_C CUri8 *CreateFileUriL(const TDesC &aFullFileName, TUint aFlags=0);
Allocates and constructs a file URI object for a specified file.
If the file exists on a fixed drive, then the file URI takes the form: 'file:///<drive-letter>/<filepath including filename>'.
If the file exists on a removable media drive, then the file URI takes the form: 'file:///ext-media/<filepath including filename>'.
A fully constructed and initialized file URI (CUri8) object.
|
|
static IMPORT_C CUri8 *CreatePrivateFileUriL(const TDesC &aRelativeFileName, TDriveNumber aDrive, TInt aFlags=0);
Allocates and constructs a file URI object for a file that is private to the application.
If the file exists on a fixed drive, then the file URI takes the form 'file:///private/<drive-letter>/<filepath including filename>'.
If the file exists on a removable media drive, then the file URI takes the form 'file:///private/ext-media/<filepath including filename>'.
A fully constructed and initialized file URI (CUri8) object.
|
|
static IMPORT_C CUri8 *ResolveL(const TUriC8 &aBaseUri, const TUriC8 &aRefUri);
The base uri must have an absolute or empty path, otherwise will leave with KUriErrBadBasePath.
Static factory constructor. This creates a CUri16
object that is an absolute uri resulting from a reference uri being resolved against a base uri.
A fully constructed and initialized CUri8 object.
|
|
|
IMPORT_C const TUriC8 &Uri() const;
Provides a reference to the parsed uri. Allows access to the non-modifying API for TUriC8
.
|
IMPORT_C void SetComponentL(const TDesC8 &aData, TUriComponent aComponent);
Object is fully constructed.
Intended Usage : Sets the specified component in the uri. The component is set to the value given in the argument aData. If the specified component already exists then it is replaced with the new value.
The uri has the specified component set to the new value.
|
IMPORT_C void RemoveComponentL(TUriComponent aComponent);
Object is fully constructed.
Removes the specified component from the uri. If the component does not exist then this function does nothing.
The uri is updated to exclude the specified component.
|