sl@0
|
1 |
// Copyright (c) 1997-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 |
// Implements installed file notification
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
/**
|
sl@0
|
19 |
@internalComponent
|
sl@0
|
20 |
*/
|
sl@0
|
21 |
|
sl@0
|
22 |
#include "install.h"
|
sl@0
|
23 |
#include "srvrepos_noc.h"
|
sl@0
|
24 |
#include "srvres.h"
|
sl@0
|
25 |
#include "srvparams.h"
|
sl@0
|
26 |
#include "cachemgr.h"
|
sl@0
|
27 |
|
sl@0
|
28 |
CCentRepSWIWatcher* CCentRepSWIWatcher::NewL(RFs& aFs)
|
sl@0
|
29 |
{
|
sl@0
|
30 |
CCentRepSWIWatcher* self = new(ELeave) CCentRepSWIWatcher(aFs);
|
sl@0
|
31 |
CleanupStack::PushL(self);
|
sl@0
|
32 |
self->ConstructL();
|
sl@0
|
33 |
CleanupStack::Pop(self);
|
sl@0
|
34 |
return self;
|
sl@0
|
35 |
}
|
sl@0
|
36 |
|
sl@0
|
37 |
void CCentRepSWIWatcher::ConstructL()
|
sl@0
|
38 |
{
|
sl@0
|
39 |
// Attach to SWI property
|
sl@0
|
40 |
User::LeaveIfError(iSWIKey.Attach( KUidSystemCategory, KSAUidSoftwareInstallKeyValue));
|
sl@0
|
41 |
|
sl@0
|
42 |
// Initialise SWI operation and status
|
sl@0
|
43 |
TInt swiProperty;
|
sl@0
|
44 |
const TInt error = iSWIKey.Get(KUidSystemCategory, KSAUidSoftwareInstallKeyValue, swiProperty);
|
sl@0
|
45 |
|
sl@0
|
46 |
if (error == KErrNone)
|
sl@0
|
47 |
{
|
sl@0
|
48 |
iSWIOperation=swiProperty & KSASwisOperationMask;
|
sl@0
|
49 |
iSWIStatus= swiProperty & KSASwisOperationStatusMask;
|
sl@0
|
50 |
}
|
sl@0
|
51 |
else if (error != KErrNotFound)
|
sl@0
|
52 |
{
|
sl@0
|
53 |
User::LeaveIfError(error);
|
sl@0
|
54 |
}
|
sl@0
|
55 |
|
sl@0
|
56 |
// Get last saved contents of install directory
|
sl@0
|
57 |
GetInstallDirL();
|
sl@0
|
58 |
|
sl@0
|
59 |
// Do any actions required by pre server start-up SWI activity
|
sl@0
|
60 |
TRAP_IGNORE(FindChangedEntriesL(ETrue));
|
sl@0
|
61 |
}
|
sl@0
|
62 |
|
sl@0
|
63 |
CCentRepSWIWatcher::CCentRepSWIWatcher(RFs& aFs) :
|
sl@0
|
64 |
CActive(EPriorityStandard),
|
sl@0
|
65 |
iInstallDir(*TServerResources::iInstallDirectory),
|
sl@0
|
66 |
iFs(aFs),
|
sl@0
|
67 |
iSWIOperation( ESASwisNone),
|
sl@0
|
68 |
iSWIStatus( ESASwisStatusSuccess)
|
sl@0
|
69 |
{
|
sl@0
|
70 |
CActiveScheduler::Add(this);
|
sl@0
|
71 |
}
|
sl@0
|
72 |
|
sl@0
|
73 |
CCentRepSWIWatcher::~CCentRepSWIWatcher()
|
sl@0
|
74 |
{
|
sl@0
|
75 |
Cancel();
|
sl@0
|
76 |
if(iSWIKey.Handle() != KNullHandle)
|
sl@0
|
77 |
{
|
sl@0
|
78 |
iSWIKey.Cancel();
|
sl@0
|
79 |
iSWIKey.Close();
|
sl@0
|
80 |
}
|
sl@0
|
81 |
iInstallEntryArray.ResetAndDestroy();
|
sl@0
|
82 |
iCurrentInstallDirEntries.ResetAndDestroy();
|
sl@0
|
83 |
}
|
sl@0
|
84 |
|
sl@0
|
85 |
void CCentRepSWIWatcher::Start()
|
sl@0
|
86 |
{
|
sl@0
|
87 |
if(IsActive())
|
sl@0
|
88 |
return;
|
sl@0
|
89 |
|
sl@0
|
90 |
NotifyChange();
|
sl@0
|
91 |
}
|
sl@0
|
92 |
|
sl@0
|
93 |
void CCentRepSWIWatcher::NotifyChange()
|
sl@0
|
94 |
{
|
sl@0
|
95 |
|
sl@0
|
96 |
// Register for P&S of SWI flag
|
sl@0
|
97 |
iSWIKey.Subscribe(iStatus);
|
sl@0
|
98 |
|
sl@0
|
99 |
SetActive();
|
sl@0
|
100 |
}
|
sl@0
|
101 |
|
sl@0
|
102 |
void CCentRepSWIWatcher::RunL()
|
sl@0
|
103 |
{
|
sl@0
|
104 |
NotifyChange();
|
sl@0
|
105 |
|
sl@0
|
106 |
// Get SWI Key
|
sl@0
|
107 |
TInt swiProperty;
|
sl@0
|
108 |
User::LeaveIfError(iSWIKey.Get(KUidSystemCategory, KSAUidSoftwareInstallKeyValue, swiProperty));
|
sl@0
|
109 |
|
sl@0
|
110 |
HandleSWIEventL(swiProperty);
|
sl@0
|
111 |
}
|
sl@0
|
112 |
|
sl@0
|
113 |
void CCentRepSWIWatcher::HandleSWIEventL(TInt aSWIProperty)
|
sl@0
|
114 |
{
|
sl@0
|
115 |
iSWIOperation=aSWIProperty & KSASwisOperationMask;
|
sl@0
|
116 |
iSWIStatus= aSWIProperty & KSASwisOperationStatusMask;
|
sl@0
|
117 |
|
sl@0
|
118 |
// Need to handle successful and aborted install/uninstall and successful restore
|
sl@0
|
119 |
// Can't handle aborted restore
|
sl@0
|
120 |
switch(iSWIOperation)
|
sl@0
|
121 |
{
|
sl@0
|
122 |
case ESASwisNone:
|
sl@0
|
123 |
break;
|
sl@0
|
124 |
case ESASwisInstall:
|
sl@0
|
125 |
case ESASwisUninstall:
|
sl@0
|
126 |
if(iSWIStatus==ESASwisStatusSuccess)
|
sl@0
|
127 |
{
|
sl@0
|
128 |
// Handle SWI events
|
sl@0
|
129 |
FindChangedEntriesL();
|
sl@0
|
130 |
}
|
sl@0
|
131 |
else if(iSWIStatus==ESASwisStatusAborted)
|
sl@0
|
132 |
{
|
sl@0
|
133 |
// Update directory to reset timestamps
|
sl@0
|
134 |
ReadInstallDirL(iInstallEntryArray);
|
sl@0
|
135 |
SaveInstallDirL();
|
sl@0
|
136 |
}
|
sl@0
|
137 |
break;
|
sl@0
|
138 |
case ESASwisRestore:
|
sl@0
|
139 |
break;
|
sl@0
|
140 |
default:
|
sl@0
|
141 |
break;
|
sl@0
|
142 |
}
|
sl@0
|
143 |
}
|
sl@0
|
144 |
|
sl@0
|
145 |
// Catch leaves so they don't stop the server
|
sl@0
|
146 |
TInt CCentRepSWIWatcher::RunError( TInt aError)
|
sl@0
|
147 |
{
|
sl@0
|
148 |
static_cast<void>(aError);
|
sl@0
|
149 |
|
sl@0
|
150 |
RDebug::Print(_L("Run error %d"), aError);
|
sl@0
|
151 |
|
sl@0
|
152 |
// Reinitialise directory list
|
sl@0
|
153 |
iInstallEntryArray.ResetAndDestroy();
|
sl@0
|
154 |
|
sl@0
|
155 |
if(!IsActive())
|
sl@0
|
156 |
{
|
sl@0
|
157 |
NotifyChange();
|
sl@0
|
158 |
}
|
sl@0
|
159 |
|
sl@0
|
160 |
// Renable cache activity in case of errors during SWI events
|
sl@0
|
161 |
TServerResources::iCacheManager->EnableCache();
|
sl@0
|
162 |
|
sl@0
|
163 |
return KErrNone;
|
sl@0
|
164 |
}
|
sl@0
|
165 |
|
sl@0
|
166 |
void CCentRepSWIWatcher::DoCancel()
|
sl@0
|
167 |
{
|
sl@0
|
168 |
// Cancel subscription to SW P&S flag
|
sl@0
|
169 |
iSWIKey.Cancel();
|
sl@0
|
170 |
iSWIKey.Close();
|
sl@0
|
171 |
}
|
sl@0
|
172 |
|
sl@0
|
173 |
void CCentRepSWIWatcher::ReadInstallDirL(RPointerArray<CInstallEntry> &aEntryArray)
|
sl@0
|
174 |
{
|
sl@0
|
175 |
RDir dir;
|
sl@0
|
176 |
CleanupClosePushL(dir);
|
sl@0
|
177 |
|
sl@0
|
178 |
//Empty contents of directory
|
sl@0
|
179 |
aEntryArray.ResetAndDestroy();
|
sl@0
|
180 |
|
sl@0
|
181 |
// Read contents of install directory
|
sl@0
|
182 |
User::LeaveIfError(dir.Open(iFs, iInstallDir, KEntryAttNormal));
|
sl@0
|
183 |
|
sl@0
|
184 |
TEntryArray dirEntries;
|
sl@0
|
185 |
TInt readError = KErrNone;
|
sl@0
|
186 |
|
sl@0
|
187 |
while (readError != KErrEof)
|
sl@0
|
188 |
{
|
sl@0
|
189 |
readError = dir.Read(dirEntries);
|
sl@0
|
190 |
|
sl@0
|
191 |
if(readError != KErrNone && readError != KErrEof)
|
sl@0
|
192 |
{
|
sl@0
|
193 |
User::Leave(readError);
|
sl@0
|
194 |
}
|
sl@0
|
195 |
else
|
sl@0
|
196 |
{
|
sl@0
|
197 |
const TInt dirCount = dirEntries.Count();
|
sl@0
|
198 |
for (TInt i=0; i<dirCount; i++)
|
sl@0
|
199 |
{
|
sl@0
|
200 |
CInstallEntry* installEntry = CInstallEntry::NewL();
|
sl@0
|
201 |
CleanupStack::PushL(installEntry);
|
sl@0
|
202 |
installEntry->SetL(const_cast<TEntry&>(dirEntries[i]));
|
sl@0
|
203 |
if (installEntry->FileExt()==EUnknown)
|
sl@0
|
204 |
{
|
sl@0
|
205 |
CleanupStack::PopAndDestroy();
|
sl@0
|
206 |
}
|
sl@0
|
207 |
else
|
sl@0
|
208 |
{
|
sl@0
|
209 |
User::LeaveIfError(aEntryArray.Append(installEntry));
|
sl@0
|
210 |
CleanupStack::Pop(installEntry);
|
sl@0
|
211 |
}
|
sl@0
|
212 |
}
|
sl@0
|
213 |
}
|
sl@0
|
214 |
}
|
sl@0
|
215 |
|
sl@0
|
216 |
CleanupStack::PopAndDestroy(&dir);
|
sl@0
|
217 |
}
|
sl@0
|
218 |
|
sl@0
|
219 |
TBool CCentRepSWIWatcher::MatchEntries( const CInstallEntry &aSource, const CInstallEntry &aTarget)
|
sl@0
|
220 |
{
|
sl@0
|
221 |
return((aSource.Uid()==aTarget.Uid()) &&
|
sl@0
|
222 |
(aSource.FileExt()==aTarget.FileExt()));
|
sl@0
|
223 |
}
|
sl@0
|
224 |
|
sl@0
|
225 |
void CCentRepSWIWatcher::FindChangedEntriesL(TBool aStartup)
|
sl@0
|
226 |
{
|
sl@0
|
227 |
// Find added or updated entries
|
sl@0
|
228 |
ReadInstallDirL(iCurrentInstallDirEntries);
|
sl@0
|
229 |
|
sl@0
|
230 |
// We don't want cache activity during SWI operations
|
sl@0
|
231 |
TServerResources::iCacheManager->DisableCache();
|
sl@0
|
232 |
|
sl@0
|
233 |
TRAPD(err, HandleFileChangesL(aStartup));
|
sl@0
|
234 |
|
sl@0
|
235 |
// SWI operations finished, enable cache
|
sl@0
|
236 |
TServerResources::iCacheManager->EnableCache();
|
sl@0
|
237 |
User::LeaveIfError(err);
|
sl@0
|
238 |
}
|
sl@0
|
239 |
|
sl@0
|
240 |
void CCentRepSWIWatcher::HandleFileChangesL(TBool aStartup)
|
sl@0
|
241 |
{
|
sl@0
|
242 |
TInt newCount=iCurrentInstallDirEntries.Count();
|
sl@0
|
243 |
TInt currentCount=iInstallEntryArray.Count();
|
sl@0
|
244 |
TInt i;
|
sl@0
|
245 |
TInt r;
|
sl@0
|
246 |
TInt operation;
|
sl@0
|
247 |
|
sl@0
|
248 |
// If both counts are 0, we shouldn't have been notified, just return
|
sl@0
|
249 |
if( (newCount==0) && (currentCount==0))
|
sl@0
|
250 |
return;
|
sl@0
|
251 |
|
sl@0
|
252 |
if(aStartup)
|
sl@0
|
253 |
{
|
sl@0
|
254 |
operation=ESASwisNone;
|
sl@0
|
255 |
}
|
sl@0
|
256 |
else
|
sl@0
|
257 |
{
|
sl@0
|
258 |
operation=iSWIOperation;
|
sl@0
|
259 |
}
|
sl@0
|
260 |
|
sl@0
|
261 |
if( newCount==0) // currentCount > 0, newCount = 0
|
sl@0
|
262 |
{ // All installed files have been deleted
|
sl@0
|
263 |
// Handle deletes of all files
|
sl@0
|
264 |
for(i=0;i<currentCount;i++)
|
sl@0
|
265 |
{
|
sl@0
|
266 |
iInstallEntryArray[i]->HandleFileDeleteL(operation);
|
sl@0
|
267 |
}
|
sl@0
|
268 |
// Free memory of elements
|
sl@0
|
269 |
iInstallEntryArray.ResetAndDestroy();
|
sl@0
|
270 |
}
|
sl@0
|
271 |
else
|
sl@0
|
272 |
{
|
sl@0
|
273 |
if( currentCount==0) // currentCount = 0, newCount > 0
|
sl@0
|
274 |
{ // All new files need to be handled
|
sl@0
|
275 |
for(i=0;i<newCount;i++)
|
sl@0
|
276 |
{
|
sl@0
|
277 |
CInstallEntry* newEntry=iCurrentInstallDirEntries[i];
|
sl@0
|
278 |
newEntry->HandleFileCreateL(operation);
|
sl@0
|
279 |
}
|
sl@0
|
280 |
}
|
sl@0
|
281 |
else // currentCount > 0, newCount > 0
|
sl@0
|
282 |
{
|
sl@0
|
283 |
// Find added and modified entries by going through new entries and
|
sl@0
|
284 |
// looking for them in current array
|
sl@0
|
285 |
for(i=0;i<newCount;i++)
|
sl@0
|
286 |
{
|
sl@0
|
287 |
CInstallEntry* newEntry=iCurrentInstallDirEntries[i];
|
sl@0
|
288 |
r=iInstallEntryArray.Find( newEntry, MatchEntries);
|
sl@0
|
289 |
// If we find new entry in current array, check modification date
|
sl@0
|
290 |
if(r>=KErrNone)
|
sl@0
|
291 |
{
|
sl@0
|
292 |
CInstallEntry* currentEntry=iInstallEntryArray[r];
|
sl@0
|
293 |
if( newEntry->Modified() > currentEntry->Modified())
|
sl@0
|
294 |
{
|
sl@0
|
295 |
// Deal with newly installed file, note use newEntry
|
sl@0
|
296 |
// so we use new timestamp
|
sl@0
|
297 |
newEntry->HandleFileUpdateL(operation);
|
sl@0
|
298 |
}
|
sl@0
|
299 |
}
|
sl@0
|
300 |
else if(r==KErrNotFound) // File has been added
|
sl@0
|
301 |
{
|
sl@0
|
302 |
// Handle add
|
sl@0
|
303 |
newEntry->HandleFileCreateL(operation);
|
sl@0
|
304 |
// Don't leave on KErrNotFound
|
sl@0
|
305 |
r=KErrNone;
|
sl@0
|
306 |
}
|
sl@0
|
307 |
User::LeaveIfError(r);
|
sl@0
|
308 |
}
|
sl@0
|
309 |
|
sl@0
|
310 |
// Find deleted entries by going through current entries and looking for them
|
sl@0
|
311 |
// in new array
|
sl@0
|
312 |
for(i=0;i<currentCount;i++)
|
sl@0
|
313 |
{
|
sl@0
|
314 |
CInstallEntry* currentEntry=iInstallEntryArray[i];
|
sl@0
|
315 |
r=iCurrentInstallDirEntries.Find( currentEntry, MatchEntries);
|
sl@0
|
316 |
// If we don't find current entry in new array, it's been deleted
|
sl@0
|
317 |
if(r==KErrNotFound)
|
sl@0
|
318 |
{
|
sl@0
|
319 |
// Deal with uninstalls
|
sl@0
|
320 |
currentEntry->HandleFileDeleteL(operation);
|
sl@0
|
321 |
// Don't leave on KErrNotFound
|
sl@0
|
322 |
r=KErrNone;
|
sl@0
|
323 |
}
|
sl@0
|
324 |
User::LeaveIfError(r);
|
sl@0
|
325 |
}
|
sl@0
|
326 |
}
|
sl@0
|
327 |
|
sl@0
|
328 |
// Clear out old list
|
sl@0
|
329 |
iInstallEntryArray.ResetAndDestroy();
|
sl@0
|
330 |
|
sl@0
|
331 |
// Re-read directory - if any files were corrupt they have been deleted
|
sl@0
|
332 |
// during the merge, so we need to re-read in case this has occurred
|
sl@0
|
333 |
ReadInstallDirL(iInstallEntryArray);
|
sl@0
|
334 |
}
|
sl@0
|
335 |
|
sl@0
|
336 |
SaveInstallDirL();
|
sl@0
|
337 |
iCurrentInstallDirEntries.ResetAndDestroy();
|
sl@0
|
338 |
}
|
sl@0
|
339 |
|
sl@0
|
340 |
CInstallEntry::CInstallEntry() :
|
sl@0
|
341 |
iUid(KNullUid),
|
sl@0
|
342 |
iModified(0),
|
sl@0
|
343 |
iFileExt(EUnknown)
|
sl@0
|
344 |
{
|
sl@0
|
345 |
}
|
sl@0
|
346 |
|
sl@0
|
347 |
CInstallEntry::~CInstallEntry()
|
sl@0
|
348 |
{
|
sl@0
|
349 |
if( iRepository)
|
sl@0
|
350 |
{
|
sl@0
|
351 |
iRepository->Close();
|
sl@0
|
352 |
delete iRepository;
|
sl@0
|
353 |
}
|
sl@0
|
354 |
delete iNotifier;
|
sl@0
|
355 |
}
|
sl@0
|
356 |
|
sl@0
|
357 |
void CInstallEntry::SetL(TEntry& aEntry)
|
sl@0
|
358 |
{
|
sl@0
|
359 |
// Get uid from file name
|
sl@0
|
360 |
const TInt KUidLen = 8;
|
sl@0
|
361 |
TPtrC uidPtr=aEntry.iName.Des().LeftTPtr(KUidLen);
|
sl@0
|
362 |
TLex lex=uidPtr;
|
sl@0
|
363 |
|
sl@0
|
364 |
TUint32 uid;
|
sl@0
|
365 |
User::LeaveIfError(lex.Val(uid,EHex));
|
sl@0
|
366 |
iUid.iUid=static_cast<TInt32>(uid);
|
sl@0
|
367 |
|
sl@0
|
368 |
// save extension type
|
sl@0
|
369 |
_LIT(KIniFileExtension, ".txt");
|
sl@0
|
370 |
_LIT(KExternalizedFileExt, ".cre");
|
sl@0
|
371 |
|
sl@0
|
372 |
const TInt KExtLen = 4;
|
sl@0
|
373 |
TPtrC extPtr=aEntry.iName.Des().RightTPtr(KExtLen);
|
sl@0
|
374 |
|
sl@0
|
375 |
if(extPtr.Compare(KIniFileExtension)==0)
|
sl@0
|
376 |
{
|
sl@0
|
377 |
iFileExt=EIni;
|
sl@0
|
378 |
}
|
sl@0
|
379 |
else if(extPtr.Compare(KExternalizedFileExt)==0)
|
sl@0
|
380 |
{
|
sl@0
|
381 |
iFileExt=ECre;
|
sl@0
|
382 |
}
|
sl@0
|
383 |
else
|
sl@0
|
384 |
{
|
sl@0
|
385 |
iFileExt=EUnknown;
|
sl@0
|
386 |
}
|
sl@0
|
387 |
|
sl@0
|
388 |
iModified=aEntry.iModified;
|
sl@0
|
389 |
}
|
sl@0
|
390 |
|
sl@0
|
391 |
void CInstallEntry::ConstructL()
|
sl@0
|
392 |
{
|
sl@0
|
393 |
// Create repository object
|
sl@0
|
394 |
iRepository = new(ELeave) CServerRepository;
|
sl@0
|
395 |
// Notifier needed to open repositories.
|
sl@0
|
396 |
iNotifier = new(ELeave)CSessionNotifier ;
|
sl@0
|
397 |
}
|
sl@0
|
398 |
|
sl@0
|
399 |
CInstallEntry* CInstallEntry::NewL()
|
sl@0
|
400 |
{
|
sl@0
|
401 |
CInstallEntry* self=new(ELeave)CInstallEntry();
|
sl@0
|
402 |
CleanupStack::PushL(self);
|
sl@0
|
403 |
self->ConstructL();
|
sl@0
|
404 |
CleanupStack::Pop(self);
|
sl@0
|
405 |
return self;
|
sl@0
|
406 |
}
|
sl@0
|
407 |
|
sl@0
|
408 |
TUid CInstallEntry::Uid() const
|
sl@0
|
409 |
{
|
sl@0
|
410 |
return iUid;
|
sl@0
|
411 |
}
|
sl@0
|
412 |
|
sl@0
|
413 |
TTime CInstallEntry::Modified() const
|
sl@0
|
414 |
{
|
sl@0
|
415 |
return iModified;
|
sl@0
|
416 |
}
|
sl@0
|
417 |
|
sl@0
|
418 |
TCentRepFileType CInstallEntry::FileExt() const
|
sl@0
|
419 |
{
|
sl@0
|
420 |
return iFileExt;
|
sl@0
|
421 |
}
|
sl@0
|
422 |
|
sl@0
|
423 |
void CInstallEntry::ExternalizeL(RWriteStream& aStream) const
|
sl@0
|
424 |
{
|
sl@0
|
425 |
aStream << iUid.iUid;
|
sl@0
|
426 |
aStream << iModified.Int64();
|
sl@0
|
427 |
TUint32 fileExt=iFileExt;
|
sl@0
|
428 |
aStream << fileExt;
|
sl@0
|
429 |
}
|
sl@0
|
430 |
|
sl@0
|
431 |
void CInstallEntry::InternalizeL(RReadStream& aStream)
|
sl@0
|
432 |
{
|
sl@0
|
433 |
aStream >> iUid.iUid;
|
sl@0
|
434 |
TInt64 time;
|
sl@0
|
435 |
aStream >> time;
|
sl@0
|
436 |
iModified=time;
|
sl@0
|
437 |
TUint32 fileExt;
|
sl@0
|
438 |
aStream >> fileExt;
|
sl@0
|
439 |
iFileExt = static_cast<TCentRepFileType>(fileExt);
|
sl@0
|
440 |
}
|
sl@0
|
441 |
|
sl@0
|
442 |
|
sl@0
|
443 |
void CCentRepSWIWatcher::ReadAndInternalizeInstallDirL(const TDesC& aInstallDirFilePath)
|
sl@0
|
444 |
{
|
sl@0
|
445 |
RFile file;
|
sl@0
|
446 |
User::LeaveIfError(file.Open(TServerResources::iFs,aInstallDirFilePath, EFileRead|EFileShareReadersOnly));
|
sl@0
|
447 |
CleanupClosePushL(file);
|
sl@0
|
448 |
|
sl@0
|
449 |
CDirectFileStore* store = CDirectFileStore::FromLC (file);
|
sl@0
|
450 |
if(store->Type()[0] != KDirectFileStoreLayoutUid)
|
sl@0
|
451 |
{
|
sl@0
|
452 |
User::Leave(KErrCorrupt);
|
sl@0
|
453 |
}
|
sl@0
|
454 |
|
sl@0
|
455 |
iInstallEntryArray.ResetAndDestroy();
|
sl@0
|
456 |
|
sl@0
|
457 |
// Get the root stream and attempt to read the index from it
|
sl@0
|
458 |
TStreamId rootStreamId = store->Root() ;
|
sl@0
|
459 |
RStoreReadStream rootStream ;
|
sl@0
|
460 |
rootStream.OpenLC(*store, rootStreamId);
|
sl@0
|
461 |
|
sl@0
|
462 |
// Internalize the repository
|
sl@0
|
463 |
TUint32 count;
|
sl@0
|
464 |
rootStream >> count;
|
sl@0
|
465 |
for(TUint i=0; i<count;i++)
|
sl@0
|
466 |
{
|
sl@0
|
467 |
CInstallEntry* installEntry = CInstallEntry::NewL();
|
sl@0
|
468 |
CleanupStack::PushL(installEntry);
|
sl@0
|
469 |
rootStream >> *installEntry;
|
sl@0
|
470 |
User::LeaveIfError(iInstallEntryArray.Append(installEntry));
|
sl@0
|
471 |
CleanupStack::Pop(installEntry);
|
sl@0
|
472 |
}
|
sl@0
|
473 |
|
sl@0
|
474 |
CleanupStack::PopAndDestroy(&rootStream);
|
sl@0
|
475 |
CleanupStack::PopAndDestroy(store);
|
sl@0
|
476 |
CleanupStack::PopAndDestroy();
|
sl@0
|
477 |
}
|
sl@0
|
478 |
|
sl@0
|
479 |
void CCentRepSWIWatcher::GetInstallDirL()
|
sl@0
|
480 |
{
|
sl@0
|
481 |
_LIT(KInstallDirFile, "installdir.bin");
|
sl@0
|
482 |
HBufC* filePath = HBufC::NewLC(TServerResources::iDataDirectory->Length() + KInstallDirFile().Length());
|
sl@0
|
483 |
TPtr installDirFilePath(filePath->Des());
|
sl@0
|
484 |
installDirFilePath.Append(*TServerResources::iDataDirectory);
|
sl@0
|
485 |
installDirFilePath.Append(KInstallDirFile);
|
sl@0
|
486 |
|
sl@0
|
487 |
TRAPD(err, ReadAndInternalizeInstallDirL(installDirFilePath)); // try to open installdir file and internalize its contents
|
sl@0
|
488 |
if (err != KErrNone)
|
sl@0
|
489 |
{
|
sl@0
|
490 |
TInt fileDeleteErr = TServerResources::iFs.Delete(installDirFilePath);
|
sl@0
|
491 |
// If a debug build - record error
|
sl@0
|
492 |
#ifdef _DEBUG
|
sl@0
|
493 |
if (fileDeleteErr != KErrNone && err != KErrNotFound)
|
sl@0
|
494 |
{
|
sl@0
|
495 |
RDebug::Print(_L("CCentRepSWIWatcher::GetInstallDirL - Failed to delete file. Error = %d"), fileDeleteErr);
|
sl@0
|
496 |
}
|
sl@0
|
497 |
#else
|
sl@0
|
498 |
(void)fileDeleteErr;
|
sl@0
|
499 |
#endif
|
sl@0
|
500 |
|
sl@0
|
501 |
// No file saved - read initial contents of directory
|
sl@0
|
502 |
ReadInstallDirL(iInstallEntryArray);
|
sl@0
|
503 |
SaveInstallDirL();
|
sl@0
|
504 |
}
|
sl@0
|
505 |
CleanupStack::PopAndDestroy(filePath);
|
sl@0
|
506 |
}
|
sl@0
|
507 |
|
sl@0
|
508 |
void CCentRepSWIWatcher::SaveInstallDirL()
|
sl@0
|
509 |
{
|
sl@0
|
510 |
_LIT(KInstallDirFile, "installdir.bin");
|
sl@0
|
511 |
_LIT(KInstallDirTmpFile, "installdir.tmp");
|
sl@0
|
512 |
|
sl@0
|
513 |
TBuf<KMaxFileName> installDirTrnsFilePath;
|
sl@0
|
514 |
installDirTrnsFilePath.Append(*TServerResources::iDataDirectory);
|
sl@0
|
515 |
installDirTrnsFilePath.Append(KInstallDirTmpFile);
|
sl@0
|
516 |
|
sl@0
|
517 |
// Create file store
|
sl@0
|
518 |
CDirectFileStore* store = CDirectFileStore::ReplaceLC(TServerResources::iFs, installDirTrnsFilePath,
|
sl@0
|
519 |
(EFileWrite | EFileShareExclusive));
|
sl@0
|
520 |
const TUid uid2 = KNullUid ;
|
sl@0
|
521 |
store->SetTypeL(TUidType(KDirectFileStoreLayoutUid, uid2, KServerUid3)) ;
|
sl@0
|
522 |
|
sl@0
|
523 |
// Write the stream index/dictionary as root stream within the store
|
sl@0
|
524 |
// so we can access it when we do a restore later on
|
sl@0
|
525 |
RStoreWriteStream rootStream ;
|
sl@0
|
526 |
TStreamId rootStreamId = rootStream.CreateLC(*store) ;
|
sl@0
|
527 |
|
sl@0
|
528 |
TUint32 count=iInstallEntryArray.Count();
|
sl@0
|
529 |
rootStream << count;
|
sl@0
|
530 |
for(TUint i=0; i<count;i++)
|
sl@0
|
531 |
{
|
sl@0
|
532 |
rootStream << *iInstallEntryArray[i];
|
sl@0
|
533 |
}
|
sl@0
|
534 |
|
sl@0
|
535 |
rootStream.CommitL() ;
|
sl@0
|
536 |
|
sl@0
|
537 |
CleanupStack::PopAndDestroy(&rootStream) ;
|
sl@0
|
538 |
store->SetRootL(rootStreamId);
|
sl@0
|
539 |
store->CommitL();
|
sl@0
|
540 |
CleanupStack::PopAndDestroy(store) ;
|
sl@0
|
541 |
|
sl@0
|
542 |
TBuf<KMaxFileName> installDirFilePath;
|
sl@0
|
543 |
installDirFilePath.Append(*TServerResources::iDataDirectory);
|
sl@0
|
544 |
installDirFilePath.Append(KInstallDirFile);
|
sl@0
|
545 |
|
sl@0
|
546 |
User::LeaveIfError(TServerResources::iFs.Replace(installDirTrnsFilePath, installDirFilePath));
|
sl@0
|
547 |
}
|
sl@0
|
548 |
|
sl@0
|
549 |
|
sl@0
|
550 |
void CInstallEntry::HandleFileDeleteL(TInt aOperation)
|
sl@0
|
551 |
{
|
sl@0
|
552 |
// File should only have been deleted if operation was uninstall
|
sl@0
|
553 |
// or in startup case
|
sl@0
|
554 |
if((aOperation!=ESASwisNone) && (aOperation!=ESASwisUninstall))
|
sl@0
|
555 |
User::Leave(KErrAbort);
|
sl@0
|
556 |
|
sl@0
|
557 |
iRepository->HandleSWIDeleteL(Uid(), *iNotifier);
|
sl@0
|
558 |
}
|
sl@0
|
559 |
|
sl@0
|
560 |
void CInstallEntry::HandleFileCreateL(TInt aOperation)
|
sl@0
|
561 |
{
|
sl@0
|
562 |
// File should only have been created if operation was install
|
sl@0
|
563 |
// or in startup case
|
sl@0
|
564 |
if((aOperation!=ESASwisNone) && (aOperation!=ESASwisInstall))
|
sl@0
|
565 |
User::Leave(KErrAbort);
|
sl@0
|
566 |
|
sl@0
|
567 |
iRepository->HandleSWIUpdateL(Uid(), Modified(), *iNotifier);
|
sl@0
|
568 |
}
|
sl@0
|
569 |
|
sl@0
|
570 |
void CInstallEntry::HandleFileUpdateL(TInt aOperation)
|
sl@0
|
571 |
{
|
sl@0
|
572 |
// File should only have been modified if operation was install
|
sl@0
|
573 |
// or in startup case
|
sl@0
|
574 |
if((aOperation!=ESASwisNone) && (aOperation!=ESASwisInstall))
|
sl@0
|
575 |
User::Leave(KErrAbort);
|
sl@0
|
576 |
|
sl@0
|
577 |
iRepository->HandleSWIUpdateL(Uid(), Modified(), *iNotifier);
|
sl@0
|
578 |
}
|