os/mm/mmresourcemgmt/mmresctrl/inc/mmrcserverstart.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/mm/mmresourcemgmt/mmresctrl/inc/mmrcserverstart.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,65 @@
     1.4 +// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +//
    1.18 +
    1.19 +#ifndef MMRCSERVERSTART_H
    1.20 +#define MMRCSERVERSTART_H
    1.21 +
    1.22 +_LIT(KMMRCServerName,"MMRCServer");
    1.23 +_LIT(KMMRCServerFileName,"mmrcserver");
    1.24 +
    1.25 +const TUid KMMRCServerUID3 = {0x102021d5};
    1.26 +
    1.27 +const TInt KMMRCServerStackSize=0x2000;			//  8KB
    1.28 +const TInt KMMRCServerInitHeapSize=0x1000;		//  4KB
    1.29 +const TInt KMMRCServerMaxHeapSize=0x1000000;		// 16MB
    1.30 +
    1.31 +const TUint KMMRCServerVersion=1;
    1.32 +const TUint KMMRCServerMinorVersionNumber=0;
    1.33 +const TUint KMMRCServerBuildVersionNumber=0;
    1.34 +
    1.35 +class TServerStart
    1.36 +	{
    1.37 +	public:
    1.38 +	TServerStart() {};
    1.39 +	TServerStart(TRequestStatus& aStatus);
    1.40 +	TPtrC AsCommand() const;
    1.41 +	TInt GetCommand();
    1.42 +	void SignalL();
    1.43 +	private:
    1.44 +	TThreadId iId;
    1.45 +	TRequestStatus* iStatus;
    1.46 +	};
    1.47 +
    1.48 +inline TServerStart::TServerStart(TRequestStatus& aStatus)
    1.49 +:iId(RThread().Id()),iStatus(&aStatus)
    1.50 +	{
    1.51 +	aStatus = KRequestPending;
    1.52 +	}
    1.53 +
    1.54 +// Descriptorizes ’this’ to pass it from client to server
    1.55 +inline TPtrC TServerStart::AsCommand() const
    1.56 +	{
    1.57 +	return TPtrC(reinterpret_cast<const TText*>(this),sizeof(TServerStart)/sizeof(TText));
    1.58 +	}
    1.59 +
    1.60 +void TServerStart::SignalL()
    1.61 +	{
    1.62 +	RThread client;
    1.63 +	User::LeaveIfError(client.Open(iId));
    1.64 +	client.RequestComplete(iStatus, KErrNone);
    1.65 +	client.Close();
    1.66 +	}
    1.67 +#endif //__MMRCSERVERSTART_H
    1.68 +