Update contrib.
1 // Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
18 #include "obsrvr_noc.h"
19 #include <bautils.h> // BaflUtils::GetSystemDrive
20 #ifdef SYMBIAN_BAFL_SYSUTIL
21 #include <bafl/sysutil.h>
23 RFs TServerResources::iFs;
25 HBufC* TServerResources::iRomDirectory;
26 HBufC* TServerResources::iDataDirectory;
27 HBufC* TServerResources::iInstallDirectory;
28 HBufC* TServerResources::iBURDirectory;
31 HBufC* TServerResources::iIniExt;
32 HBufC* TServerResources::iCreExt;
33 HBufC* TServerResources::iTrnsExt;
35 TUint8 TServerResources::iPersistsVersion;
37 RArray<TOwnerIdMapping> TServerResources::iOwnerIdLookUpTable;
39 CRepositoryCacheManager* TServerResources::iCacheManager;
40 CObservable* TServerResources::iObserver;
43 #ifdef __CENTREP_SERVER_PERFTEST__
44 TCentRepPerfTest TServerResources::iPerfTestMgr;
46 #ifdef __CENTREP_SERVER_MEMTEST__
47 TInt32 TServerResources::iMemTestData[KMemBufMaxEntry];
48 TInt32 TServerResources::iMemTestDataCount = 0;
49 #endif //__CENTREP_SERVER_MEMTEST__
51 TTime TServerResources::CentrepFileTimeStampL(TUid aUid, TCentRepLocation aLocation)
54 HBufC* fileName(NULL);
55 TServerResources::CreateRepositoryFileNameLC(fileName,aUid,aLocation,ECre);
56 TInt err=TServerResources::iFs.Entry(fileName->Des(), entry);
57 CleanupStack::PopAndDestroy(fileName);
61 return entry.iModified;
64 TServerResources::CreateRepositoryFileNameLC(fileName,aUid,aLocation,EIni);
65 User::LeaveIfError(TServerResources::iFs.Entry(fileName->Des(), entry));
66 CleanupStack::PopAndDestroy(fileName);
68 return entry.iModified;
71 TBool TServerResources::CentrepFileExistsL(TUid aUid, TCentRepLocation aLocation, TCentRepFileType aType)
73 HBufC* fileName(NULL);
74 TServerResources::CreateRepositoryFileNameLC(fileName,aUid,aLocation,aType);
76 TInt err=TServerResources::iFs.Entry(fileName->Des(), entry);
77 CleanupStack::PopAndDestroy(fileName);
85 else if(err==KErrNotFound)
89 // Looking for a file on a composite file system may return KErrPathNotFound when
90 // the ROM file doesn't exist, so check for this return code as well.
91 else if((aLocation==ERom) && (err== KErrPathNotFound))
99 #ifdef SYMBIAN_CENTREP_SUPPORT_MULTIROFS
100 //only for ROM we still have to consider for multiple ROFS presence
101 if (aLocation==ERom && r==EFalse)
103 //if not still have to check for multi rofs, it might be the case that first file is already mangled
104 TMultiRofsList find(aUid);
105 TLinearOrder<TMultiRofsList> sort_order(CObservable::CompareUid);
107 TInt index=iObserver->GetMultiRofsList().FindInOrder(find,sort_order);
108 if (index!=KErrNotFound)
115 TBool TServerResources::CentrepFileExistsL(TUid aUid, TCentRepLocation aLocation)
117 return( CentrepFileExistsL( aUid, aLocation, EIni) || CentrepFileExistsL( aUid, aLocation, ECre));
120 TBool TServerResources::InstallFileExistsL(TUid aUid)
122 return CentrepFileExistsL(aUid, EInstall);
125 TBool TServerResources::RomFileExistsL(TUid aUid)
127 return CentrepFileExistsL(aUid, ERom);
130 TBool TServerResources::PersistsFileExistsL(TUid aUid)
132 return CentrepFileExistsL(aUid, EPersists);
135 #ifdef SYMBIAN_BAFL_SYSUTIL
136 TInt TServerResources::GetTextFromFile( const TDesC& aFilename, TDes8& aValue)
141 err = file.Open( iFs, aFilename,
142 EFileRead | EFileStreamText | EFileShareReadersOnly );
148 err = file.Read(aValue);
155 void TServerResources::DeleteCentrepFileL(TUid aUid, TCentRepLocation aLocation, TCentRepFileType aType)
157 HBufC* fileName(NULL);
158 TServerResources::CreateRepositoryFileNameLC(fileName,aUid,aLocation,aType);
159 if(CentrepFileExistsL( aUid, aLocation, aType))
161 User::LeaveIfError(TServerResources::iFs.Delete(fileName->Des()));
163 CleanupStack::PopAndDestroy(fileName);
166 void TServerResources::CreateRepositoryFileNameLC(HBufC*& aFullFileName,
168 TCentRepLocation aLocation,
169 TCentRepFileType aFileType)
171 TServerResources::CreateRepositoryFileNameL(aFullFileName,aUid,aLocation,aFileType);
172 CleanupStack::PushL(aFullFileName);
175 Generic routine for creating a full repository file name.
176 aFullFileName is created on the heap and it is caller responsibility
179 void TServerResources::CreateRepositoryFileNameL(HBufC*& aFullFileName,
181 TCentRepLocation aLocation,
182 TCentRepFileType aFileType)
184 const TInt KExtLen = 4;
185 const TInt KDirLen = 40;
186 const TInt KUidLen = 8;
188 TBuf<KDirLen> directory;
196 directory.Copy(iDataDirectory->Des());
201 directory.Copy(iInstallDirectory->Des());
208 directory.Copy(iRomDirectory->Des());
212 User::Leave(KErrNotFound); //CentRep ROM directory is empty or doesn't exist at all
217 User::Leave(KErrNotFound); //should never get here
222 name.NumFixedWidth(aUid.iUid, EHex, KUidLen);
229 ext.Copy(iCreExt->Des());
234 ext.Copy(iIniExt->Des());
239 ext.Copy(iTrnsExt->Des());
243 User::Leave(KErrNotFound); //should never get here
246 TBuf<KMaxFileName> fullFileName;
247 fullFileName.Append(directory);
248 fullFileName.Append(name);
249 fullFileName.Append(ext);
250 //allocates memory on the heap. It is caller's resposibility to delete aFullFileName
251 aFullFileName = fullFileName.AllocL();
254 void TServerResources::InitialiseL()
256 #ifndef SYMBIAN_CENTREP_SUPPORT_MULTIROFS
257 iPersistsVersion = KPersistFormatVersion; // Version 0 of persists
259 iPersistsVersion = KPersistFormatSupportsIndMetaIndicator;
261 User::LeaveIfError(iFs.Connect());
264 _LIT(KDriveMask, "_:");
265 TDriveName systemDrive(KDriveMask);
266 systemDrive[0] = 'A' + static_cast<TInt>(RFs::GetSystemDrive());
268 _LIT(KRomDrive, "z:"); // This may not always be z:
269 _LIT(KPersistsDir, "persists\\");
270 _LIT(KBURDir, "bur\\");
275 _LIT(KIniFileExtension, ".txt");
276 _LIT(KExternalizedPersistsFileExt, ".cre");
277 _LIT(KTransactFileExt, ".tmp");
279 const TInt KMaxExtLength=4;
281 iIniExt=HBufC::NewL(KMaxExtLength);
282 iCreExt=HBufC::NewL(KMaxExtLength);
283 iTrnsExt=HBufC::NewL(KMaxExtLength);
285 iIniExt->Des().Copy(KIniFileExtension);
286 iCreExt->Des().Copy(KExternalizedPersistsFileExt);
287 iTrnsExt->Des().Copy(KTransactFileExt);
289 TBuf<KMaxFileName> path;
290 User::LeaveIfError(iFs.PrivatePath(path));
292 const TInt pathLen = path.Length();
295 // ROM-drive cenrep directory
297 iRomDirectory = HBufC::NewL(KRomDrive().Length()+pathLen);
298 TPtr ptr(iRomDirectory->Des());
299 ptr.Append(KRomDrive);
301 // If the ROM directory does not exist (very unlikely) we set iRomDirectory to zero.
303 if(iFs.Entry(*iRomDirectory, fsEntry)!=KErrNone || !fsEntry.IsDir())
305 delete iRomDirectory;
306 iRomDirectory = NULL;
310 // Cenrep install directory
312 iInstallDirectory = HBufC::NewL(systemDrive.Length()+pathLen);
313 ptr.Set(iInstallDirectory->Des());
314 ptr.Append(systemDrive);
316 TInt r = iFs.MkDirAll(*iInstallDirectory);
317 if(r!=KErrNone && r!=KErrAlreadyExists)
322 // Writeable-drive data directory
325 iDataDirectory = HBufC::NewL(systemDrive.Length()+pathLen+KPersistsDir().Length());
326 ptr.Set(iDataDirectory->Des());
327 ptr.Append(systemDrive);
329 ptr.Append(KPersistsDir);
331 r = iFs.MkDirAll(*iDataDirectory);
332 if(r!=KErrNone && r!=KErrAlreadyExists)
336 // Writeable-drive backup/restore directory
338 iBURDirectory = HBufC::NewL(systemDrive.Length()+pathLen+KBURDir().Length());
339 ptr.Set(iBURDirectory->Des());
340 ptr.Append(systemDrive);
344 r = iFs.MkDirAll(*iBURDirectory);
345 if(r!=KErrNone && r!=KErrAlreadyExists)
348 #ifdef SYMBIAN_BAFL_SYSUTIL
350 // romversion directory
352 _LIT(KRomCache,"romversion\\");
353 HBufC* romVersionDir = HBufC::NewLC(systemDrive.Length()+pathLen+KRomCache().Length());
355 ptr.Set(romVersionDir->Des());
356 ptr.Append(systemDrive);
358 ptr.Append(KRomCache);
360 r = iFs.MkDirAll(*romVersionDir);
361 if(r!=KErrNone && r!=KErrAlreadyExists)
363 CleanupStack::PopAndDestroy();//romVersionDir
368 iCacheManager = CRepositoryCacheManager::NewLC(iFs);
372 iObserver = CObservable::NewLC();
375 iOwnerIdLookUpTable.Reset();
379 void TServerResources::Close()
382 delete iCacheManager;
383 delete iInstallDirectory;
384 delete iDataDirectory;
385 delete iRomDirectory;
386 delete iBURDirectory;
393 iInstallDirectory=NULL;
401 iOwnerIdLookUpTable.Close() ;
404 TInt TServerResources::GetUid(TEntry& aEntry, TUid& aUid)
406 const TInt KUidLen = 8;
407 TPtrC uidPtr = aEntry.iName.Des().LeftTPtr(KUidLen);
411 if (lex.Val(uidValue, EHex) == KErrNone)
413 aUid = TUid::Uid(uidValue);
423 TInt TOwnerIdMapping::CompareUids (const TOwnerIdMapping& aOwnerIdMapping1, const TOwnerIdMapping& aOwnerIdMapping2)
425 if (aOwnerIdMapping1.iRepUid < aOwnerIdMapping2.iRepUid)
427 else if (aOwnerIdMapping1.iRepUid > aOwnerIdMapping2.iRepUid)
434 #ifdef __CENTREP_SERVER_MEMTEST__
436 void TServerResources::StopRecordTimerResult()
438 iMemTestDataCount = KMemBufMaxEntry;
441 //aLocation: location where the memory reading is done (a method specifier)
442 //aIdentifier: identifier of the memory reading (e.g. repository id, 10th reading etc)
443 void TServerResources::RecordTimerResult(TMemTestLocationIdentifier aLocation, TInt32 aIdentifier)
445 if(iMemTestDataCount+6 > KMemBufMaxEntry)
447 if(iMemTestDataCount+3 <= KMemBufMaxEntry)
449 iMemTestData[iMemTestDataCount++] = static_cast<TInt32>(KMagicMemTestOutOfBounds);
450 iMemTestData[iMemTestDataCount++] = static_cast<TInt32>(KMagicMemTestOutOfBounds);
451 iMemTestData[iMemTestDataCount++] = static_cast<TInt32>(KMagicMemTestOutOfBounds);
456 RHeap& heap = User::Heap();
459 iMemTestData[iMemTestDataCount++] = aLocation;
460 iMemTestData[iMemTestDataCount++] = aIdentifier;
461 iMemTestData[iMemTestDataCount++] = static_cast<TInt32>(heap.Size() - heap.Available(biggestBlock));
465 void TServerResources::StartRecordTimerResult()
467 iMemTestDataCount = 0;
470 #endif //__CENTREP_SERVER_MEMTEST__