First public contribution.
1 // Copyright (c) 2007-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 #include "mmrcserver.h"
17 #include "mmrcserversession.h"
18 #include "mmrcservercontroller.h"
19 #include "mmrcserverstart.h"
20 #include <a3f/a3ffourcclookup.h>
21 #include <a3f/a3f_trace_utils.h>
24 //------------------------------------------------------------------------------------
26 //------------------------------------------------------------------------------------
30 CMMRCServer::CMMRCServer()
31 : CServer2(EPriorityStandard)
34 DP_CONTEXT(----> CMMRCServer::CMMRCServer *CD1*, CtxDevSound, DPLOCAL);
45 CMMRCServer::~CMMRCServer()
47 DP_CONTEXT(----> CMMRCServer::~CMMRCServer *CD1*, CtxDevSound, DPLOCAL);
50 if(iMMRCServerController)
52 delete iMMRCServerController;
54 delete iFourCCConvertor;
58 //------------------------------------------------------------------------------------
60 //------------------------------------------------------------------------------------
62 * Constructs, and returns a pointer to, a new CMMRCServer object.
64 * @return CMMRCServer* A pointer to newly created utlitly object.
66 CMMRCServer* CMMRCServer::NewL()
68 DP_STATIC_CONTEXT(----> CMMRCServer::NewL *CD1*, CtxDevSound, DPLOCAL);
71 CMMRCServer* self = NewLC();
72 CleanupStack::Pop(self);
74 DP0_RET(self, "0x%x");
78 * Constructs, leaves object on the cleanup stack, and returns a pointer
79 * to, a new CMMRCServer object.
81 * @return CMMRCServer* A pointer to newly created utlitly object.
83 CMMRCServer* CMMRCServer::NewLC()
85 DP_STATIC_CONTEXT(----> CMMRCServer::Open *CD1*, CtxDevSound, DPLOCAL);
88 CMMRCServer* self = new(ELeave) CMMRCServer;
89 CleanupStack::PushL(self);
92 DP0_RET(self, "self = 0x%x");
96 CMMRCServer::ConstructL
97 Symbian 2nd phase constructor can leave.
99 void CMMRCServer::ConstructL()
101 DP_CONTEXT(----> CMMRCServer::ConstructL *CD1*, CtxDevSound, DPLOCAL);
104 iMMRCServerController = CMMRCServerController::NewL();
106 iFourCCConvertor = CFourCCConvertor::NewL();
110 //------------------------------------------------------------------------------------
112 //------------------------------------------------------------------------------------
114 * From CServer2. Creates a server-side client session object.
115 * Creates a new session. Only one session may be created with the ControllerProxyServer.
116 * This function may leave with one of the system-wide error codes.
117 * @param const TVersion& aVersion The version number of the session.
118 * @param const RMessage2& aMessage
119 * @return A pointer to the new session.
121 CSession2* CMMRCServer::NewSessionL(const TVersion& aVersion, const RMessage2& /*aMessage*/) const
123 DP_CONTEXT(----> CMMRCServer::NewSessionL *CD1*, CtxDevSound, DPLOCAL);
126 TVersion version(KMMRCServerVersion,KMMRCServerMinorVersionNumber,KMMRCServerBuildVersionNumber);
127 if(!User::QueryVersionSupported(version, aVersion))
129 User::Leave(KErrNotSupported);
131 CMMRCServerSession* mmrcSession = CMMRCServerSession::NewL(*iMMRCServerController, *iFourCCConvertor);
133 DP0_RET(mmrcSession, "mmrcSession = 0x%x");
137 A utility function to panic the server.
139 void CMMRCServer::PanicServer(TInt aPanic)
141 _LIT(KMMRCServerPanic,"MMRC Server panic");
142 User::Panic(KMMRCServerPanic, aPanic);
145 //------------------------------------------------------------------------------------
147 //------------------------------------------------------------------------------------
148 TInt CMMRCServer::ThreadFunctionL(TAny* /**aStarted*/)
150 DP_STATIC_CONTEXT(----> CMMRCServer::ThreadFunctionL *CD1*, CtxDevSound, DPLOCAL);
153 // create an active scheduler and server
154 CActiveScheduler* sched = new (ELeave) CActiveScheduler;
155 CleanupStack::PushL(sched);
157 //Install the active scheduler
158 CActiveScheduler::Install(sched);
160 CMMRCServer *server = CMMRCServer::NewLC();
164 TInt err = server->Start(KMMRCServerName);
167 CMMRCServer::PanicServer(KErrNoMemory);
170 // Let everyone know that we are ready to
171 // deal with requests.
172 RThread::Rendezvous(KErrNone);
174 // And start fielding requests from client(s).
175 CActiveScheduler::Start();
178 CleanupStack::PopAndDestroy(2, sched);
180 DP0_RET(KErrNone, "error = %d");
184 Create the thread that will act as the server.
185 This function is exported from the DLL and called by the client.
187 Note that a server can also be implemented as a separate
188 executable (i.e. as a separate process).
190 TInt CMMRCServer::ThreadFunction(TAny* aStarted)
192 DP_STATIC_CONTEXT(----> CMMRCServer::ThreadFunction *CD1*, CtxDevSound, DPLOCAL);
195 // get clean-up stack
196 CTrapCleanup* cleanup=CTrapCleanup::New();
199 CMMRCServer::PanicServer(KErrNoMemory);
202 TRAPD( err, ThreadFunctionL(aStarted) );
206 DP0_RET(err, "error = %d");
210 Create the thread that will act as the server.
211 This function is exported from the DLL and called by the client.
213 Note that a server can also be implemented as a separate
214 executable (i.e. as a separate process).
216 EXPORT_C TInt StartMMRCServer(RThread& aServerThread)
220 // Create the server, if one with this name does not already exist.
221 TFindServer findCountServer(KMMRCServerName);
224 // Need to check that the server exists.
225 if ( findCountServer.Next(name) != KErrNone )
227 // Create the thread for the server.
228 res = aServerThread.Create(KMMRCServerName,
229 CMMRCServer::ThreadFunction,
230 KMMRCServerStackSize,
231 KMMRCServerInitHeapSize,
232 KMMRCServerMaxHeapSize,
236 // The thread has been created OK so get it started - however
237 // we need to make sure that it has started before we continue.
240 TRequestStatus rendezvousStatus;
242 aServerThread.SetPriority(EPriorityNormal);
243 aServerThread.Rendezvous(rendezvousStatus);
244 aServerThread.Resume();
245 User::WaitForRequest(rendezvousStatus);
248 // The thread has not been created - clearly there's been a problem.
251 aServerThread.Close();