Update contrib.
2 * Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of the License "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
15 * Library to add s32strm support for IPC (ie. stream via multiple IPC read/writes instead of
16 * copying to a buffer and streaming to/from there.
30 #include <scs/ipcstream.h>
31 #include <scs/streamingarray.h>
34 inline void WriteIntValueL(const RMessage2& aMessage, TInt aParam, TInt aValue)
36 TPckg<TInt> valuePak(aValue);
37 aMessage.WriteL(aParam, valuePak);
41 void WriteArraySizeL(const RMessage2& aMessage, TInt aParam, RPointerArray<T>& aArray)
44 // If the array is not empty, calculate and return the required buffer size to externalize it.
45 // Otherwise, return zero.
48 arraySize = ExternalizedBufferSizeL(aArray);
50 WriteIntValueL(aMessage, aParam, arraySize);
54 void WriteArraySizeL(const RMessage2& aMessage, TInt aParam, RArray<T>& aArray)
56 TInt arraySize(0); // if the array is empty, then zero length is returned
59 arraySize = ExternalizedBufferSizeL(aArray);
61 WriteIntValueL(aMessage, aParam, arraySize);
65 void WriteObjectSizeL(const RMessage2& aMessage, TInt aParam, const T* aObject)
67 // Calculate that how much buffer is needed to externalize the object
71 entrySize = GetObjectBufferSizeL(*aObject);
73 WriteIntValueL(aMessage, aParam, entrySize);
77 void WriteArrayDataL(const RMessage2& aMessage, TInt aParam, RPointerArray<T>& aArray)
81 User::Leave(KErrAbort);
83 RIpcWriteStream ipcstream;
84 ipcstream.Open(aMessage, aParam);
85 CleanupClosePushL(ipcstream);
86 ExternalizePointersArrayL(aArray, ipcstream);
87 CleanupStack::PopAndDestroy(&ipcstream); // Data is committed in Close method
88 aArray.ResetAndDestroy(); // Reset the array to prevent it to be resent mistakenly.
92 void WriteArrayDataL(const RMessage2& aMessage, TInt aParam, RArray<T>& aArray)
96 User::Leave(KErrAbort);
98 RIpcWriteStream ipcstream;
99 ipcstream.Open(aMessage, aParam);
100 CleanupClosePushL(ipcstream);
101 ExternalizeFixedLengthArrayL(aArray, ipcstream);
102 CleanupStack::PopAndDestroy(&ipcstream); // Data is committed in Close method
103 aArray.Reset(); // Reset the array to prevent it to be resent mistakenly.
107 void WriteObjectDataL(const RMessage2& aMessage, TInt aParam, const T* aObject)
111 User::Leave(KErrAbort);
113 RIpcWriteStream ipcstream;
114 ipcstream.Open(aMessage, aParam);
115 CleanupClosePushL(ipcstream);
116 ipcstream << *aObject;
117 CleanupStack::PopAndDestroy(&ipcstream); // Data is committed in Close method
121 T* ReadObjectFromMessageLC(const RMessage2& aMessage, TInt aSlot)
123 RIpcReadStream stream;
124 CleanupClosePushL(stream);
125 stream.Open(aMessage, aSlot);
126 T *object = T::NewL(stream);
127 CleanupStack::PopAndDestroy(&stream);
128 CleanupStack::PushL(object);
132 #endif /* IPCSTREAM_INL */