os/persistentdata/persistentstorage/centralrepository/cenrepsrv/install.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/persistentdata/persistentstorage/centralrepository/cenrepsrv/install.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,91 @@
     1.4 +// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +//
    1.18 +
    1.19 +/**
    1.20 + @internalTechnology
    1.21 +*/
    1.22 +
    1.23 +#ifndef __INSTALL_H__
    1.24 +#define __INSTALL_H__
    1.25 +
    1.26 +#include <e32base.h>
    1.27 +#include <f32file.h>
    1.28 +#include <e32property.h>
    1.29 +#include "srvrepos_noc.h"
    1.30 +#include <sacls.h>
    1.31 +#include <saclscommon.h>
    1.32 +
    1.33 +class CInstallEntry : public CBase
    1.34 +	{
    1.35 +public:
    1.36 +	static CInstallEntry* NewL();
    1.37 +	CInstallEntry();
    1.38 +	~CInstallEntry();
    1.39 +	void ConstructL();
    1.40 +	void SetL(TEntry& aEntry);
    1.41 +	void HandleFileDeleteL(TInt aOperation);
    1.42 +	void HandleFileCreateL(TInt aOperation);
    1.43 +	void HandleFileUpdateL(TInt aOperation);
    1.44 +
    1.45 +	void InternalizeL(RReadStream& aStream);
    1.46 +	void ExternalizeL(RWriteStream& aStream) const;
    1.47 +
    1.48 +	TUid Uid() const;
    1.49 +	TTime Modified() const;
    1.50 +	TCentRepFileType FileExt() const;
    1.51 +private:
    1.52 +	TUid   iUid;
    1.53 +	TTime  iModified;
    1.54 +	TCentRepFileType iFileExt;
    1.55 +	CServerRepository* iRepository;
    1.56 +	CSessionNotifier* iNotifier;
    1.57 +	};
    1.58 +	
    1.59 +class CCentRepSWIWatcher: public CActive
    1.60 +	{
    1.61 +public:
    1.62 +	static CCentRepSWIWatcher* NewL(RFs& aFs);
    1.63 +	void Start();
    1.64 +	~CCentRepSWIWatcher();
    1.65 +	void HandleSWIEventL(TInt swiProperty);
    1.66 +    void FindChangedEntriesL(TBool aStartup=EFalse);
    1.67 +	//From CActive
    1.68 +protected:	
    1.69 +	void RunL();
    1.70 +	TInt RunError(TInt aError);
    1.71 +	void DoCancel();
    1.72 +private:
    1.73 +	CCentRepSWIWatcher(RFs& aFs);
    1.74 +	void NotifyChange();
    1.75 +	void ConstructL();
    1.76 +	
    1.77 +	void ReadInstallDirL(RPointerArray<CInstallEntry>& aEntryArray);
    1.78 +	
    1.79 +	void SaveInstallDirL();
    1.80 +	void GetInstallDirL();
    1.81 +	void ReadAndInternalizeInstallDirL(const TDesC& aInstallDirFilePath);
    1.82 +	void HandleFileChangesL(TBool aStartup);
    1.83 +	
    1.84 +	static TBool MatchEntries(const CInstallEntry &aSource, const CInstallEntry &aTarget);
    1.85 +
    1.86 +	TDesC& iInstallDir;
    1.87 +	RFs& iFs;
    1.88 +	RPointerArray<CInstallEntry> iInstallEntryArray;
    1.89 +	RPointerArray<CInstallEntry> iCurrentInstallDirEntries;
    1.90 +	RProperty iSWIKey;
    1.91 +	TInt iSWIOperation;
    1.92 +	TInt iSWIStatus;
    1.93 +	};
    1.94 +#endif