sl@0: // Copyright (c) 2004-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: #ifndef SRVRES_H sl@0: #define SRVRES_H sl@0: sl@0: #include sl@0: #include "srvPerf.h" sl@0: #include "srvdefs.h" sl@0: sl@0: class CRepositoryCacheManager; sl@0: class CObservable; sl@0: sl@0: class TOwnerIdMapping sl@0: { sl@0: public : sl@0: inline TOwnerIdMapping(); sl@0: inline TOwnerIdMapping(TUint32 aRepUid, TUint32 aOwner); sl@0: static TInt CompareUids (const TOwnerIdMapping& aOwnerIdMapping1, const TOwnerIdMapping& aOwnerIdMapping2) ; sl@0: sl@0: public: sl@0: TUint32 iRepUid; sl@0: TUint32 iOwner; sl@0: }; sl@0: sl@0: sl@0: sl@0: using namespace NCentralRepositoryResources; sl@0: sl@0: class TServerResources sl@0: { sl@0: public: sl@0: static void InitialiseL(); sl@0: static void Close(); sl@0: static TInt GetUid(TEntry& aEntry, TUid& aUid); sl@0: inline static TInt AddOwnerIdLookupMapping(const TUint32 aRepositoryUid, const TUint32 aOwnerUid) ; sl@0: inline static TInt FindOwnerIdLookupMapping(TUint32 aRepositoryId) ; sl@0: static void CreateRepositoryFileNameLC(HBufC*& aFullFileName, sl@0: TUid aUid, sl@0: TCentRepLocation aLocation, sl@0: TCentRepFileType aFileType); sl@0: static void CreateRepositoryFileNameL(HBufC*& aFullFileName, sl@0: TUid aUid, sl@0: TCentRepLocation aLocation, sl@0: TCentRepFileType aFileType); sl@0: sl@0: static TBool CentrepFileExistsL(TUid aUid, TCentRepLocation aLocation, TCentRepFileType aType); sl@0: static TBool CentrepFileExistsL(TUid aUid, TCentRepLocation aLocation); sl@0: static TTime CentrepFileTimeStampL(TUid aUid, TCentRepLocation aLocation); sl@0: static TBool RomFileExistsL(TUid aUid); sl@0: static TBool InstallFileExistsL(TUid aUid); sl@0: static TBool PersistsFileExistsL(TUid aUid); sl@0: #ifdef SYMBIAN_BAFL_SYSUTIL sl@0: static TInt GetTextFromFile(const TDesC& aFilename,TDes8& aValue); sl@0: #endif sl@0: static void DeleteCentrepFileL(TUid aUid, TCentRepLocation aLocation, TCentRepFileType aType); sl@0: public: sl@0: static RFs iFs; sl@0: sl@0: static HBufC* iRomDirectory; sl@0: static HBufC* iDataDirectory; sl@0: static HBufC* iInstallDirectory; sl@0: static HBufC* iBURDirectory; sl@0: static HBufC* iIniExt; sl@0: static HBufC* iCreExt; sl@0: static HBufC* iTrnsExt; sl@0: static TUint8 iPersistsVersion; sl@0: sl@0: static RArray iOwnerIdLookUpTable; sl@0: sl@0: static CRepositoryCacheManager* iCacheManager; sl@0: static CObservable* iObserver; sl@0: #ifdef __CENTREP_SERVER_PERFTEST__ sl@0: static TCentRepPerfTest iPerfTestMgr; sl@0: #endif sl@0: #ifdef __CENTREP_SERVER_MEMTEST__ sl@0: static void RecordTimerResult(TMemTestLocationIdentifier aLocation, TInt32 aIdentifier); sl@0: static void StopRecordTimerResult(); sl@0: static void StartRecordTimerResult(); sl@0: sl@0: static TInt32 iMemTestData[KMemBufMaxEntry]; sl@0: static TInt32 iMemTestDataCount; sl@0: #endif sl@0: }; sl@0: sl@0: sl@0: #include "srvres.inl" sl@0: sl@0: #endif // SRVRES_H