sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 2002-2004 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: This class is the main interface to the TelephonyAudioRoutingServer.
|
sl@0
|
15 |
* : Specifically handles TelephonyAudioRoutingManager sessions.
|
sl@0
|
16 |
*
|
sl@0
|
17 |
*/
|
sl@0
|
18 |
|
sl@0
|
19 |
|
sl@0
|
20 |
|
sl@0
|
21 |
#include <e32math.h>
|
sl@0
|
22 |
#include <s32mem.h>
|
sl@0
|
23 |
#include "TelephonyAudioRoutingClientServer.h"
|
sl@0
|
24 |
#include "TelephonyAudioRoutingManagerSession.h"
|
sl@0
|
25 |
#include "TelephonyAudioRoutingPolicyRequest.h"
|
sl@0
|
26 |
|
sl@0
|
27 |
|
sl@0
|
28 |
// -----------------------------------------------------------------------------
|
sl@0
|
29 |
// RTelephonyAudioRoutingManagerSession::RTelephonyAudioRoutingManagerSession
|
sl@0
|
30 |
// C++ default constructor can NOT contain any code, that
|
sl@0
|
31 |
// might leave.
|
sl@0
|
32 |
// -----------------------------------------------------------------------------
|
sl@0
|
33 |
//
|
sl@0
|
34 |
EXPORT_C RTelephonyAudioRoutingManagerSession::RTelephonyAudioRoutingManagerSession()
|
sl@0
|
35 |
: RSessionBase(), iConnected(EFalse)
|
sl@0
|
36 |
{
|
sl@0
|
37 |
// No implementation required
|
sl@0
|
38 |
|
sl@0
|
39 |
}
|
sl@0
|
40 |
|
sl@0
|
41 |
// -----------------------------------------------------------------------------
|
sl@0
|
42 |
// RTelephonyAudioRoutingSession::Connect
|
sl@0
|
43 |
// Connects a policy client to the server.
|
sl@0
|
44 |
// (other items were commented in a header).
|
sl@0
|
45 |
// -----------------------------------------------------------------------------
|
sl@0
|
46 |
//
|
sl@0
|
47 |
EXPORT_C TInt RTelephonyAudioRoutingManagerSession::Connect(
|
sl@0
|
48 |
CTelephonyAudioRoutingManager& aAudioRoutingManager,
|
sl@0
|
49 |
MTelephonyAudioRoutingPolicyObserver& aPolicyObserver)
|
sl@0
|
50 |
{
|
sl@0
|
51 |
|
sl@0
|
52 |
TELAUDRTNG_RDEBUG(_L("[TELAUDRTNG]\t RTelephonyAudioRoutingManagerSession::Connect"));
|
sl@0
|
53 |
|
sl@0
|
54 |
TInt retry=2;
|
sl@0
|
55 |
TInt err = KErrGeneral;
|
sl@0
|
56 |
|
sl@0
|
57 |
for (;;)
|
sl@0
|
58 |
{
|
sl@0
|
59 |
err=CreateSession(KTelAudRtngServName,TVersion(0,0,0)); // RSessionBase::CreateSession
|
sl@0
|
60 |
|
sl@0
|
61 |
if (err!=KErrNotFound && err!=KErrServerTerminated && err!=KErrPermissionDenied)
|
sl@0
|
62 |
break;
|
sl@0
|
63 |
|
sl@0
|
64 |
if (--retry==0)
|
sl@0
|
65 |
break;
|
sl@0
|
66 |
}
|
sl@0
|
67 |
|
sl@0
|
68 |
if ( err == KErrNone )
|
sl@0
|
69 |
{
|
sl@0
|
70 |
// Create active object receive handlers and add it to scheduler
|
sl@0
|
71 |
TRAP(err, StartPolicyRequestHandlersL(aAudioRoutingManager, aPolicyObserver));
|
sl@0
|
72 |
if ( err == KErrNone )
|
sl@0
|
73 |
{
|
sl@0
|
74 |
iConnected = ETrue;
|
sl@0
|
75 |
}
|
sl@0
|
76 |
|
sl@0
|
77 |
SendReceive(ETelAudRtngServInitialize, TIpcArgs());
|
sl@0
|
78 |
|
sl@0
|
79 |
}
|
sl@0
|
80 |
|
sl@0
|
81 |
return err;
|
sl@0
|
82 |
|
sl@0
|
83 |
}
|
sl@0
|
84 |
|
sl@0
|
85 |
// -----------------------------------------------------------------------------
|
sl@0
|
86 |
// RTelephonyAudioRoutingManagerSession::Close
|
sl@0
|
87 |
// Closes connection to the server.
|
sl@0
|
88 |
// (other items were commented in a header).
|
sl@0
|
89 |
// -----------------------------------------------------------------------------
|
sl@0
|
90 |
//
|
sl@0
|
91 |
EXPORT_C void RTelephonyAudioRoutingManagerSession::Close()
|
sl@0
|
92 |
{
|
sl@0
|
93 |
TELAUDRTNG_RDEBUG(_L("[TELAUDRTNG]\t RTelephonyAudioRoutingManagerSession::Close"));
|
sl@0
|
94 |
if ( iConnected )
|
sl@0
|
95 |
{
|
sl@0
|
96 |
|
sl@0
|
97 |
delete iPolicyRequest;
|
sl@0
|
98 |
RSessionBase::Close();
|
sl@0
|
99 |
iConnected = EFalse;
|
sl@0
|
100 |
|
sl@0
|
101 |
|
sl@0
|
102 |
}
|
sl@0
|
103 |
|
sl@0
|
104 |
}
|
sl@0
|
105 |
|
sl@0
|
106 |
// -----------------------------------------------------------------------------
|
sl@0
|
107 |
// RTelephonyAudioRoutingManagerSession::OutputChangeCompleted
|
sl@0
|
108 |
// Used by policy to notify server that requested output change completed
|
sl@0
|
109 |
// (other items were commented in a header).
|
sl@0
|
110 |
// -----------------------------------------------------------------------------
|
sl@0
|
111 |
//
|
sl@0
|
112 |
EXPORT_C void RTelephonyAudioRoutingManagerSession::OutputChangeCompleted(
|
sl@0
|
113 |
CTelephonyAudioRouting::TAudioOutput aOutput,
|
sl@0
|
114 |
TInt aError)
|
sl@0
|
115 |
{
|
sl@0
|
116 |
TPckgBuf<CTelephonyAudioRouting::TAudioOutput> audioOutputPkg;
|
sl@0
|
117 |
audioOutputPkg() = aOutput;
|
sl@0
|
118 |
TPckgBuf<TInt> errPkg;
|
sl@0
|
119 |
errPkg() = aError;
|
sl@0
|
120 |
|
sl@0
|
121 |
TELAUDRTNG_RDEBUG1(_L("[TELAUDRTNG]\t RTelephonyAudioRoutingManagerSession::OutputChangeCompleted to %d"), aOutput);
|
sl@0
|
122 |
SendReceive(ETelAudRtngServOutputChangeComplete, TIpcArgs(&audioOutputPkg, &errPkg));
|
sl@0
|
123 |
}
|
sl@0
|
124 |
|
sl@0
|
125 |
// -----------------------------------------------------------------------------
|
sl@0
|
126 |
// RTelephonyAudioRoutingManagerSession::OutputChanged
|
sl@0
|
127 |
// Used by policy to notify server of audio output changes initiated by policy.
|
sl@0
|
128 |
// (other items were commented in a header).
|
sl@0
|
129 |
// -----------------------------------------------------------------------------
|
sl@0
|
130 |
//
|
sl@0
|
131 |
EXPORT_C void RTelephonyAudioRoutingManagerSession::OutputChanged(
|
sl@0
|
132 |
CTelephonyAudioRouting::TAudioOutput aOutput)
|
sl@0
|
133 |
{
|
sl@0
|
134 |
TPckgBuf<CTelephonyAudioRouting::TAudioOutput> audioOutputPkg;
|
sl@0
|
135 |
audioOutputPkg() = aOutput;
|
sl@0
|
136 |
// iAudioOutput = aOutput;
|
sl@0
|
137 |
TELAUDRTNG_RDEBUG1(_L("[TELAUDRTNG]\t RTelephonyAudioRoutingManagerSession::OutputChanged to %d"), aOutput);
|
sl@0
|
138 |
SendReceive(ETelAudRtngServOutputChangedByPolicy, TIpcArgs(&audioOutputPkg));
|
sl@0
|
139 |
|
sl@0
|
140 |
}
|
sl@0
|
141 |
|
sl@0
|
142 |
// -----------------------------------------------------------------------------
|
sl@0
|
143 |
// RTelephonyAudioRoutingManagerSession::AvailableOutputsChangedL
|
sl@0
|
144 |
// Used by policy session to notify server if the available audio output change.
|
sl@0
|
145 |
// (other items were commented in a header).
|
sl@0
|
146 |
// -----------------------------------------------------------------------------
|
sl@0
|
147 |
//
|
sl@0
|
148 |
EXPORT_C void RTelephonyAudioRoutingManagerSession::AvailableOutputsChangedL(
|
sl@0
|
149 |
const TArray<CTelephonyAudioRouting::TAudioOutput>& aOutputs)
|
sl@0
|
150 |
{
|
sl@0
|
151 |
TELAUDRTNG_RDEBUG(_L("[TELAUDRTNG]\t RTelephonyAudioRoutingManagerSession::AvailableOutputsChangedL"));
|
sl@0
|
152 |
TPckgBuf<TInt> numOfOutputs;
|
sl@0
|
153 |
numOfOutputs()= aOutputs.Count();
|
sl@0
|
154 |
|
sl@0
|
155 |
TInt count = aOutputs.Count();
|
sl@0
|
156 |
TELAUDRTNG_RDEBUG1(_L("[TELAUDRTNG]\t AvailableOutputsChangedL: Count = %d "),count);
|
sl@0
|
157 |
for(TInt i = 0; i < count; i++)
|
sl@0
|
158 |
{
|
sl@0
|
159 |
TELAUDRTNG_RDEBUG1(_L("[TELAUDRTNG]\t AvailableOutputsChangedL: aOutputs[i] = %d "),aOutputs[i]);
|
sl@0
|
160 |
}
|
sl@0
|
161 |
|
sl@0
|
162 |
TInt KBufExpandSize8 = 8;//two TInts
|
sl@0
|
163 |
CBufFlat* dataCopyBuffer = CBufFlat::NewL(KBufExpandSize8);
|
sl@0
|
164 |
CleanupStack::PushL(dataCopyBuffer);
|
sl@0
|
165 |
RBufWriteStream stream;
|
sl@0
|
166 |
stream.Open(*dataCopyBuffer);
|
sl@0
|
167 |
CleanupClosePushL(stream);
|
sl@0
|
168 |
|
sl@0
|
169 |
for (TInt i=0;i<aOutputs.Count();i++)
|
sl@0
|
170 |
{
|
sl@0
|
171 |
stream.WriteInt16L(aOutputs[i]);
|
sl@0
|
172 |
}
|
sl@0
|
173 |
|
sl@0
|
174 |
TPtr8 ptr = dataCopyBuffer->Ptr(0);
|
sl@0
|
175 |
|
sl@0
|
176 |
SendReceive(ETelAudRtngDoAvailableOutputsChanged, TIpcArgs(&numOfOutputs, &ptr));
|
sl@0
|
177 |
stream.Close();
|
sl@0
|
178 |
CleanupStack::PopAndDestroy(2);//stream, buf
|
sl@0
|
179 |
|
sl@0
|
180 |
}
|
sl@0
|
181 |
|
sl@0
|
182 |
// -----------------------------------------------------------------------------
|
sl@0
|
183 |
// RTelephonyAudioRoutingManagerSession::SetPolicySessionIdL
|
sl@0
|
184 |
// Sets policy session Id.
|
sl@0
|
185 |
// (other items were commented in a header).
|
sl@0
|
186 |
// -----------------------------------------------------------------------------
|
sl@0
|
187 |
//
|
sl@0
|
188 |
EXPORT_C void RTelephonyAudioRoutingManagerSession::SetPolicySessionIdL()
|
sl@0
|
189 |
{
|
sl@0
|
190 |
User::LeaveIfError(SendReceive(ETelAudRtngServSetPolicySessionId, TIpcArgs()));
|
sl@0
|
191 |
}
|
sl@0
|
192 |
|
sl@0
|
193 |
// -----------------------------------------------------------------------------
|
sl@0
|
194 |
// RTelephonyAudioRoutingManagerSession::MonitorOutputChangeRequest
|
sl@0
|
195 |
// Used by policy session to get notification whenever any of the clients sends
|
sl@0
|
196 |
// a SetOutput request.
|
sl@0
|
197 |
// (other items were commented in a header).
|
sl@0
|
198 |
// -----------------------------------------------------------------------------
|
sl@0
|
199 |
//
|
sl@0
|
200 |
EXPORT_C void RTelephonyAudioRoutingManagerSession::MonitorOutputChangeRequest()
|
sl@0
|
201 |
{
|
sl@0
|
202 |
TELAUDRTNG_RDEBUG(_L("[TELAUDRTNG]\t RTelephonyAudioRoutingManagerSession::MonitorOutputChangeRequest "));
|
sl@0
|
203 |
|
sl@0
|
204 |
iPolicyRequest->Cancel();
|
sl@0
|
205 |
|
sl@0
|
206 |
SendReceive(ETelAudRtngServMonitorOutputChange, TIpcArgs(&iAudioOutputPkg), iPolicyRequest->iStatus);
|
sl@0
|
207 |
iPolicyRequest->SetActive();
|
sl@0
|
208 |
|
sl@0
|
209 |
}
|
sl@0
|
210 |
|
sl@0
|
211 |
// -----------------------------------------------------------------------------
|
sl@0
|
212 |
// RTelephonyAudioRoutingManagerSession::CancelRequest
|
sl@0
|
213 |
// Cancel a previously send request.
|
sl@0
|
214 |
// (other items were commented in a header).
|
sl@0
|
215 |
// -----------------------------------------------------------------------------
|
sl@0
|
216 |
//
|
sl@0
|
217 |
EXPORT_C void RTelephonyAudioRoutingManagerSession::CancelRequest(TTelAudRtngServRqst aRequest)
|
sl@0
|
218 |
{
|
sl@0
|
219 |
TELAUDRTNG_RDEBUG(_L("[TELAUDRTNG]\t RTelephonyAudioRoutingManagerSession::CancelRequest "));
|
sl@0
|
220 |
TPckgBuf<TInt> request;
|
sl@0
|
221 |
request() = aRequest;
|
sl@0
|
222 |
SendReceive(ETelAudRtngServCancelRequest, TIpcArgs(&request));
|
sl@0
|
223 |
}
|
sl@0
|
224 |
|
sl@0
|
225 |
// -----------------------------------------------------------------------------
|
sl@0
|
226 |
// RTelephonyAudioRoutingSession::AudioOutputPkg
|
sl@0
|
227 |
// Accessor method returns iAudioOutputPkg to caller.
|
sl@0
|
228 |
// (other items were commented in a header).
|
sl@0
|
229 |
// -----------------------------------------------------------------------------
|
sl@0
|
230 |
//
|
sl@0
|
231 |
EXPORT_C TPckgBuf<CTelephonyAudioRouting::TAudioOutput>& RTelephonyAudioRoutingManagerSession::AudioOutputPkg()
|
sl@0
|
232 |
{
|
sl@0
|
233 |
return iAudioOutputPkg;
|
sl@0
|
234 |
}
|
sl@0
|
235 |
|
sl@0
|
236 |
// -----------------------------------------------------------------------------
|
sl@0
|
237 |
// RTelephonyAudioRoutingManagerSession::StartPolicyRequestHandlersL
|
sl@0
|
238 |
// Start asynchronous request handlers.
|
sl@0
|
239 |
// (other items were commented in a header).
|
sl@0
|
240 |
// -----------------------------------------------------------------------------
|
sl@0
|
241 |
//
|
sl@0
|
242 |
void RTelephonyAudioRoutingManagerSession::StartPolicyRequestHandlersL(
|
sl@0
|
243 |
CTelephonyAudioRoutingManager& aAudioRoutingManager,
|
sl@0
|
244 |
MTelephonyAudioRoutingPolicyObserver& aPolicyObserver )
|
sl@0
|
245 |
{
|
sl@0
|
246 |
iPolicyRequest = CTelephonyAudioRoutingPolicyRequest::NewL(*this, aPolicyObserver, aAudioRoutingManager, ETelAudRtngServMonitorOutputChange);
|
sl@0
|
247 |
}
|