author | sl |
Tue, 10 Jun 2014 14:32:02 +0200 | |
changeset 1 | 260cb5ec6c19 |
permissions | -rw-r--r-- |
sl@0 | 1 |
/* |
sl@0 | 2 |
* Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies). |
sl@0 | 3 |
* All rights reserved. |
sl@0 | 4 |
* This component and the accompanying materials are made available |
sl@0 | 5 |
* under the terms of the License "Eclipse Public License v1.0" |
sl@0 | 6 |
* which accompanies this distribution, and is available |
sl@0 | 7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html". |
sl@0 | 8 |
* |
sl@0 | 9 |
* Initial Contributors: |
sl@0 | 10 |
* Nokia Corporation - initial contribution. |
sl@0 | 11 |
* |
sl@0 | 12 |
* Contributors: |
sl@0 | 13 |
* |
sl@0 | 14 |
* Description: |
sl@0 | 15 |
* |
sl@0 | 16 |
*/ |
sl@0 | 17 |
|
sl@0 | 18 |
|
sl@0 | 19 |
#ifndef CLEANUPUTILS_INL |
sl@0 | 20 |
#define CLEANUPUTILS_INL |
sl@0 | 21 |
|
sl@0 | 22 |
#include <scs/cleanuputils.h> |
sl@0 | 23 |
|
sl@0 | 24 |
template <class T> |
sl@0 | 25 |
class CleanupResetAndDestroy |
sl@0 | 26 |
{ |
sl@0 | 27 |
public: |
sl@0 | 28 |
inline static void PushL(T& aRef); |
sl@0 | 29 |
private: |
sl@0 | 30 |
static void ResetAndDestroy(TAny *aPtr); |
sl@0 | 31 |
}; |
sl@0 | 32 |
|
sl@0 | 33 |
template <class T> |
sl@0 | 34 |
inline void CleanupResetAndDestroy<T>::PushL(T& aRef) |
sl@0 | 35 |
{ |
sl@0 | 36 |
CleanupStack::PushL(TCleanupItem(&ResetAndDestroy,&aRef)); |
sl@0 | 37 |
} |
sl@0 | 38 |
|
sl@0 | 39 |
template <class T> |
sl@0 | 40 |
void CleanupResetAndDestroy<T>::ResetAndDestroy(TAny *aPtr) |
sl@0 | 41 |
{ |
sl@0 | 42 |
static_cast<T*>(aPtr)->ResetAndDestroy(); |
sl@0 | 43 |
} |
sl@0 | 44 |
|
sl@0 | 45 |
template <class T> |
sl@0 | 46 |
inline void CleanupResetAndDestroyPushL(T& aRef) |
sl@0 | 47 |
{ |
sl@0 | 48 |
CleanupResetAndDestroy<T>::PushL(aRef); |
sl@0 | 49 |
} |
sl@0 | 50 |
|
sl@0 | 51 |
template <typename T> |
sl@0 | 52 |
inline void DeleteObjectZ(T*& aPtr) |
sl@0 | 53 |
{ |
sl@0 | 54 |
delete aPtr; |
sl@0 | 55 |
aPtr=NULL; |
sl@0 | 56 |
} |
sl@0 | 57 |
|
sl@0 | 58 |
inline HBufC8* ConvertBufferTo8bitL(const TDesC& aBuffer) |
sl@0 | 59 |
{ |
sl@0 | 60 |
HBufC8* buf8 = HBufC8::NewLC(aBuffer.Length()); |
sl@0 | 61 |
TPtr8 bufPtr8(buf8->Des()); |
sl@0 | 62 |
bufPtr8.Copy(aBuffer); |
sl@0 | 63 |
CleanupStack::Pop(buf8); |
sl@0 | 64 |
return buf8; |
sl@0 | 65 |
} |
sl@0 | 66 |
|
sl@0 | 67 |
inline HBufC* ConvertBufferTo16bitL(const TDesC8& aBuffer) |
sl@0 | 68 |
{ |
sl@0 | 69 |
HBufC* buf = HBufC::NewLC(aBuffer.Length()); |
sl@0 | 70 |
TPtr bufPtr(buf->Des()); |
sl@0 | 71 |
bufPtr.Copy(aBuffer); |
sl@0 | 72 |
CleanupStack::Pop(buf); |
sl@0 | 73 |
return buf; |
sl@0 | 74 |
} |
sl@0 | 75 |
|
sl@0 | 76 |
#endif /* CLEANUPUTILS_INL */ |