1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/persistentdata/persistentstorage/centralrepository/cenrepsrv/srvres.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,101 @@
1.4 +// Copyright (c) 2004-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 +#ifndef SRVRES_H
1.20 +#define SRVRES_H
1.21 +
1.22 +#include <f32file.h>
1.23 +#include "srvPerf.h"
1.24 +#include "srvdefs.h"
1.25 +
1.26 +class CRepositoryCacheManager;
1.27 +class CObservable;
1.28 +
1.29 +class TOwnerIdMapping
1.30 + {
1.31 +public :
1.32 + inline TOwnerIdMapping();
1.33 + inline TOwnerIdMapping(TUint32 aRepUid, TUint32 aOwner);
1.34 + static TInt CompareUids (const TOwnerIdMapping& aOwnerIdMapping1, const TOwnerIdMapping& aOwnerIdMapping2) ;
1.35 +
1.36 +public:
1.37 + TUint32 iRepUid;
1.38 + TUint32 iOwner;
1.39 + };
1.40 +
1.41 +
1.42 +
1.43 +using namespace NCentralRepositoryResources;
1.44 +
1.45 +class TServerResources
1.46 + {
1.47 +public:
1.48 + static void InitialiseL();
1.49 + static void Close();
1.50 + static TInt GetUid(TEntry& aEntry, TUid& aUid);
1.51 + inline static TInt AddOwnerIdLookupMapping(const TUint32 aRepositoryUid, const TUint32 aOwnerUid) ;
1.52 + inline static TInt FindOwnerIdLookupMapping(TUint32 aRepositoryId) ;
1.53 + static void CreateRepositoryFileNameLC(HBufC*& aFullFileName,
1.54 + TUid aUid,
1.55 + TCentRepLocation aLocation,
1.56 + TCentRepFileType aFileType);
1.57 + static void CreateRepositoryFileNameL(HBufC*& aFullFileName,
1.58 + TUid aUid,
1.59 + TCentRepLocation aLocation,
1.60 + TCentRepFileType aFileType);
1.61 +
1.62 + static TBool CentrepFileExistsL(TUid aUid, TCentRepLocation aLocation, TCentRepFileType aType);
1.63 + static TBool CentrepFileExistsL(TUid aUid, TCentRepLocation aLocation);
1.64 + static TTime CentrepFileTimeStampL(TUid aUid, TCentRepLocation aLocation);
1.65 + static TBool RomFileExistsL(TUid aUid);
1.66 + static TBool InstallFileExistsL(TUid aUid);
1.67 + static TBool PersistsFileExistsL(TUid aUid);
1.68 +#ifdef SYMBIAN_BAFL_SYSUTIL
1.69 + static TInt GetTextFromFile(const TDesC& aFilename,TDes8& aValue);
1.70 +#endif
1.71 + static void DeleteCentrepFileL(TUid aUid, TCentRepLocation aLocation, TCentRepFileType aType);
1.72 +public:
1.73 + static RFs iFs;
1.74 +
1.75 + static HBufC* iRomDirectory;
1.76 + static HBufC* iDataDirectory;
1.77 + static HBufC* iInstallDirectory;
1.78 + static HBufC* iBURDirectory;
1.79 + static HBufC* iIniExt;
1.80 + static HBufC* iCreExt;
1.81 + static HBufC* iTrnsExt;
1.82 + static TUint8 iPersistsVersion;
1.83 +
1.84 + static RArray<TOwnerIdMapping> iOwnerIdLookUpTable;
1.85 +
1.86 + static CRepositoryCacheManager* iCacheManager;
1.87 + static CObservable* iObserver;
1.88 +#ifdef __CENTREP_SERVER_PERFTEST__
1.89 + static TCentRepPerfTest iPerfTestMgr;
1.90 +#endif
1.91 +#ifdef __CENTREP_SERVER_MEMTEST__
1.92 + static void RecordTimerResult(TMemTestLocationIdentifier aLocation, TInt32 aIdentifier);
1.93 + static void StopRecordTimerResult();
1.94 + static void StartRecordTimerResult();
1.95 +
1.96 + static TInt32 iMemTestData[KMemBufMaxEntry];
1.97 + static TInt32 iMemTestDataCount;
1.98 +#endif
1.99 + };
1.100 +
1.101 +
1.102 +#include "srvres.inl"
1.103 +
1.104 +#endif // SRVRES_H