Update contrib.
2 * Copyright (c) 2005-2006 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: DRM Play Server
21 #include "DRMPlayClientServer.h"
22 #include "DRMPlayServer.h"
26 CDRMPlayServer::CDRMPlayServer(TInt aPriority)
32 // Create and start a new DRM play server.
33 CDRMPlayServer* CDRMPlayServer::New()
35 CDRMPlayServer *pS=new CDRMPlayServer(EPriority);
36 __ASSERT_ALWAYS(pS!=NULL,PanicServer(ESvrCreateServer));
37 __ASSERT_ALWAYS(pS->Start(KDRMPlayServerName)==KErrNone, PanicServer(ESvrCreateServer));
42 // Create a new server session.
43 CSession2 *CDRMPlayServer::NewSessionL(const TVersion& aVersion,const RMessage2& aMessage ) const
45 // check we're the right version
46 TVersion v(KDRMPlayServMajorVersionNumber,KDRMPlayServMinorVersionNumber,KDRMPlayServBuildVersionNumber);
47 if (!User::QueryVersionSupported(v,aVersion))
48 User::Leave(KErrNotSupported);
50 return CDRMPlayServerSession::NewL(const_cast<CDRMPlayServer*>(this), aMessage);
53 CDRMPlayServer::~CDRMPlayServer()
60 GLDEF_C void PanicServer(TDRMPlayServPanic aPanic)
62 _LIT(KTxtServerPanic,"DRM Play server panic");
63 User::Panic(KTxtServerPanic,aPanic);
67 static void StartDRMPlayServerL()
68 // Perform all server initialisation, in particular creation of the
69 // scheduler and server and then run the scheduler
75 // Naming the server thread after the server helps to debug panics
77 User::LeaveIfError(User::RenameThread(KDRMPlayServerName));
79 // Create and install the active scheduler we need
80 CActiveScheduler* scheduler = new(ELeave)CActiveScheduler;
81 CActiveScheduler::Install(scheduler);
84 CDRMPlayServer* server = CDRMPlayServer::New();
86 // Initialisation complete, now signal the client
87 RProcess::Rendezvous(KErrNone);
89 // Start the scheduler and wait for client requests
90 CActiveScheduler::Start();
92 // Cleanup the server and scheduler
93 CActiveScheduler::Install(NULL);
100 // Server process entry-point
101 // Recover the startup parameters and run the server
106 CTrapCleanup* cleanup=CTrapCleanup::New();
110 TRAP(r,StartDRMPlayServerL());