os/ossrv/lowlevellibsandfws/apputils/src/BACNTF.CPP
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) 1997-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
// Started by BLB, October 1996
sl@0
    15
// Active object for tracking changes in TLocale
sl@0
    16
// 
sl@0
    17
//
sl@0
    18
sl@0
    19
#include <bacntf.h>
sl@0
    20
sl@0
    21
inline CEnvironmentChangeNotifier::CEnvironmentChangeNotifier(TInt aPriority)
sl@0
    22
	: CActive(aPriority)
sl@0
    23
	{__DECLARE_NAME(_S("CEnvironmentChangeNotifier"));}
sl@0
    24
sl@0
    25
sl@0
    26
EXPORT_C CEnvironmentChangeNotifier* CEnvironmentChangeNotifier::NewL(TInt aPriority,const TCallBack& aCallBack)
sl@0
    27
/** Constructs a new environment change notifier object with the specified active 
sl@0
    28
object priority and callback function.
sl@0
    29
sl@0
    30
The function requires a priority value for this active object and a reference 
sl@0
    31
to a TCallBack object encapsulating a pointer to the call back function which 
sl@0
    32
is to run when change events occur.
sl@0
    33
sl@0
    34
As part of its implementation, the function:
sl@0
    35
sl@0
    36
creates a Kernel side change notifier and opens a handle (an RChangeNotifier) 
sl@0
    37
to it.
sl@0
    38
sl@0
    39
adds this active object to the current active scheduler.
sl@0
    40
sl@0
    41
Note that construction of the environment change notifier does not issue any 
sl@0
    42
requests for change events.
sl@0
    43
sl@0
    44
@param aPriority The priority of this active object. Priority values determine 
sl@0
    45
the order in which an active scheduler handles completed active object requests.
sl@0
    46
@param aCallBack A reference to a callback object which the caller must construct 
sl@0
    47
to encapsulate the callback function. 
sl@0
    48
@return A pointer to the new environment change notifier object.
sl@0
    49
@see CEnvironmentChangeNotifier::Start()
sl@0
    50
@see CActive::TPriority */
sl@0
    51
	{
sl@0
    52
	CEnvironmentChangeNotifier* This=new(ELeave) CEnvironmentChangeNotifier(aPriority);
sl@0
    53
	This->iChangeNotifier.Create();
sl@0
    54
	This->Set(aCallBack);
sl@0
    55
	CActiveScheduler::Add(This);
sl@0
    56
	return(This);
sl@0
    57
	}
sl@0
    58
sl@0
    59
EXPORT_C CEnvironmentChangeNotifier::~CEnvironmentChangeNotifier()
sl@0
    60
/** Destructor. Frees all resources owned by the object, prior to its destruction.
sl@0
    61
sl@0
    62
In particular, it cancels any outstanding request to the Kernel side change 
sl@0
    63
notifier before closing the handle to it. */
sl@0
    64
	{
sl@0
    65
	Cancel();
sl@0
    66
	iChangeNotifier.Close();
sl@0
    67
	}
sl@0
    68
sl@0
    69
EXPORT_C void CEnvironmentChangeNotifier::Start()
sl@0
    70
/** Issues a request for change events.
sl@0
    71
sl@0
    72
The request completes when change events occur, as signalled by the Kernel 
sl@0
    73
side change notifier service. The request may also complete if it is cancelled 
sl@0
    74
by calling the Cancel() member function of this active object.
sl@0
    75
sl@0
    76
When change events occur, the callback function is called.
sl@0
    77
sl@0
    78
Note that after the first call to this function, the callback function is 
sl@0
    79
called immediately; this is because of the way the underlying change notifier 
sl@0
    80
is implemented. The changes reported are all those defined by the TChanges 
sl@0
    81
enum.
sl@0
    82
sl@0
    83
@see CActive::Cancel()
sl@0
    84
@see TChanges */
sl@0
    85
	{
sl@0
    86
	SetActive();
sl@0
    87
	iChangeNotifier.Logon(iStatus);
sl@0
    88
	}
sl@0
    89
sl@0
    90
EXPORT_C TInt CEnvironmentChangeNotifier::Set(const TCallBack& aCallBack)
sl@0
    91
/** Sets the callback function.
sl@0
    92
sl@0
    93
A callback is normally set when this active object is constructed through 
sl@0
    94
the NewL() function. This function replaces any existing callback object with 
sl@0
    95
the specified callback object.
sl@0
    96
sl@0
    97
@param aCallBack A reference to the call back object encapsulating the call 
sl@0
    98
back function. 
sl@0
    99
@return KErrNone if successful, KErrInUse if this active object currently has 
sl@0
   100
an outstanding request for change events, or another of the system-wide error-codes. */
sl@0
   101
	{
sl@0
   102
	if (IsActive())
sl@0
   103
		return(KErrInUse);
sl@0
   104
	iCallBack=aCallBack;
sl@0
   105
	return(KErrNone);
sl@0
   106
	}
sl@0
   107
sl@0
   108
void CEnvironmentChangeNotifier::RunL()
sl@0
   109
//
sl@0
   110
//	Active framework: Call the callback function
sl@0
   111
//
sl@0
   112
	{
sl@0
   113
	iChange=iStatus.Int();
sl@0
   114
	Start();
sl@0
   115
	if (iChange!=0)
sl@0
   116
		{
sl@0
   117
		iCallBack.CallBack();
sl@0
   118
		iChange=0;
sl@0
   119
		}
sl@0
   120
	}
sl@0
   121
sl@0
   122
void CEnvironmentChangeNotifier::DoCancel()
sl@0
   123
//
sl@0
   124
//	Active framework: Cancel the current request
sl@0
   125
//	
sl@0
   126
	{
sl@0
   127
	iChangeNotifier.LogonCancel();
sl@0
   128
	}
sl@0
   129