sl@0
|
1 |
// Copyright (c) 1997-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 the License "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 |
// /os/kernelhwsrv/kerneltest/f32test/concur/cfafshmem.h
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#ifndef __CFAFSHMEM_H__
|
sl@0
|
19 |
#define __CFAFSHMEM_H__
|
sl@0
|
20 |
|
sl@0
|
21 |
#include <f32file.h>
|
sl@0
|
22 |
#include <d32locd.h>
|
sl@0
|
23 |
#include <e32test.h>
|
sl@0
|
24 |
#include "t_server.h"
|
sl@0
|
25 |
|
sl@0
|
26 |
const TInt KNoMessage = 0;
|
sl@0
|
27 |
const TInt KNoOffset = 0;
|
sl@0
|
28 |
|
sl@0
|
29 |
class THMem
|
sl@0
|
30 |
/**
|
sl@0
|
31 |
* Memory base class.
|
sl@0
|
32 |
*/
|
sl@0
|
33 |
{
|
sl@0
|
34 |
private:
|
sl@0
|
35 |
/// Copy constructor and assignment operator shall not be implemented.
|
sl@0
|
36 |
THMem(const THMem&);
|
sl@0
|
37 |
THMem& operator=(const THMem&);
|
sl@0
|
38 |
|
sl@0
|
39 |
public:
|
sl@0
|
40 |
THMem(void * aNewMemPtr);
|
sl@0
|
41 |
THMem(const void * aNewMemPtr, const RMessagePtr2 &aMessage, int aNewOffset=0);
|
sl@0
|
42 |
TInt Read(void *aBuf, TUint32 aLength, TUint aOffset = 0) const;
|
sl@0
|
43 |
TInt Write(const void *aBuf, TUint32 aLength, TUint32 aOffset = 0);
|
sl@0
|
44 |
inline operator TUint8*() const { return (TUint8*)(iMemPtr); }
|
sl@0
|
45 |
inline operator TUint16*() const { return (TUint16*)(iMemPtr); }
|
sl@0
|
46 |
inline operator TUint32*() const { return (TUint32*)(iMemPtr); }
|
sl@0
|
47 |
private:
|
sl@0
|
48 |
void* iMemPtr;
|
sl@0
|
49 |
RMessagePtr2* iMessage;
|
sl@0
|
50 |
TInt iBaseOffset;
|
sl@0
|
51 |
};
|
sl@0
|
52 |
|
sl@0
|
53 |
#endif
|