diff -r 2e2a89493e2b -r 48dd0f169f0d imagehandlingutilities/thumbnailmanager/thumbagdaemon/inc/thumbagaudioobserver.h --- a/imagehandlingutilities/thumbnailmanager/thumbagdaemon/inc/thumbagaudioobserver.h Fri Sep 03 10:29:37 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,148 +0,0 @@ -/* -* Copyright (c) 2006-2007 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: Thumbnail Auto Generate Daemon - * -*/ - - -#ifndef THUMBAGAUDIOOBSERVER_H -#define THUMBAGAUDIOOBSERVER_H - -#include -#include - -#include - -#include "thumbagprocessor.h" -#include "tmshutdownobserver.h" -#include "thumbnaillog.h" - - -/** - * ThumbAG daemon. - * - * @since S60 v5.0 - */ -NONSHARABLE_CLASS( CThumbAGAudioObserver ): public CBase, - public MMdESessionObserver, - public MMdEObjectObserver, - public MTMShutdownObserver - { -public: - - /** - * Two-phased constructor - * - * @since S60 v5.0 - * @return New CThumbAGAudioObserver server. - */ - static CThumbAGAudioObserver* NewLC(CThumbAGProcessor* aProcessor); - - /** - * Two-phased constructor - * - * @since S60 v5.0 - * @return New CThumbAGAudioObserver server. - */ - static CThumbAGAudioObserver* NewL(CThumbAGProcessor* aProcessor); - - /** - * Destructor - * - * @since S60 v5.0 - */ - virtual ~CThumbAGAudioObserver(); - - -public: - - // from MMdESessionObserver - void HandleSessionOpened( CMdESession& aSession, TInt aError ); - void HandleSessionError( CMdESession& aSession, TInt aError ); - - // from MMdEObjectObserver - void HandleObjectNotification(CMdESession& aSession, - TObserverNotificationType aType, - const RArray& aObjectIdArray); - - // from MTMShutdownObserver - void ShutdownNotification(); - -protected: - - /** - * AddObserversL - * - * @since S60 v5.0 - */ - void AddObserversL(); - - -private: - - /** - * C++ default constructor - * - * @since S60 v5.0 - * @return New CThumbAGAudioObserver instance. - */ - CThumbAGAudioObserver(CThumbAGProcessor* aProcessor); - - /** - * Symbian 2nd phase constructor can leave. - * - * @since S60 v5.0 - */ - void ConstructL(); - - /** - * Initilization helper - * - * @since S60 v5.2 - */ - void InitializeL(); - - /** - * Callback for reconnect timer - * - * @since S60 v5.0 - */ - static TInt ReconnectCallBack(TAny* aAny); - - void Shutdown(); - -private: - - // own - CTMShutdownObserver* iShutdownObserver; - CTMShutdownObserver* iMDSShutdownObserver; - CMdESession* iMdESession; - - //not owned - CThumbAGProcessor* iProcessor; - - TBool iShutdown; - - // reconnect timer - CPeriodic* iReconnect; - - TBool iSessionError; - -#ifdef _DEBUG - TUint32 iAddCounter; - TUint32 iModCounter; -#endif -}; - -#endif // THUMBAGDAEMON_H