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 |
* Library to add s32strm support for IPC (ie. stream via multiple IPC read/writes instead of
|
sl@0
|
16 |
* copying to a buffer and streaming to/from there.
|
sl@0
|
17 |
*
|
sl@0
|
18 |
*/
|
sl@0
|
19 |
|
sl@0
|
20 |
|
sl@0
|
21 |
/**
|
sl@0
|
22 |
@file
|
sl@0
|
23 |
@internalTechnology
|
sl@0
|
24 |
@released
|
sl@0
|
25 |
*/
|
sl@0
|
26 |
|
sl@0
|
27 |
#ifndef IPCSTREAM_INL
|
sl@0
|
28 |
#define IPCSTREAM_INL
|
sl@0
|
29 |
|
sl@0
|
30 |
#include <scs/ipcstream.h>
|
sl@0
|
31 |
#include <scs/streamingarray.h>
|
sl@0
|
32 |
|
sl@0
|
33 |
|
sl@0
|
34 |
inline void WriteIntValueL(const RMessage2& aMessage, TInt aParam, TInt aValue)
|
sl@0
|
35 |
{
|
sl@0
|
36 |
TPckg<TInt> valuePak(aValue);
|
sl@0
|
37 |
aMessage.WriteL(aParam, valuePak);
|
sl@0
|
38 |
}
|
sl@0
|
39 |
|
sl@0
|
40 |
template <class T>
|
sl@0
|
41 |
void WriteArraySizeL(const RMessage2& aMessage, TInt aParam, RPointerArray<T>& aArray)
|
sl@0
|
42 |
{
|
sl@0
|
43 |
TInt arraySize(0);
|
sl@0
|
44 |
// If the array is not empty, calculate and return the required buffer size to externalize it.
|
sl@0
|
45 |
// Otherwise, return zero.
|
sl@0
|
46 |
if(aArray.Count())
|
sl@0
|
47 |
{
|
sl@0
|
48 |
arraySize = ExternalizedBufferSizeL(aArray);
|
sl@0
|
49 |
}
|
sl@0
|
50 |
WriteIntValueL(aMessage, aParam, arraySize);
|
sl@0
|
51 |
}
|
sl@0
|
52 |
|
sl@0
|
53 |
template <class T>
|
sl@0
|
54 |
void WriteArraySizeL(const RMessage2& aMessage, TInt aParam, RArray<T>& aArray)
|
sl@0
|
55 |
{
|
sl@0
|
56 |
TInt arraySize(0); // if the array is empty, then zero length is returned
|
sl@0
|
57 |
if(aArray.Count())
|
sl@0
|
58 |
{
|
sl@0
|
59 |
arraySize = ExternalizedBufferSizeL(aArray);
|
sl@0
|
60 |
}
|
sl@0
|
61 |
WriteIntValueL(aMessage, aParam, arraySize);
|
sl@0
|
62 |
}
|
sl@0
|
63 |
|
sl@0
|
64 |
template <class T>
|
sl@0
|
65 |
void WriteObjectSizeL(const RMessage2& aMessage, TInt aParam, const T* aObject)
|
sl@0
|
66 |
{
|
sl@0
|
67 |
// Calculate that how much buffer is needed to externalize the object
|
sl@0
|
68 |
TInt entrySize(0);
|
sl@0
|
69 |
if(aObject)
|
sl@0
|
70 |
{
|
sl@0
|
71 |
entrySize = GetObjectBufferSizeL(*aObject);
|
sl@0
|
72 |
}
|
sl@0
|
73 |
WriteIntValueL(aMessage, aParam, entrySize);
|
sl@0
|
74 |
}
|
sl@0
|
75 |
|
sl@0
|
76 |
template <class T>
|
sl@0
|
77 |
void WriteArrayDataL(const RMessage2& aMessage, TInt aParam, RPointerArray<T>& aArray)
|
sl@0
|
78 |
{
|
sl@0
|
79 |
if(!aArray.Count())
|
sl@0
|
80 |
{
|
sl@0
|
81 |
User::Leave(KErrAbort);
|
sl@0
|
82 |
}
|
sl@0
|
83 |
RIpcWriteStream ipcstream;
|
sl@0
|
84 |
ipcstream.Open(aMessage, aParam);
|
sl@0
|
85 |
CleanupClosePushL(ipcstream);
|
sl@0
|
86 |
ExternalizePointersArrayL(aArray, ipcstream);
|
sl@0
|
87 |
CleanupStack::PopAndDestroy(&ipcstream); // Data is committed in Close method
|
sl@0
|
88 |
aArray.ResetAndDestroy(); // Reset the array to prevent it to be resent mistakenly.
|
sl@0
|
89 |
}
|
sl@0
|
90 |
|
sl@0
|
91 |
template <class T>
|
sl@0
|
92 |
void WriteArrayDataL(const RMessage2& aMessage, TInt aParam, RArray<T>& aArray)
|
sl@0
|
93 |
{
|
sl@0
|
94 |
if(!aArray.Count())
|
sl@0
|
95 |
{
|
sl@0
|
96 |
User::Leave(KErrAbort);
|
sl@0
|
97 |
}
|
sl@0
|
98 |
RIpcWriteStream ipcstream;
|
sl@0
|
99 |
ipcstream.Open(aMessage, aParam);
|
sl@0
|
100 |
CleanupClosePushL(ipcstream);
|
sl@0
|
101 |
ExternalizeFixedLengthArrayL(aArray, ipcstream);
|
sl@0
|
102 |
CleanupStack::PopAndDestroy(&ipcstream); // Data is committed in Close method
|
sl@0
|
103 |
aArray.Reset(); // Reset the array to prevent it to be resent mistakenly.
|
sl@0
|
104 |
}
|
sl@0
|
105 |
|
sl@0
|
106 |
template <class T>
|
sl@0
|
107 |
void WriteObjectDataL(const RMessage2& aMessage, TInt aParam, const T* aObject)
|
sl@0
|
108 |
{
|
sl@0
|
109 |
if(!aObject)
|
sl@0
|
110 |
{
|
sl@0
|
111 |
User::Leave(KErrAbort);
|
sl@0
|
112 |
}
|
sl@0
|
113 |
RIpcWriteStream ipcstream;
|
sl@0
|
114 |
ipcstream.Open(aMessage, aParam);
|
sl@0
|
115 |
CleanupClosePushL(ipcstream);
|
sl@0
|
116 |
ipcstream << *aObject;
|
sl@0
|
117 |
CleanupStack::PopAndDestroy(&ipcstream); // Data is committed in Close method
|
sl@0
|
118 |
}
|
sl@0
|
119 |
|
sl@0
|
120 |
template <class T>
|
sl@0
|
121 |
T* ReadObjectFromMessageLC(const RMessage2& aMessage, TInt aSlot)
|
sl@0
|
122 |
{
|
sl@0
|
123 |
RIpcReadStream stream;
|
sl@0
|
124 |
CleanupClosePushL(stream);
|
sl@0
|
125 |
stream.Open(aMessage, aSlot);
|
sl@0
|
126 |
T *object = T::NewL(stream);
|
sl@0
|
127 |
CleanupStack::PopAndDestroy(&stream);
|
sl@0
|
128 |
CleanupStack::PushL(object);
|
sl@0
|
129 |
return object;
|
sl@0
|
130 |
}
|
sl@0
|
131 |
|
sl@0
|
132 |
#endif /* IPCSTREAM_INL */
|