os/mm/mmresourcemgmt/mmresctrl/inc/mmrcservercontroller.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
#ifndef MMRCSERVERCONTROLLER_H__
sl@0
    17
#define MMRCSERVERCONTROLLER_H__
sl@0
    18
sl@0
    19
#include <e32std.h>
sl@0
    20
#include <e32base.h>
sl@0
    21
#include <a3f/a3fbase.h>
sl@0
    22
#include "mmrcclientserver.h"
sl@0
    23
sl@0
    24
class CMMRCServerInfo;
sl@0
    25
class MMMRCServerInfoState;
sl@0
    26
class CMMRCServerSession;
sl@0
    27
class CMMRCServerRuleManager;
sl@0
    28
class CARNNotificationObject;
sl@0
    29
sl@0
    30
sl@0
    31
/**
sl@0
    32
Panic category and codes that MMRCServerController raises on the client
sl@0
    33
*/
sl@0
    34
_LIT(KMMRCServerControllerPanicCategory, "MMRCServerController");
sl@0
    35
sl@0
    36
enum TMMRCServerControllerPanicCodes
sl@0
    37
	{
sl@0
    38
	EProcessNextRequestLeft = 1,
sl@0
    39
	EPushPauseContextLeft,
sl@0
    40
	EPushAllocatedResourceContextFailed
sl@0
    41
	};
sl@0
    42
sl@0
    43
sl@0
    44
/**
sl@0
    45
@internalComponent
sl@0
    46
sl@0
    47
This class implements the MMRC Server Controller. 
sl@0
    48
The main purpose of this class is to control the different transactions
sl@0
    49
*/	
sl@0
    50
