1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/mm/devsoundextensions/drmaudioplayer/DRMPlayServer/src/DRMPlayServer.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,118 @@
1.4 +/*
1.5 +* Copyright (c) 2005-2006 Nokia Corporation and/or its subsidiary(-ies).
1.6 +* All rights reserved.
1.7 +* This component and the accompanying materials are made available
1.8 +* under the terms of "Eclipse Public License v1.0"
1.9 +* which accompanies this distribution, and is available
1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.11 +*
1.12 +* Initial Contributors:
1.13 +* Nokia Corporation - initial contribution.
1.14 +*
1.15 +* Contributors:
1.16 +*
1.17 +* Description: DRM Play Server
1.18 +*
1.19 +*/
1.20 +
1.21 +
1.22 +#include <e32std.h>
1.23 +#include <e32svr.h>
1.24 +#include "DRMPlayClientServer.h"
1.25 +#include "DRMPlayServer.h"
1.26 +
1.27 +
1.28 +
1.29 +CDRMPlayServer::CDRMPlayServer(TInt aPriority)
1.30 + : CServer2(aPriority)
1.31 + {
1.32 + }
1.33 +
1.34 +
1.35 +// Create and start a new DRM play server.
1.36 +CDRMPlayServer* CDRMPlayServer::New()
1.37 + {
1.38 + CDRMPlayServer *pS=new CDRMPlayServer(EPriority);
1.39 + __ASSERT_ALWAYS(pS!=NULL,PanicServer(ESvrCreateServer));
1.40 + __ASSERT_ALWAYS(pS->Start(KDRMPlayServerName)==KErrNone, PanicServer(ESvrCreateServer));
1.41 + return pS;
1.42 + }
1.43 +
1.44 +
1.45 +// Create a new server session.
1.46 +CSession2 *CDRMPlayServer::NewSessionL(const TVersion& aVersion,const RMessage2& aMessage ) const
1.47 + {
1.48 + // check we're the right version
1.49 + TVersion v(KDRMPlayServMajorVersionNumber,KDRMPlayServMinorVersionNumber,KDRMPlayServBuildVersionNumber);
1.50 + if (!User::QueryVersionSupported(v,aVersion))
1.51 + User::Leave(KErrNotSupported);
1.52 + // make new session
1.53 + return CDRMPlayServerSession::NewL(const_cast<CDRMPlayServer*>(this), aMessage);
1.54 + }
1.55 +
1.56 +CDRMPlayServer::~CDRMPlayServer()
1.57 + {
1.58 +
1.59 + }
1.60 +
1.61 +
1.62 +// Panic the server
1.63 +GLDEF_C void PanicServer(TDRMPlayServPanic aPanic)
1.64 + {
1.65 + _LIT(KTxtServerPanic,"DRM Play server panic");
1.66 + User::Panic(KTxtServerPanic,aPanic);
1.67 + }
1.68 +
1.69 +
1.70 +static void StartDRMPlayServerL()
1.71 +// Perform all server initialisation, in particular creation of the
1.72 +// scheduler and server and then run the scheduler
1.73 +//
1.74 + {
1.75 +
1.76 +
1.77 +
1.78 + // Naming the server thread after the server helps to debug panics
1.79 +
1.80 + User::LeaveIfError(User::RenameThread(KDRMPlayServerName));
1.81 +
1.82 + // Create and install the active scheduler we need
1.83 + CActiveScheduler* scheduler = new(ELeave)CActiveScheduler;
1.84 + CActiveScheduler::Install(scheduler);
1.85 +
1.86 + // create the server
1.87 + CDRMPlayServer* server = CDRMPlayServer::New();
1.88 +
1.89 + // Initialisation complete, now signal the client
1.90 + RProcess::Rendezvous(KErrNone);
1.91 +
1.92 + // Start the scheduler and wait for client requests
1.93 + CActiveScheduler::Start();
1.94 +
1.95 + // Cleanup the server and scheduler
1.96 + CActiveScheduler::Install(NULL);
1.97 + delete scheduler;
1.98 + delete server;
1.99 + }
1.100 +
1.101 +TInt E32Main()
1.102 +//
1.103 +// Server process entry-point
1.104 +// Recover the startup parameters and run the server
1.105 +//
1.106 + {
1.107 + __UHEAP_MARK;
1.108 + //
1.109 + CTrapCleanup* cleanup=CTrapCleanup::New();
1.110 + TInt r=KErrNoMemory;
1.111 + if (cleanup)
1.112 + {
1.113 + TRAP(r,StartDRMPlayServerL());
1.114 + delete cleanup;
1.115 + }
1.116 + //
1.117 + __UHEAP_MARKEND;
1.118 + return r;
1.119 + }
1.120 +
1.121 +// End of file