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 PlayUtility Session
19 #include "mmfdrmSession.h"
20 #include "DRMPlayClientServer.h"
23 #define DEP_PRN0(str) RDebug::Print(str)
24 #define DEP_PRN1(str, v1) RDebug::Print(str, v1)
25 #define DEP_PRN2(str, v1, v2) RDebug::Print(str, v1, v2)
28 #define DEP_PRN1(str, v1)
29 #define DEP_PRN2(str, v1, v2)
34 // Standard server startup code
36 static TInt StartServer()
38 DEP_PRN0(_L("DRM Client: Starting server..."));
40 // EPOC is easy, we just create a new server process. Simultaneous
41 // launching of two such processes should be detected when the second one
42 // attempts to create the server object, failing with KErrAlreadyExists.
44 //TInt r=server.Create(KHelloWorldServerImg,KNullDesC,serverUid);
45 TInt r=server.Create(KDRMPlayServerImg,KNullDesC);
49 DEP_PRN1(_L(" DRM Client: server start failed %d"),r);
54 server.Rendezvous(stat);
55 if (stat!=KRequestPending)
56 server.Kill(0); // abort startup
58 server.Resume(); // logon OK - start the server
60 DEP_PRN0(_L("DRM Client: Started"));
62 User::WaitForRequest(stat); // wait for start or death
63 // we can't use the 'exit reason' if the server panicked as this
64 // is the panic 'reason' and may be '0' which cannot be distinguished
66 r=(server.ExitType()==EExitPanic) ? KErrGeneral : stat.Int();
74 RDrmSession::RDrmSession()
78 RDrmSession::~RDrmSession()
87 TInt RDrmSession::Connect()
93 TInt r = CreateSession( KDRMPlayServerName, TVersion(0,0,0), -1);
94 if ((r != KErrNotFound) && (r != KErrServerTerminated) )
99 if (( r!= KErrNone) && (r !=KErrAlreadyExists))
104 void RDrmSession::Disconnect()
106 RSessionBase::Close();
109 TVersion RDrmSession::Version() const
111 return(TVersion(KDRMPlayServMajorVersionNumber,
112 KDRMPlayServMinorVersionNumber,
113 KDRMPlayServBuildVersionNumber));
117 TInt RDrmSession::Send(TInt aFunction)
119 TInt status(KErrSessionClosed);
122 status = RSessionBase::SendReceive(aFunction);
127 //Sync send with data
128 TInt RDrmSession::Send(TInt aFunction,const TIpcArgs& aArgs)
130 TInt status(KErrSessionClosed);
133 status = RSessionBase::SendReceive(aFunction, aArgs);
139 void RDrmSession::Send(TInt aFunction,TRequestStatus& aStatus)
143 RSessionBase::SendReceive(aFunction, aStatus);
147 TRequestStatus* s = &aStatus;
148 User::RequestComplete( s , KErrSessionClosed );
152 //Async send with data
153 void RDrmSession::Send(TInt aFunction,const TIpcArgs& aArgs,TRequestStatus& aStatus)
157 RSessionBase::SendReceive(aFunction, aArgs, aStatus);
161 TRequestStatus* s = &aStatus;
162 User::RequestComplete( s , KErrSessionClosed );