First public contribution.
1 // Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
18 CSessionNotifier::CSessionNotifier() :
19 iIdReportingOn(ETrue), iRequests(KArrayGranularity, _FOFF(SRequest, id))
23 CSessionNotifier::~CSessionNotifier()
28 void CSessionNotifier::Notify(TUint32 aId)
33 // Check if iIdReportingOn is True. If it's false return KUnspecifiedKey, otherwise return
34 // the individual key. One exception to this is where the individual key is KRequestPending.
35 // To prevent problems in AO's using key notifications KUnspecifiedKey will be returned to
36 // notify for changes to this key.
37 TUint32 reportedId = (iIdReportingOn && (aId != static_cast<TUint32>(KRequestPending))) ? aId : KUnspecifiedKey;
39 TInt i = iRequests.FindInUnsignedKeyOrder(s);
42 iRequests[i].msg.Complete(reportedId);
46 for(i=iGroupRequests.Count()-1; i>=0; i--)
48 SGroupRequest& s = iGroupRequests[i];
49 if((aId & s.idMask)==(s.partialId & s.idMask))
51 s.msg.Complete(reportedId);
52 iGroupRequests.Remove(i);
57 TInt CSessionNotifier::AddRequest(TUint32 aId, TClientRequest aMessage)
63 return iRequests.InsertInUnsignedKeyOrder(s);
66 TInt CSessionNotifier::AddRequest(TUint32 aPartialId, TUint32 aIdMask, TClientRequest aMessage)
69 s.partialId = aPartialId;;
73 return iGroupRequests.Append(s);
76 TInt CSessionNotifier::CancelRequest(TUint32 aId)
81 TInt r = iRequests.FindInUnsignedKeyOrder(s);
84 iRequests[r].msg.Complete(KUnspecifiedKey);
88 return r>=0 ? KErrNone : KErrNotFound;
91 TInt CSessionNotifier::CancelRequest(TUint32 aPartialId, TUint32 aIdMask)
94 for(TInt i=iGroupRequests.Count()-1; i>=0; i--)
96 SGroupRequest& s = iGroupRequests[i];
97 if(aPartialId==s.partialId && aIdMask==s.idMask)
100 s.msg.Complete(KUnspecifiedKey);
101 iGroupRequests.Remove(i);
105 return n>0 ? KErrNone : KErrNotFound;
108 TInt CSessionNotifier::CancelAllRequests()
110 TInt n = iRequests.Count();
112 iRequests[n].msg.Complete(KUnspecifiedKey);
116 n = iGroupRequests.Count();
118 iGroupRequests[n].msg.Complete(KUnspecifiedKey);
120 iGroupRequests.Reset();
125 void CSessionNotifier::IdReportingOn()
127 iIdReportingOn = ETrue;
130 void CSessionNotifier::IdReportingOff()
132 iIdReportingOn = EFalse;