os/persistentdata/traceservices/tracefw/ulogger/src/uloggerserver/uloggerwatcher.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2007-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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 
    17 #include "uloggerwatcher.h"
    18 
    19 namespace Ulogger
    20 {
    21 
    22 /*
    23 	NewL method
    24 */
    25 CULoggerWatcher* CULoggerWatcher::NewL()
    26 	{
    27 	CULoggerWatcher* self = CULoggerWatcher::NewLC();
    28 	CleanupStack::Pop(); //self
    29 	return self;
    30 	}
    31 
    32 /*
    33 	NewLC method
    34 */
    35 CULoggerWatcher* CULoggerWatcher::NewLC()
    36 	{
    37 	CULoggerWatcher* self = new (ELeave) CULoggerWatcher();
    38 	CleanupStack::PushL(self);
    39 	self->ConstructL();
    40 	return self;
    41 	}
    42 	
    43 /*
    44 	default constructor method
    45 */	
    46 CULoggerWatcher::CULoggerWatcher()
    47 : CActive(CActive::EPriorityUserInput)
    48 	{
    49 	}
    50 
    51 /*
    52 	default destructor method
    53 */
    54 
    55 CULoggerWatcher::~CULoggerWatcher()
    56 	{
    57 	Cancel();
    58 	}
    59 
    60 /*
    61 	ConstructL method
    62 */
    63 void CULoggerWatcher::ConstructL()
    64 	{
    65 	CActiveScheduler::Add(this);
    66 	}
    67 
    68 /*
    69 	DoCancel method
    70 */	
    71 
    72 void CULoggerWatcher::DoCancel()
    73 	{		
    74 	}
    75 	
    76 /*
    77 	RunL method
    78 */
    79 	
    80 void CULoggerWatcher::RunL()
    81 	{
    82 	if(iStatus.Int() == KErrNone)
    83 		iObserver->DataNotification();	
    84 	}
    85 	
    86 /*
    87 	StartWatching method
    88 	@aObserver
    89 */
    90 	
    91 void CULoggerWatcher::StartWatching(MDataWatcherObserver* aObserver)
    92 	{
    93 	if(!IsActive())
    94 	{
    95 		iObserver = aObserver;
    96 		SetActive();
    97 		
    98 	}	
    99 	}
   100 	
   101 }//Namespace