sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 2006 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
3 |
* All rights reserved.
|
sl@0
|
4 |
* This component and the accompanying materials are made available
|
sl@0
|
5 |
* under the terms of "Eclipse Public License v1.0"
|
sl@0
|
6 |
* which accompanies this distribution, and is available
|
sl@0
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* Initial Contributors:
|
sl@0
|
10 |
* Nokia Corporation - initial contribution.
|
sl@0
|
11 |
*
|
sl@0
|
12 |
* Contributors:
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* Description: TelephonyAudioRoutingServer implementation
|
sl@0
|
15 |
*
|
sl@0
|
16 |
*/
|
sl@0
|
17 |
|
sl@0
|
18 |
|
sl@0
|
19 |
|
sl@0
|
20 |
#include <e32svr.h>
|
sl@0
|
21 |
#include <e32math.h>
|
sl@0
|
22 |
#include <data_caging_path_literals.hrh>
|
sl@0
|
23 |
#include <barsc.h>
|
sl@0
|
24 |
#include <barsread.h>
|
sl@0
|
25 |
#include "TelephonyAudioRoutingServer.h"
|
sl@0
|
26 |
#include "TelephonyAudioRoutingServerSession.h"
|
sl@0
|
27 |
#include "TelephonyAudioRoutingClientServer.h"
|
sl@0
|
28 |
|
sl@0
|
29 |
|
sl@0
|
30 |
void PanicClient(
|
sl@0
|
31 |
const RMessage2& aMessage,
|
sl@0
|
32 |
TTelephonyAudioRoutingPanic aPanic)
|
sl@0
|
33 |
{
|
sl@0
|
34 |
_LIT(KPanic,"TelephonyAudioRoutingServer");
|
sl@0
|
35 |
aMessage.Panic(KPanic,aPanic);
|
sl@0
|
36 |
}
|
sl@0
|
37 |
|
sl@0
|
38 |
// ========================== OTHER EXPORTED FUNCTIONS =========================
|
sl@0
|
39 |
|
sl@0
|
40 |
// -----------------------------------------------------------------------------
|
sl@0
|
41 |
// StartThreadL
|
sl@0
|
42 |
// Start the TelephonyAudioRoutingServer thread.
|
sl@0
|
43 |
// Returns: TInt: error code
|
sl@0
|
44 |
// -----------------------------------------------------------------------------
|
sl@0
|
45 |
//
|
sl@0
|
46 |
EXPORT_C TInt CTelephonyAudioRoutingServer::StartThreadL(
|
sl@0
|
47 |
TAny* /*aParms*/)
|
sl@0
|
48 |
/**
|
sl@0
|
49 |
Thread entry-point function.
|
sl@0
|
50 |
The TServerStart objects is passed as the thread parameter
|
sl@0
|
51 |
**/
|
sl@0
|
52 |
{
|
sl@0
|
53 |
|
sl@0
|
54 |
TELAUDRTNG_RDEBUG(_L("[TELAUDRTNG]\t CTelephonyAudioRoutingServer::StartThreadL "));
|
sl@0
|
55 |
|
sl@0
|
56 |
TInt err = KErrNone;
|
sl@0
|
57 |
__UHEAP_MARK;
|
sl@0
|
58 |
|
sl@0
|
59 |
CTrapCleanup* cleanup = CTrapCleanup::New();
|
sl@0
|
60 |
|
sl@0
|
61 |
if (!cleanup)
|
sl@0
|
62 |
err = KErrNoMemory;
|
sl@0
|
63 |
|
sl@0
|
64 |
if (!err)
|
sl@0
|
65 |
{
|
sl@0
|
66 |
CActiveScheduler* sched=NULL;
|
sl@0
|
67 |
sched=new(ELeave) CActiveScheduler;
|
sl@0
|
68 |
CActiveScheduler::Install(sched);
|
sl@0
|
69 |
CTelephonyAudioRoutingServer* server = NULL;
|
sl@0
|
70 |
TRAPD(err,server = CTelephonyAudioRoutingServer::NewL());
|
sl@0
|
71 |
|
sl@0
|
72 |
if(!err)
|
sl@0
|
73 |
{
|
sl@0
|
74 |
// Sync with the client and enter the active scheduler
|
sl@0
|
75 |
RThread::Rendezvous(KErrNone);
|
sl@0
|
76 |
sched->Start();
|
sl@0
|
77 |
}
|
sl@0
|
78 |
|
sl@0
|
79 |
delete server;
|
sl@0
|
80 |
delete sched;
|
sl@0
|
81 |
}
|
sl@0
|
82 |
|
sl@0
|
83 |
delete cleanup;
|
sl@0
|
84 |
|
sl@0
|
85 |
__UHEAP_MARKEND;
|
sl@0
|
86 |
return err;
|
sl@0
|
87 |
}
|
sl@0
|
88 |
|
sl@0
|
89 |
|
sl@0
|
90 |
// ============================ MEMBER FUNCTIONS ===============================
|
sl@0
|
91 |
|
sl@0
|
92 |
// -----------------------------------------------------------------------------
|
sl@0
|
93 |
// CTelephonyAudioRoutingServer::CTelephonyAudioRoutingServer
|
sl@0
|
94 |
// C++ default constructor can NOT contain any code, that
|
sl@0
|
95 |
// might leave.
|
sl@0
|
96 |
// -----------------------------------------------------------------------------
|
sl@0
|
97 |
//
|
sl@0
|
98 |
CTelephonyAudioRoutingServer::CTelephonyAudioRoutingServer()
|
sl@0
|
99 |
:CServer2(0,EUnsharableSessions),
|
sl@0
|
100 |
iSessionIdsInUse()
|
sl@0
|
101 |
{
|
sl@0
|
102 |
iSessionCount = 0;
|
sl@0
|
103 |
}
|
sl@0
|
104 |
|
sl@0
|
105 |
// -----------------------------------------------------------------------------
|
sl@0
|
106 |
// CTelephonyAudioRoutingServer::ConstructL
|
sl@0
|
107 |
// Symbian 2nd phase constructor can leave.
|
sl@0
|
108 |
// -----------------------------------------------------------------------------
|
sl@0
|
109 |
//
|
sl@0
|
110 |
void CTelephonyAudioRoutingServer::ConstructL()
|
sl@0
|
111 |
{
|
sl@0
|
112 |
TELAUDRTNG_RDEBUG(_L("[TELAUDRTNG]\t CTelephonyAudioRoutingServer::ConstructL "));
|
sl@0
|
113 |
TName name(RThread().Name());
|
sl@0
|
114 |
StartL(name);
|
sl@0
|
115 |
|
sl@0
|
116 |
// Set default values
|
sl@0
|
117 |
iCurrentAudioOutput = CTelephonyAudioRouting::ENotActive;
|
sl@0
|
118 |
iPreviousAudioOutput = CTelephonyAudioRouting::ENotActive;
|
sl@0
|
119 |
}
|
sl@0
|
120 |
|
sl@0
|
121 |
// -----------------------------------------------------------------------------
|
sl@0
|
122 |
// CTelephonyAudioRoutingServer::NewL
|
sl@0
|
123 |
// Two-phased constructor.
|
sl@0
|
124 |
// -----------------------------------------------------------------------------
|
sl@0
|
125 |
//
|
sl@0
|
126 |
EXPORT_C CTelephonyAudioRoutingServer* CTelephonyAudioRoutingServer::NewL()
|
sl@0
|
127 |
{
|
sl@0
|
128 |
CTelephonyAudioRoutingServer* self=new(ELeave) CTelephonyAudioRoutingServer();
|
sl@0
|
129 |
CleanupStack::PushL(self);
|
sl@0
|
130 |
self->ConstructL();
|
sl@0
|
131 |
CleanupStack::Pop();
|
sl@0
|
132 |
return self;
|
sl@0
|
133 |
}
|
sl@0
|
134 |
|
sl@0
|
135 |
// Destructor
|
sl@0
|
136 |
CTelephonyAudioRoutingServer::~CTelephonyAudioRoutingServer()
|
sl@0
|
137 |
{
|
sl@0
|
138 |
TELAUDRTNG_RDEBUG(_L("[TELAUDRTNG]\t CTelephonyAudioRoutingServer::~CTelephonyAudioRoutingServer "));
|
sl@0
|
139 |
iSessionIdsInUse.Close();
|
sl@0
|
140 |
iSetOutputRequests.Close();
|
sl@0
|
141 |
iAvailableOutputs.Close();
|
sl@0
|
142 |
}
|
sl@0
|
143 |
|
sl@0
|
144 |
|
sl@0
|
145 |
// -----------------------------------------------------------------------------
|
sl@0
|
146 |
// CTelephonyAudioRoutingServer::NewSessionL
|
sl@0
|
147 |
// Create a new client session
|
sl@0
|
148 |
// (other items were commented in a header).
|
sl@0
|
149 |
// -----------------------------------------------------------------------------
|
sl@0
|
150 |
//
|
sl@0
|
151 |
CSession2* CTelephonyAudioRoutingServer::NewSessionL(
|
sl@0
|
152 |
const TVersion&,
|
sl@0
|
153 |
const RMessage2& /*aMessage*/) const
|
sl@0
|
154 |
{
|
sl@0
|
155 |
TELAUDRTNG_RDEBUG(_L("[TELAUDRTNG]\t CTelephonyAudioRoutingServer::NewSessionL "));
|
sl@0
|
156 |
|
sl@0
|
157 |
CTelephonyAudioRoutingServer& nonConstThis = *const_cast<CTelephonyAudioRoutingServer*>(this);
|
sl@0
|
158 |
const TInt sessionId = nonConstThis.IdentifyAndAllocateNextFreeSessionIdL();
|
sl@0
|
159 |
return new (ELeave) CTelephonyAudioRoutingServerSession(sessionId);
|
sl@0
|
160 |
}
|
sl@0
|
161 |
|
sl@0
|
162 |
// -----------------------------------------------------------------------------
|
sl@0
|
163 |
// CTelephonyAudioRoutingServer::DoSetOutputL
|
sl@0
|
164 |
// Notify the policy session about a request to change output.
|
sl@0
|
165 |
// (other items were commented in a header).
|
sl@0
|
166 |
// -----------------------------------------------------------------------------
|
sl@0
|
167 |
//
|
sl@0
|
168 |
void CTelephonyAudioRoutingServer::DoSetOutputL (
|
sl@0
|
169 |
TInt aSessionId,
|
sl@0
|
170 |
const RMessage2& aMessage)
|
sl@0
|
171 |
{
|
sl@0
|
172 |
|
sl@0
|
173 |
TELAUDRTNG_RDEBUG(_L("[TELAUDRTNG]\t CTelephonyAudioRoutingServer::DoSetOutputL "));
|
sl@0
|
174 |
|
sl@0
|
175 |
//Check for multimedia capability:
|
sl@0
|
176 |
RThread clientThread;
|
sl@0
|
177 |
aMessage.ClientL(clientThread);
|
sl@0
|
178 |
RProcess clientProcess;
|
sl@0
|
179 |
User::LeaveIfError(clientThread.Process(clientProcess));
|
sl@0
|
180 |
|
sl@0
|
181 |
TProcessId clientProcessID(clientProcess.Id());
|
sl@0
|
182 |
|
sl@0
|
183 |
|
sl@0
|
184 |
TBool clientHasCapabilities = clientProcess.HasCapability(ECapabilityMultimediaDD, KSuppressPlatSecDiagnostic);
|
sl@0
|
185 |
|
sl@0
|
186 |
if (!clientHasCapabilities)
|
sl@0
|
187 |
{
|
sl@0
|
188 |
TELAUDRTNG_RDEBUG(_L("[TELAUDRTNG]\t CTelephonyAudioRoutingServer::DoSetOutputL ERROR: Client failed Capability Check"));
|
sl@0
|
189 |
aMessage.Complete(KErrPermissionDenied);
|
sl@0
|
190 |
return;
|
sl@0
|
191 |
}
|
sl@0
|
192 |
|
sl@0
|
193 |
clientThread.Close();
|
sl@0
|
194 |
clientProcess.Close();
|
sl@0
|
195 |
|
sl@0
|
196 |
TPckgBuf<CTelephonyAudioRouting::TAudioOutput> xPackage;
|
sl@0
|
197 |
aMessage.ReadL( 0, xPackage);
|
sl@0
|
198 |
|
sl@0
|
199 |
CTelephonyAudioRouting::TAudioOutput response = xPackage();
|
sl@0
|
200 |
TELAUDRTNG_RDEBUG1(_L("[TELAUDRTNG]\t CTelephonyAudioRoutingServer::DoSetOutputL Audio Output Value to set on the sessions: %d"), response);
|
sl@0
|
201 |
TPckgBuf<CTelephonyAudioRouting::TAudioOutput> yPackage; // space for previous output
|
sl@0
|
202 |
aMessage.ReadL( 1, yPackage);
|
sl@0
|
203 |
|
sl@0
|
204 |
TPckgBuf<TInt> zPackage; // space for err
|
sl@0
|
205 |
aMessage.ReadL( 2, zPackage);
|
sl@0
|
206 |
|
sl@0
|
207 |
TPckgBuf<TBool> showNotePkg;
|
sl@0
|
208 |
aMessage.ReadL(3, showNotePkg);
|
sl@0
|
209 |
iShowNoteMode = showNotePkg();
|
sl@0
|
210 |
TELAUDRTNG_RDEBUG1(_L("[TELAUDRTNG]\t CTelephonyAudioRoutingServer::DoSetOutputL ShowNoteMode Value Sent to server = %d"), iShowNoteMode);
|
sl@0
|
211 |
|
sl@0
|
212 |
iSetOutputRequests.AppendL(aSessionId);
|
sl@0
|
213 |
|
sl@0
|
214 |
// Verify requested audio change exists in available outputs (unless is ENone or ENotActive)
|
sl@0
|
215 |
if ( (response != CTelephonyAudioRouting::ENone) && (response != CTelephonyAudioRouting::ENotActive))
|
sl@0
|
216 |
{
|
sl@0
|
217 |
TBool found = IsAvailableOutput(response);
|
sl@0
|
218 |
if (!found)
|
sl@0
|
219 |
{
|
sl@0
|
220 |
TELAUDRTNG_RDEBUG(_L("[TELAUDRTNG]\t CTelephonyAudioRoutingServer::DoSetOutputL: ERROR, Requested output not in availableOutputs!"));
|
sl@0
|
221 |
SetOutputCompleteL(response, KErrPermissionDenied);
|
sl@0
|
222 |
return;
|
sl@0
|
223 |
}
|
sl@0
|
224 |
}
|
sl@0
|
225 |
|
sl@0
|
226 |
iSessionIter.SetToFirst();
|
sl@0
|
227 |
|
sl@0
|
228 |
CTelephonyAudioRoutingServerSession* serverSession = static_cast<CTelephonyAudioRoutingServerSession*>(iSessionIter++);
|
sl@0
|
229 |
|
sl@0
|
230 |
while (serverSession != NULL)
|
sl@0
|
231 |
{
|
sl@0
|
232 |
if(serverSession->SessionId() == iPolicySessionId)
|
sl@0
|
233 |
{
|
sl@0
|
234 |
serverSession->OutputChangeRequested(response);
|
sl@0
|
235 |
break;
|
sl@0
|
236 |
}
|
sl@0
|
237 |
serverSession = static_cast<CTelephonyAudioRoutingServerSession*>(iSessionIter++);
|
sl@0
|
238 |
}
|
sl@0
|
239 |
|
sl@0
|
240 |
}
|
sl@0
|
241 |
|
sl@0
|
242 |
// -----------------------------------------------------------------------------
|
sl@0
|
243 |
// CTelephonyAudioRoutingServer::IdentifyAndAllocateNextFreeSessionIdL
|
sl@0
|
244 |
// Assign a unique session Id to a new session
|
sl@0
|
245 |
// (other items were commented in a header).
|
sl@0
|
246 |
// -----------------------------------------------------------------------------
|
sl@0
|
247 |
//
|
sl@0
|
248 |
TInt CTelephonyAudioRoutingServer::IdentifyAndAllocateNextFreeSessionIdL()
|
sl@0
|
249 |
{
|
sl@0
|
250 |
|
sl@0
|
251 |
TELAUDRTNG_RDEBUG(_L("[TELAUDRTNG]\t CTelephonyAudioRoutingServer::IdentifyAndAllocateNextFreeSessionIdL "));
|
sl@0
|
252 |
|
sl@0
|
253 |
// The aim of this method is to locate a session identifier which is not already
|
sl@0
|
254 |
// in use....
|
sl@0
|
255 |
TInt sessionId = 0;
|
sl@0
|
256 |
TInt errorOrIndex;
|
sl@0
|
257 |
|
sl@0
|
258 |
// Only 256 (KMaxNumberOfSessions) are allowed
|
sl@0
|
259 |
const TInt numberOfUsedSessionIds = iSessionIdsInUse.Count();
|
sl@0
|
260 |
if (numberOfUsedSessionIds > KMaxNumberOfSessions)
|
sl@0
|
261 |
{
|
sl@0
|
262 |
User::LeaveIfError(KErrDied);
|
sl@0
|
263 |
}
|
sl@0
|
264 |
|
sl@0
|
265 |
// Session Id's indexing begins at 1, not 0
|
sl@0
|
266 |
for (TInt count = 1; count < KMaxNumberOfSessions+1; count++)
|
sl@0
|
267 |
{
|
sl@0
|
268 |
sessionId = count;
|
sl@0
|
269 |
errorOrIndex = iSessionIdsInUse.FindInOrder(sessionId);
|
sl@0
|
270 |
|
sl@0
|
271 |
// If sessionId=count not currently being used, assign it.
|
sl@0
|
272 |
// Save the session in the array of allocated ids. We use InsertInOrder
|
sl@0
|
273 |
// since it effectively allows a binary search when trying to find
|
sl@0
|
274 |
// free ids:
|
sl@0
|
275 |
if (errorOrIndex == KErrNotFound)
|
sl@0
|
276 |
{
|
sl@0
|
277 |
errorOrIndex = iSessionIdsInUse.InsertInOrder(sessionId);
|
sl@0
|
278 |
if (errorOrIndex < 0) // Handle error
|
sl@0
|
279 |
{
|
sl@0
|
280 |
User::LeaveIfError(KErrDied);
|
sl@0
|
281 |
}
|
sl@0
|
282 |
break;
|
sl@0
|
283 |
}
|
sl@0
|
284 |
|
sl@0
|
285 |
// Prevent value returned by RArray<T>::FindInOrder from being propagated
|
sl@0
|
286 |
// to the client side in response to a RSessionBase::Connect() request.
|
sl@0
|
287 |
if ((errorOrIndex != KErrNotFound) && (errorOrIndex < 0))
|
sl@0
|
288 |
{
|
sl@0
|
289 |
User::LeaveIfError(KErrDied);
|
sl@0
|
290 |
}
|
sl@0
|
291 |
|
sl@0
|
292 |
} // End for
|
sl@0
|
293 |
|
sl@0
|
294 |
return sessionId;
|
sl@0
|
295 |
|
sl@0
|
296 |
}
|
sl@0
|
297 |
|
sl@0
|
298 |
// -----------------------------------------------------------------------------
|
sl@0
|
299 |
// CTelephonyAudioRoutingServer::AddSession
|
sl@0
|
300 |
// Add a new Session.
|
sl@0
|
301 |
// (other items were commented in a header).
|
sl@0
|
302 |
// -----------------------------------------------------------------------------
|
sl@0
|
303 |
//
|
sl@0
|
304 |
void CTelephonyAudioRoutingServer::AddSession()
|
sl@0
|
305 |
{
|
sl@0
|
306 |
TELAUDRTNG_RDEBUG(_L("[TELAUDRTNG]\t CTelephonyAudioRoutingServer::AddSession "));
|
sl@0
|
307 |
iSessionCount++;
|
sl@0
|
308 |
}
|
sl@0
|
309 |
|
sl@0
|
310 |
// -----------------------------------------------------------------------------
|
sl@0
|
311 |
// CTelephonyAudioRoutingServer::RemoveSession
|
sl@0
|
312 |
// Remove an existing session.
|
sl@0
|
313 |
// (other items were commented in a header).
|
sl@0
|
314 |
// -----------------------------------------------------------------------------
|
sl@0
|
315 |
//
|
sl@0
|
316 |
void CTelephonyAudioRoutingServer::RemoveSession(
|
sl@0
|
317 |
TInt aSessionId)
|
sl@0
|
318 |
{
|
sl@0
|
319 |
TELAUDRTNG_RDEBUG(_L("[TELAUDRTNG]\t CTelephonyAudioRoutingServer::RemoveSession"));
|
sl@0
|
320 |
FreeSessionId(aSessionId);
|
sl@0
|
321 |
iSessionCount--;
|
sl@0
|
322 |
}
|
sl@0
|
323 |
|
sl@0
|
324 |
// -----------------------------------------------------------------------------
|
sl@0
|
325 |
// CTelephonyAudioRoutingServer::FreeSessionId
|
sl@0
|
326 |
// Free the session Id or a delated session for re-use.
|
sl@0
|
327 |
// (other items were commented in a header).
|
sl@0
|
328 |
// -----------------------------------------------------------------------------
|
sl@0
|
329 |
//
|
sl@0
|
330 |
void CTelephonyAudioRoutingServer::FreeSessionId(
|
sl@0
|
331 |
TInt aSessionId)
|
sl@0
|
332 |
{
|
sl@0
|
333 |
|
sl@0
|
334 |
TELAUDRTNG_RDEBUG1(_L("[TELAUDRTNG]\t CTelephonyAudioRoutingServer::FreeSessionId: ID: %d"), aSessionId);
|
sl@0
|
335 |
|
sl@0
|
336 |
const TInt indexOrError = iSessionIdsInUse.FindInOrder(aSessionId);
|
sl@0
|
337 |
|
sl@0
|
338 |
if (indexOrError >= 0)
|
sl@0
|
339 |
{
|
sl@0
|
340 |
// This session id can now be reused...
|
sl@0
|
341 |
iSessionIdsInUse.Remove(indexOrError);
|
sl@0
|
342 |
}
|
sl@0
|
343 |
}
|
sl@0
|
344 |
|
sl@0
|
345 |
// -----------------------------------------------------------------------------
|
sl@0
|
346 |
// CTelephonyAudioRoutingServer::SetPolicySessionId
|
sl@0
|
347 |
// Set the Id of the policy session.
|
sl@0
|
348 |
// (other items were commented in a header).
|
sl@0
|
349 |
// -----------------------------------------------------------------------------
|
sl@0
|
350 |
//
|
sl@0
|
351 |
void CTelephonyAudioRoutingServer::SetPolicySessionId(
|
sl@0
|
352 |
TInt aSessionId)
|
sl@0
|
353 |
{
|
sl@0
|
354 |
iPolicySessionId = aSessionId;
|
sl@0
|
355 |
}
|
sl@0
|
356 |
|
sl@0
|
357 |
// -----------------------------------------------------------------------------
|
sl@0
|
358 |
// CTelephonyAudioRoutingServer::AvailableOutputsChangedL
|
sl@0
|
359 |
// Used by policy session to indicated to all other sessions that available outputs have changed.
|
sl@0
|
360 |
// (other items were commented in a header).
|
sl@0
|
361 |
// -----------------------------------------------------------------------------
|
sl@0
|
362 |
//
|
sl@0
|
363 |
void CTelephonyAudioRoutingServer::AvailableOutputsChangedL(
|
sl@0
|
364 |
const TArray<CTelephonyAudioRouting::TAudioOutput>& aOutputs)
|
sl@0
|
365 |
{
|
sl@0
|
366 |
|
sl@0
|
367 |
TELAUDRTNG_RDEBUG(_L("[TELAUDRTNG]\t CTelephonyAudioRoutingServer::AvailableOutputsChangedL "));
|
sl@0
|
368 |
|
sl@0
|
369 |
iAvailableOutputs.Reset();
|
sl@0
|
370 |
TInt count = aOutputs.Count();
|
sl@0
|
371 |
TELAUDRTNG_RDEBUG1(_L("[TELAUDRTNG]\t AvailableOutputsChangedL: Count = %d "),count);
|
sl@0
|
372 |
for(TInt i = 0; i < count; i++)
|
sl@0
|
373 |
{
|
sl@0
|
374 |
TELAUDRTNG_RDEBUG1(_L("[TELAUDRTNG]\t AvailableOutputsChangedL: aOutputs[i] = %d "),aOutputs[i]);
|
sl@0
|
375 |
iAvailableOutputs.AppendL(aOutputs[i]);
|
sl@0
|
376 |
}
|
sl@0
|
377 |
|
sl@0
|
378 |
iSessionIter.SetToFirst();
|
sl@0
|
379 |
|
sl@0
|
380 |
CTelephonyAudioRoutingServerSession* serverSession = static_cast<CTelephonyAudioRoutingServerSession*>(iSessionIter++);
|
sl@0
|
381 |
while (serverSession != NULL)
|
sl@0
|
382 |
{
|
sl@0
|
383 |
if(serverSession->SessionId() != iPolicySessionId)
|
sl@0
|
384 |
serverSession->AvailableOutputsChanged(aOutputs);
|
sl@0
|
385 |
serverSession = static_cast<CTelephonyAudioRoutingServerSession*>(iSessionIter++);
|
sl@0
|
386 |
}
|
sl@0
|
387 |
|
sl@0
|
388 |
}
|
sl@0
|
389 |
|
sl@0
|
390 |
// -----------------------------------------------------------------------------
|
sl@0
|
391 |
// CTelephonyAudioRoutingServer::SetOutputComplete
|
sl@0
|
392 |
// Used by policy session to indicate the session that requested a SetOutput() that
|
sl@0
|
393 |
// the request is complete, all the other session get OutputChanged() notification
|
sl@0
|
394 |
// (other items were commented in a header).
|
sl@0
|
395 |
// -----------------------------------------------------------------------------
|
sl@0
|
396 |
//
|
sl@0
|
397 |
void CTelephonyAudioRoutingServer::SetOutputCompleteL(
|
sl@0
|
398 |
CTelephonyAudioRouting::TAudioOutput aOutput,
|
sl@0
|
399 |
TInt aError)
|
sl@0
|
400 |
{
|
sl@0
|
401 |
|
sl@0
|
402 |
CTelephonyAudioRouting::TAudioOutput output = aOutput;
|
sl@0
|
403 |
|
sl@0
|
404 |
TELAUDRTNG_RDEBUG1(_L("[TELAUDRTNG]\t CTelephonyAudioRoutingServer::SetOutputComplete called with: = %d"), output);
|
sl@0
|
405 |
|
sl@0
|
406 |
TInt requestCount = iSetOutputRequests.Count();
|
sl@0
|
407 |
|
sl@0
|
408 |
if(requestCount>0)
|
sl@0
|
409 |
{
|
sl@0
|
410 |
|
sl@0
|
411 |
TInt sessionToAlert = iSetOutputRequests[0];
|
sl@0
|
412 |
iSessionIter.SetToFirst();
|
sl@0
|
413 |
|
sl@0
|
414 |
CTelephonyAudioRoutingServerSession* serverSession = static_cast<CTelephonyAudioRoutingServerSession*>(iSessionIter++);
|
sl@0
|
415 |
while (serverSession != NULL)
|
sl@0
|
416 |
{
|
sl@0
|
417 |
if(serverSession->SessionId() != iPolicySessionId)
|
sl@0
|
418 |
{
|
sl@0
|
419 |
|
sl@0
|
420 |
if (serverSession->SessionId() == sessionToAlert )
|
sl@0
|
421 |
{
|
sl@0
|
422 |
TELAUDRTNG_RDEBUG1(_L("[TELAUDRTNG]\t CTelephonyAudioRoutingServer::SetOutputComplete: Calling serverSession::SetOutputComplete with showNote: %d"), iShowNoteMode);
|
sl@0
|
423 |
serverSession->SetOutputComplete(output, aError, iShowNoteMode);
|
sl@0
|
424 |
}
|
sl@0
|
425 |
else
|
sl@0
|
426 |
{
|
sl@0
|
427 |
if (aError == KErrNone)
|
sl@0
|
428 |
{
|
sl@0
|
429 |
serverSession->OutputChanged(output, iShowNoteMode);
|
sl@0
|
430 |
}
|
sl@0
|
431 |
|
sl@0
|
432 |
}
|
sl@0
|
433 |
}
|
sl@0
|
434 |
|
sl@0
|
435 |
serverSession = static_cast<CTelephonyAudioRoutingServerSession*>(iSessionIter++);
|
sl@0
|
436 |
}
|
sl@0
|
437 |
|
sl@0
|
438 |
for(TInt i=0;i<iSetOutputRequests.Count()-1;i++)
|
sl@0
|
439 |
{
|
sl@0
|
440 |
iSetOutputRequests[i] = iSetOutputRequests[i+1];
|
sl@0
|
441 |
}
|
sl@0
|
442 |
iSetOutputRequests.Remove(iSetOutputRequests.Count()-1);
|
sl@0
|
443 |
}
|
sl@0
|
444 |
}
|
sl@0
|
445 |
|
sl@0
|
446 |
// -----------------------------------------------------------------------------
|
sl@0
|
447 |
// CTelephonyAudioRoutingServer::OutputChanged
|
sl@0
|
448 |
// Used by policy session to notify all sessions that the output has changed (from the policy side)
|
sl@0
|
449 |
// (other items were commented in a header).
|
sl@0
|
450 |
// -----------------------------------------------------------------------------
|
sl@0
|
451 |
//
|
sl@0
|
452 |
void CTelephonyAudioRoutingServer::OutputChanged(
|
sl@0
|
453 |
CTelephonyAudioRouting::TAudioOutput aOutput)
|
sl@0
|
454 |
{
|
sl@0
|
455 |
|
sl@0
|
456 |
CTelephonyAudioRouting::TAudioOutput output = aOutput;
|
sl@0
|
457 |
|
sl@0
|
458 |
TELAUDRTNG_RDEBUG1(_L("[TELAUDRTNG]\t CTelephonyAudioRoutingServer::OutputChanged called with: = %d"), output);
|
sl@0
|
459 |
|
sl@0
|
460 |
iSessionIter.SetToFirst();
|
sl@0
|
461 |
|
sl@0
|
462 |
CTelephonyAudioRoutingServerSession* serverSession = static_cast<CTelephonyAudioRoutingServerSession*>(iSessionIter++);
|
sl@0
|
463 |
while (serverSession != NULL)
|
sl@0
|
464 |
{
|
sl@0
|
465 |
if(serverSession->SessionId() != iPolicySessionId)
|
sl@0
|
466 |
{
|
sl@0
|
467 |
// Always send ETrue if outputChanged initiated by Policy:
|
sl@0
|
468 |
iShowNoteMode = ETrue;
|
sl@0
|
469 |
serverSession->OutputChanged(output, iShowNoteMode);
|
sl@0
|
470 |
|
sl@0
|
471 |
}
|
sl@0
|
472 |
serverSession = static_cast<CTelephonyAudioRoutingServerSession*>(iSessionIter++);
|
sl@0
|
473 |
}
|
sl@0
|
474 |
}
|
sl@0
|
475 |
|
sl@0
|
476 |
// -----------------------------------------------------------------------------
|
sl@0
|
477 |
// CTelephonyAudioRoutingServer::IsAvailableOutput
|
sl@0
|
478 |
// Method used to determine if requested audio output is one of the
|
sl@0
|
479 |
// audio outputs in the available output array.
|
sl@0
|
480 |
// -----------------------------------------------------------------------------
|
sl@0
|
481 |
//
|
sl@0
|
482 |
TBool CTelephonyAudioRoutingServer::IsAvailableOutput(
|
sl@0
|
483 |
CTelephonyAudioRouting::TAudioOutput aOutput)
|
sl@0
|
484 |
{
|
sl@0
|
485 |
TELAUDRTNG_RDEBUG(_L("[TELAUDRTNG]\t CTelephonyAudioRoutingServer::IsAvailableOutput "));
|
sl@0
|
486 |
|
sl@0
|
487 |
TBool found = EFalse;
|
sl@0
|
488 |
CTelephonyAudioRouting::TAudioOutput arrayElement;
|
sl@0
|
489 |
TInt count = iAvailableOutputs.Count();
|
sl@0
|
490 |
|
sl@0
|
491 |
for(TInt i=0;i<count;i++)
|
sl@0
|
492 |
{
|
sl@0
|
493 |
arrayElement = iAvailableOutputs[i];
|
sl@0
|
494 |
if (aOutput == arrayElement)
|
sl@0
|
495 |
{
|
sl@0
|
496 |
found = ETrue;
|
sl@0
|
497 |
break;
|
sl@0
|
498 |
}
|
sl@0
|
499 |
|
sl@0
|
500 |
}
|
sl@0
|
501 |
|
sl@0
|
502 |
TELAUDRTNG_RDEBUG1(_L("[TELAUDRTNG]\t CTelephonyAudioRoutingServer::IsAvailableOutput: Found? = %d "), found);
|
sl@0
|
503 |
return found;
|
sl@0
|
504 |
|
sl@0
|
505 |
}
|
sl@0
|
506 |
|
sl@0
|
507 |
// -----------------------------------------------------------------------------
|
sl@0
|
508 |
// CTelephonyAudioRoutingServer::CurrentAudioOutput
|
sl@0
|
509 |
// Accessor method returns iCurrentAudioOutput to caller.
|
sl@0
|
510 |
// (other items were commented in a header).
|
sl@0
|
511 |
// -----------------------------------------------------------------------------
|
sl@0
|
512 |
//
|
sl@0
|
513 |
CTelephonyAudioRouting::TAudioOutput& CTelephonyAudioRoutingServer::CurrentAudioOutput()
|
sl@0
|
514 |
{
|
sl@0
|
515 |
return iCurrentAudioOutput;
|
sl@0
|
516 |
}
|
sl@0
|
517 |
|
sl@0
|
518 |
// -----------------------------------------------------------------------------
|
sl@0
|
519 |
// CTelephonyAudioRoutingServer::ShowNoteMode
|
sl@0
|
520 |
// Accessor method returns iShowNoteMode to caller.
|
sl@0
|
521 |
// (other items were commented in a header).
|
sl@0
|
522 |
// -----------------------------------------------------------------------------
|
sl@0
|
523 |
//
|
sl@0
|
524 |
TBool& CTelephonyAudioRoutingServer::ShowNoteMode()
|
sl@0
|
525 |
{
|
sl@0
|
526 |
return iShowNoteMode;
|
sl@0
|
527 |
}
|
sl@0
|
528 |
|
sl@0
|
529 |
// -----------------------------------------------------------------------------
|
sl@0
|
530 |
// CTelephonyAudioRoutingServer::SetShowNoteMode
|
sl@0
|
531 |
// Accessor method allows caller to set iShowNoteMode.
|
sl@0
|
532 |
// (other items were commented in a header).
|
sl@0
|
533 |
// -----------------------------------------------------------------------------
|
sl@0
|
534 |
//
|
sl@0
|
535 |
void CTelephonyAudioRoutingServer::SetShowNoteMode(TBool aShowNoteMode)
|
sl@0
|
536 |
{
|
sl@0
|
537 |
iShowNoteMode = aShowNoteMode;
|
sl@0
|
538 |
}
|
sl@0
|
539 |
|
sl@0
|
540 |
|
sl@0
|
541 |
// -----------------------------------------------------------------------------
|
sl@0
|
542 |
// CTelephonyAudioRoutingServer::PreviousAudioOutput
|
sl@0
|
543 |
// Accessor method returns iPreviousAudioOutput to caller.
|
sl@0
|
544 |
// (other items were commented in a header).
|
sl@0
|
545 |
// -----------------------------------------------------------------------------
|
sl@0
|
546 |
//
|
sl@0
|
547 |
CTelephonyAudioRouting::TAudioOutput& CTelephonyAudioRoutingServer::PreviousAudioOutput()
|
sl@0
|
548 |
{
|
sl@0
|
549 |
return iPreviousAudioOutput;
|
sl@0
|
550 |
}
|
sl@0
|
551 |
|
sl@0
|
552 |
// -----------------------------------------------------------------------------
|
sl@0
|
553 |
// CTelephonyAudioRoutingServer::AvailableOutputs
|
sl@0
|
554 |
// Accessor method returns iAvailableOutputs to caller.
|
sl@0
|
555 |
// (other items were commented in a header).
|
sl@0
|
556 |
// -----------------------------------------------------------------------------
|
sl@0
|
557 |
//
|
sl@0
|
558 |
RArray<CTelephonyAudioRouting::TAudioOutput>& CTelephonyAudioRoutingServer::AvailableOutputs()
|
sl@0
|
559 |
{
|
sl@0
|
560 |
return iAvailableOutputs;
|
sl@0
|
561 |
}
|
sl@0
|
562 |
|
sl@0
|
563 |
|
sl@0
|
564 |
//End of File
|