os/ossrv/lowlevellibsandfws/apputils/inc/BaRsRead2.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) 2003-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
#ifndef __BARSREAD2_H__
sl@0
    17
#define __BARSREAD2_H__
sl@0
    18
sl@0
    19
#include <e32std.h>
sl@0
    20
#include <badesca.h>
sl@0
    21
sl@0
    22
//Forward declarations
sl@0
    23
class TResourceReaderImpl;
sl@0
    24
class CResourceFile;
sl@0
    25
sl@0
    26
/** Interprets resource data read from a resource file.
sl@0
    27
sl@0
    28
To use an instance of this class, pass the CResourceFile object containing the resource 
sl@0
    29
data with aResourceId ID to it, by calling OpenL() or OpenLC(). Close the reader
sl@0
    30
calling Close() after finishing with the resource.
sl@0
    31
sl@0
    32
The current position within the buffer is always maintained and any request 
sl@0
    33
for data is always supplied from the current position. The current position 
sl@0
    34
is always updated .
sl@0
    35
sl@0
    36
Expected behaviour when assignment operator or copy constructor is called:
sl@0
    37
The class doesn't have assignment operator and copy constructor, so the compiler generated
sl@0
    38
ones will be used. The buffer used by the source class instance will be shared with the 
sl@0
    39
destination class instance. However source and destination instances will have their own 
sl@0
    40
current position pointers, both pointed initially to the same buffer position.
sl@0
    41
sl@0
    42
@publishedAll
sl@0
    43
@released
sl@0
    44
@see CResourceFile */
sl@0
    45
class RResourceReader
sl@0
    46
	{
sl@0
    47
public:
sl@0
    48
	IMPORT_C RResourceReader();
sl@0
    49
	IMPORT_C ~RResourceReader();
sl@0
    50
	IMPORT_C void OpenL(const CResourceFile* aRscFile, TInt aResourceId);
sl@0
    51
	IMPORT_C void OpenLC(const CResourceFile* aRscFile, TInt aResourceId);
sl@0
    52
	IMPORT_C void OpenL(const TDesC8& aRscData);
sl@0
    53
	IMPORT_C void OpenLC(const TDesC8& aRscData);
sl@0
    54
	IMPORT_C void Close();
sl@0
    55
sl@0
    56
    // Read counted strings into allocated buffer
sl@0
    57
    IMPORT_C HBufC*   ReadHBufCL();
sl@0
    58
    IMPORT_C HBufC8*  ReadHBufC8L();
sl@0
    59
    IMPORT_C HBufC16* ReadHBufC16L();
sl@0
    60
sl@0
    61
    // Build pointer from a counted string
sl@0
    62
    IMPORT_C TPtrC   ReadTPtrCL();
sl@0
    63
    IMPORT_C TPtrC8  ReadTPtrC8L();
sl@0
    64
    IMPORT_C TPtrC16 ReadTPtrC16L();
sl@0
    65
sl@0
    66
    // Build an array of strings from a resource array
sl@0
    67
    IMPORT_C CDesCArrayFlat*   ReadDesCArrayL();
sl@0
    68
    IMPORT_C CDesC8ArrayFlat*  ReadDesC8ArrayL();
sl@0
    69
    IMPORT_C CDesC16ArrayFlat* ReadDesC16ArrayL();
sl@0
    70
sl@0
    71
    IMPORT_C TInt ReadInt8L();
sl@0
    72
    IMPORT_C TUint ReadUint8L();
sl@0
    73
    IMPORT_C TInt ReadInt16L();
sl@0
    74
    IMPORT_C TUint ReadUint16L();
sl@0
    75
    IMPORT_C TInt ReadInt32L();
sl@0
    76
    IMPORT_C TUint ReadUint32L();
sl@0
    77
    IMPORT_C TReal64 ReadReal64L() __SOFTFP;
sl@0
    78
sl@0
    79
    IMPORT_C void ReadL(TAny* aPtr,TInt aLength);
sl@0
    80
    IMPORT_C void RewindL(TInt aLength);
sl@0
    81
    IMPORT_C void AdvanceL(TInt aLength);
sl@0
    82
private:
sl@0
    83
	TResourceReaderImpl* Impl();
sl@0
    84
	const TResourceReaderImpl* Impl() const;
sl@0
    85
private:
sl@0
    86
	//Size of the RResourceReader implementation.
sl@0
    87
	//It should be 12 because of the BC reasons.
sl@0
    88
	//That's the size of the implementation class,
sl@0
    89
	//which implements TResourceReader functionality too.
sl@0
    90
	enum
sl@0
    91
		{
sl@0
    92
		KRsReaderSize = 12
sl@0
    93
		};
sl@0
    94
	TUint8 iImpl[KRsReaderSize];
sl@0
    95
	HBufC8* iRscBuffer;
sl@0
    96
	};
sl@0
    97
sl@0
    98
#endif//__BARSREAD2_H__