diff -r b7904b40483f -r ff572005ac23 contentpublishingsrv/contentharvester/contentharvesterswiplugin/inc/chswiplugin.h --- a/contentpublishingsrv/contentharvester/contentharvesterswiplugin/inc/chswiplugin.h Mon Jan 18 20:32:13 2010 +0200 +++ b/contentpublishingsrv/contentharvester/contentharvesterswiplugin/inc/chswiplugin.h Tue Jan 26 12:11:15 2010 +0200 @@ -21,16 +21,21 @@ #include #include +#include "chswimassmodeobserver.h" + class MLiwInterface; class CLiwGenericParamList; +class CCHSwiUsbHandler; +class CCHSwiUsbObserver; + /** * Active Data plugin for SIS installation events. * * @since S60 S60 v3.1 */ class CCHSwiPlugin: public CContentHarvesterPlugin, - MApaAppListServObserver + MApaAppListServObserver, MCHSwiMassModeObserver { public: @@ -53,6 +58,13 @@ void UpdateL(); private: + + // from MCHSwiMassModeObserver + void SetMassStorageMode( TBool aMode ); + TBool IsMassStorageMode(); + void HandleMassStorageModeEndEvent(); + void HandleSuccessfulAsynchDriveScan(); + // from MApaAppListServObserver void HandleAppListEvent( TInt aEvent ); @@ -67,16 +79,23 @@ */ CCHSwiPlugin( MLiwInterface* aInterface ); - - /** - * This function removes publishers from database when - * an applicaion is uninstalled or when the MMC is removed. + /** + * Removes publishers from database when an applicaion + * is uninstalled or when the MMC is removed. */ void UpdateWidgetsL(); - + /** + * Removes widgets. + * @param aWidgets Widgets list. + */ void RemoveWidgetsL( CLiwGenericParamList* aWidgets ); + /** + * Removes single widget. + * @param aType Widget type. + * @param aContentId Widget UID. + */ void RemoveWidgetL( const TDesC& aType, const TDesC& aContentId ); @@ -87,17 +106,42 @@ * An interface to Content Publisher Service */ MLiwInterface* iCPSInterface; - - + /** * AppArc session. * Own. */ RApaLsSession iApaLsSession; - CApaAppListNotifier* iNotifier; ///< Change notifier. Own. + /** + * File session. + */ + RFs iFs; + + /** + * Change notifier. + * Own. + */ + CApaAppListNotifier* iNotifier; + + /** + * Mass storage mode handler. + * Own. + */ + CCHSwiUsbHandler* iUsbHandler; + + /** + * Disk observer for monitoring status of mass drive. + * Own. + */ + CCHSwiUsbObserver* iUsbObserver; + + /** + * Mass storage mode flag. + */ + TBool iMassStorageMode; + }; - }; + #endif // C_CCHSWIPLUGIN_H -