First public contribution.
1 // Copyright (c) 1997-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.
17 #include <bafl/backup_std.h>
26 #define UNUSED_VAR(a) a = a
28 const TUid KServerUid3={0x10004900};
29 const TInt KBADefaultPriority = CActive::EPriorityUserInput;
30 _LIT(KBackupSrvName,"baksrvs");
33 // class RBaBackupSession
36 const TInt KNumConnectRetries =10;
39 class RBaBackupSession : public RSessionBase
43 void RegisterForNotifications(TRequestStatus& aStatus) const;
44 void DeregisterForNotifications() const;
45 void GetEvent(TDes& aFileName,MBackupObserver::TFileLockFlags& aFileFlag) const;
46 void CloseAllFiles(MBackupObserver::TFileLockFlags aFlags,TRequestStatus& aStatus) const;
47 void RestartApps() const;
48 TInt CloseFile(const TDesC& aFileName,MBackupObserver::TFileLockFlags aFlags) const;
49 void RestartFile(const TDesC& aFileName) const;
50 TInt NotifyChangeFileLock(const TDesC& aFileName) const;
51 void NotifyChangeFileLockCancel(const TDesC& aFileName) const;
52 void CloseServer() const;
53 void NotifyBackupOperation(const TBackupOperationAttributes& aBackupOperationAttributes);
54 TBool IsBackupOperationRunning() const;
55 void BackupOperationEventReady(TRequestStatus& aStatus, TPckgBuf<TBackupOperationAttributes>& aBackupOperationAttributes) const;
56 void CancelOutstandingEventForBackupOperation() const;
57 void GetBackupOperationEvent(TBackupOperationAttributes& aBackupOperationAttributes) const;
58 void SetBackupOperationObserverIsPresent(TBool aObserverIsPresent) const;
63 TInt RBaBackupSession::Connect()
66 TInt retry=KNumConnectRetries;
69 err=CreateSession(__BACKUP_SERVER_NAME_V2,TVersion(KBakServMajorVN,KBakServMinorVN,KBakServBuildVN),KBakServMessageSlots);
70 if ((--retry>0) && ((err==KErrNotFound) || (err==KErrServerTerminated)))
73 if ((err!=KErrNone) && (err!=KErrAlreadyExists))
86 TInt RBaBackupSession::StartServer()
88 const TUidType serverUid(KNullUid,KNullUid,KServerUid3);
91 error = server.Create(KBackupSrvName,KNullDesC,serverUid);
95 server.Rendezvous(stat);
96 if (stat!=KRequestPending)
97 server.Kill(0); // abort startup
99 server.Resume(); // logon OK - start the server
100 User::WaitForRequest(stat); // wait for start or death
101 // we can't use the 'exit reason' if the server panicked as this
102 // is the panic 'reason' and may be '0' which cannot be distinguished
104 error=(server.ExitType()==EExitPanic) ? KErrGeneral : stat.Int();
110 void RBaBackupSession::RegisterForNotifications(TRequestStatus& aStatus) const
112 SendReceive(EBakOpCodeEventReady,aStatus);
115 void RBaBackupSession::DeregisterForNotifications() const
117 SendReceive(EBakOpCodeStopNotifications);
120 void RBaBackupSession::GetEvent(TDes& aFileName,MBackupObserver::TFileLockFlags& aFileFlag) const
122 TBuf<KMaxFileName+1> buf;
123 if (SendReceive(EBakOpCodeGetEvent,TIpcArgs(&buf))!=KErrServerTerminated)
125 TBuf<1> num=buf.Left(1);
128 aFileFlag=(MBackupObserver::TFileLockFlags)(num[0]-'0');
132 void RBaBackupSession::CloseAllFiles(MBackupObserver::TFileLockFlags aFlags,TRequestStatus& aStatus) const
134 SendReceive(EBakOpCodeCloseAllFiles,TIpcArgs(aFlags),aStatus);
137 void RBaBackupSession::RestartApps() const
139 SendReceive(EBakOpCodeRestartAll);
142 TInt RBaBackupSession::CloseFile(const TDesC& aFileName,MBackupObserver::TFileLockFlags aFlags) const
144 const TInt err=SendReceive(EBakOpCodeCloseFile,TIpcArgs(aFileName.Length(),&aFileName,aFlags));
148 void RBaBackupSession::RestartFile(const TDesC& aFileName) const
150 SendReceive(EBakOpCodeRestartFile,TIpcArgs(aFileName.Length(),&aFileName));
153 TInt RBaBackupSession::NotifyChangeFileLock(const TDesC& aFileName) const
155 return SendReceive(EBakOpCodeNotifyLockChange,TIpcArgs(aFileName.Length(),&aFileName));
158 void RBaBackupSession::NotifyChangeFileLockCancel(const TDesC& aFileName) const
160 SendReceive(EBakOpCodeNotifyLockChangeCancel,TIpcArgs(aFileName.Length(),&aFileName));
163 void RBaBackupSession::CloseServer() const
165 Send(EBakOpCodeCloseServer);
168 void RBaBackupSession::NotifyBackupOperation(const TBackupOperationAttributes& aBackupOperationAttributes)
170 TPckgC<TBackupOperationAttributes> backupOpAttPkg(aBackupOperationAttributes);
171 SendReceive(EBakOpCodeNotifyBackupOperation, TIpcArgs(&backupOpAttPkg));
174 void RBaBackupSession::CancelOutstandingEventForBackupOperation() const
176 SendReceive(EBakOpCodeCancelOutstandingBackupOperationEvent);
179 TBool RBaBackupSession::IsBackupOperationRunning() const
181 TBool isRunning=EFalse;
182 TPckg<TBool> pkg(isRunning);
183 SendReceive(EBakOpCodeGetBackupOperationState, TIpcArgs(&pkg));
187 void RBaBackupSession::BackupOperationEventReady(TRequestStatus& aStatus, TPckgBuf<TBackupOperationAttributes>& aBackupOperationAttributes) const
189 SendReceive(EBakOpCodeBackupOperationEventReady,TIpcArgs(&aBackupOperationAttributes),aStatus);
192 void RBaBackupSession::GetBackupOperationEvent(TBackupOperationAttributes& aBackupOperationAttributes) const
194 TPckg<TBackupOperationAttributes> backupOpAttPkg(aBackupOperationAttributes);
195 SendReceive(EBakOpCodeGetBackupOperationEvent, TIpcArgs(&backupOpAttPkg));
198 void RBaBackupSession::SetBackupOperationObserverIsPresent(TBool aObserverIsPresent) const
200 Send(EBakOpCodeSetBackupOperationObserverIsPresent, TIpcArgs(aObserverIsPresent));
204 // class CBaLockChangeNotifier
207 NONSHARABLE_CLASS(CBaLockChangeNotifier) : public CActive
210 static CBaLockChangeNotifier* NewL(RBaBackupSession& aBackupSession);
211 ~CBaLockChangeNotifier();
212 void AddL(const TDesC& aFileName, MBackupObserver& aObserver);
213 void Remove(const TDesC& aFileName);
215 void StartNotifications();
216 void StopNotifications();
217 private: // from CActive
221 CBaLockChangeNotifier(RBaBackupSession& aBackupSession);
223 TInt Find(const TDesC& aFileName) const;
228 TFileItem(HBufC* aFile,MBackupObserver& aObserver);
231 MBackupObserver& iObserver;
234 RBaBackupSession& iBackupSession;
235 RArray<TFileItem> iFileItems;
238 CBaLockChangeNotifier::TFileItem::TFileItem(HBufC* aFile,MBackupObserver& aObserver)
243 CBaLockChangeNotifier* CBaLockChangeNotifier::NewL(RBaBackupSession& aBackupSession)
245 CBaLockChangeNotifier* self=new(ELeave) CBaLockChangeNotifier(aBackupSession);
246 CActiveScheduler::Add(self);
250 CBaLockChangeNotifier::~CBaLockChangeNotifier()
254 const TInt count=iFileItems.Count();
255 for (TInt ii=0;ii<count;ii++)
257 delete iFileItems[ii].iFile;
262 void CBaLockChangeNotifier::StartNotifications()
266 iBackupSession.RegisterForNotifications(iStatus);
271 void CBaLockChangeNotifier:: StopNotifications()
273 const TInt count=iFileItems.Count();
281 void CBaLockChangeNotifier::AddL(const TDesC& aFileName, MBackupObserver& aObserver)
283 StartNotifications();
285 HBufC* file=aFileName.AllocLC();
286 TFileItem fileItem(file,aObserver);
287 User::LeaveIfError(iFileItems.Append(fileItem));
288 CleanupStack::Pop(); // file
289 const TInt err=iBackupSession.NotifyChangeFileLock(aFileName);
293 iFileItems.Remove(iFileItems.Count()-1);
294 iFileItems.Compress();
299 void CBaLockChangeNotifier::Remove(const TDesC& aFileName)
301 const TInt index=Find(aFileName);
302 if (index!=KErrNotFound)
304 const TFileItem& fileItem=iFileItems[index];
305 iBackupSession.NotifyChangeFileLockCancel(*fileItem.iFile);
306 delete fileItem.iFile;
307 iFileItems.Remove(index);
308 iFileItems.Compress();
315 void CBaLockChangeNotifier::DoCancel()
317 const TInt count=iFileItems.Count();
319 // release the locks on all outstandng files in this session
320 for (TInt ii=0;ii<count;ii++)
322 const TFileItem& fileItem=iFileItems[ii];
323 iBackupSession.NotifyChangeFileLockCancel(*fileItem.iFile);
325 iBackupSession.DeregisterForNotifications();
328 void CBaLockChangeNotifier::RunL()
331 if (err!=KErrServerTerminated)
333 StartNotifications();
335 User::LeaveIfError(err);
338 CBaLockChangeNotifier::CBaLockChangeNotifier(RBaBackupSession& aBackupSession)
339 : CActive(KBADefaultPriority), iBackupSession(aBackupSession)
343 void CBaLockChangeNotifier::DoRunL()
345 const TInt status=iStatus.Int();
352 MBackupObserver::TFileLockFlags fileFlag;
353 iBackupSession.GetEvent(fileName,fileFlag);
355 const TInt count=iFileItems.Count();
356 for (TInt ii=0;ii<count;ii++)
358 const TFileItem& fileItem=iFileItems[ii];
359 if (fileItem.iFile->MatchF(fileName)==0)
361 TRAPD(r,fileItem.iObserver.ChangeFileLockL(*fileItem.iFile,fileFlag));
362 if (r!=KErrNone && err==KErrNone)
368 User::LeaveIfError(err);
371 TInt CBaLockChangeNotifier::Find(const TDesC& aFileName) const
373 TInt index=KErrNotFound;
374 const TInt count=iFileItems.Count();
375 for (TInt ii=0;ii<count;ii++)
377 const TFileItem& fileItem=iFileItems[ii];
378 if (*fileItem.iFile==aFileName)
388 // class CBaBackupOperationNotifier
391 NONSHARABLE_CLASS(CBaBackupOperationNotifier) : public CActive
394 static CBaBackupOperationNotifier* NewL(RBaBackupSession& aBackupSession);
395 ~CBaBackupOperationNotifier();
396 void AddBackupOperationObserverL(MBackupOperationObserver& aBackupSession);
397 void RemoveBackupOperationObserver(MBackupOperationObserver& aBackupSession);
398 private: // from CActive
402 CBaBackupOperationNotifier(RBaBackupSession& aBackupSession);
406 RPointerArray<MBackupOperationObserver> iObservers;
407 RBaBackupSession& iBackupSession;
408 TPckgBuf<TBackupOperationAttributes> iBackupOperationAttributes;
412 CBaBackupOperationNotifier* CBaBackupOperationNotifier::NewL(RBaBackupSession& aBackupSession)
414 CBaBackupOperationNotifier* self=new(ELeave) CBaBackupOperationNotifier(aBackupSession);
415 CActiveScheduler::Add(self);
419 CBaBackupOperationNotifier::~CBaBackupOperationNotifier()
426 void CBaBackupOperationNotifier::AddBackupOperationObserverL(MBackupOperationObserver& aBackupOperationObserver)
428 const TInt index = iObservers.Find(&aBackupOperationObserver);
429 if (index == KErrNotFound)
431 User::LeaveIfError(iObservers.Append(&aBackupOperationObserver));
432 if (iBackupSession.IsBackupOperationRunning())
434 TBackupOperationAttributes backupOperationAttributes;
435 iBackupSession.GetBackupOperationEvent(backupOperationAttributes);
436 aBackupOperationObserver.HandleBackupOperationEventL(backupOperationAttributes);
442 void CBaBackupOperationNotifier::RemoveBackupOperationObserver(MBackupOperationObserver& aBackupOperationObserver)
444 const TInt index = iObservers.Find(&aBackupOperationObserver);
445 if (index != KErrNotFound)
447 iObservers.Remove(index);
448 if (iObservers.Count() == 0)
450 iBackupSession.CancelOutstandingEventForBackupOperation();
451 iBackupSession.SetBackupOperationObserverIsPresent(EFalse);
456 void CBaBackupOperationNotifier::DoCancel()
458 TBackupOperationAttributes backupOperationAttributes;
459 iBackupSession.GetBackupOperationEvent(backupOperationAttributes);
460 const TInt count = iObservers.Count();
461 for (TInt index=0; index<count; ++index)
463 // TRAP and ignore the errCode
464 TRAPD(errCode, iObservers[index]->HandleBackupOperationEventL(backupOperationAttributes));
467 iBackupSession.CancelOutstandingEventForBackupOperation();
470 void CBaBackupOperationNotifier::RunL()
472 const TInt status=iStatus.Int();
473 if (status!=KErrCancel && iObservers.Count()>0)
476 if (err!=KErrServerTerminated)
480 User::LeaveIfError(err);
484 CBaBackupOperationNotifier::CBaBackupOperationNotifier(RBaBackupSession& aBackupSession)
485 : CActive(EPriorityStandard), iBackupSession(aBackupSession)
488 void CBaBackupOperationNotifier::Queue()
492 iStatus=KRequestPending;
494 iBackupSession.SetBackupOperationObserverIsPresent(ETrue);
495 iBackupSession.BackupOperationEventReady(iStatus, iBackupOperationAttributes);
499 void CBaBackupOperationNotifier::DoRunL()
501 const TInt status=iStatus.Int();
506 const TInt count = iObservers.Count();
507 for (TInt index=0; index<count; ++index)
509 iObservers[index]->HandleBackupOperationEventL(iBackupOperationAttributes());
514 // class CBaBackupSessionWrapper
518 * Returns a newly created CBaBackupSessionWrapper, passing ownership immediately
520 EXPORT_C CBaBackupSessionWrapper* CBaBackupSessionWrapper::NewL()
522 CBaBackupSessionWrapper* self=new(ELeave) CBaBackupSessionWrapper();
523 CleanupStack::PushL(self);
525 CleanupStack::Pop(); // self
530 * D'tor. Any files or apps that have been closed will be restarted
532 EXPORT_C CBaBackupSessionWrapper::~CBaBackupSessionWrapper()
534 delete iLockChangeNotifier;
535 delete iBackupOperationNotifier;
538 iBackupSession->Close();
539 delete iBackupSession;
544 Register the specified file to the server. The given observer will be called back when
545 the lock state of the file should be modified
547 @param aFileName the name of the file to be observed.
548 @param aObserver the observer which will be called back when the lock state of the file should be modified.
550 @leave KErrServerBusy if the server is busy with the other client or under CloseAll operation. KErrNoMemory
551 if not enough memory to register this file.
553 EXPORT_C void CBaBackupSessionWrapper::RegisterFileL(const TDesC& aFileName,MBackupObserver& aObserver)
555 if (!iLockChangeNotifier)
557 iLockChangeNotifier=CBaLockChangeNotifier::NewL(*iBackupSession);
560 __ASSERT_ALWAYS(iLockChangeNotifier, Panic(EBafPanicNullPointer));
561 iLockChangeNotifier->AddL(aFileName,aObserver);
565 * Stop sending this client requests to alter the lock state of aFileName
567 EXPORT_C void CBaBackupSessionWrapper::DeregisterFile(const TDesC& aFileName)
569 if(iLockChangeNotifier)
570 iLockChangeNotifier->Remove(aFileName);
574 Closes all non-system apps and signal all registered files to have their locks altered according to aFlags.
575 Returns immediately before having finished all processing. aStatus will be completed when everything is
576 closed or closing has completed. Possible error codes are
577 KErrNoMemory - Not enough memory to signal all apps/files to close
578 KErrServerBusy - Another client has some files closed - No-one else should attempt any backup operation
579 KErrLocked - Not all apps were successfully closed
580 In all cases, an undefined number of apps/files may have been closed and backup may still be possible although
581 install/restore operations should not be attempted.
583 @param aFlags the file lock state to request the other clients with.
584 @param aStatus the request status to be completed when all files have been closed.
587 @capability WriteDeviceData
589 EXPORT_C void CBaBackupSessionWrapper::CloseAll(MBackupObserver::TFileLockFlags aFlags,TRequestStatus& aStatus)
591 iBackupSession->CloseAllFiles(aFlags,aStatus);
595 * Opposite of CloseAll. Can safely be called nothing has been closed by this client
599 * @capability WriteDeviceData
601 EXPORT_C void CBaBackupSessionWrapper::RestartAll()
603 iBackupSession->RestartApps();
607 Close or reduce use of aFileName depending on the state of aFlags.
609 @param aFileName the name of the file to be closed / changed the file lock state.
610 @param aFlag the file lock state to change to.
611 @leave KErrNoMemory if not enough memory to signal the files to close. KErrServerIsBusy if another client
612 has some files being closed.
615 @capability WriteDeviceData
617 EXPORT_C void CBaBackupSessionWrapper::CloseFileL(const TDesC& aFileName,MBackupObserver::TFileLockFlags aFlags)
619 User::LeaveIfError(iBackupSession->CloseFile(aFileName,aFlags));
623 * Opposite of CloseFileL. Can be safely called if CloseFileL hasn't been called before
627 * @capability WriteDeviceData
629 EXPORT_C void CBaBackupSessionWrapper::RestartFile(const TDesC& aFileName)
631 iBackupSession->RestartFile(aFileName);
634 CBaBackupSessionWrapper::CBaBackupSessionWrapper()
637 void CBaBackupSessionWrapper::ConstructL()
639 iBackupSession=new(ELeave) RBaBackupSession();
640 User::LeaveIfError(iBackupSession->Connect());
645 * Registers the observer aBackupOperationObserver for getting notifications whether a backup or
646 * restore operation starts or ends.
648 * @since App-Framework_6.2
650 EXPORT_C void CBaBackupSessionWrapper::RegisterBackupOperationObserverL(MBackupOperationObserver& aBackupOperationObserver)
652 if (!iBackupOperationNotifier)
654 iBackupOperationNotifier=CBaBackupOperationNotifier::NewL(*iBackupSession);
656 iBackupOperationNotifier->AddBackupOperationObserverL(aBackupOperationObserver);
660 * De-registers the observer aBackupOperationObserver for getting notifications whether a backup or
661 * restore operation starts or ends.
663 * @since App-Framework_6.2
665 EXPORT_C void CBaBackupSessionWrapper::DeRegisterBackupOperationObserver(MBackupOperationObserver& aBackupOperationObserver)
667 if (iBackupOperationNotifier)
669 iBackupOperationNotifier->RemoveBackupOperationObserver(aBackupOperationObserver);
674 * Returns ETrue when either a backup or restore operation is running, otherwise it retunrs EFalse.
676 * @since App-Framework_6.2
678 EXPORT_C TBool CBaBackupSessionWrapper::IsBackupOperationRunning() const
680 return iBackupSession->IsBackupOperationRunning();
684 * Notifies the server that a backup operation is going to happen.
686 * @since App-Framework_6.2
689 * @capability WriteDeviceData
691 EXPORT_C void CBaBackupSessionWrapper::NotifyBackupOperationL(const TBackupOperationAttributes& aBackupOperationAttributes)
693 iBackupSession->NotifyBackupOperation(aBackupOperationAttributes);
697 EXPORT_C void MBackupOperationObserver::Reserved1()