os/ossrv/lowlevellibsandfws/apputils/inc/BaRsc2.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 __BARSC2_H__
sl@0
    17
#define __BARSC2_H__
sl@0
    18
sl@0
    19
#include <f32file.h>
sl@0
    20
sl@0
    21
//Forward declarations
sl@0
    22
class RResourceFileImpl;
sl@0
    23
sl@0
    24
/** Accesses a resource file or resource file buffer and reads the 
sl@0
    25
resource data into a buffer.
sl@0
    26
sl@0
    27
Interpretation of the data is achieved using the RResourceReader class.
sl@0
    28
CResourceFile methods behaviour when some problem occurs - it leaves
sl@0
    29
with an error code. Most of the time the error code will be KErrCorrupt.
sl@0
    30
sl@0
    31
@publishedAll 
sl@0
    32
@released
sl@0
    33
@see RResourceReader */
sl@0
    34
class CResourceFile : public CBase
sl@0
    35
	{
sl@0
    36
public:
sl@0
    37
	IMPORT_C static CResourceFile* NewL(RFs& aFs, const TDesC& aName, 
sl@0
    38
										TUint aFileOffset, TInt aFileSize);
sl@0
    39
	IMPORT_C static CResourceFile* NewLC(RFs& aFs, const TDesC& aName, 
sl@0
    40
										TUint aFileOffset, TInt aFileSize);
sl@0
    41
	IMPORT_C static CResourceFile* NewL(const TDesC8& aRscFileBuffer);
sl@0
    42
	IMPORT_C virtual ~CResourceFile();
sl@0
    43
	IMPORT_C TUidType UidType() const;
sl@0
    44
	IMPORT_C void ReadL(TDes8 &aDes,TInt aResourceId) const;
sl@0
    45
	IMPORT_C HBufC8 *AllocReadL(TInt aResourceId) const;
sl@0
    46
	IMPORT_C HBufC8 *AllocReadLC(TInt aResourceId) const;
sl@0
    47
	IMPORT_C void ConfirmSignatureL(TInt aSignature);
sl@0
    48
	IMPORT_C void ConfirmSignatureL();
sl@0
    49
	IMPORT_C TInt SignatureL() const;
sl@0
    50
	IMPORT_C TBool OwnsResourceIdL(TInt aResourceId) const;
sl@0
    51
	IMPORT_C TInt Offset() const;
sl@0
    52
private:
sl@0
    53
	CResourceFile();
sl@0
    54
	CResourceFile(const CResourceFile&);//prevent default copy constructor
sl@0
    55
	CResourceFile& operator=(const CResourceFile&);//prevent default "=" operator
sl@0
    56
	void ConstructL(RFs& aFs, const TDesC& aName, TUint aFileOffset, TInt aFileSize);
sl@0
    57
	void ConstructL(const TDesC8& aRscFileBuffer);
sl@0
    58
	RResourceFileImpl* Impl();
sl@0
    59
	const RResourceFileImpl* Impl() const;
sl@0
    60
private:
sl@0
    61
	enum
sl@0
    62
		{
sl@0
    63
		KRscFileSize = 24
sl@0
    64
		};
sl@0
    65
	TUint8 iImpl[KRscFileSize];
sl@0
    66
	};
sl@0
    67
sl@0
    68
#endif//__BARSC2_H__