mmappcomponents/harvester/server/inc/mpxmediaremovalmonitor.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Thu, 17 Dec 2009 08:55:47 +0200
changeset 0 a2952bb97e68
child 19 51035f0751c2
permissions -rw-r--r--
Revision: 200949 Kit: 200951

/*
* Copyright (c) 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:  Monitors for media removal events
*
*/


#ifndef CMPXMEDIAREMOVALMONITOR_H
#define CMPXMEDIAREMOVALMONITOR_H

#include <e32base.h>
#include "mpxsystemeventobserver.h"

/**
 *  Class to monitors for File System dismount events
 *  @lib Harvester
 *  @since S60 3.0
 */
class CMPXMediaRemovalMonitor : public CActive
    {

public:

    /**
    * Two-phase constructor
    * @param aDrive drive to monitor
    * @param aFs file server session
    * @param aObserver observer to the event
    */
    static CMPXMediaRemovalMonitor* NewL( TInt aDrive, 
                                          RFs& aFs,
                                          MMPXSystemEventObserver& aObserver );
    /**
    * Two-phase constructor
    * @param aDrive drive to monitor
    * @param aFs file server session
    * @param aObserver observer to the event
    */
    static CMPXMediaRemovalMonitor* NewLC( TInt aDrive, 
                                           RFs& aFs,
                                           MMPXSystemEventObserver& aObserver );

    /**
    * Virtual destructor
    */
    virtual ~CMPXMediaRemovalMonitor();

protected: // From base class 
    
    /*
    * From CActive
    */
    void RunL();
    
    /*
    * From CActive
    */
    void DoCancel();

    /**
    *  From CActive
    */
    TInt RunError(TInt aError);    
        
private:

    /**
    *  C++ constructor
    * @param aDrive drive to monitor
    * @param aFs file server session
    * @param aObserver observer to the event
    */
    CMPXMediaRemovalMonitor( TInt aDrive,
                             RFs& aFs,  
                             MMPXSystemEventObserver& aObserver );

    void ConstructL();

private: // data
    
    TInt iDrive;        // Drive that is being monitored
    RFs& iFs;           // File Session, not owned
    TBool iDiskRemoved; // Is the disk inserted
    
    /*
    * Observer interface to callback to an observer
    */
    MMPXSystemEventObserver& iObserver;
    };

#endif // CMPXMEDIAREMOVALMONITOR_H