1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/mm/mmresourcemgmt/mmresctrl/src/mmrcserver/mmrcserverrulemanager.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,253 @@
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 +// mmrcserverpolicymanager.cpp
1.18 +//
1.19 +//
1.20 +
1.21 +#include "mmrcserverrulemanager.h"
1.22 +#include "mmrcserversession.h"
1.23 +#include "mmrcservercontroller.h"
1.24 +#include "mmrcerrorcodes.h"
1.25 +#include "mlogicalchain.h"
1.26 +#include <a3f/a3f_trace_utils.h>
1.27 +
1.28 +
1.29 +/**
1.30 + * By default Symbian 2nd phase constructor is private.
1.31 + * @param CMMRCServerController& A reference on the MMRC Server controller
1.32 + */
1.33 +CMMRCServerRuleManager::CMMRCServerRuleManager(CMMRCServerController& aServerController)
1.34 +:iMMRCServerController(aServerController)
1.35 + {
1.36 + TRACE_CREATE();
1.37 + DP_CONTEXT(----> CMMRCServerRuleManager::CMMRCServerRuleManager *CD1*, CtxDevSound, DPLOCAL);
1.38 + DP_IN();
1.39 +
1.40 + DP_OUT();
1.41 + }
1.42 +
1.43 +/**
1.44 + * Destructor
1.45 + */
1.46 +CMMRCServerRuleManager::~CMMRCServerRuleManager( )
1.47 + {
1.48 + DP_CONTEXT(----> CMMRCServerRuleManager::~CMMRCServerRuleManager *CD1*, CtxDevSound, DPLOCAL);
1.49 + DP_IN();
1.50 +
1.51 + DP_OUT();
1.52 + }
1.53 +
1.54 +/**
1.55 + * Constructs, and returns a pointer to, a new CMMRCServerRuleManager object.
1.56 + * Leaves on failure.
1.57 + * @param CMMRCServerController& A reference on the MMRC Server controller
1.58 + * @return CMMRCServerRuleManager* A pointer to newly created utlitly object.
1.59 + */
1.60 +CMMRCServerRuleManager* CMMRCServerRuleManager::NewL(CMMRCServerController& aServerController)
1.61 + {
1.62 + DP_STATIC_CONTEXT(----> CMMRCServerRuleManager::NewL *CD1*, CtxDevSound, DPLOCAL);
1.63 + DP_IN();
1.64 +
1.65 + CMMRCServerRuleManager* self = NewLC(aServerController);
1.66 + CleanupStack::Pop ( self );
1.67 +
1.68 + DP0_RET(self, "self=0x%x");
1.69 + }
1.70 +
1.71 +/**
1.72 + * Constructs, leaves object on the cleanup stack, and returns a pointer
1.73 + * to, a new CMMRCServerRuleManager object.
1.74 + * Leaves on failure.
1.75 + * @param CMMRCServerController& A reference on the MMRC Server controller
1.76 + * @return CMMRCServerRuleManager* A pointer to newly created utlitly object.
1.77 + */
1.78 +CMMRCServerRuleManager* CMMRCServerRuleManager::NewLC(CMMRCServerController& aServerController)
1.79 + {
1.80 + DP_STATIC_CONTEXT(----> CMMRCServerRuleManager::NewLC *CD1*, CtxDevSound, DPLOCAL);
1.81 + DP_IN();
1.82 +
1.83 + CMMRCServerRuleManager* self = new(ELeave) CMMRCServerRuleManager(aServerController);
1.84 + CleanupStack::PushL (self );
1.85 + self->ConstructL ( );
1.86 +
1.87 + DP0_RET(self, "self=0x%x");
1.88 + }
1.89 +
1.90 +/**
1.91 + CMMRCServerRuleManager::ConstructL
1.92 + Symbian 2nd phase constructor can leave.
1.93 + */
1.94 +void CMMRCServerRuleManager::ConstructL()
1.95 + {
1.96 + DP_CONTEXT(----> CMMRCServerRuleManager::ConstructL *CD1*, CtxDevSound, DPLOCAL);
1.97 + DP_IN();
1.98 +
1.99 + DP_OUT();
1.100 + }
1.101 +
1.102 +/**
1.103 + * Deduce the rule on the message according to the previous and current state
1.104 + * Return EProcessOnIdle if no rule has been found.
1.105 + * Leaves on failure.
1.106 + * @param TAudioState aAudioStateAllocatedResource
1.107 + * @param TAudioState aAudioStateRequiringProcess
1.108 + * @return TMMRCRule rule
1.109 + */
1.110 +TMMRCRule CMMRCServerRuleManager::DecisionRule(TAudioState aAudioStateAllocatedResource, TAudioState aAudioStateRequiringProcess )
1.111 + {
1.112 + DP_CONTEXT(RMMRCClient::Open *CD1*, CtxDevSound, DPLOCAL);
1.113 + DP_IN();
1.114 +
1.115 + TMMRCRule rule = EProcessOnIdle;
1.116 + switch ( aAudioStateAllocatedResource )
1.117 + {
1.118 + //
1.119 + case EUninitialized:
1.120 + case EInitialized:
1.121 + case EDead:
1.122 + rule = EAlwaysProcess;
1.123 + break;
1.124 +
1.125 + //
1.126 + case EIdle:
1.127 + case EPrimed:
1.128 + case EActive:
1.129 + {
1.130 + if ( aAudioStateRequiringProcess == EUninitialized || aAudioStateRequiringProcess == EInitialized)
1.131 + {
1.132 + rule = EAlwaysProcess;
1.133 + }
1.134 + }
1.135 + break;
1.136 +
1.137 + default:
1.138 + __ASSERT_DEBUG(EFalse, User::Panic(KMMRCErrorNameUnkwnonAudioState, EMMRCErrorUnkwnonAudioState));
1.139 + break;
1.140 + }
1.141 +
1.142 + DP0_RET(rule, "rule=%d");
1.143 + }
1.144 +
1.145 +/**
1.146 + * Deduce the rule on the message according to the previous and current state
1.147 + * Return EStop if no rule has been found.
1.148 + * @param TAudioState aAudioStateAllocatedResource
1.149 + * @param TAudioState aAudioStateRequiringProcess
1.150 + * @return TMMRCRule rule
1.151 + */
1.152 +TReason CMMRCServerRuleManager::ActionReason(TAudioState aAudioStateLastCommited, TAudioState aAudioStateRequested )
1.153 + {
1.154 + DP_CONTEXT(----> CMMRCServerRuleManager::ActionReason *CD1*, CtxDevSound, DPLOCAL);
1.155 + DP_IN();
1.156 +
1.157 + TReason reason;
1.158 + switch (aAudioStateRequested )
1.159 + {
1.160 + case EUninitialized:
1.161 + if ( aAudioStateLastCommited == EInitialized )
1.162 + {
1.163 + reason = EUninitialize;
1.164 + }
1.165 + else
1.166 + {
1.167 + reason = EUninitialize ;
1.168 + }
1.169 + break;
1.170 +
1.171 + case EInitialized:
1.172 + if ( aAudioStateLastCommited == EUninitialized )
1.173 + {
1.174 + reason = EInitialize;
1.175 + }
1.176 + else if ( aAudioStateLastCommited == EIdle )
1.177 + {
1.178 + reason = EUnload;
1.179 + }
1.180 + else if ( aAudioStateLastCommited == EPrimed )
1.181 + {
1.182 + reason = EPrimeReason;
1.183 + }
1.184 + else if ( aAudioStateLastCommited == EActive )
1.185 + {
1.186 + reason = EStop;
1.187 + }
1.188 + else
1.189 + {
1.190 + reason = EInitialize ;
1.191 + }
1.192 + break;
1.193 +
1.194 + case EIdle:
1.195 + if ( aAudioStateLastCommited == EUninitialized )
1.196 + {
1.197 + reason = ELoad;
1.198 + }
1.199 + else if ( aAudioStateLastCommited == EInitialized )
1.200 + {
1.201 + reason = ELoad;
1.202 + }
1.203 + else if ( aAudioStateLastCommited == EPrimed )
1.204 + {
1.205 + reason = EStop;
1.206 + }
1.207 + else if ( aAudioStateLastCommited == EActive )
1.208 + {
1.209 + reason = EStop;
1.210 + }
1.211 + else
1.212 + {
1.213 + reason = ELoad;
1.214 + }
1.215 + break;
1.216 +
1.217 + case EPrimed:
1.218 + if ( aAudioStateLastCommited == EIdle )
1.219 + {
1.220 + reason = EPrimeReason;
1.221 + }
1.222 + else if ( aAudioStateLastCommited == EActive )
1.223 + {
1.224 + reason = EPrimeReason;
1.225 + }
1.226 + else
1.227 + {
1.228 + reason = EPrimeReason;
1.229 + }
1.230 + break;
1.231 +
1.232 + case EActive:
1.233 + if ( aAudioStateLastCommited == EPrimed )
1.234 + {
1.235 + reason = EActivate;
1.236 + }
1.237 + else if ( aAudioStateLastCommited == EIdle )
1.238 + {
1.239 + reason = EActivate;
1.240 + }
1.241 + else
1.242 + {
1.243 + reason = EActivate;
1.244 + }
1.245 + break;
1.246 +
1.247 + case EDead:
1.248 + default:
1.249 + reason = EStop;
1.250 + break;
1.251 + }
1.252 +
1.253 + DP0_RET(reason, "reason=%d");
1.254 + }
1.255 +
1.256 +//EOF