Update contrib.
1 // Copyright (c) 2006-2009 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.
16 #ifndef MMFDEVSOUNDSERVER_H
17 #define MMFDEVSOUNDSERVER_H
22 #include <mmf/common/mmfipc.h>
23 #ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
24 #include <mmf/common/mmfipcserver.h>
26 #include "mmfaudioserver.h"
27 #include "mmfdevsoundserverstart.h"
30 Panic category and codes that MmfDevSoundServer raises on the client
32 _LIT(KMMFDevSoundClientPanicCategory, "DevSoundClient");
34 enum TMMFDevSoundClientPanicCodes
36 EMMFDevSoundPlayDataWithoutInitialize,
37 EMMFDevSoundRecordDataWithoutInitialize
40 enum TMMFDevSoundServerPanicCodes
42 EMMFDevSoundServerIsActive = 1
45 // FORWARD DECLARATIONS
46 class CMMFDevSoundServer;
47 class MGlobalProperties;
52 DevSound server implementation.
53 This class implements the DevSound server thread. The main purpose of this
54 class is to create a new session when requested by DevSound proxy.
56 @lib MmfDevSoundServer.lib
59 NONSHARABLE_CLASS( CMMFDevSoundServer ): public CMmfIpcServer
61 public: // Constructors and destructor
64 Constructs, and returns a pointer to, a new CMMFDevSoundServer object.
66 @param CMMFAudioServer* aAudioServer A pointer reference to Audio
67 Server launchining this.
68 @param TProcessId& aClientPID A reference to process id of the client
69 launching DevSound server.
70 @param MGlobalProperties a reference to global properties such as FourCC to format converter
71 @return CMMFDevSoundServer* A pointer to newly created object.
73 IMPORT_C static CMMFDevSoundServer* NewL(MGlobalProperties* aGlobalProperties,
74 TProcessId& aClientPID);
79 ~CMMFDevSoundServer();
84 From CServer2. Creates a server-side client session object.
86 @param TVersion - server version requested by the client.
87 @return CMmfIpcSession* A pointer to newly created session.
89 CMmfIpcSession* NewSessionL(const TVersion &aVersion) const;
92 Increment the session Id.
94 @param ?arg1 ?description
98 void IncrementSessionId();
101 Decrement the session Id.
102 Once the number of DevSound sessions becomes zero, DevSound
103 Server will start its shutdown routine.
105 @param ?arg1 ?description
108 void DecrementSessionId();
111 Sends Event to DevSound client.
113 @param TInt aSessionToAlert Id of DevSound to be alerted.
114 @param TInt aSessionToBeLaunched Id of DevSound to be launched.
117 void SendEventToClient(TInt aSessionToAlert, TInt aSessionToBeLaunched);
120 Launches the DevSound servers waiting for Audio Policy.
122 @param TInt aSessionToBeLaunched Id of DevSound to be launched.
125 void LaunchRequest(TInt aSessionId);
128 Returns DevSound Server session identifier.
130 @return TInt A integer representing session id.
132 TInt DevSoundSessionId() {return iDevSoundSessionId;};
136 Static entry point to launch the thread.
139 @return KErrNone if successfull, else corresponding error code
141 IMPORT_C static TInt StartThread(TAny* aParams);
145 Returns process id of the client application.
147 @return TProcessId Process id of the client application.
149 TProcessId ProcessId() {return iClientPID;};
156 void SetClientProcessIdL(TThreadId aTid);
159 Returns the actual process id of the client application.
161 @return TProcessId Process id of the client application.
163 TProcessId ActualProcessId() {return iActualClientPID;};
168 C++ default constructor.
170 CMMFDevSoundServer(MGlobalProperties* aGlobalProperties,
171 TProcessId& aClientPID);
174 By default Symbian 2nd phase constructor is private.
177 static void RenamePrioritizeServer();
178 static void StartThreadL(TDevSoundServerStart& aStart);
180 CMmfIpcSession* CreateNewSessionL(const TVersion& aVersion) const;
181 void CheckForNoSessionsLeft();
185 A Timer utility class used by DevSound Server for shutdown purpose.
187 class CDelayDevSoundShutDown : public CActive
190 // Construct/destruct
191 static CDelayDevSoundShutDown* NewL();
192 ~CDelayDevSoundShutDown();
195 // Request a timeout after aDelay
196 void SetDelay(TTimeIntervalMicroSeconds32 aDelay);
204 // Construct/destruct
205 CDelayDevSoundShutDown();
209 RTimer iTimer; // Has
213 // Id allocated to this DevSound server.
214 TInt iDevSoundSessionId;
215 // Session to be launched
216 TInt iSessionToBeLaunched;
217 // Process id of client
218 TProcessId iClientPID;
219 // DevSound server shutdown utlilty timer object
220 CDelayDevSoundShutDown* iDelayDevSoundShutDown;
221 // A pointer reference to Audio Server
222 MGlobalProperties* iGlobalProperties;
223 // Process id of client
224 TProcessId iActualClientPID;
227 GLDEF_C void PanicClient(const RMmfIpcMessage& aMessage,
228 TMMFDevSoundClientPanicCodes aPanicCode);
231 #endif // MMFDEVSOUNDSERVER_H