Update contrib.
1 // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
25 #include <e32property.h>
26 #include "srvrepos_noc.h"
28 #include <saclscommon.h>
30 class CInstallEntry : public CBase
33 static CInstallEntry* NewL();
37 void SetL(TEntry& aEntry);
38 void HandleFileDeleteL(TInt aOperation);
39 void HandleFileCreateL(TInt aOperation);
40 void HandleFileUpdateL(TInt aOperation);
42 void InternalizeL(RReadStream& aStream);
43 void ExternalizeL(RWriteStream& aStream) const;
46 TTime Modified() const;
47 TCentRepFileType FileExt() const;
51 TCentRepFileType iFileExt;
52 CServerRepository* iRepository;
53 CSessionNotifier* iNotifier;
56 class CCentRepSWIWatcher: public CActive
59 static CCentRepSWIWatcher* NewL(RFs& aFs);
61 ~CCentRepSWIWatcher();
62 void HandleSWIEventL(TInt swiProperty);
63 void FindChangedEntriesL(TBool aStartup=EFalse);
67 TInt RunError(TInt aError);
70 CCentRepSWIWatcher(RFs& aFs);
74 void ReadInstallDirL(RPointerArray<CInstallEntry>& aEntryArray);
76 void SaveInstallDirL();
77 void GetInstallDirL();
78 void ReadAndInternalizeInstallDirL(const TDesC& aInstallDirFilePath);
79 void HandleFileChangesL(TBool aStartup);
81 static TBool MatchEntries(const CInstallEntry &aSource, const CInstallEntry &aTarget);
85 RPointerArray<CInstallEntry> iInstallEntryArray;
86 RPointerArray<CInstallEntry> iCurrentInstallDirEntries;