imagehandlingutilities/thumbnailmanager/thumbagdaemon/inc/thumbagdaemon.h
changeset 54 48dd0f169f0d
parent 42 2e2a89493e2b
--- a/imagehandlingutilities/thumbnailmanager/thumbagdaemon/inc/thumbagdaemon.h	Fri Sep 03 10:29:37 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,194 +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 THUMBAGDAEMON_H
-#define THUMBAGDAEMON_H
-
-#include <e32base.h>
-#include <w32std.h>
-
-#include <mdesession.h>
-
-#include "thumbagprocessor.h"
-#include "tmshutdownobserver.h"
-#include "thumbnaillog.h"
-#include "thumbagimageobserver.h"
-#include "thumbagcameraobserver.h"
-#include "thumbagaudioobserver.h"
-#include "thumbagvideoobserver.h"
-
-
-/**
- *  ThumbAG daemon.
- *
- *  @since S60 v5.0
- */
-NONSHARABLE_CLASS( CThumbAGDaemon ): public CServer2, 
-                                     public MMdESessionObserver,
-                                     public MMdEObjectObserver,
-                                     public MTMShutdownObserver,
-                                     public MMdEObjectPresentObserver
-#ifdef MDS_URI_OBSERVER
-                                     ,public MMdEObjectObserverWithUri
-#endif
-                                     
-    {
-public:
-
-    /**
-     * Two-phased constructor
-     *
-     * @since S60 v5.0
-     * @return New CThumbAGDaemon server.
-     */
-    static CThumbAGDaemon* NewLC();
-
-    /**
-     * Two-phased constructor
-     *
-     * @since S60 v5.0
-     * @return New CThumbAGDaemon server.
-     */
-    static CThumbAGDaemon* NewL();
-    
-    /**
-     * Destructor
-     *
-     * @since S60 v5.0
-     */
-    virtual ~CThumbAGDaemon();
-
-public:
-
-    /**
-     * Creates new server session.
-     *
-     * @since S60 v5.0
-     * @param aVersion Version info.
-     * @param aMessage Message to be passed.
-     * @return New session.
-     */
-    CSession2* NewSessionL( const TVersion& aVersion,
-                            const RMessage2& aMessage ) const;    
-    
-    /**
-     * ThreadFunctionL
-     *
-     * @since S60 v5.0
-     */
-    static void ThreadFunctionL();    
-
-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<TItemId>& aObjectIdArray);
-    
-#ifdef MDS_URI_OBSERVER
-    void HandleUriObjectNotification(CMdESession& aSession, 
-                            TObserverNotificationType aType,
-                            const RArray<TItemId>& aObjectIdArray,
-                            const RPointerArray<HBufC>& aObjectUriArray);
-#endif
-    
-    void HandleObjectPresentNotification(CMdESession& aSession, 
-                TBool aPresent, const RArray<TItemId>& aObjectIdArray);
-    
-    // from MTMShutdownObserver
-    void ShutdownNotification();
-    
-protected:
-    
-    /**
-     * AddObserversL
-     *
-     * @since S60 v5.0
-     */
-    void AddObserversL();    
-    
-    /**
-     * Check if daemon needs to run
-     *
-     * @since S60 v5.0
-     */
-    TBool DaemonEnabledL();
-    
-private:
-
-    /**
-     * C++ default constructor
-     *
-     * @since S60 v5.0
-     * @return New CThumbAGDaemon instance.
-     */
-    CThumbAGDaemon();
-
-    /**
-     * 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);
-
-private:
-	
-    // own
-    CTMShutdownObserver* iShutdownObserver;
-    CTMShutdownObserver* iMDSShutdownObserver;
-    CMdESession* iMdESession;
-    CThumbAGProcessor* iProcessor;
-    
-    TBool iShutdown;
- 
-    // reconnect timer
-    CPeriodic* iReconnect;
-    
-    TBool iSessionError;
-    
-#ifdef _DEBUG
-    TUint32 iAddCounter;
-    TUint32 iDelCounter;
-#endif
-    
-    //observers
-    CThumbAGImageObserver* iImageObserver;
-    CThumbAGCameraObserver* iCameraObserver;
-    CThumbAGAudioObserver* iAudioObserver;
-    CThumbAGVideoObserver* iVideoObserver;
-};
-
-#endif // THUMBAGDAEMON_H