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 |
// mmrcserverpolicaymanager.h
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#ifndef MMRCSERVERPOLICYMANAGER_H__
|
sl@0
|
19 |
#define MMRCSERVERPOLICYMANAGER_H__
|
sl@0
|
20 |
|
sl@0
|
21 |
#include <e32std.h>
|
sl@0
|
22 |
#include <e32base.h>
|
sl@0
|
23 |
#include <a3f/a3fbase.h>
|
sl@0
|
24 |
#include "mmrcclientserver.h"
|
sl@0
|
25 |
|
sl@0
|
26 |
class CMMRCServerSession;
|
sl@0
|
27 |
class CMMRCServerController;
|
sl@0
|
28 |
class MMMRCServerInfoState;
|
sl@0
|
29 |
|
sl@0
|
30 |
/**
|
sl@0
|
31 |
@internalComponent
|
sl@0
|
32 |
|
sl@0
|
33 |
This class implements the MMRC Server Rule Manager.
|
sl@0
|
34 |
The main purpose of this class is to
|
sl@0
|
35 |
*/
|
sl@0
|
36 |
NONSHARABLE_CLASS( CMMRCServerRuleManager ): public CBase
|
sl@0
|
37 |
{
|
sl@0
|
38 |
public:
|
sl@0
|
39 |
/**
|
sl@0
|
40 |
* Constructs, and returns a pointer to, a new CMMRCServerRuleManager object.
|
sl@0
|
41 |
* Leaves on failure.
|
sl@0
|
42 |
* @param CMMRCServerController& A reference on the MMRC Server controller
|
sl@0
|
43 |
* @return CMMRCServerRuleManager* A pointer to newly created utlitly object.
|
sl@0
|
44 |
*/
|
sl@0
|
45 |
static CMMRCServerRuleManager* NewL(CMMRCServerController& aServerController);
|
sl@0
|
46 |
|
sl@0
|
47 |
/**
|
sl@0
|
48 |
* Constructs, leaves object on the cleanup stack, and returns a pointer
|
sl@0
|
49 |
* to, a new CMMRCServerRuleManager object.
|
sl@0
|
50 |
* Leaves on failure.
|
sl@0
|
51 |
* @param CMMRCServerController& A reference on the MMRC Server controller
|
sl@0
|
52 |
* @return CMMRCServerRuleManager* A pointer to newly created utlitly object.
|
sl@0
|
53 |
*/
|
sl@0
|
54 |
static CMMRCServerRuleManager* NewLC(CMMRCServerController& aServerController);
|
sl@0
|
55 |
|
sl@0
|
56 |
/**
|
sl@0
|
57 |
* Destructor.
|
sl@0
|
58 |
*/
|
sl@0
|
59 |
~CMMRCServerRuleManager();
|
sl@0
|
60 |
|
sl@0
|
61 |
public:
|
sl@0
|
62 |
/**
|
sl@0
|
63 |
* Deduce the rule on the message according to the previous and current state
|
sl@0
|
64 |
* Return KErrNotFound if no rule has been found.
|
sl@0
|
65 |
* Leaves on failure.
|
sl@0
|
66 |
* @param TAudioState aAudioStateAllocatedResource
|
sl@0
|
67 |
* @param TAudioState aAudioStateRequiringProcess
|
sl@0
|
68 |
* @return TMMRCRule rule
|
sl@0
|
69 |
*/
|
sl@0
|
70 |
TMMRCRule DecisionRule( TAudioState aAudioStateAllocatedResource, TAudioState aAudioStateRequiringProcess );
|
sl@0
|
71 |
|
sl@0
|
72 |
/**
|
sl@0
|
73 |
* Deduce the rule on the message according to the previous and current state
|
sl@0
|
74 |
* Return KErrNotFound if no rule has been found.
|
sl@0
|
75 |
* @param TAudioState aAudioStateAllocatedResource
|
sl@0
|
76 |
* @param TAudioState aAudioStateRequiringProcess
|
sl@0
|
77 |
* @return TMMRCRule rule
|
sl@0
|
78 |
*/
|
sl@0
|
79 |
TReason ActionReason( TAudioState aAudioStateLastCommited, TAudioState aAudioStateRequested );
|
sl@0
|
80 |
|
sl@0
|
81 |
private:
|
sl@0
|
82 |
/**
|
sl@0
|
83 |
* By default Symbian 2nd phase constructor is private.
|
sl@0
|
84 |
* @param CMMRCServerController& A reference on the MMRC Server controller
|
sl@0
|
85 |
*/
|
sl@0
|
86 |
CMMRCServerRuleManager(CMMRCServerController& aServerController);
|
sl@0
|
87 |
|
sl@0
|
88 |
/**
|
sl@0
|
89 |
* By default Symbian 2nd phase constructor is private.
|
sl@0
|
90 |
*/
|
sl@0
|
91 |
void ConstructL();
|
sl@0
|
92 |
|
sl@0
|
93 |
private:
|
sl@0
|
94 |
CMMRCServerController& iMMRCServerController;
|
sl@0
|
95 |
};
|
sl@0
|
96 |
|
sl@0
|
97 |
#endif //__MMRCSERVERPOLICYMANAGER_H__
|
sl@0
|
98 |
|