imagehandlingutilities/thumbnailmanager/thumbagdaemon/inc/thumbagformatobserver.h
changeset 0 2014ca87e772
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/imagehandlingutilities/thumbnailmanager/thumbagdaemon/inc/thumbagformatobserver.h	Tue Jan 26 15:18:05 2010 +0200
@@ -0,0 +1,94 @@
+/*
+* Copyright (c) 2006 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:  Monitors File system for Format events
+*
+*/
+
+
+#ifndef CTHUMBAGFORMATOBSERVER_H
+#define CTHUMBAGFORMATOBSERVER_H
+
+#include <babackup.h>
+#include "f32file.h"
+#include "thumbagprocessor.h" 
+
+/**
+ *  File System monitor class to monitor for format events
+ *
+ *  @lib thumbnailsserver.exe
+ *  @since S60 3.0
+ */
+NONSHARABLE_CLASS( CThumbAGFormatObserver ) : public CBase,
+                                             public MBackupOperationObserver
+    {
+
+public:
+
+    /**
+    * Two-phase constructor
+    * @param aObserver observer to the monitor
+    */
+    static CThumbAGFormatObserver* NewL( CThumbAGProcessor* aProcessor );
+
+    /**
+    * Two-phase constructor
+    * @param aObserver observer to the monitor
+    */
+    static CThumbAGFormatObserver* NewLC( CThumbAGProcessor* aProcessor );
+
+    /**
+    * Destructor
+    */
+    virtual ~CThumbAGFormatObserver();
+
+public: // New functions
+
+    /**
+    * Polls for the current monitor status
+    * If an event is happening, it will callback the observer of the event
+    */
+    void PollStatus();
+
+protected: // Base Class
+
+    /*
+    * From MBackupOperationObserver
+    * Notifies this class of the backup event.
+    * MMC App will signal a start / end.
+    */
+    void HandleBackupOperationEventL(const TBackupOperationAttributes& aBackupOperationAttributes);
+
+private:
+
+    /**
+    *  C++ constructor
+    *  aObserver observer to this event
+    */
+    CThumbAGFormatObserver ( CThumbAGProcessor* aProcessor );
+
+    /*
+    * Second phased constructor
+    */
+    void ConstructL();
+
+private: // data
+
+    CThumbAGProcessor* iProcessor;    
+    
+    CBaBackupSessionWrapper* iBackupSession;
+
+    
+    };
+
+#endif // CTHUMBAGFORMATOBSERVER_H