os/persistentdata/persistentstorage/centralrepository/cenrepsrv/srvres.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2004-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
#ifndef SRVRES_H
sl@0
    17
#define SRVRES_H
sl@0
    18
sl@0
    19
#include <f32file.h>
sl@0
    20
#include "srvPerf.h"
sl@0
    21
#include "srvdefs.h"
sl@0
    22
sl@0
    23
class CRepositoryCacheManager;
sl@0
    24
class CObservable;
sl@0
    25
sl@0
    26
class TOwnerIdMapping
sl@0
    27
	{
sl@0
    28
public :
sl@0
    29
	inline TOwnerIdMapping();
sl@0
    30
	inline TOwnerIdMapping(TUint32 aRepUid, TUint32 aOwner);
sl@0
    31
	static TInt CompareUids (const TOwnerIdMapping& aOwnerIdMapping1, const TOwnerIdMapping& aOwnerIdMapping2) ;
sl@0
    32
	
sl@0
    33
public:
sl@0
    34
	TUint32 iRepUid;
sl@0
    35
	TUint32 iOwner;	
sl@0
    36
	};
sl@0
    37
sl@0
    38
sl@0
    39
sl@0
    40
using namespace NCentralRepositoryResources;
sl@0
    41
sl@0
    42
class TServerResources
sl@0
    43
	{
sl@0
    44
public:
sl@0
    45
	static void InitialiseL();
sl@0
    46
	static void Close();
sl@0
    47
	static TInt GetUid(TEntry& aEntry, TUid& aUid);
sl@0
    48
	inline static TInt AddOwnerIdLookupMapping(const TUint32 aRepositoryUid, const TUint32 aOwnerUid) ;
sl@0
    49
	inline static TInt FindOwnerIdLookupMapping(TUint32 aRepositoryId) ;
sl@0
    50
	static void CreateRepositoryFileNameLC(HBufC*& aFullFileName,
sl@0
    51
										   TUid aUid,   
sl@0
    52
										   TCentRepLocation aLocation,
sl@0
    53
                                           TCentRepFileType aFileType);
sl@0
    54
	static void CreateRepositoryFileNameL(HBufC*& aFullFileName,
sl@0
    55
										   TUid aUid,   
sl@0
    56
										   TCentRepLocation aLocation,
sl@0
    57
                                           TCentRepFileType aFileType);                                           
sl@0
    58
sl@0
    59
	static TBool CentrepFileExistsL(TUid aUid, TCentRepLocation aLocation, TCentRepFileType aType);
sl@0
    60
	static TBool CentrepFileExistsL(TUid aUid, TCentRepLocation aLocation);
sl@0
    61
	static TTime CentrepFileTimeStampL(TUid aUid, TCentRepLocation aLocation);
sl@0
    62
	static TBool RomFileExistsL(TUid aUid);
sl@0
    63
	static TBool InstallFileExistsL(TUid aUid);
sl@0
    64
	static TBool PersistsFileExistsL(TUid aUid);
sl@0
    65
#ifdef SYMBIAN_BAFL_SYSUTIL
sl@0
    66
	static TInt GetTextFromFile(const TDesC& aFilename,TDes8& aValue);
sl@0
    67
#endif
sl@0
    68
	static void  DeleteCentrepFileL(TUid aUid, TCentRepLocation aLocation, TCentRepFileType aType);
sl@0
    69
public:
sl@0
    70
	static RFs iFs;
sl@0
    71
	
sl@0
    72
	static HBufC* iRomDirectory;
sl@0
    73
	static HBufC* iDataDirectory;
sl@0
    74
	static HBufC* iInstallDirectory;
sl@0
    75
	static HBufC* iBURDirectory;
sl@0
    76
	static HBufC* iIniExt;
sl@0
    77
	static HBufC* iCreExt;
sl@0
    78
	static HBufC* iTrnsExt;
sl@0
    79
	static TUint8 iPersistsVersion;
sl@0
    80
sl@0
    81
	static RArray<TOwnerIdMapping> iOwnerIdLookUpTable;
sl@0
    82
sl@0
    83
	static CRepositoryCacheManager* iCacheManager;
sl@0
    84
	static CObservable* iObserver;
sl@0
    85
#ifdef __CENTREP_SERVER_PERFTEST__
sl@0
    86
	static TCentRepPerfTest iPerfTestMgr;
sl@0
    87
#endif
sl@0
    88
#ifdef __CENTREP_SERVER_MEMTEST__
sl@0
    89
	static void RecordTimerResult(TMemTestLocationIdentifier aLocation, TInt32 aIdentifier);
sl@0
    90
	static void StopRecordTimerResult();	
sl@0
    91
	static void StartRecordTimerResult();		
sl@0
    92
	
sl@0
    93
	static TInt32 iMemTestData[KMemBufMaxEntry];
sl@0
    94
	static TInt32 iMemTestDataCount;
sl@0
    95
#endif
sl@0
    96
	};
sl@0
    97
sl@0
    98
sl@0
    99
#include "srvres.inl"
sl@0
   100
sl@0
   101
#endif // SRVRES_H