diff -r eaaed528d5fd -r 320d509f1a12 usbmgmt/usbmgr/usbman/chargingplugin/src/repositorynotifier.cpp --- a/usbmgmt/usbmgr/usbman/chargingplugin/src/repositorynotifier.cpp Fri Sep 17 08:40:15 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,91 +0,0 @@ -/* -* Copyright (c) 2005-2009 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: -* -*/ - -/** - @file - @internalComponent -*/ - -#include "repositorynotifier.h" -#include - -CUsbChargingRepositoryNotifier::CUsbChargingRepositoryNotifier(MUsbChargingRepositoryObserver& aObserver,const TUid& aRepository, TUint aId) -: CActive(CActive::EPriorityStandard), iObserver(aObserver), iRepositoryUid(aRepository), iId(aId) - { - CActiveScheduler::Add(this); - } - -void CUsbChargingRepositoryNotifier::ConstructL() - { - iRepository = CRepository::NewL(iRepositoryUid); - TInt state = KErrUnknown; - User::LeaveIfError(iRepository->Get(iId, state)); - // Update observers with current value if valid - if(state >= KErrNone) - { - iObserver.HandleRepositoryValueChangedL(iRepositoryUid, iId, state); - } - Notify(); - } - -void CUsbChargingRepositoryNotifier::DoCancel() - { - // If the call returns an error value, there's nothing meaninful we can do - // (void) it to avoid messages from Lint - (void) iRepository->NotifyCancel(iId); - } - -CUsbChargingRepositoryNotifier::~CUsbChargingRepositoryNotifier() - { - Cancel(); - delete iRepository; - } - -void CUsbChargingRepositoryNotifier::Notify() - { - iStatus = KRequestPending; - TInt err = iRepository->NotifyRequest(iId, iStatus); - if(err == KErrNone) - { - SetActive(); - } - } - -void CUsbChargingRepositoryNotifier::RunL() - { - TInt state; - TInt err = iRepository->Get(iId, state); - if(err ==KErrNone) - { - iObserver.HandleRepositoryValueChangedL(iRepositoryUid, iId, state); - } - Notify(); - } - -TInt CUsbChargingRepositoryNotifier::RunError(TInt /*aError*/) - { - return KErrNone; - } - -CUsbChargingRepositoryNotifier* CUsbChargingRepositoryNotifier::NewL(MUsbChargingRepositoryObserver& aObserver,const TUid& aRepository, TUint aId) - { - CUsbChargingRepositoryNotifier* self = new (ELeave) CUsbChargingRepositoryNotifier(aObserver,aRepository,aId); - CleanupStack::PushL(self); - self->ConstructL(); - CleanupStack::Pop(self); - return self; - }