Update contrib.
1 // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // surface manager API
18 #include "tsmgmultprocessshared.h"
19 #include <e32def_private.h>
22 Creates a wrapper object for a shared chunk between processes
24 CChunkWrapper* CChunkWrapper::CreateL(const TDesC& aName, TInt aSize, TInt aMaxSize)
26 CChunkWrapper* self = new(ELeave) CChunkWrapper();
27 CleanupStack::PushL(self);
28 self->CreateConstructL(aName, aSize, aMaxSize);
29 CleanupStack::Pop(self);
34 Second phase creation of the shared chunk wrapper
36 void CChunkWrapper::CreateConstructL(const TDesC& aName, TInt aSize, TInt aMaxSize)
38 User::LeaveIfError(iChunk.CreateGlobal(aName, aSize, aMaxSize));
42 Opens an alerady created wrapper for a chunk that we share between processes
44 CChunkWrapper* CChunkWrapper::OpenL(const TDesC& aName, TBool aIsReadOnly)
46 CChunkWrapper* self = new(ELeave) CChunkWrapper();
47 CleanupStack::PushL(self);
48 self->OpenConstructL(aName, aIsReadOnly);
49 CleanupStack::Pop(self);
54 Second phase opening a previously created chunk
56 void CChunkWrapper::OpenConstructL(const TDesC& aName, TBool aIsReadOnly)
58 User::LeaveIfError(iChunk.OpenGlobal(aName, aIsReadOnly));
64 CChunkWrapper::~CChunkWrapper()
71 CChunkWrapper::CChunkWrapper()
77 Sets the results (bitmapped into a TInt) of all the second process tests
79 Second process results always reside in the first sizeof(TInt) bytes of the chunk
81 void CChunkWrapper::SetSecondProcessResults(TInt aResult)
83 TUint8* ptr = iChunk.Base();
84 TInt* intPtr = reinterpret_cast<TInt*>(ptr);
89 Gets the results (bitmapped into a TInt) of all the second process tests
91 Second process results always reside in the first sizeof(TInt) bytes of the chunk
93 TInt CChunkWrapper::GetSecondProcessResults()
95 TUint8* ptr = iChunk.Base();
96 TInt* intPtr = reinterpret_cast<TInt*>(ptr);
101 Sets the results (bitmapped into a TInt) of all the third process tests
103 Third process results always reside in the second sizeof(TInt) bytes of the chunk
105 void CChunkWrapper::SetThirdProcessResults(TInt aResult)
107 TUint8* ptr = iChunk.Base();
108 TInt* intPtr = reinterpret_cast<TInt*>(ptr);
109 intPtr++; // Offset to second TInt in the chunk
114 Gets the results (bitmapped into a TInt) of all the second process tests
116 Second process results always reside in the first sizeof(TInt) bytes of the chunk
118 TInt CChunkWrapper::GetThirdProcessResults()
120 TUint8* ptr = iChunk.Base();
121 TInt* intPtr = reinterpret_cast<TInt*>(ptr);
122 intPtr++; // Offset to second TInt in the chunk
128 Puts the surfaceId of a surface on the shared chunk
130 void CChunkWrapper::SetId(const TSurfaceId& aId)
132 TUint8* ptr = iChunk.Base();
133 TInt* intPtr = reinterpret_cast<TInt*>(ptr);
134 intPtr += 2; // Offset past first two TInts in the chunk
135 TUint32* uintPtr = reinterpret_cast<TUint32*>(intPtr);
136 for(TInt ii = 0; ii < 4; ++ii, ++uintPtr)
138 *uintPtr = aId.iInternal[ii];
143 Reads the surfaceId of a surface off the shared chunk
145 TSurfaceId CChunkWrapper::GetId()
148 TUint8* ptr = iChunk.Base();
149 TInt* intPtr = reinterpret_cast<TInt*>(ptr);
150 intPtr += 2; // Offset past first two TInts in the chunk
151 TUint32* uintPtr = reinterpret_cast<TUint32*>(intPtr);
152 for(TInt ii = 0; ii < 4; ++ii, ++uintPtr)
154 id.iInternal[ii] = *uintPtr;
159 CTestDriver::CTestDriver()
164 void CTestDriver::ConstructL()
166 User::LeaveIfError(iSurfaceManager.Open());
167 TRAPD(err,iChunkWrapper = CChunkWrapper::OpenL(KSharedChunkName, ETrue));
168 if (err == KErrNotFound) //the chunk wrapper is not yet created, cant be opened
170 iChunkWrapper =CChunkWrapper::CreateL(KSharedChunkName, KSharedChunkSize, KSharedChunkSize);
174 CTestDriver::~CTestDriver()
177 iSurfaceManager.Close();
178 delete iChunkWrapper;