os/mm/mmresourcemgmt/mmresctrl/inc/mmrcserver.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/mm/mmresourcemgmt/mmresctrl/inc/mmrcserver.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,106 @@
     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 MMRCSERVER_H__
    1.20 +#define MMRCSERVER_H__
    1.21 +
    1.22 +#include <e32std.h>
    1.23 +#include <e32base.h>
    1.24 +#include <a3f/a3fbase.h>
    1.25 +#include <e32msgqueue.h>
    1.26 +#include "mmrcclientserver.h"
    1.27 +
    1.28 +/**
    1.29 +* @file
    1.30 +* @internalTechnology
    1.31 +*/
    1.32 +
    1.33 +class TServerStart;
    1.34 +class CMMRCServerSession;
    1.35 +class CMMRCServerController;
    1.36 +class MMultimediaResourceControlObserver;
    1.37 +class CFourCCConvertor;
    1.38 +
    1.39 +// reasons for server panic
    1.40 +enum TCountServPanic
    1.41 +	{
    1.42 +	EBadRequest = 1,
    1.43 +	EBadDescriptor
    1.44 +	};
    1.45 +
    1.46 +/**
    1.47 +@internalComponent
    1.48 +
    1.49 +This class implements the MMRC Server. 
    1.50 +The main purpose of this class is to implement the MMRC Server
    1.51 +*/	
    1.52 +NONSHARABLE_CLASS( CMMRCServer ): public CServer2
    1.53 +	{
    1.54 +public:
    1.55 +	/**
    1.56 +	 * Constructs, and returns a pointer to, a new CMMRCServer object.
    1.57 +	 * Leaves on failure.
    1.58 +	 * @return CMMRCServer* A pointer to newly created utlitly object.
    1.59 +	 */		
    1.60 +	static CMMRCServer* NewL(); 
    1.61 +	
    1.62 +	/**
    1.63 +	 * Constructs, leaves object on the cleanup stack, and returns a pointer
    1.64 +	 * to, a new CMMRCServer object.
    1.65 +	 * Leaves on failure.
    1.66 +	 * @return CMMRCServer* A pointer to newly created utlitly object.
    1.67 +	 */		
    1.68 +	static CMMRCServer* NewLC();
    1.69 +	
    1.70 + 	/**
    1.71 +	 * Destructor.
    1.72 +	 */
    1.73 +	~CMMRCServer();
    1.74 +	
    1.75 +public:
    1.76 +	// The thread function executed by the server
    1.77 +	static TInt ThreadFunction(TAny* aStarted);
    1.78 +
    1.79 +	// Creates a new session with the server; the function
    1.80 +	// implements the pure virtutal function 
    1.81 +	// defined in class CServer2
    1.82 +	CSession2* NewSessionL(const TVersion& aVersion,const RMessage2& aMessage) const;
    1.83 +private :
    1.84 +	// The thread function executed by the server
    1.85 +	static TInt ThreadFunctionL(TAny* aStarted);
    1.86 +	
    1.87 +	// Function to panic the server
    1.88 +	static void PanicServer(TInt aPanic);
    1.89 +
    1.90 +	/**
    1.91 +	 * By default Symbian 2nd phase constructor is private.
    1.92 +	 */
    1.93 +	CMMRCServer();
    1.94 +	
    1.95 +	/**
    1.96 +	 * By default Symbian 2nd phase constructor is private.
    1.97 +	 */
    1.98 +	void ConstructL();
    1.99 +
   1.100 +private:
   1.101 +	// owned
   1.102 +	CMMRCServerController* iMMRCServerController;	//MMRC Server controller
   1.103 +	
   1.104 +	//Not ownwed.
   1.105 +	CFourCCConvertor* iFourCCConvertor;
   1.106 +	
   1.107 +	};
   1.108 +
   1.109 +#endif //__MMRCSERVER_H__