sl@0
|
1 |
// Copyright (c) 2006-2009 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:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
#ifndef MMFDEVSOUNDSERVER_H
|
sl@0
|
17 |
#define MMFDEVSOUNDSERVER_H
|
sl@0
|
18 |
|
sl@0
|
19 |
#include <e32base.h>
|
sl@0
|
20 |
#include <e32def.h>
|
sl@0
|
21 |
#include <e32std.h>
|
sl@0
|
22 |
#include <mmf/common/mmfipc.h>
|
sl@0
|
23 |
#ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
|
sl@0
|
24 |
#include <mmf/common/mmfipcserver.h>
|
sl@0
|
25 |
#endif
|
sl@0
|
26 |
#include "mmfaudioserver.h"
|
sl@0
|
27 |
#include "mmfdevsoundserverstart.h"
|
sl@0
|
28 |
|
sl@0
|
29 |
/**
|
sl@0
|
30 |
Panic category and codes that MmfDevSoundServer raises on the client
|
sl@0
|
31 |
*/
|
sl@0
|
32 |
_LIT(KMMFDevSoundClientPanicCategory, "DevSoundClient");
|
sl@0
|
33 |
|
sl@0
|
34 |
enum TMMFDevSoundClientPanicCodes
|
sl@0
|
35 |
{
|
sl@0
|
36 |
EMMFDevSoundPlayDataWithoutInitialize,
|
sl@0
|
37 |
EMMFDevSoundRecordDataWithoutInitialize
|
sl@0
|
38 |
};
|
sl@0
|
39 |
|
sl@0
|
40 |
enum TMMFDevSoundServerPanicCodes
|
sl@0
|
41 |
{
|
sl@0
|
42 |
EMMFDevSoundServerIsActive = 1
|
sl@0
|
43 |
};
|
sl@0
|
44 |
|
sl@0
|
45 |
// FORWARD DECLARATIONS
|
sl@0
|
46 |
class CMMFDevSoundServer;
|
sl@0
|
47 |
class MGlobalProperties;
|
sl@0
|
48 |
|
sl@0
|
49 |
// CLASS DECLARATION
|
sl@0
|
50 |
|
sl@0
|
51 |
/**
|
sl@0
|
52 |
DevSound server implementation.
|
sl@0
|
53 |
This class implements the DevSound server thread. The main purpose of this
|
sl@0
|
54 |
class is to create a new session when requested by DevSound proxy.
|
sl@0
|
55 |
|
sl@0
|
56 |
@lib MmfDevSoundServer.lib
|
sl@0
|
57 |
@since
|
sl@0
|
58 |
*/
|
sl@0
|
59 |
NONSHARABLE_CLASS( CMMFDevSoundServer ): public CMmfIpcServer
|
sl@0
|
60 |
{
|
sl@0
|
61 |
public: // Constructors and destructor
|
sl@0
|
62 |
|
sl@0
|
63 |
/**
|
sl@0
|
64 |
Constructs, and returns a pointer to, a new CMMFDevSoundServer object.
|
sl@0
|
65 |
Leaves on failure.
|
sl@0
|
66 |
@param CMMFAudioServer* aAudioServer A pointer reference to Audio
|
sl@0
|
67 |
Server launchining this.
|
sl@0
|
68 |
@param TProcessId& aClientPID A reference to process id of the client
|
sl@0
|
69 |
launching DevSound server.
|
sl@0
|
70 |
@param MGlobalProperties a reference to global properties such as FourCC to format converter
|
sl@0
|
71 |
@return CMMFDevSoundServer* A pointer to newly created object.
|
sl@0
|
72 |
*/
|
sl@0
|
73 |
IMPORT_C static CMMFDevSoundServer* NewL(MGlobalProperties* aGlobalProperties,
|
sl@0
|
74 |
TProcessId& aClientPID);
|
sl@0
|
75 |
|
sl@0
|
76 |
/**
|
sl@0
|
77 |
Destructor.
|
sl@0
|
78 |
*/
|
sl@0
|
79 |
~CMMFDevSoundServer();
|
sl@0
|
80 |
|
sl@0
|
81 |
// New functions
|
sl@0
|
82 |
|
sl@0
|
83 |
/**
|
sl@0
|
84 |
From CServer2. Creates a server-side client session object.
|
sl@0
|
85 |
@since
|
sl@0
|
86 |
@param TVersion - server version requested by the client.
|
sl@0
|
87 |
@return CMmfIpcSession* A pointer to newly created session.
|
sl@0
|
88 |
*/
|
sl@0
|
89 |
CMmfIpcSession* NewSessionL(const TVersion &aVersion) const;
|
sl@0
|
90 |
|
sl@0
|
91 |
/**
|
sl@0
|
92 |
Increment the session Id.
|
sl@0
|
93 |
@since
|
sl@0
|
94 |
@param ?arg1 ?description
|
sl@0
|
95 |
@return ?description
|
sl@0
|
96 |
@return void
|
sl@0
|
97 |
*/
|
sl@0
|
98 |
void IncrementSessionId();
|
sl@0
|
99 |
|
sl@0
|
100 |
/**
|
sl@0
|
101 |
Decrement the session Id.
|
sl@0
|
102 |
Once the number of DevSound sessions becomes zero, DevSound
|
sl@0
|
103 |
Server will start its shutdown routine.
|
sl@0
|
104 |
@since
|
sl@0
|
105 |
@param ?arg1 ?description
|
sl@0
|
106 |
@return void
|
sl@0
|
107 |
*/
|
sl@0
|
108 |
void DecrementSessionId();
|
sl@0
|
109 |
|
sl@0
|
110 |
/**
|
sl@0
|
111 |
Sends Event to DevSound client.
|
sl@0
|
112 |
@since
|
sl@0
|
113 |
@param TInt aSessionToAlert Id of DevSound to be alerted.
|
sl@0
|
114 |
@param TInt aSessionToBeLaunched Id of DevSound to be launched.
|
sl@0
|
115 |
@return void
|
sl@0
|
116 |
*/
|
sl@0
|
117 |
void SendEventToClient(TInt aSessionToAlert, TInt aSessionToBeLaunched);
|
sl@0
|
118 |
|
sl@0
|
119 |
/**
|
sl@0
|
120 |
Launches the DevSound servers waiting for Audio Policy.
|
sl@0
|
121 |
@since
|
sl@0
|
122 |
@param TInt aSessionToBeLaunched Id of DevSound to be launched.
|
sl@0
|
123 |
@return void
|
sl@0
|
124 |
*/
|
sl@0
|
125 |
void LaunchRequest(TInt aSessionId);
|
sl@0
|
126 |
|
sl@0
|
127 |
/**
|
sl@0
|
128 |
Returns DevSound Server session identifier.
|
sl@0
|
129 |
@since
|
sl@0
|
130 |
@return TInt A integer representing session id.
|
sl@0
|
131 |
*/
|
sl@0
|
132 |
TInt DevSoundSessionId() {return iDevSoundSessionId;};
|
sl@0
|
133 |
|
sl@0
|
134 |
|
sl@0
|
135 |
/**
|
sl@0
|
136 |
Static entry point to launch the thread.
|
sl@0
|
137 |
@since
|
sl@0
|
138 |
@param TAny* aParams
|
sl@0
|
139 |
@return KErrNone if successfull, else corresponding error code
|
sl@0
|
140 |
*/
|
sl@0
|
141 |
IMPORT_C static TInt StartThread(TAny* aParams);
|
sl@0
|
142 |
|
sl@0
|
143 |
|
sl@0
|
144 |
/**
|
sl@0
|
145 |
Returns process id of the client application.
|
sl@0
|
146 |
@since
|
sl@0
|
147 |
@return TProcessId Process id of the client application.
|
sl@0
|
148 |
*/
|
sl@0
|
149 |
TProcessId ProcessId() {return iClientPID;};
|
sl@0
|
150 |
|
sl@0
|
151 |
/**
|
sl@0
|
152 |
|
sl@0
|
153 |
@since
|
sl@0
|
154 |
@return void.
|
sl@0
|
155 |
*/
|
sl@0
|
156 |
void SetClientProcessIdL(TThreadId aTid);
|
sl@0
|
157 |
|
sl@0
|
158 |
/**
|
sl@0
|
159 |
Returns the actual process id of the client application.
|
sl@0
|
160 |
@since
|
sl@0
|
161 |
@return TProcessId Process id of the client application.
|
sl@0
|
162 |
*/
|
sl@0
|
163 |
TProcessId ActualProcessId() {return iActualClientPID;};
|
sl@0
|
164 |
|
sl@0
|
165 |
private:
|
sl@0
|
166 |
|
sl@0
|
167 |
/**
|
sl@0
|
168 |
C++ default constructor.
|
sl@0
|
169 |
*/
|
sl@0
|
170 |
CMMFDevSoundServer(MGlobalProperties* aGlobalProperties,
|
sl@0
|
171 |
TProcessId& aClientPID);
|
sl@0
|
172 |
|
sl@0
|
173 |
/**
|
sl@0
|
174 |
By default Symbian 2nd phase constructor is private.
|
sl@0
|
175 |
*/
|
sl@0
|
176 |
void ConstructL();
|
sl@0
|
177 |
static void RenamePrioritizeServer();
|
sl@0
|
178 |
static void StartThreadL(TDevSoundServerStart& aStart);
|
sl@0
|
179 |
|
sl@0
|
180 |
CMmfIpcSession* CreateNewSessionL(const TVersion& aVersion) const;
|
sl@0
|
181 |
void CheckForNoSessionsLeft();
|
sl@0
|
182 |
|
sl@0
|
183 |
private:
|
sl@0
|
184 |
/**
|
sl@0
|
185 |
A Timer utility class used by DevSound Server for shutdown purpose.
|
sl@0
|
186 |
*/
|
sl@0
|
187 |
class CDelayDevSoundShutDown : public CActive
|
sl@0
|
188 |
{
|
sl@0
|
189 |
public:
|
sl@0
|
190 |
// Construct/destruct
|
sl@0
|
191 |
static CDelayDevSoundShutDown* NewL();
|
sl@0
|
192 |
~CDelayDevSoundShutDown();
|
sl@0
|
193 |
|
sl@0
|
194 |
public:
|
sl@0
|
195 |
// Request a timeout after aDelay
|
sl@0
|
196 |
void SetDelay(TTimeIntervalMicroSeconds32 aDelay);
|
sl@0
|
197 |
|
sl@0
|
198 |
protected:
|
sl@0
|
199 |
// From CActive
|
sl@0
|
200 |
void RunL();
|
sl@0
|
201 |
void DoCancel();
|
sl@0
|
202 |
|
sl@0
|
203 |
private:
|
sl@0
|
204 |
// Construct/destruct
|
sl@0
|
205 |
CDelayDevSoundShutDown();
|
sl@0
|
206 |
void ConstructL();
|
sl@0
|
207 |
|
sl@0
|
208 |
private:
|
sl@0
|
209 |
RTimer iTimer; // Has
|
sl@0
|
210 |
};
|
sl@0
|
211 |
|
sl@0
|
212 |
private: // Data
|
sl@0
|
213 |
// Id allocated to this DevSound server.
|
sl@0
|
214 |
TInt iDevSoundSessionId;
|
sl@0
|
215 |
// Session to be launched
|
sl@0
|
216 |
TInt iSessionToBeLaunched;
|
sl@0
|
217 |
// Process id of client
|
sl@0
|
218 |
TProcessId iClientPID;
|
sl@0
|
219 |
// DevSound server shutdown utlilty timer object
|
sl@0
|
220 |
CDelayDevSoundShutDown* iDelayDevSoundShutDown;
|
sl@0
|
221 |
// A pointer reference to Audio Server
|
sl@0
|
222 |
MGlobalProperties* iGlobalProperties;
|
sl@0
|
223 |
// Process id of client
|
sl@0
|
224 |
TProcessId iActualClientPID;
|
sl@0
|
225 |
};
|
sl@0
|
226 |
|
sl@0
|
227 |
GLDEF_C void PanicClient(const RMmfIpcMessage& aMessage,
|
sl@0
|
228 |
TMMFDevSoundClientPanicCodes aPanicCode);
|
sl@0
|
229 |
|
sl@0
|
230 |
|
sl@0
|
231 |
#endif // MMFDEVSOUNDSERVER_H
|
sl@0
|
232 |
|
sl@0
|
233 |
// End of File
|