locationtriggering/ltclientlib/src/lbttriggerchangeeventnotifier.cpp
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Tue, 02 Feb 2010 01:06:48 +0200
changeset 0 667063e416a2
permissions -rw-r--r--
Revision: 201003 Kit: 201005

/*
* Copyright (c) 2005 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description:  location triggering server client interface
*
*/


// INCLUDE FILES
#include <e32base.h>
#include <lbttriggerchangeeventnotifier.h>
#include "lbterrors.h"




// ================= LOCAL FUNCTIONS ========================
 
// ================= MEMBER FUNCTIONS =======================

// ---------------------------------------------------------
// CLbtTriggerChangeEventNotifier::CLbtTriggerChangeEventNotifier
//
// Default constructor
// ---------------------------------------------------------
//
CLbtTriggerChangeEventNotifier::CLbtTriggerChangeEventNotifier(RLbt& aLbt,
                                MLbtTriggerChangeEventObserver& aObserver,
                                TInt aPriority ):CActive(aPriority),
                                iLbt(aLbt),iObserver(aObserver)
    {
    CActiveScheduler::Add(this);
    }


// ---------------------------------------------------------------------------
// CLbtTriggerChangeEventNotifier::ConstructL()
// Symbian 2nd phase constructor can leave.
// ---------------------------------------------------------------------------
//
void CLbtTriggerChangeEventNotifier::ConstructL()
    {
    
    }

// ---------------------------------------------------------------------------
// CLbtTriggerChangeEventNotifier::NewL()
//
// (other items were commented in a header).
// ---------------------------------------------------------------------------
//
EXPORT_C CLbtTriggerChangeEventNotifier* CLbtTriggerChangeEventNotifier::NewL(RLbt& aLbt,
                                MLbtTriggerChangeEventObserver& aObserver,
                                TInt aPriority)
    {
    __ASSERT_ALWAYS(aLbt.SubSessionHandle(), User::Panic(KLbtClientPanicCategory, ELbtServerBadHandle));
    CLbtTriggerChangeEventNotifier* self = new (ELeave) CLbtTriggerChangeEventNotifier(aLbt,aObserver,aPriority);
    CleanupStack::PushL(self);
    self->ConstructL();
    CleanupStack::Pop(self);
    return self;
    }


// ---------------------------------------------------------------------------
// CLbtTriggerChangeEventNotifier::~CLbtTriggerChangeEventNotifier()
// Destructor
// ---------------------------------------------------------------------------
//
EXPORT_C CLbtTriggerChangeEventNotifier::~CLbtTriggerChangeEventNotifier()
    {
    if (IsActive())      
      	Cancel();
    }


// ---------------------------------------------------------
// CLbtTriggerChangeEventNotifier::Start
//
// (other items were commented in a header).
// ---------------------------------------------------------
//
EXPORT_C void CLbtTriggerChangeEventNotifier::Start()
    {
    iStatus = KRequestPending;
	iLbt.NotifyTriggerChangeEvent(iChangeEvent,iStatus);
	SetActive();
    }
    

// ---------------------------------------------------------
// CLbtTriggerChangeEventNotifier::RunL
//
// (other items were commented in a header).
// ---------------------------------------------------------
//
void CLbtTriggerChangeEventNotifier::RunL()
    {
    TInt error = iStatus.Int();
    if( error != KErrCancel )
        {
        Start();
        }
    if( error == KErrNone )
        {
        iObserver.TriggerChangedL(iChangeEvent);
        }    
    }

// ---------------------------------------------------------
// CLbtTriggerChangeEventNotifier::RunError
//
// (other items were commented in a header).
// ---------------------------------------------------------
//
TInt CLbtTriggerChangeEventNotifier::RunError(TInt /*aError*/)
    {
    return KErrNone;
    }

// ---------------------------------------------------------
// CLbtTriggerChangeEventNotifier::DoCancel
//
// (other items were commented in a header).
// ---------------------------------------------------------
//
void CLbtTriggerChangeEventNotifier::DoCancel()
    {
    iLbt.CancelNotifyTriggerChangeEvent();
    }

//  End of File