os/ossrv/lowlevellibsandfws/apputils/inc/BaRsReadImpl.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
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 __BARSREADIMPL_H__
sl@0
    17
#define __BARSREADIMPL_H__
sl@0
    18
sl@0
    19
#include <e32std.h>
sl@0
    20
#include <badesca.h>
sl@0
    21
#include "BaAssert.h"
sl@0
    22
sl@0
    23
/** Interprets resource data read from a resource file.
sl@0
    24
sl@0
    25
To use an instance of this class, pass the buffer containing the resource 
sl@0
    26
data to it by calling SetBuffer().
sl@0
    27
sl@0
    28
The buffer containing the resource data is created by RResourceFile::AllocReadLC()/CResourceFile::AllocReadLC() 
sl@0
    29
or RResourceFile::AllocReadL()/CResourceFile::AllocReadL() which reads the specified resource into it.
sl@0
    30
sl@0
    31
The current position within the buffer is always maintained and any request 
sl@0
    32
for data is always supplied from the current position. The current position 
sl@0
    33
is always updated .
sl@0
    34
sl@0
    35
Expected behaviour when assignment operator or copy constructor is called:
sl@0
    36
The class doesn't have assignment operator and copy constructor, so the compiler generated
sl@0
    37
ones will be used. The buffer used by the source class instance will be shared with the 
sl@0
    38
destination class instance. However source and destination instances will have their own 
sl@0
    39
current position pointers, both pointed initially to the same buffer position.
sl@0
    40
sl@0
    41
Methods panic/leave behaviour: "L" methods panics/leave behaviour depends on iAssertObj
sl@0
    42
member which could be initialized calling SetAssertObj. If iAssertObj internal state is 
sl@0
    43
TBaAssert::EPanic - "L" methods will panic, otherwise they will leave if something goes wrong.
sl@0
    44
By default "L" methods will panic.
sl@0
    45
sl@0
    46
@internalComponent
sl@0
    47
@see TResourceReaderImpl::SetBuffer()
sl@0
    48
@see RResourceFile::AllocReadL()
sl@0
    49
@see RResourceFile::AllocReadLC()
sl@0
    50
@see CResourceFile::AllocReadL()
sl@0
    51
@see CResourceFile::AllocReadLC() */
sl@0
    52
class TResourceReaderImpl
sl@0
    53
    {
sl@0
    54
public:
sl@0
    55
	TResourceReaderImpl();
sl@0
    56
sl@0
    57
    void SetBuffer(const TDesC8* aBuffer);
sl@0
    58
	void ResetBuffer();
sl@0
    59
    const TAny* Ptr();
sl@0
    60
sl@0
    61
    // Read counted strings into allocated buffer
sl@0
    62
    HBufC8*  ReadHBufC8L();
sl@0
    63
    HBufC16* ReadHBufC16L();
sl@0
    64
sl@0
    65
    // Build pointer from a counted string
sl@0
    66
    TPtrC8  ReadTPtrC8L();
sl@0
    67
    TPtrC16 ReadTPtrC16L();
sl@0
    68
sl@0
    69
    // Build pointer from a counted string in an array of counted strings,
sl@0
    70
    // also setting the buffer to be used.
sl@0
    71
    TPtrC8 ReadTPtrC8L(TInt aIndex,const TDesC8* aBuffer);
sl@0
    72
    TPtrC16 ReadTPtrC16L(TInt aIndex,const TDesC8* aBuffer);
sl@0
    73
sl@0
    74
    // Build an array of strings from a resource array
sl@0
    75
    CDesC8ArrayFlat*  ReadDesC8ArrayL();
sl@0
    76
    CDesC16ArrayFlat* ReadDesC16ArrayL();
sl@0
    77
sl@0
    78
    TInt ReadInt8L();
sl@0
    79
    TUint ReadUint8L();
sl@0
    80
    TInt ReadInt16L();
sl@0
    81
    TUint ReadUint16L();
sl@0
    82
    TInt ReadInt32L();
sl@0
    83
    TUint ReadUint32L();
sl@0
    84
    TReal64 ReadReal64L() __SOFTFP;
sl@0
    85
sl@0
    86
    void ReadL(TAny* aPtr,TInt aLength);
sl@0
    87
    void RewindL(TInt aLength);
sl@0
    88
    void AdvanceL(TInt aLength);
sl@0
    89
sl@0
    90
	void SetAssertObj(const TBaAssert& iAssertObj);
sl@0
    91
private:
sl@0
    92
    void MovePtrL(const TUint8* aPtr);
sl@0
    93
private:
sl@0
    94
    const TDesC8* iBuffer;
sl@0
    95
    const TUint8* iCurrentPtr;
sl@0
    96
    TBaAssert iAssertObj;
sl@0
    97
    };
sl@0
    98
sl@0
    99
#endif//__BARSREADIMPL_H__