NONSHARABLE_CLASS( CMMRCServerController ): public CBase
sl@0
    51
	{
sl@0
    52
public:
sl@0
    53
	/**
sl@0
    54
	 * Constructs, and returns a pointer to, a new CMMRCServerController object.
sl@0
    55
	 * Leaves on failure.
sl@0
    56
	 * @return CMMRCServerController* A pointer to newly created utlitly object.
sl@0
    57
	 */		
sl@0
    58
	static CMMRCServerController* NewL(); 
sl@0
    59
	
sl@0
    60
	/**
sl@0
    61
	 * Constructs, leaves object on the cleanup stack, and returns a pointer
sl@0
    62
	 * to, a new CMMRCServerController object.
sl@0
    63
	 * Leaves on failure.
sl@0
    64
	 * @return CMMRCServerController* A pointer to newly created utlitly object.
sl@0
    65
	 */	
sl@0
    66
	static CMMRCServerController* NewLC();
sl@0
    67
	
sl@0
    68
	/**
sl@0
    69
	 * Destructor.
sl@0
    70
	 */
sl@0
    71
	~CMMRCServerController();
sl@0
    72
	
sl@0
    73
public:
sl@0
    74
sl@0
    75
	/**
sl@0
    76
	 * Process the request pointer by a specific session
sl@0
    77
	 * @param CMMRCServerSession& aServerSession
sl@0
    78
	 * @return KerrNone in case of success of the process
sl@0
    79
	 */
sl@0
    80
	TInt EnqueueRequestL(CMMRCServerSession& aServerSession );
sl@0
    81
	
sl@0
    82
	/** 
sl@0
    83
	 * Callback from the adaptation
sl@0
    84
	 * @param MLogicalChain* aOldChain
sl@0
    85
	 * @param MLogicalChain* aNewChain
sl@0
    86
	 * @param TMMRCAdaptationToServerRequestResults aResult
sl@0
    87
	 */
sl@0
    88
	void AdaptationRequestAcknowledgment(CMMRCServerSession& aServerSessionAllocatedResource, TMMRCAdaptationToServerRequestResults aResult, TInt aError);
sl@0
    89
	
sl@0
    90
	/*
sl@0
    91
	 * 
sl@0
    92
	 */
sl@0
    93
	void CloseSessionByContextId(TInt32 aContextId);
sl@0
    94
	
sl@0
    95
	/*
sl@0
    96
	 * 
sl@0
    97
	 */
sl@0
    98
	void ClientAcknowledgment(CMMRCServerSession& aServerSession);
sl@0
    99
	
sl@0
   100
	/*
sl@0
   101
	 * 
sl@0
   102
	 */
sl@0
   103
	void ServerState(TMMRCServerState& aServerState, TUint64& aContextId) const;
sl@0
   104
	
sl@0
   105
	/**
sl@0
   106
	 * 
sl@0
   107
	 * @param CMMRCServerSession& aServerSession
sl@0
   108
	 * @return KerrNone in case of success of the process
sl@0
   109
	 */	
sl@0
   110
	TInt EnqueueRequestForAPRL(CMMRCServerSession& aServerSession );
sl@0
   111
	
sl@0
   112
	/**
sl@0
   113
	 * 
sl@0
   114
	 * @param CMMRCServerSession& aServerSession
sl@0
   115
	 * @return KerrNone in case of success of the process
sl@0
   116
	 */	
sl@0
   117
	TInt RemoveRequestForAPR(CMMRCServerSession& aServerSession );	
sl@0
   118
	
sl@0
   119
	/**
sl@0
   120
	 * 
sl@0
   121
	 * @return KerrNone in case of success of the process
sl@0
   122
	 */	
sl@0
   123
	TInt WillResumePlay();
sl@0
   124
	
sl@0
   125
sl@0
   126
private:
sl@0
   127
	/**
sl@0
   128
	 * Process the first request with the highest priority from the FIFO queue
sl@0
   129
	 * @return KerrNone in case of success of the process
sl@0
   130
	 */
sl@0
   131
	TInt ProcessNextRequestL();
sl@0
   132
	
sl@0
   133
	/**
sl@0
   134
	 * Send a resource request to the adaptation
sl@0
   135
	 * @param CMMRCServerSession& aServerSession 
sl@0
   136
	 * @return KerrNone in case of success of the process
sl@0
   137
	 */
sl@0
   138
	TInt SendResourceRequest( CMMRCServerSession& aServerSession );
sl@0
   139
	
sl@0
   140
	/** 
sl@0
   141
	 * Send a preemption request to the adaptation
sl@0
   142
	 * @param CMMRCServerSession& aServerSession 
sl@0
   143
	 * @return KerrNone in case of success of the process
sl@0
   144
	 */
sl@0
   145
	TInt SendPreemptionRequest( CMMRCServerSession& aServerSession );
sl@0
   146
	
sl@0
   147
	/**
sl@0
   148
	 * Pop the decision rule on the base of the current in-process request and a new committed request
sl@0
   149
	 * @param TAudioState aAudioStateAllocatedResource
sl@0
   150
	 * @param TAudioState aAudioStateRequiringProcess
sl@0
   151
	 * @return TMMRCRule
sl@0
   152
	 */
sl@0
   153
	TMMRCRule DecisionRule(TAudioState aAudioStateAllocatedResource, TAudioState aAudioStateRequiringProcess);
sl@0
   154
	
sl@0
   155
	/**
sl@0
   156
	 * Pop the action reason on the base of the last committed request and the current one
sl@0
   157
	 * @param TAudioState aAudioStateLastCommitted
sl@0
   158
	 * @param TAudioState aAudioStateRequested
sl@0
   159
	 * @return TReason
sl@0
   160
	 */
sl@0
   161
	TReason ActionReason(TAudioState aAudioStateLastCommitted, TAudioState aAudioStateRequested);
sl@0
   162
	
sl@0
   163
	/**
sl@0
   164
	 * Notify all the paused client that a resource has been unallocated
sl@0
   165
	 */
sl@0
   166
	void NotifyPausedClientsResourceUnallocated();
sl@0
   167
sl@0
   168
	
sl@0
   169
	/*
sl@0
   170
	 * 
sl@0
   171
	 */
sl@0
   172
	void Panic(TMMRCServerControllerPanicCodes aCode);
sl@0
   173
sl@0
   174
private:
sl@0
   175
		
sl@0
   176
	/**
sl@0
   177
	 * By default Symbian 2nd phase constructor is private.
sl@0
   178
	 */
sl@0
   179
	CMMRCServerController();
sl@0
   180
	
sl@0
   181
	/**
sl@0
   182
	 * By default Symbian 2nd phase constructor is private.
sl@0
   183
	 */
sl@0
   184
	void ConstructL();
sl@0
   185
sl@0
   186
private:
sl@0
   187
	//owned
sl@0
   188
	CMMRCServerInfo* iMMRCServerInfo;
sl@0
   189
	CMMRCServerRuleManager* iMMRCServerRuleManager;
sl@0
   190
	CARNNotificationObject* iARNNotificationObject;
sl@0
   191
	};
sl@0
   192
sl@0
   193
#endif //__MMRCSERVERCONTROLLER_H__