sl@0: // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: #ifndef MMRCSERVER_H__ sl@0: #define MMRCSERVER_H__ sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include "mmrcclientserver.h" sl@0: sl@0: /** sl@0: * @file sl@0: * @internalTechnology sl@0: */ sl@0: sl@0: class TServerStart; sl@0: class CMMRCServerSession; sl@0: class CMMRCServerController; sl@0: class MMultimediaResourceControlObserver; sl@0: class CFourCCConvertor; sl@0: sl@0: // reasons for server panic sl@0: enum TCountServPanic sl@0: { sl@0: EBadRequest = 1, sl@0: EBadDescriptor sl@0: }; sl@0: sl@0: /** sl@0: @internalComponent sl@0: sl@0: This class implements the MMRC Server. sl@0: The main purpose of this class is to implement the MMRC Server sl@0: */ sl@0: NONSHARABLE_CLASS( CMMRCServer ): public CServer2 sl@0: { sl@0: public: sl@0: /** sl@0: * Constructs, and returns a pointer to, a new CMMRCServer object. sl@0: * Leaves on failure. sl@0: * @return CMMRCServer* A pointer to newly created utlitly object. sl@0: */ sl@0: static CMMRCServer* NewL(); sl@0: sl@0: /** sl@0: * Constructs, leaves object on the cleanup stack, and returns a pointer sl@0: * to, a new CMMRCServer object. sl@0: * Leaves on failure. sl@0: * @return CMMRCServer* A pointer to newly created utlitly object. sl@0: */ sl@0: static CMMRCServer* NewLC(); sl@0: sl@0: /** sl@0: * Destructor. sl@0: */ sl@0: ~CMMRCServer(); sl@0: sl@0: public: sl@0: // The thread function executed by the server sl@0: static TInt ThreadFunction(TAny* aStarted); sl@0: sl@0: // Creates a new session with the server; the function sl@0: // implements the pure virtutal function sl@0: // defined in class CServer2 sl@0: CSession2* NewSessionL(const TVersion& aVersion,const RMessage2& aMessage) const; sl@0: private : sl@0: // The thread function executed by the server sl@0: static TInt ThreadFunctionL(TAny* aStarted); sl@0: sl@0: // Function to panic the server sl@0: static void PanicServer(TInt aPanic); sl@0: sl@0: /** sl@0: * By default Symbian 2nd phase constructor is private. sl@0: */ sl@0: CMMRCServer(); sl@0: sl@0: /** sl@0: * By default Symbian 2nd phase constructor is private. sl@0: */ sl@0: void ConstructL(); sl@0: sl@0: private: sl@0: // owned sl@0: CMMRCServerController* iMMRCServerController; //MMRC Server controller sl@0: sl@0: //Not ownwed. sl@0: CFourCCConvertor* iFourCCConvertor; sl@0: sl@0: }; sl@0: sl@0: #endif //__MMRCSERVER_H__