sl@0
|
1 |
// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
/**
|
sl@0
|
17 |
@internalTechnology
|
sl@0
|
18 |
*/
|
sl@0
|
19 |
|
sl@0
|
20 |
#ifndef __INSTALL_H__
|
sl@0
|
21 |
#define __INSTALL_H__
|
sl@0
|
22 |
|
sl@0
|
23 |
#include <e32base.h>
|
sl@0
|
24 |
#include <f32file.h>
|
sl@0
|
25 |
#include <e32property.h>
|
sl@0
|
26 |
#include "srvrepos_noc.h"
|
sl@0
|
27 |
#include <sacls.h>
|
sl@0
|
28 |
#include <saclscommon.h>
|
sl@0
|
29 |
|
sl@0
|
30 |
class CInstallEntry : public CBase
|
sl@0
|
31 |
{
|
sl@0
|
32 |
public:
|
sl@0
|
33 |
static CInstallEntry* NewL();
|
sl@0
|
34 |
CInstallEntry();
|
sl@0
|
35 |
~CInstallEntry();
|
sl@0
|
36 |
void ConstructL();
|
sl@0
|
37 |
void SetL(TEntry& aEntry);
|
sl@0
|
38 |
void HandleFileDeleteL(TInt aOperation);
|
sl@0
|
39 |
void HandleFileCreateL(TInt aOperation);
|
sl@0
|
40 |
void HandleFileUpdateL(TInt aOperation);
|
sl@0
|
41 |
|
sl@0
|
42 |
void InternalizeL(RReadStream& aStream);
|
sl@0
|
43 |
void ExternalizeL(RWriteStream& aStream) const;
|
sl@0
|
44 |
|
sl@0
|
45 |
TUid Uid() const;
|
sl@0
|
46 |
TTime Modified() const;
|
sl@0
|
47 |
TCentRepFileType FileExt() const;
|
sl@0
|
48 |
private:
|
sl@0
|
49 |
TUid iUid;
|
sl@0
|
50 |
TTime iModified;
|
sl@0
|
51 |
TCentRepFileType iFileExt;
|
sl@0
|
52 |
CServerRepository* iRepository;
|
sl@0
|
53 |
CSessionNotifier* iNotifier;
|
sl@0
|
54 |
};
|
sl@0
|
55 |
|
sl@0
|
56 |
class CCentRepSWIWatcher: public CActive
|
sl@0
|
57 |
{
|
sl@0
|
58 |
public:
|
sl@0
|
59 |
static CCentRepSWIWatcher* NewL(RFs& aFs);
|
sl@0
|
60 |
void Start();
|
sl@0
|
61 |
~CCentRepSWIWatcher();
|
sl@0
|
62 |
void HandleSWIEventL(TInt swiProperty);
|
sl@0
|
63 |
void FindChangedEntriesL(TBool aStartup=EFalse);
|
sl@0
|
64 |
//From CActive
|
sl@0
|
65 |
protected:
|
sl@0
|
66 |
void RunL();
|
sl@0
|
67 |
TInt RunError(TInt aError);
|
sl@0
|
68 |
void DoCancel();
|
sl@0
|
69 |
private:
|
sl@0
|
70 |
CCentRepSWIWatcher(RFs& aFs);
|
sl@0
|
71 |
void NotifyChange();
|
sl@0
|
72 |
void ConstructL();
|
sl@0
|
73 |
|
sl@0
|
74 |
void ReadInstallDirL(RPointerArray<CInstallEntry>& aEntryArray);
|
sl@0
|
75 |
|
sl@0
|
76 |
void SaveInstallDirL();
|
sl@0
|
77 |
void GetInstallDirL();
|
sl@0
|
78 |
void ReadAndInternalizeInstallDirL(const TDesC& aInstallDirFilePath);
|
sl@0
|
79 |
void HandleFileChangesL(TBool aStartup);
|
sl@0
|
80 |
|
sl@0
|
81 |
static TBool MatchEntries(const CInstallEntry &aSource, const CInstallEntry &aTarget);
|
sl@0
|
82 |
|
sl@0
|
83 |
TDesC& iInstallDir;
|
sl@0
|
84 |
RFs& iFs;
|
sl@0
|
85 |
RPointerArray<CInstallEntry> iInstallEntryArray;
|
sl@0
|
86 |
RPointerArray<CInstallEntry> iCurrentInstallDirEntries;
|
sl@0
|
87 |
RProperty iSWIKey;
|
sl@0
|
88 |
TInt iSWIOperation;
|
sl@0
|
89 |
TInt iSWIStatus;
|
sl@0
|
90 |
};
|
sl@0
|
91 |
#endif
|