os/mm/devsoundextensions/telephonyaudiorouting/Session/src/TelephonyAudioRoutingManagerSession.cpp
First public contribution.
2 * Copyright (c) 2002-2004 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
14 * Description: This class is the main interface to the TelephonyAudioRoutingServer.
15 * : Specifically handles TelephonyAudioRoutingManager sessions.
23 #include "TelephonyAudioRoutingClientServer.h"
24 #include "TelephonyAudioRoutingManagerSession.h"
25 #include "TelephonyAudioRoutingPolicyRequest.h"
28 // -----------------------------------------------------------------------------
29 // RTelephonyAudioRoutingManagerSession::RTelephonyAudioRoutingManagerSession
30 // C++ default constructor can NOT contain any code, that
32 // -----------------------------------------------------------------------------
34 EXPORT_C RTelephonyAudioRoutingManagerSession::RTelephonyAudioRoutingManagerSession()
35 : RSessionBase(), iConnected(EFalse)
37 // No implementation required
41 // -----------------------------------------------------------------------------
42 // RTelephonyAudioRoutingSession::Connect
43 // Connects a policy client to the server.
44 // (other items were commented in a header).
45 // -----------------------------------------------------------------------------
47 EXPORT_C TInt RTelephonyAudioRoutingManagerSession::Connect(
48 CTelephonyAudioRoutingManager& aAudioRoutingManager,
49 MTelephonyAudioRoutingPolicyObserver& aPolicyObserver)
52 TELAUDRTNG_RDEBUG(_L("[TELAUDRTNG]\t RTelephonyAudioRoutingManagerSession::Connect"));
55 TInt err = KErrGeneral;
59 err=CreateSession(KTelAudRtngServName,TVersion(0,0,0)); // RSessionBase::CreateSession
61 if (err!=KErrNotFound && err!=KErrServerTerminated && err!=KErrPermissionDenied)
68 if ( err == KErrNone )
70 // Create active object receive handlers and add it to scheduler
71 TRAP(err, StartPolicyRequestHandlersL(aAudioRoutingManager, aPolicyObserver));
72 if ( err == KErrNone )
77 SendReceive(ETelAudRtngServInitialize, TIpcArgs());
85 // -----------------------------------------------------------------------------
86 // RTelephonyAudioRoutingManagerSession::Close
87 // Closes connection to the server.
88 // (other items were commented in a header).
89 // -----------------------------------------------------------------------------
91 EXPORT_C void RTelephonyAudioRoutingManagerSession::Close()
93 TELAUDRTNG_RDEBUG(_L("[TELAUDRTNG]\t RTelephonyAudioRoutingManagerSession::Close"));
97 delete iPolicyRequest;
98 RSessionBase::Close();
106 // -----------------------------------------------------------------------------
107 // RTelephonyAudioRoutingManagerSession::OutputChangeCompleted
108 // Used by policy to notify server that requested output change completed
109 // (other items were commented in a header).
110 // -----------------------------------------------------------------------------
112 EXPORT_C void RTelephonyAudioRoutingManagerSession::OutputChangeCompleted(
113 CTelephonyAudioRouting::TAudioOutput aOutput,
116 TPckgBuf<CTelephonyAudioRouting::TAudioOutput> audioOutputPkg;
117 audioOutputPkg() = aOutput;
118 TPckgBuf<TInt> errPkg;
121 TELAUDRTNG_RDEBUG1(_L("[TELAUDRTNG]\t RTelephonyAudioRoutingManagerSession::OutputChangeCompleted to %d"), aOutput);
122 SendReceive(ETelAudRtngServOutputChangeComplete, TIpcArgs(&audioOutputPkg, &errPkg));
125 // -----------------------------------------------------------------------------
126 // RTelephonyAudioRoutingManagerSession::OutputChanged
127 // Used by policy to notify server of audio output changes initiated by policy.
128 // (other items were commented in a header).
129 // -----------------------------------------------------------------------------
131 EXPORT_C void RTelephonyAudioRoutingManagerSession::OutputChanged(
132 CTelephonyAudioRouting::TAudioOutput aOutput)
134 TPckgBuf<CTelephonyAudioRouting::TAudioOutput> audioOutputPkg;
135 audioOutputPkg() = aOutput;
136 // iAudioOutput = aOutput;
137 TELAUDRTNG_RDEBUG1(_L("[TELAUDRTNG]\t RTelephonyAudioRoutingManagerSession::OutputChanged to %d"), aOutput);
138 SendReceive(ETelAudRtngServOutputChangedByPolicy, TIpcArgs(&audioOutputPkg));
142 // -----------------------------------------------------------------------------
143 // RTelephonyAudioRoutingManagerSession::AvailableOutputsChangedL
144 // Used by policy session to notify server if the available audio output change.
145 // (other items were commented in a header).
146 // -----------------------------------------------------------------------------
148 EXPORT_C void RTelephonyAudioRoutingManagerSession::AvailableOutputsChangedL(
149 const TArray<CTelephonyAudioRouting::TAudioOutput>& aOutputs)
151 TELAUDRTNG_RDEBUG(_L("[TELAUDRTNG]\t RTelephonyAudioRoutingManagerSession::AvailableOutputsChangedL"));
152 TPckgBuf<TInt> numOfOutputs;
153 numOfOutputs()= aOutputs.Count();
155 TInt count = aOutputs.Count();
156 TELAUDRTNG_RDEBUG1(_L("[TELAUDRTNG]\t AvailableOutputsChangedL: Count = %d "),count);
157 for(TInt i = 0; i < count; i++)
159 TELAUDRTNG_RDEBUG1(_L("[TELAUDRTNG]\t AvailableOutputsChangedL: aOutputs[i] = %d "),aOutputs[i]);
162 TInt KBufExpandSize8 = 8;//two TInts
163 CBufFlat* dataCopyBuffer = CBufFlat::NewL(KBufExpandSize8);
164 CleanupStack::PushL(dataCopyBuffer);
165 RBufWriteStream stream;
166 stream.Open(*dataCopyBuffer);
167 CleanupClosePushL(stream);
169 for (TInt i=0;i<aOutputs.Count();i++)
171 stream.WriteInt16L(aOutputs[i]);
174 TPtr8 ptr = dataCopyBuffer->Ptr(0);
176 SendReceive(ETelAudRtngDoAvailableOutputsChanged, TIpcArgs(&numOfOutputs, &ptr));
178 CleanupStack::PopAndDestroy(2);//stream, buf
182 // -----------------------------------------------------------------------------
183 // RTelephonyAudioRoutingManagerSession::SetPolicySessionIdL
184 // Sets policy session Id.
185 // (other items were commented in a header).
186 // -----------------------------------------------------------------------------
188 EXPORT_C void RTelephonyAudioRoutingManagerSession::SetPolicySessionIdL()
190 User::LeaveIfError(SendReceive(ETelAudRtngServSetPolicySessionId, TIpcArgs()));
193 // -----------------------------------------------------------------------------
194 // RTelephonyAudioRoutingManagerSession::MonitorOutputChangeRequest
195 // Used by policy session to get notification whenever any of the clients sends
196 // a SetOutput request.
197 // (other items were commented in a header).
198 // -----------------------------------------------------------------------------
200 EXPORT_C void RTelephonyAudioRoutingManagerSession::MonitorOutputChangeRequest()
202 TELAUDRTNG_RDEBUG(_L("[TELAUDRTNG]\t RTelephonyAudioRoutingManagerSession::MonitorOutputChangeRequest "));
204 iPolicyRequest->Cancel();
206 SendReceive(ETelAudRtngServMonitorOutputChange, TIpcArgs(&iAudioOutputPkg), iPolicyRequest->iStatus);
207 iPolicyRequest->SetActive();
211 // -----------------------------------------------------------------------------
212 // RTelephonyAudioRoutingManagerSession::CancelRequest
213 // Cancel a previously send request.
214 // (other items were commented in a header).
215 // -----------------------------------------------------------------------------
217 EXPORT_C void RTelephonyAudioRoutingManagerSession::CancelRequest(TTelAudRtngServRqst aRequest)
219 TELAUDRTNG_RDEBUG(_L("[TELAUDRTNG]\t RTelephonyAudioRoutingManagerSession::CancelRequest "));
220 TPckgBuf<TInt> request;
221 request() = aRequest;
222 SendReceive(ETelAudRtngServCancelRequest, TIpcArgs(&request));
225 // -----------------------------------------------------------------------------
226 // RTelephonyAudioRoutingSession::AudioOutputPkg
227 // Accessor method returns iAudioOutputPkg to caller.
228 // (other items were commented in a header).
229 // -----------------------------------------------------------------------------
231 EXPORT_C TPckgBuf<CTelephonyAudioRouting::TAudioOutput>& RTelephonyAudioRoutingManagerSession::AudioOutputPkg()
233 return iAudioOutputPkg;
236 // -----------------------------------------------------------------------------
237 // RTelephonyAudioRoutingManagerSession::StartPolicyRequestHandlersL
238 // Start asynchronous request handlers.
239 // (other items were commented in a header).
240 // -----------------------------------------------------------------------------
242 void RTelephonyAudioRoutingManagerSession::StartPolicyRequestHandlersL(
243 CTelephonyAudioRoutingManager& aAudioRoutingManager,
244 MTelephonyAudioRoutingPolicyObserver& aPolicyObserver )
246 iPolicyRequest = CTelephonyAudioRoutingPolicyRequest::NewL(*this, aPolicyObserver, aAudioRoutingManager, ETelAudRtngServMonitorOutputChange);