sl@0: // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: /** sl@0: @internalTechnology sl@0: */ sl@0: sl@0: #ifndef __INSTALL_H__ sl@0: #define __INSTALL_H__ sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: #include "srvrepos_noc.h" sl@0: #include sl@0: #include sl@0: sl@0: class CInstallEntry : public CBase sl@0: { sl@0: public: sl@0: static CInstallEntry* NewL(); sl@0: CInstallEntry(); sl@0: ~CInstallEntry(); sl@0: void ConstructL(); sl@0: void SetL(TEntry& aEntry); sl@0: void HandleFileDeleteL(TInt aOperation); sl@0: void HandleFileCreateL(TInt aOperation); sl@0: void HandleFileUpdateL(TInt aOperation); sl@0: sl@0: void InternalizeL(RReadStream& aStream); sl@0: void ExternalizeL(RWriteStream& aStream) const; sl@0: sl@0: TUid Uid() const; sl@0: TTime Modified() const; sl@0: TCentRepFileType FileExt() const; sl@0: private: sl@0: TUid iUid; sl@0: TTime iModified; sl@0: TCentRepFileType iFileExt; sl@0: CServerRepository* iRepository; sl@0: CSessionNotifier* iNotifier; sl@0: }; sl@0: sl@0: class CCentRepSWIWatcher: public CActive sl@0: { sl@0: public: sl@0: static CCentRepSWIWatcher* NewL(RFs& aFs); sl@0: void Start(); sl@0: ~CCentRepSWIWatcher(); sl@0: void HandleSWIEventL(TInt swiProperty); sl@0: void FindChangedEntriesL(TBool aStartup=EFalse); sl@0: //From CActive sl@0: protected: sl@0: void RunL(); sl@0: TInt RunError(TInt aError); sl@0: void DoCancel(); sl@0: private: sl@0: CCentRepSWIWatcher(RFs& aFs); sl@0: void NotifyChange(); sl@0: void ConstructL(); sl@0: sl@0: void ReadInstallDirL(RPointerArray& aEntryArray); sl@0: sl@0: void SaveInstallDirL(); sl@0: void GetInstallDirL(); sl@0: void ReadAndInternalizeInstallDirL(const TDesC& aInstallDirFilePath); sl@0: void HandleFileChangesL(TBool aStartup); sl@0: sl@0: static TBool MatchEntries(const CInstallEntry &aSource, const CInstallEntry &aTarget); sl@0: sl@0: TDesC& iInstallDir; sl@0: RFs& iFs; sl@0: RPointerArray iInstallEntryArray; sl@0: RPointerArray iCurrentInstallDirEntries; sl@0: RProperty iSWIKey; sl@0: TInt iSWIOperation; sl@0: TInt iSWIStatus; sl@0: }; sl@0: #endif