javacommons/fileutils/inc.s60/drivechangedeventgenerator.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Tue, 31 Aug 2010 15:09:22 +0300
branchRCL_3
changeset 65 ae942d28ec0e
parent 19 04becd199f91
permissions -rw-r--r--
Revision: v2.2.11 Kit: 201035

/*
* Copyright (c) 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:  DriveChangedEventGenerator - S60 specific
*
*/

#ifndef DRIVECHANGEDEVENTGENERATOR_H
#define DRIVECHANGEDEVENTGENERATOR_H

#include <list>

#include <e32def.h>
#include <e32base.h>
#include <e32cmn.h>
#include <f32file.h>

#include "javaosheaders.h"

#include "driveutilities.h"

class RFs;

namespace java
{
namespace fileutils
{

OS_NONSHARABLE_CLASS(DriveChangedEventGenerator) : public DriveListenerInterface
{
public:
    DriveChangedEventGenerator(DriveListenerInterface* aEventDispatcher);
    virtual ~DriveChangedEventGenerator();

    virtual void startEvents();
    virtual void stopEvents();

    // DriveListenerInterface
    virtual void driveChanged(const int& aOperation, const driveInfo& aDriveInfo);

private:

    OS_NONSHARABLE_CLASS(DriveChangedActive) : public CActive
    {
public:
        DriveChangedActive(driveInfo aDriveInfo,
        DriveListenerInterface* aEventDispatcher,
        RFs* aFsSession);
        virtual ~DriveChangedActive();

private:
        virtual void RunL();
        virtual void DoCancel();

        TInt                    iDrive;
        driveInfo               iDriveInfo;
        TPath                   iNotificationPath;

        DriveListenerInterface* iEventDispatcher;
        RFs*                    iFs;
    };

    RFs                             iFs;
    DriveListenerInterface*         iEventDispatcher;
    std::list<DriveChangedActive*>  iDriveObjects;
};

} // namespace fileutils
} // namespace java

#endif // DRIVECHANGEDEVENTGENERATOR_H