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