1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/mm/devsound/a3fdevsound/src/mmfdevsoundserver/mmfdevsoundserver.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,233 @@
1.4 +// Copyright (c) 2006-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 +//
1.18 +
1.19 +#ifndef MMFDEVSOUNDSERVER_H
1.20 +#define MMFDEVSOUNDSERVER_H
1.21 +
1.22 +#include <e32base.h>
1.23 +#include <e32def.h>
1.24 +#include <e32std.h>
1.25 +#include <mmf/common/mmfipc.h>
1.26 +#ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
1.27 +#include <mmf/common/mmfipcserver.h>
1.28 +#endif
1.29 +#include "mmfaudioserver.h"
1.30 +#include "mmfdevsoundserverstart.h"
1.31 +
1.32 +/**
1.33 + Panic category and codes that MmfDevSoundServer raises on the client
1.34 +*/
1.35 +_LIT(KMMFDevSoundClientPanicCategory, "DevSoundClient");
1.36 +
1.37 +enum TMMFDevSoundClientPanicCodes
1.38 + {
1.39 + EMMFDevSoundPlayDataWithoutInitialize,
1.40 + EMMFDevSoundRecordDataWithoutInitialize
1.41 + };
1.42 +
1.43 +enum TMMFDevSoundServerPanicCodes
1.44 + {
1.45 + EMMFDevSoundServerIsActive = 1
1.46 + };
1.47 +
1.48 +// FORWARD DECLARATIONS
1.49 +class CMMFDevSoundServer;
1.50 +class MGlobalProperties;
1.51 +
1.52 +// CLASS DECLARATION
1.53 +
1.54 +/**
1.55 + DevSound server implementation.
1.56 + This class implements the DevSound server thread. The main purpose of this
1.57 + class is to create a new session when requested by DevSound proxy.
1.58 +
1.59 + @lib MmfDevSoundServer.lib
1.60 + @since
1.61 +*/
1.62 +NONSHARABLE_CLASS( CMMFDevSoundServer ): public CMmfIpcServer
1.63 + {
1.64 +public: // Constructors and destructor
1.65 +
1.66 + /**
1.67 + Constructs, and returns a pointer to, a new CMMFDevSoundServer object.
1.68 + Leaves on failure.
1.69 + @param CMMFAudioServer* aAudioServer A pointer reference to Audio
1.70 + Server launchining this.
1.71 + @param TProcessId& aClientPID A reference to process id of the client
1.72 + launching DevSound server.
1.73 + @param MGlobalProperties a reference to global properties such as FourCC to format converter
1.74 + @return CMMFDevSoundServer* A pointer to newly created object.
1.75 + */
1.76 + IMPORT_C static CMMFDevSoundServer* NewL(MGlobalProperties* aGlobalProperties,
1.77 + TProcessId& aClientPID);
1.78 +
1.79 + /**
1.80 + Destructor.
1.81 + */
1.82 + ~CMMFDevSoundServer();
1.83 +
1.84 + // New functions
1.85 +
1.86 + /**
1.87 + From CServer2. Creates a server-side client session object.
1.88 + @since
1.89 + @param TVersion - server version requested by the client.
1.90 + @return CMmfIpcSession* A pointer to newly created session.
1.91 + */
1.92 + CMmfIpcSession* NewSessionL(const TVersion &aVersion) const;
1.93 +
1.94 + /**
1.95 + Increment the session Id.
1.96 + @since
1.97 + @param ?arg1 ?description
1.98 + @return ?description
1.99 + @return void
1.100 + */
1.101 + void IncrementSessionId();
1.102 +
1.103 + /**
1.104 + Decrement the session Id.
1.105 + Once the number of DevSound sessions becomes zero, DevSound
1.106 + Server will start its shutdown routine.
1.107 + @since
1.108 + @param ?arg1 ?description
1.109 + @return void
1.110 + */
1.111 + void DecrementSessionId();
1.112 +
1.113 + /**
1.114 + Sends Event to DevSound client.
1.115 + @since
1.116 + @param TInt aSessionToAlert Id of DevSound to be alerted.
1.117 + @param TInt aSessionToBeLaunched Id of DevSound to be launched.
1.118 + @return void
1.119 + */
1.120 + void SendEventToClient(TInt aSessionToAlert, TInt aSessionToBeLaunched);
1.121 +
1.122 + /**
1.123 + Launches the DevSound servers waiting for Audio Policy.
1.124 + @since
1.125 + @param TInt aSessionToBeLaunched Id of DevSound to be launched.
1.126 + @return void
1.127 + */
1.128 + void LaunchRequest(TInt aSessionId);
1.129 +
1.130 + /**
1.131 + Returns DevSound Server session identifier.
1.132 + @since
1.133 + @return TInt A integer representing session id.
1.134 + */
1.135 + TInt DevSoundSessionId() {return iDevSoundSessionId;};
1.136 +
1.137 +
1.138 + /**
1.139 + Static entry point to launch the thread.
1.140 + @since
1.141 + @param TAny* aParams
1.142 + @return KErrNone if successfull, else corresponding error code
1.143 + */
1.144 + IMPORT_C static TInt StartThread(TAny* aParams);
1.145 +
1.146 +
1.147 + /**
1.148 + Returns process id of the client application.
1.149 + @since
1.150 + @return TProcessId Process id of the client application.
1.151 + */
1.152 + TProcessId ProcessId() {return iClientPID;};
1.153 +
1.154 + /**
1.155 +
1.156 + @since
1.157 + @return void.
1.158 + */
1.159 + void SetClientProcessIdL(TThreadId aTid);
1.160 +
1.161 + /**
1.162 + Returns the actual process id of the client application.
1.163 + @since
1.164 + @return TProcessId Process id of the client application.
1.165 + */
1.166 + TProcessId ActualProcessId() {return iActualClientPID;};
1.167 +
1.168 +private:
1.169 +
1.170 + /**
1.171 + C++ default constructor.
1.172 + */
1.173 + CMMFDevSoundServer(MGlobalProperties* aGlobalProperties,
1.174 + TProcessId& aClientPID);
1.175 +
1.176 + /**
1.177 + By default Symbian 2nd phase constructor is private.
1.178 + */
1.179 + void ConstructL();
1.180 + static void RenamePrioritizeServer();
1.181 + static void StartThreadL(TDevSoundServerStart& aStart);
1.182 +
1.183 + CMmfIpcSession* CreateNewSessionL(const TVersion& aVersion) const;
1.184 + void CheckForNoSessionsLeft();
1.185 +
1.186 +private:
1.187 + /**
1.188 + A Timer utility class used by DevSound Server for shutdown purpose.
1.189 + */
1.190 + class CDelayDevSoundShutDown : public CActive
1.191 + {
1.192 + public:
1.193 + // Construct/destruct
1.194 + static CDelayDevSoundShutDown* NewL();
1.195 + ~CDelayDevSoundShutDown();
1.196 +
1.197 + public:
1.198 + // Request a timeout after aDelay
1.199 + void SetDelay(TTimeIntervalMicroSeconds32 aDelay);
1.200 +
1.201 + protected:
1.202 + // From CActive
1.203 + void RunL();
1.204 + void DoCancel();
1.205 +
1.206 + private:
1.207 + // Construct/destruct
1.208 + CDelayDevSoundShutDown();
1.209 + void ConstructL();
1.210 +
1.211 + private:
1.212 + RTimer iTimer; // Has
1.213 + };
1.214 +
1.215 +private: // Data
1.216 + // Id allocated to this DevSound server.
1.217 + TInt iDevSoundSessionId;
1.218 + // Session to be launched
1.219 + TInt iSessionToBeLaunched;
1.220 + // Process id of client
1.221 + TProcessId iClientPID;
1.222 + // DevSound server shutdown utlilty timer object
1.223 + CDelayDevSoundShutDown* iDelayDevSoundShutDown;
1.224 + // A pointer reference to Audio Server
1.225 + MGlobalProperties* iGlobalProperties;
1.226 + // Process id of client
1.227 + TProcessId iActualClientPID;
1.228 + };
1.229 +
1.230 +GLDEF_C void PanicClient(const RMmfIpcMessage& aMessage,
1.231 + TMMFDevSoundClientPanicCodes aPanicCode);
1.232 +
1.233 +
1.234 +#endif // MMFDEVSOUNDSERVER_H
1.235 +
1.236 +// End of File