diff -r 000000000000 -r bde4ae8d615e os/security/cryptomgmtlibs/securitycommonutils/inc/streamingarray.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/os/security/cryptomgmtlibs/securitycommonutils/inc/streamingarray.h Fri Jun 15 03:10:57 2012 +0200 @@ -0,0 +1,115 @@ +/* +* Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of the License "Eclipse Public License v1.0" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: +* Utility functions for copying and streaming RArray/RpointerArray. +* +*/ + + +/** + @file + @internalTechnology + @released +*/ + +#ifndef STREAMINGARRAY_H +#define STREAMINGARRAY_H + +#include +#include + + +// RPointerArray utilities + +/** + Copy a pointer array of template objects to another one. + Note that only objects are copied into the target array, NOT pointers. + T class must provide a static T::NewL(T&) construction function. + @param aTarget The pointer array to which a given array will be copied. + @param aSource The pointer array which will be copied. + */ +template +void CopyPointerArrayL(RPointerArray& aTarget, const RPointerArray& aSource); + +/** + Externalize an array of pointers of template class. + @param aArray The pointer array which will be externalized + @param aAddLength Whether the length of the array is added to the beginning of the externalized data. + @return Pointer to the memory of the externalized array which is left on + the cleanup stack. Ownership is transferred. + + */ +template +HBufC8* ExternalizePointersArrayLC(const RPointerArray& aArray, TBool aAddLength=ETrue); + +/** + Externalize an array of pointers of template class. + @param aArray The pointer array which will be externalized. + @param aStream A stream to the buffer where the pointer array will be externalized. + @param aAddLength Whether the length of the array is added to the beginning of the externalized data. + */ +template +void ExternalizePointersArrayL(const RPointerArray& aArray, RWriteStream& aStream, TBool aAddLength=ETrue); + +/** + Internalize a given externalized pointers array stream. + Template class must provide a static T::NewL(RReadStream&) function. + @param aArray The pointer array which the stream will be internalized into. + @param aStream A stream to the externalized pointer array + @param aAddLength Whether the length of the array exists at the beginning of the data being internalized. + */ +template +void InternalizePointersArrayL(RPointerArray& aArray, RReadStream& aStream, TBool aAddLength=ETrue); + + +// RArray utilities + +/** + Copy an array of fixed length template objects to another one. + Note that T must have a valid copy c'tor. + @param aTarget The array to which a given array will be copied. + @param aSource The array which will be copied. + */ +template +void CopyFixedLengthArrayL(RArray& aTarget, const RArray& aSource); + + +/** + Externalize an array of fixed length template objects. + @param aArray The array which will be externalized. + @return Pointer to the memory of the externalized array which is left on + the cleanup stack. Ownership is transferred. + */ +template +HBufC8* ExternalizeFixedLengthArrayLC(const RArray& aArray); + +/** + Externalize an array of fixed length template objects. + @param aArray The array which will be externalized. + @param aStream A stream to the buffer where the fixed length array will be externalized. + */ +template +void ExternalizeFixedLengthArrayL(const RArray& aArray, RWriteStream& aStream); + +/** + Internalize a given externalized fixed length array stream. + @param aArray The pointer array which the stream will be internalized into. + @param aStream A stream to the externalized fixed length array + */ +template +void InternalizeFixedLengthArrayL(RArray& aArray, RReadStream& aStream); + +#include + +#endif // STREAMINGARRAY_H