1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/nonnga/CLIENT/RANIM.CPP Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,447 @@
1.4 +// Copyright (c) 1995-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +// Shells Animate DLL
1.18 +//
1.19 +//
1.20 +
1.21 +#include <e32std.h>
1.22 +#include "../SERVER/w32cmd.h"
1.23 +#include "w32comm.h"
1.24 +#include "CLIENT.H"
1.25 +
1.26 +EXPORT_C RAnimDll::RAnimDll()
1.27 +/** Default constructor.
1.28 +
1.29 +RAnimDll is a lightweight class which can be allocated as a non-pointer member.
1.30 +This constructor is provided to allow such a member to be instantiated while
1.31 +its owner is constructed.
1.32 +
1.33 +Note that an RAnimDll constructed without a reference to a window server session
1.34 +is invalid. */
1.35 + {}
1.36 +
1.37 +EXPORT_C RAnimDll::RAnimDll(RWsSession &aWs) : MWsClientClass(aWs.iBuffer)
1.38 +/** Valid constructor.
1.39 +
1.40 +To be useable, an animation DLL should always be constructed with a reference
1.41 +to a window server session as argument.
1.42 +
1.43 +@param aWs Window server session to use. */
1.44 + {}
1.45 +
1.46 +EXPORT_C RAnimDll::~RAnimDll()
1.47 +/** Empty virtual destructor.
1.48 +
1.49 +Destroy() should be used to instead of this function to destroy both this
1.50 +object and the server-side CAnimDll object.
1.51 +
1.52 +@see Destroy()
1.53 +@see Close() */
1.54 + {}
1.55 +
1.56 +EXPORT_C void RAnimDll::Close()
1.57 +/** Closes an animation DLL.
1.58 +
1.59 +Use this function to close a polymorphic DLL which was previously loaded on
1.60 +the server. Cleans up and frees all resources belonging to the DLL but does
1.61 +not delete it. Closing is in accordance with the RLibrary mechanism.
1.62 +
1.63 +Load() and Close() are symmetrical operations. A DLL can be re-loaded after
1.64 +a close has been called on it.
1.65 +
1.66 +To both close and delete a previously loaded DLL, use Destroy(). */
1.67 + {
1.68 + if (iBuffer && iWsHandle)
1.69 + Write(EWsAnimDllOpFree);
1.70 + iWsHandle=NULL;
1.71 + }
1.72 +
1.73 +EXPORT_C void RAnimDll::Destroy()
1.74 +/** Closes and deletes a previously loaded polymorphic DLL.
1.75 +
1.76 +This function is equivalent to calling this->Close() followed by delete this,
1.77 +in accordance with the RLibrary mechanism provided for managing polymorphic
1.78 +DLLs. */
1.79 + {
1.80 + Close();
1.81 + delete this;
1.82 + }
1.83 +
1.84 +EXPORT_C TInt RAnimDll::Load(const TDesC &aFileName)
1.85 +/** Instructs the server to load an animation DLL.
1.86 +
1.87 +Use this function to pass the name of a polymorphic DLL, the animation DLL,
1.88 +for loading on the server side. Loading is in accordance with the RLibrary
1.89 +mechanism. The DLL must conform to the interface defined by the window server,
1.90 +otherwise an error will result. For requirements, see the description of CAnimDll.
1.91 +
1.92 +Load() and Close() are symmetrical operations. A DLL can be re-loaded after
1.93 +a close has been called on it.
1.94 +
1.95 +This function always causes a flush of the window server buffer.
1.96 +
1.97 +@param aFileName Filename of the DLL to load.
1.98 +@return KErrNone if successful, otherwise one of the system-wide error codes.
1.99 +@panic TW32Panic 17 in debug builds if called on an already constructed object.*/
1.100 + {
1.101 + __ASSERT_DEBUG(iWsHandle == KNullHandle, Panic(EW32PanicGraphicDoubleConstruction));
1.102 + TWsClCmdLoadAnimDll load;
1.103 + load.length=aFileName.Length();
1.104 + TInt ret;
1.105 + ret=iBuffer->WriteReplyWs(&load,sizeof(load),aFileName.Ptr(),aFileName.Size(),EWsClOpCreateAnimDll);
1.106 + if (ret<0)
1.107 + return(ret);
1.108 + iWsHandle=ret;
1.109 + return(KErrNone);
1.110 + }
1.111 +
1.112 +TInt RAnimDll::CommandReply(TInt aHandle, TInt aOpcode, const TDesC8& aArgs, const TIpcArgs* aIpcArgs)
1.113 + {
1.114 + TInt params[2];
1.115 + params[0]=aHandle;
1.116 + params[1]=aOpcode;
1.117 + return(WriteReply(¶ms,sizeof(params),aArgs.Ptr(),aArgs.Length(),EWsAnimDllOpCommandReply,aIpcArgs));
1.118 + }
1.119 +
1.120 +TInt RAnimDll::CommandReply(TInt aHandle, TInt aOpcode, const TIpcArgs* aIpcArgs)
1.121 + {
1.122 + TInt params[2];
1.123 + params[0]=aHandle;
1.124 + params[1]=aOpcode;
1.125 + return(WriteReply(¶ms,sizeof(params),EWsAnimDllOpCommandReply,aIpcArgs));
1.126 + }
1.127 +
1.128 +void RAnimDll::Command(TInt aHandle, TInt aOpcode, const TPtrC8 &aArgs)
1.129 + {
1.130 + TInt params[2];
1.131 + params[0]=aHandle;
1.132 + params[1]=aOpcode;
1.133 + Write(¶ms,sizeof(params),aArgs.Ptr(),aArgs.Length(),EWsAnimDllOpCommand);
1.134 + }
1.135 +
1.136 +void RAnimDll::Command(TInt aHandle, TInt aOpcode)
1.137 + {
1.138 + TInt params[2];
1.139 + params[0]=aHandle;
1.140 + params[1]=aOpcode;
1.141 + Write(¶ms,sizeof(params),EWsAnimDllOpCommand);
1.142 + }
1.143 +
1.144 +void RAnimDll::AsyncCommandReply(TRequestStatus& aStatus, TInt aOpcode, TIpcArgs& aIpcArgs)
1.145 + {
1.146 + __ASSERT_DEBUG((aOpcode&EWservMessAnimDllAsyncCommand)==0, Assert(EW32AssertIllegalOpcode));
1.147 + aIpcArgs.Set(KAsyncMessageSlotAnimDllHandle,iWsHandle);
1.148 + iBuffer->Flush(); // needs to happen first so that things occur in their correct order, and because this asynchronous function uses a different mechanism, i.e. assigns different meanings to, say, the first slot in the TIpcArgs
1.149 + iBuffer->Session()->SendReceive((aOpcode|EWservMessAnimDllAsyncCommand),aIpcArgs,aStatus);
1.150 + }
1.151 +
1.152 +TInt RAnimDll::CreateInstance(TInt32& aHandle, const MWsClientClass &aDevice, TInt aType, const TDesC8 &aArgs, TInt aOpcode, const TIpcArgs* aIpcArgs)
1.153 + {
1.154 + TInt params[2];
1.155 + params[0]=aDevice.WsHandle();
1.156 + params[1]=aType;
1.157 + const TInt returnValue=WriteReply(¶ms,sizeof(params),aArgs.Ptr(),aArgs.Length(),aOpcode,aIpcArgs);
1.158 + if (returnValue>=0)
1.159 + {
1.160 + aHandle=returnValue;
1.161 + return KErrNone;
1.162 + }
1.163 + return returnValue;
1.164 + }
1.165 +
1.166 +void RAnimDll::DestroyInstance(TInt aHandle)
1.167 + {
1.168 + WriteReplyInt(aHandle,EWsAnimDllOpDestroyInstance);
1.169 + }
1.170 +
1.171 +EXPORT_C RAnim::RAnim() : iHandle(0)
1.172 +/** Default constructor. Developers should use the other constructor overload. */
1.173 + {}
1.174 +
1.175 +EXPORT_C RAnim::RAnim(RAnimDll &aDll) : iHandle(0),iAnimDll(&aDll)
1.176 +/** Protected C++ constructor.
1.177 +
1.178 +This constructor should be used to construct an animation object from a given
1.179 +animation DLL. The DLL must be loaded first, see the discussion of RAnimDll.
1.180 +
1.181 +@param aDll The animation DLL. */
1.182 + {}
1.183 +
1.184 +EXPORT_C RAnim::~RAnim()
1.185 +/** Empty virtual destructor. */
1.186 + {}
1.187 +
1.188 +EXPORT_C TInt RAnim::Construct(const RWindowBase &aDevice, TInt aType, const TDesC8 &aParams)
1.189 +/** Completes construction of the object based on a window device, and creates
1.190 +the server-side animation system.
1.191 +
1.192 +Construction information is passed to the server side via aType and aParams.
1.193 +The server then passes the information to the function CreateInstanceL() inside
1.194 +the Anim DLL.
1.195 +
1.196 +This function always causes a flush of the window server buffer.
1.197 +
1.198 +@param aDevice A window device.
1.199 +@param aType The type of this animation object, as understood by CAnimDll::CreateInstanceL().
1.200 +@param aParams Packaged arguments which will be passed to the server side object
1.201 +to tell it how to construct itself or initialise itself.
1.202 +@return KErrNone if successful, otherwise one of the system-wide error codes.
1.203 +@see CAnim::ConstructL()
1.204 +@see CAnimDll::CreateInstanceL() */
1.205 + {
1.206 + return iAnimDll->CreateInstance(iHandle, aDevice, aType, aParams, EWsAnimDllOpCreateInstance, NULL);
1.207 + }
1.208 +
1.209 +EXPORT_C TInt RAnim::Construct(const RWindowBase &aDevice, TInt aType, const TDesC8 &aParams, const TIpcArgs& aIpcArgs)
1.210 +/** Completes construction of the object based on a window device, and creates
1.211 +the server-side animation system.
1.212 +
1.213 +Construction information is passed to the server side via aType and aParams.
1.214 +The server then passes the information to the function CreateInstanceL() inside
1.215 +the Anim DLL.
1.216 +
1.217 +This function always causes a flush of the window server buffer.
1.218 +
1.219 +@param aDevice A window device.
1.220 +@param aType The type of this animation object, as understood by CAnimDll::CreateInstanceL().
1.221 +@param aParams Packaged arguments which will be passed to the server side object
1.222 +to tell it how to construct itself or initialise itself.
1.223 +@param aIpcArgs Inter-process communication arguments which will be passed to the server side
1.224 +object. Panics if the first "slot" is set to anything other than TIpcArgs::ENothing.
1.225 +@return KErrNone if successful, otherwise one of the system-wide error codes.
1.226 +@see CAnim::ConstructL()
1.227 +@see CAnimDll::CreateInstanceL() */
1.228 + {
1.229 + return iAnimDll->CreateInstance(iHandle, aDevice, aType, aParams, EWsAnimDllOpCreateInstance, &aIpcArgs);
1.230 + }
1.231 +
1.232 +EXPORT_C TInt RAnim::Construct(const RWsSprite &aDevice, TInt aType, const TDesC8 &aParams)
1.233 +/** Completes construction of the Anim DLL based on a sprite.
1.234 +
1.235 +Construction information is passed to the server side via aType and aParams.
1.236 +The server then passes the information to the function CreateInstanceL() inside
1.237 +the Anim DLL.
1.238 +
1.239 +This function always causes a flush of the window server buffer.
1.240 +
1.241 +@param aDevice A sprite.
1.242 +@param aType The type of this animation object, as understood by CAnimDll::CreateInstanceL().
1.243 +@param aParams Packaged arguments which will be passed to the server side object
1.244 +to tell it how to construct itself or initialise itself.
1.245 +@return KErrNone if successful, otherwise one of the system-wide error codes.
1.246 +@see CAnim::ConstructL()
1.247 +@see CAnimDll::CreateInstanceL() */
1.248 + {
1.249 + return iAnimDll->CreateInstance(iHandle, aDevice, aType, aParams, EWsAnimDllOpCreateInstanceSprite, NULL);
1.250 + }
1.251 +
1.252 +EXPORT_C TInt RAnim::Construct(const RWsSprite &aDevice, TInt aType, const TDesC8 &aParams, const TIpcArgs& aIpcArgs)
1.253 +/** Completes construction of the Anim DLL based on a sprite.
1.254 +
1.255 +Construction information is passed to the server side via aType and aParams.
1.256 +The server then passes the information to the function CreateInstanceL() inside
1.257 +the Anim DLL.
1.258 +
1.259 +This function always causes a flush of the window server buffer.
1.260 +
1.261 +@param aDevice A sprite.
1.262 +@param aType The type of this animation object, as understood by CAnimDll::CreateInstanceL().
1.263 +@param aParams Packaged arguments which will be passed to the server side object
1.264 +to tell it how to construct itself or initialise itself.
1.265 +@param aIpcArgs Inter-process communication arguments which will be passed to the server side
1.266 +object. Panics if the first "slot" is set to anything other than TIpcArgs::ENothing.
1.267 +@return KErrNone if successful, otherwise one of the system-wide error codes.
1.268 +@see CAnim::ConstructL()
1.269 +@see CAnimDll::CreateInstanceL() */
1.270 + {
1.271 + return iAnimDll->CreateInstance(iHandle, aDevice, aType, aParams, EWsAnimDllOpCreateInstanceSprite, &aIpcArgs);
1.272 + }
1.273 +
1.274 +EXPORT_C TInt RAnim::CommandReply(TInt aOpcode)
1.275 +/** Sends a command to the server-side CAnim instance, and waits for a response.
1.276 +
1.277 +This function executes synchronously and returns the code returned by the
1.278 +server-side method CAnim::CommandReplyL(). The request is not buffered.
1.279 +
1.280 +@param aOpcode An opcode meaningful to the server-side CAnim-derived class.
1.281 +@return A value defined by the animation writer. The value may, in some cases,
1.282 +be defined to be an error code.
1.283 +
1.284 +This function always causes a flush of the window server buffer.
1.285 +
1.286 +@see Command()
1.287 +@see AsyncCommandReply()
1.288 +@see CAnim::CommandReplyL() */
1.289 + {
1.290 + return(iAnimDll->CommandReply(iHandle,aOpcode));
1.291 + }
1.292 +
1.293 +EXPORT_C TInt RAnim::CommandReply(TInt aOpcode, const TPtrC8 &aArgs)
1.294 +/** Sends a command and its arguments to the server-side CAnim instance, and waits
1.295 +for a response.
1.296 +
1.297 +The packaged command arguments are passed to the matching server side function,
1.298 +where the behaviour should be implemented. The request is not buffered. The
1.299 +function executes synchronously and returns the code returned by the server-side
1.300 +method CAnim::CommandReplyL().
1.301 +
1.302 +This function always causes a flush of the window server buffer.
1.303 +
1.304 +@param aOpcode An opcode meaningful to the server-side CAnim-derived class.
1.305 +@param aArgs Packaged arguments which will be passed to the server side object.
1.306 +@return A value defined by the animation writer. The value may, in some cases,
1.307 +be defined to be an error code.
1.308 +@see Command()
1.309 +@see AsyncCommandReply()
1.310 +@see CAnim::CommandReplyL() */
1.311 + {
1.312 + return(iAnimDll->CommandReply(iHandle,aOpcode, aArgs));
1.313 + }
1.314 +
1.315 +EXPORT_C TInt RAnim::CommandReply(TInt aOpcode, const TDesC8& aArgs, const TIpcArgs& aIpcArgs)
1.316 +/** Sends a command and its arguments to the server-side CAnim instance, and waits
1.317 +for a response.
1.318 +
1.319 +The IPC (inter-process communication) arguments are passed to the matching server side function,
1.320 +where the behaviour should be implemented. The request is not buffered. The
1.321 +function executes synchronously and returns the code returned by the server-side
1.322 +method CAnim::CommandReplyL(). The first slot of the TIpcArgs parameter is reserved for
1.323 +internal use.
1.324 +
1.325 +This function always causes a flush of the window server buffer.
1.326 +
1.327 +@param aOpcode An opcode meaningful to the server-side CAnim-derived class.
1.328 +@param aArgs Packaged arguments which will be passed to the server side object.
1.329 +@param aIpcArgs Inter-process communication arguments which will be passed to the server side
1.330 +object. Panics if the first "slot" is set to anything other than TIpcArgs::ENothing.
1.331 +@return A value defined by the animation writer. The value may, in some cases,
1.332 +be defined to be an error code.
1.333 +@see Command()
1.334 +@see AsyncCommandReply()
1.335 +@see CAnim::CommandReplyL() */
1.336 + {
1.337 + return(iAnimDll->CommandReply(iHandle,aOpcode,aArgs,&aIpcArgs));
1.338 + }
1.339 +
1.340 +EXPORT_C void RAnim::Command(TInt aOpcode)
1.341 +/** Sends a command to the server-side CAnim instance, and returns immediately.
1.342 +
1.343 +Commands issued by this function may be buffered before being passed to the
1.344 +server.
1.345 +
1.346 +Server-side errors cannot be detected, so Command() should not be used for
1.347 +operations which could fail or which may leave. Use CommandReply() for those.
1.348 +Although the window server will not fail due to errors not being returned
1.349 +to the client side, client side behaviour will almost certainly not be correct
1.350 +if errors have been generated but not received.
1.351 +
1.352 +Use of this function results in a server-side call to the equivalent CAnim::Command().
1.353 +
1.354 +@param aOpcode An operation meaningful to the server-side CAnim object.
1.355 +@see CommandReply()
1.356 +@see AsyncCommandReply()
1.357 +@see CAnim::Command() */
1.358 + {
1.359 + iAnimDll->Command(iHandle,aOpcode);
1.360 + }
1.361 +
1.362 +EXPORT_C void RAnim::Command(TInt aOpcode, const TPtrC8 &aArgs)
1.363 +/** Sends a command and its arguments to the server-side CAnim instance, and returns
1.364 +immediately.
1.365 +
1.366 +Commands issued by this function may be buffered before being passed to the
1.367 +server.
1.368 +
1.369 +Server-side errors cannot be detected, so Command() should not be used for
1.370 +operations which could fail or which may leave. Use CommandReply() for those.
1.371 +Although the window server will not fail due to errors not being returned
1.372 +to the client side, client side behaviour will almost certainly not be correct
1.373 +if errors have been generated but not received.
1.374 +
1.375 +Use of this function results in a server-side call to the equivalent CAnim::Command().
1.376 +
1.377 +@param aOpcode An operation meaningful to the server-side CAnim object.
1.378 +@param aArgs Packaged arguments which will be passed to the server side object.
1.379 +
1.380 +@see CommandReply()
1.381 +@see AsyncCommandReply()
1.382 +@see CAnim::Command() */
1.383 + {
1.384 + iAnimDll->Command(iHandle,aOpcode, aArgs);
1.385 + }
1.386 +
1.387 +EXPORT_C void RAnim::AsyncCommandReply(TRequestStatus& aRequestStatus,TInt aOpcode, const TIpcArgs& aIpcArgs)
1.388 +/** Sends a command and its arguments to the server-side CAnim instance asynchronously.
1.389 +
1.390 +The IPC (inter-process communication) arguments are passed to the CAnim-derived class'
1.391 +CommandReplyL function, where the behaviour should be implemented. The request is not
1.392 +buffered - rather the function executes asynchronously. The first and second slots of the
1.393 +TIpcArgs parameter are reserved for internal use.
1.394 +
1.395 +If the code calling this function is itself an API that is asynchronous (i.e. if the
1.396 +TRequestStatus passed into this function is simply a parameter to a higher-level API), then that
1.397 +higher-level API should typically provide a corresponding "Cancel" function that its own clients
1.398 +can use to cancel their asynchronous request - this would typically be implemented by the
1.399 +higher-level API by using RAnim::CommandReply.
1.400 +
1.401 +@param aRequestStatus Set initially by the function to KRequestPending. Then when this
1.402 +asynchronous function at some potentially later point in time "completes", aRequestStatus
1.403 +is set to the completion code which is a value defined by the animation writer (i.e. the value
1.404 +that the server-side CAnim-derived class' CommandReplyL returns or leaves with). The value may,
1.405 +in some cases, be defined to be an error code.
1.406 +@param aOpcode An opcode meaningful to the server-side CAnim-derived class.
1.407 +@param aIpcArgs Inter-process communication arguments which will be passed to the server side
1.408 +object. Panics if either the first or second "slot" is set to anything other than
1.409 +TIpcArgs::ENothing.
1.410 +
1.411 +@see CommandReply()
1.412 +@see Command()
1.413 +@see CAnim::CommandReplyL() */
1.414 + {
1.415 + TIpcArgs ipcArgs;
1.416 + ipcArgs=aIpcArgs; // GCC doesn't seem to like doing a copy constructor on TIpcArgs, probably because it's confused by all the templated-ness of TIpcArgs' constructors
1.417 + // check that the caller hasn't used the first or second slot (the first is set by the RAnimDll::AsyncCommandReply call below)
1.418 + ipcArgs.Set(KAsyncMessageSlotAnimDllHandle,TIpcArgs::ENothing);
1.419 + ipcArgs.Set(KAsyncMessageSlotAnimHandle,TIpcArgs::ENothing);
1.420 + __ASSERT_ALWAYS(Mem::Compare(REINTERPRET_CAST(const TUint8*, &ipcArgs), sizeof(TIpcArgs), REINTERPRET_CAST(const TUint8*, &aIpcArgs), sizeof(TIpcArgs))==0,Panic(EW32PanicUsingReservedIpcSlot));
1.421 + ipcArgs.Set(KAsyncMessageSlotAnimHandle,iHandle);
1.422 + iAnimDll->AsyncCommandReply(aRequestStatus, aOpcode, ipcArgs);
1.423 + }
1.424 +
1.425 +EXPORT_C void RAnim::Close()
1.426 +/** Sends the close command.
1.427 +
1.428 +This frees resources belonging to an animation object. It would be called
1.429 +to release resources when the RAnim is owned in-line by another object (so
1.430 +that destruction is automatic).
1.431 +
1.432 +This function always causes a flush of the window server buffer. */
1.433 + {
1.434 + if (iHandle!=0)
1.435 + {
1.436 + iAnimDll->DestroyInstance(iHandle);
1.437 + iHandle=0;
1.438 + }
1.439 + }
1.440 +
1.441 +EXPORT_C void RAnim::Destroy()
1.442 +/** Closes and deletes the server-side animation object.
1.443 +
1.444 +This should be called on heap allocated objects.
1.445 +
1.446 +This function always causes a flush of the window server buffer. */
1.447 + {
1.448 + Close();
1.449 + delete this;
1.450 + }