sl@0
|
1 |
// Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description: The main purpose of RTFXEffect implementation is to forward
|
sl@0
|
14 |
// RWsSession/RWindowBase calls to RegisterEffect and OverrideEffect to server side.
|
sl@0
|
15 |
// Please see documantion of RTFXEffect::RegisterTFXEffect() for more details.
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#include "rtfxeffect.h"
|
sl@0
|
19 |
#include "w32comm.h"
|
sl@0
|
20 |
#include "client.h"
|
sl@0
|
21 |
|
sl@0
|
22 |
/**
|
sl@0
|
23 |
Constructor which takes handle and buffer paratemter and initilaizes
|
sl@0
|
24 |
its member variables.
|
sl@0
|
25 |
|
sl@0
|
26 |
@param aHandle Client side handle of the class derived from MWsClientClass
|
sl@0
|
27 |
@param aBuffer Pointer to the wserv client side buffer of the above class
|
sl@0
|
28 |
*/
|
sl@0
|
29 |
RTFXEffect::RTFXEffect(TInt aHandle, RWsBuffer* aBuffer)
|
sl@0
|
30 |
: MWsClientClass(aBuffer), iDirPathSizePaded(0), iFileName1SizePaded(0),
|
sl@0
|
31 |
iFileName2SizePaded(0), iCombSizePaded(0)
|
sl@0
|
32 |
{
|
sl@0
|
33 |
iWsHandle = aHandle;
|
sl@0
|
34 |
}
|
sl@0
|
35 |
|
sl@0
|
36 |
/**
|
sl@0
|
37 |
Function checks the sent parmaters and pancis client if any of its length
|
sl@0
|
38 |
is greater than KMaxFileName. Calculates the padded lengths of sent parameters
|
sl@0
|
39 |
and stores them in member variables
|
sl@0
|
40 |
|
sl@0
|
41 |
@param aResourceDir directory name of animation description file
|
sl@0
|
42 |
@param aFilenameOutgoing File name of Outgoing phase of TFX
|
sl@0
|
43 |
@param aFilenameIncoming File name of Incoming phase of TFX
|
sl@0
|
44 |
*/
|
sl@0
|
45 |
void RTFXEffect::CheckFileNameAndSetSizes(const TFileName& aResourceDir,
|
sl@0
|
46 |
const TFileName& aFilenameOutgoing, const TFileName& aFilenameIncoming)
|
sl@0
|
47 |
{
|
sl@0
|
48 |
__ASSERT_ALWAYS(aResourceDir.Length() <= KMaxFileName, Panic(EW32PanicStringTooLong));
|
sl@0
|
49 |
__ASSERT_ALWAYS(aFilenameOutgoing.Length() <= KMaxFileName, Panic(EW32PanicStringTooLong));
|
sl@0
|
50 |
__ASSERT_ALWAYS(aFilenameIncoming.Length() <= KMaxFileName, Panic(EW32PanicStringTooLong));
|
sl@0
|
51 |
|
sl@0
|
52 |
iDirPathSizePaded = PaddedValue(aResourceDir.Size());
|
sl@0
|
53 |
iFileName1SizePaded = PaddedValue(aFilenameOutgoing.Size());
|
sl@0
|
54 |
iFileName2SizePaded = PaddedValue(aFilenameIncoming.Size());
|
sl@0
|
55 |
|
sl@0
|
56 |
iCombSizePaded = iDirPathSizePaded + iFileName1SizePaded + iFileName2SizePaded;
|
sl@0
|
57 |
}
|
sl@0
|
58 |
|
sl@0
|
59 |
/**
|
sl@0
|
60 |
Appends folder and file names to wserv client's buffer using AppendData() of MWsClientClass.
|
sl@0
|
61 |
AppendData adds data directly to buffer. So before calling AppendData we must make sure that
|
sl@0
|
62 |
current command is added to buffer. Please see description of MWsClientClass::AppendData()
|
sl@0
|
63 |
for more details.
|
sl@0
|
64 |
|
sl@0
|
65 |
@param aResourceDir directory name of animation description file
|
sl@0
|
66 |
@param aFilenameOutgoing File name of Outgoing phase of TFX
|
sl@0
|
67 |
@param aFilenameIncoming File name of Incoming phase of TFX
|
sl@0
|
68 |
*/
|
sl@0
|
69 |
void RTFXEffect::AppendFileNameData(const TFileName& aResourceDir, const TFileName& aFilenameOutgoing, const TFileName& aFilenameIncoming)
|
sl@0
|
70 |
{
|
sl@0
|
71 |
AppendData(aResourceDir.Ptr(), aResourceDir.Size(), EFalse);
|
sl@0
|
72 |
AppendData(aFilenameOutgoing.Ptr(), aFilenameOutgoing.Size(), EFalse);
|
sl@0
|
73 |
AppendData(aFilenameIncoming.Ptr(), aFilenameIncoming.Size(), ETrue);
|
sl@0
|
74 |
}
|
sl@0
|
75 |
|
sl@0
|
76 |
/**
|
sl@0
|
77 |
Writes file names using IPC args along with data related to TWsClCmdRegisterEffect
|
sl@0
|
78 |
Out going phase animation file name is sent in second slot of IPC to server
|
sl@0
|
79 |
In coming phase animation file name is sent in third slot of IPC to server
|
sl@0
|
80 |
Data related to TWsClCmdRegisterEffect and folder name are sent in the normal wserv buffer
|
sl@0
|
81 |
|
sl@0
|
82 |
@param aForRegister an object of TWsClCmdRegisterEffect filled with data related to RegisterTFXEffect
|
sl@0
|
83 |
If non Empty then this function is called for Register effect
|
sl@0
|
84 |
@param aForOverride an object of TWsClCmdOverrideEffect filled with data related to OverrideTFXEffect
|
sl@0
|
85 |
If non Empty then this function is called for Overide effect
|
sl@0
|
86 |
@param aResourceDir directory name of animation description file
|
sl@0
|
87 |
@param aFilenameOutgoing File name of Outgoing phase of TFX
|
sl@0
|
88 |
@param aFilenameIncoming File name of Incoming phase of TFX
|
sl@0
|
89 |
@param aCalledFrom value from TFXEffect enum reprseting whether called from RWsSession or RWindowbase
|
sl@0
|
90 |
*/
|
sl@0
|
91 |
void RTFXEffect::WriteDataUsingIPC(TWsClCmdRegisterEffect* aForRegister, TWsClCmdOverrideEffect* aForOverride,
|
sl@0
|
92 |
const TFileName& aResourceDir, const TFileName& aFilenameOutgoing, const TFileName& aFilenameIncoming, TFXEffect aCalledFrom)
|
sl@0
|
93 |
{
|
sl@0
|
94 |
TIpcArgs ipcArgsDesc;
|
sl@0
|
95 |
ipcArgsDesc.Set(1, &aFilenameOutgoing);
|
sl@0
|
96 |
ipcArgsDesc.Set(2, &aFilenameIncoming);
|
sl@0
|
97 |
// If called for RegisterTFXEffect
|
sl@0
|
98 |
if (aForRegister)
|
sl@0
|
99 |
{
|
sl@0
|
100 |
Write(aForRegister, sizeof(*aForRegister), aResourceDir.Ptr(), aResourceDir.Size(),
|
sl@0
|
101 |
EWsClOpRegisterTFXEffectIPC, &ipcArgsDesc);
|
sl@0
|
102 |
}
|
sl@0
|
103 |
else // Else called for OverrideTFXEffect
|
sl@0
|
104 |
{
|
sl@0
|
105 |
Write(aForOverride, sizeof(*aForOverride), aResourceDir.Ptr(), aResourceDir.Size(),
|
sl@0
|
106 |
(aCalledFrom == ETFXSession ? EWsClOpOverrideEffectIPC : EWsWinOpOverrideEffectIPC), &ipcArgsDesc);
|
sl@0
|
107 |
}
|
sl@0
|
108 |
}
|
sl@0
|
109 |
|
sl@0
|
110 |
/**
|
sl@0
|
111 |
Checks if the sum of iCombSizePaded, size of TWsCmdHeader and sent size is less than
|
sl@0
|
112 |
the current buffer size.
|
sl@0
|
113 |
|
sl@0
|
114 |
@param aSize size to be compared with current buffer size
|
sl@0
|
115 |
@return ETrue if the combined size if less then or equal to current buffer size
|
sl@0
|
116 |
EFalse if the combined size is greater then current buffer size
|
sl@0
|
117 |
*/
|
sl@0
|
118 |
TBool RTFXEffect::CheckCombinedSizeWithCurrentBuffer(TInt aSize) const
|
sl@0
|
119 |
{
|
sl@0
|
120 |
return (iCombSizePaded + aSize + sizeof(TWsCmdHeader) <= iBuffer->BufferSize());
|
sl@0
|
121 |
}
|
sl@0
|
122 |
|
sl@0
|
123 |
/**
|
sl@0
|
124 |
Checks the length of sent variables and does as explained below
|
sl@0
|
125 |
|
sl@0
|
126 |
Main logic involved in both RegisterTFXEffect() and OverrideTFXEffect() is as follows
|
sl@0
|
127 |
First check the sum of all strings
|
sl@0
|
128 |
If it is less then max wserv buffer
|
sl@0
|
129 |
Send unpadded sizes in TWsClCmdRegisterEffect/TWsClCmdOverrideEffect but when we append
|
sl@0
|
130 |
the data we make sure that we pad it
|
sl@0
|
131 |
Then at server side get the buffer for total length(inlcuding pading)and unpad it and
|
sl@0
|
132 |
send it to renderstage's RegisterEffect/OverrideEffect function
|
sl@0
|
133 |
If it is greater then max wserv buffer
|
sl@0
|
134 |
Send one string in the wserv buffer as done before ie. pading and unpading
|
sl@0
|
135 |
Other two strings are sent using IPC args in 2 and 3 slot of IPC and do explicit flush
|
sl@0
|
136 |
And at server side get one string from buffer and other 2 from IPC
|
sl@0
|
137 |
|
sl@0
|
138 |
@param aAction Particular transition to register the animation for.
|
sl@0
|
139 |
@param aPurpose The purpose of the window.
|
sl@0
|
140 |
@param aResourceDir The name of the directory that contains the animation description files.
|
sl@0
|
141 |
@param aFilenameOutgoing The file containing the description of the animation for the outgoing phase of the transition.
|
sl@0
|
142 |
Specify KNullDesC for no outgoing phase effect.
|
sl@0
|
143 |
@param aFilenameIncoming The file containing the description of the animation for the incoming phase of the transition.
|
sl@0
|
144 |
Specify KNullDesC for no incoming phase effect.
|
sl@0
|
145 |
@param aAppUid The Application UID this effect applies to. Set to zero to specify that all apps will use default effect.
|
sl@0
|
146 |
@param aFlags Flag for the effect. Please see TTfxFlags for values this flag parameter can use.
|
sl@0
|
147 |
*/
|
sl@0
|
148 |
void RTFXEffect::RegisterTFXEffect(TInt aAction, TInt aPurpose, const TFileName& aResourceDir,
|
sl@0
|
149 |
const TFileName& aFilenameOutgoing, const TFileName& aFilenameIncoming, TUint aAppUid, TBitFlags aFlags)
|
sl@0
|
150 |
{
|
sl@0
|
151 |
CheckFileNameAndSetSizes(aResourceDir, aFilenameOutgoing, aFilenameIncoming);
|
sl@0
|
152 |
if (CheckCombinedSizeWithCurrentBuffer(sizeof(TWsClCmdRegisterEffect)))
|
sl@0
|
153 |
{
|
sl@0
|
154 |
TWsClCmdRegisterEffect params(aAction, aPurpose, aResourceDir.Size(), aFilenameOutgoing.Size(), aFilenameIncoming.Size(), aAppUid, aFlags);
|
sl@0
|
155 |
// Here we just pass the length of combined strings so that it checks and does flush if needed.
|
sl@0
|
156 |
// Then AppendData actually adds the data to buffer at the end
|
sl@0
|
157 |
Write(¶ms, sizeof(params), iCombSizePaded, EWsClOpRegisterTFXEffectBuf);
|
sl@0
|
158 |
if (iCombSizePaded > 0)
|
sl@0
|
159 |
AppendFileNameData(aResourceDir, aFilenameOutgoing, aFilenameIncoming);
|
sl@0
|
160 |
}
|
sl@0
|
161 |
else
|
sl@0
|
162 |
{
|
sl@0
|
163 |
TWsClCmdRegisterEffect params(aAction, aPurpose, aResourceDir.Size(), 0, 0, aAppUid, aFlags);
|
sl@0
|
164 |
WriteDataUsingIPC(¶ms, NULL, aResourceDir, aFilenameOutgoing, aFilenameIncoming, ETFXSession);
|
sl@0
|
165 |
}
|
sl@0
|
166 |
}
|
sl@0
|
167 |
|
sl@0
|
168 |
/**
|
sl@0
|
169 |
Checks the length of sent variables and does as explained in
|
sl@0
|
170 |
RTFXEffect::RegisterTFXEffect() API description
|
sl@0
|
171 |
|
sl@0
|
172 |
@param aAction The particular transition to set the animation for.
|
sl@0
|
173 |
@param aPurpose This override only effects the window/layers owned by the application that have the specified purpose.
|
sl@0
|
174 |
@param aResourceDir The name of the directory that contains the animation description files.
|
sl@0
|
175 |
@param aFilenameOutgoing The file containing the description of the animation for the outgoing phase of the transition.
|
sl@0
|
176 |
Specify KNullDesC for no outgoing phase effect.
|
sl@0
|
177 |
@param aFilenameIncoming The file containing the description of the animation for the incoming phase of the transition.
|
sl@0
|
178 |
Specify KNullDesC for no incoming phase effect.
|
sl@0
|
179 |
@param aFlags Flag for the effect. Please see TTfxFlags for values this flag parameter can use.
|
sl@0
|
180 |
*/
|
sl@0
|
181 |
void RTFXEffect::OverrideTFXEffect(TFXEffect aCalledFrom, TInt aAction, TInt aPurpose, const TFileName& aResourceDir,
|
sl@0
|
182 |
const TFileName& aFilenameOutgoing, const TFileName& aFilenameIncoming, TBitFlags aFlags)
|
sl@0
|
183 |
{
|
sl@0
|
184 |
CheckFileNameAndSetSizes(aResourceDir, aFilenameOutgoing, aFilenameIncoming);
|
sl@0
|
185 |
if (CheckCombinedSizeWithCurrentBuffer(sizeof(TWsClCmdOverrideEffect)))
|
sl@0
|
186 |
{
|
sl@0
|
187 |
TWsClCmdOverrideEffect params(aAction, aPurpose, aResourceDir.Size(), aFilenameOutgoing.Size(), aFilenameIncoming.Size(), aFlags);
|
sl@0
|
188 |
Write(¶ms, sizeof(params), iCombSizePaded, (aCalledFrom == ETFXSession ? EWsClOpOverrideEffectBuf : EWsWinOpOverrideEffectBuf));
|
sl@0
|
189 |
if (iCombSizePaded > 0)
|
sl@0
|
190 |
AppendFileNameData(aResourceDir, aFilenameOutgoing, aFilenameIncoming);
|
sl@0
|
191 |
}
|
sl@0
|
192 |
else
|
sl@0
|
193 |
{
|
sl@0
|
194 |
TWsClCmdOverrideEffect params(aAction, aPurpose, aResourceDir.Size(), 0, 0, aFlags);
|
sl@0
|
195 |
WriteDataUsingIPC(NULL, ¶ms, aResourceDir, aFilenameOutgoing, aFilenameIncoming, aCalledFrom);
|
sl@0
|
196 |
}
|
sl@0
|
197 |
}
|