os/ossrv/lowlevellibsandfws/apputils/src/Baksrv.cpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 #include <baksrv.h>
    17 #include "Baksrvs.h"
    18 #include <babackup.h>
    19 #include <bafl/backup_std.h>
    20 #include <basched.h>
    21 #include <bsul/clientmessage.h>
    22 #include "patchdata.h"
    23 
    24 extern const BSUL::TClientMessageServerData KServerData;
    25 
    26 const TInt KBakServMaxOperationTimerLoops = 3; // Number of iterations for base operation timer
    27 
    28 _LIT(KPanic,"BackupServer");
    29 //
    30 // RMessage::Panic() also completes the message. This is:
    31 // (a) important for efficient cleanup within the kernel
    32 // (b) a problem if the message is completed a second time
    33 //
    34 void PanicClient(const RMessagePtr2& aMessage, TInt aPanic)
    35 	{
    36 	aMessage.Panic(KPanic,aPanic);
    37 	}
    38 
    39 
    40 //
    41 // class CShutdownServer
    42 //
    43 
    44 NONSHARABLE_CLASS(CShutdownServer) : public CTimer
    45 	{
    46 	enum {KMyShutdownDelay=0x2000000};	// approx 2s
    47 public:
    48 	inline CShutdownServer();
    49 	inline void ConstructL();
    50 	inline void Start();
    51 private:
    52 	void RunL();
    53 	};
    54 
    55 inline CShutdownServer::CShutdownServer()
    56 	:CTimer(-1)
    57 	{
    58 	CActiveScheduler::Add(this);
    59 	}
    60 
    61 inline void CShutdownServer::ConstructL()
    62 	{
    63 	CTimer::ConstructL();
    64 	}
    65 inline void CShutdownServer::Start()
    66 	{
    67 	After(KMyShutdownDelay);
    68 	}
    69 
    70 //
    71 // Initiate server exit when the timer expires
    72 //
    73 void CShutdownServer::RunL()
    74 	{
    75 	CActiveScheduler::Stop();
    76 	}
    77 
    78 
    79 //
    80 // class CBaServBackupScheduler
    81 //
    82 
    83 EXPORT_C CBaServBackupScheduler::CBaServBackupScheduler()
    84 {
    85 }
    86 
    87 EXPORT_C CBaServBackupScheduler::~CBaServBackupScheduler()
    88 {
    89 }
    90 
    91 /**
    92  *
    93  * Set the error handler to aErrorHandler to the current scheduler.
    94  *
    95  * @param     "CBaServBackupSession* aErrorHandler"
    96  *            The handler session.
    97  */
    98 EXPORT_C void CBaServBackupScheduler::SetErrorHandler(CBaServBackupSession* aErrorHandler)
    99 	{
   100 	iErrorHandler=aErrorHandler;
   101 	}
   102 
   103 /**
   104  *
   105  * Handles the error aError.
   106  *
   107  * @param     "TInt aError"
   108  *            The error.
   109  */
   110 EXPORT_C void CBaServBackupScheduler::Error(TInt aError) const
   111 	{
   112 	if (iErrorHandler)
   113 		{
   114 		iErrorHandler->HandleError(aError);
   115 		}
   116 	else if (aError!=KLeaveWithoutAlert)
   117 		{
   118 		// Handling the in this way implies that ServiceL should not leave.
   119 		CActiveScheduler::Error(aError);
   120 		}
   121 	}
   122 
   123 /**
   124 Class CBaServBackupSession::CReRegistrationTimer
   125 */
   126 NONSHARABLE_CLASS(CBaServBackupSession::CReRegistrationTimer) : public CPeriodic
   127 {
   128 	public:
   129 		static CReRegistrationTimer* NewL(TInt aPriority);
   130 		static TInt ReRegistrationTimerCallBack(TAny* aPtr);
   131 		
   132 	protected:
   133 		TInt RunError(TInt aError);
   134 		
   135 	private:
   136 		CReRegistrationTimer(TInt aPriority);
   137 		void HandleReRegistrationTimerCallBack();
   138 
   139     public:
   140 		CBaBackupServer* iBackupServer;
   141 };
   142 
   143 /**
   144 Class CBaBackupServer::CBaServCloseAllOperationTimer
   145 */
   146 
   147 NONSHARABLE_CLASS(CBaBackupServer::CBaServCloseAllOperationTimer): public CPeriodic
   148 {
   149 	public:
   150 	    static CBaServCloseAllOperationTimer* NewL(CBaBackupServer* aBackupServer);
   151 	   void ConstructL(CBaBackupServer* aBackupServer);
   152 	   ~CBaServCloseAllOperationTimer();
   153 	   void SetMessage(const RMessagePtr2& aPtr);
   154 	   RMessagePtr2 Message();
   155 	   TInt GetOperationCount();
   156 	   void SetOperationCount(TInt aCount);
   157 	   static TInt OperationTimerCallBack(TAny* aPtr);
   158 	protected:
   159 	   TInt RunError(TInt aError);
   160 	private:
   161 	   void HandleOperationTimerCallBack();
   162 	   CBaServCloseAllOperationTimer();
   163 	private:
   164 	   RMessagePtr2 iCloseAllFilesMessage;
   165 	   TInt16 iOperationCount;
   166 	   CBaBackupServer* iBackupServer;
   167 };
   168 
   169 //
   170 // class CBaBackupServer
   171 //
   172 
   173 /**
   174  *
   175  * Returns a pointer to <code>CBaBackupServer</code> object.
   176  *
   177  * @return   "CBaBackupServer"
   178  *            A newly-constructed backup server object.
   179  */
   180 EXPORT_C CBaBackupServer* CBaBackupServer::NewL()
   181 	{ // static
   182 	CBaBackupServer* self=new(ELeave) CBaBackupServer(CActive::EPriorityStandard);
   183 	return self;
   184 	}
   185 
   186 /**
   187  *
   188  * Constructor.
   189  *
   190  * @param     "TInt aPriority"
   191  *            The active object priority.
   192  */
   193 EXPORT_C CBaBackupServer::CBaBackupServer(TInt aPriority)
   194 	: CServer2(aPriority)
   195 	{}
   196 /**
   197  *
   198  * Destructor.
   199  *
   200  */
   201 EXPORT_C CBaBackupServer::~CBaBackupServer()
   202 	{
   203 	TDblQueIter<CSession2> iter(iSessionIter);
   204 	iter.SetToFirst();
   205 
   206 	for (CSession2* session=iter++; session!=NULL; session=iter++)
   207 		{
   208 		delete session;
   209 		}
   210 	delete iShutdown;
   211 	delete iExtension;
   212 	delete iCloseAllFilesOperationTimer;
   213 	}
   214 
   215 /**
   216  *
   217  * Completes the server construction by adding the server to the active scheduler and creating
   218  * a <code>CShutdownServer</code> object.
   219  *
   220  */
   221 EXPORT_C void CBaBackupServer::ConstructL()
   222 	{
   223 	StartL(__BACKUP_SERVER_NAME_V2);
   224 	iExtension = new(ELeave) CBaBackupServerExt();
   225 	iShutdown = new (ELeave) CShutdownServer;
   226 	iShutdown->ConstructL();
   227 	// ensure that the server still exits even if the 1st client fails to connect
   228 	iShutdown->Start();
   229 	iRegisteredFilesCount = 0;
   230 	iCloseAllFilesOperationTimer = CBaBackupServer::CBaServCloseAllOperationTimer::NewL(this);
   231 	iCloseAllOperationRunning = EFalse;
   232 	
   233 	//initialise the client message framework
   234 	BSUL::CClientMessage::InitialiseFrameworkL(KServerData);
   235 	}
   236 
   237 /**
   238  *
   239  * Sets the server to be busy with the aUniqueClientId client.
   240  *
   241  * @param     "TUint32 aUniqueClientId"
   242  *            A unique client identifier.
   243  */
   244 EXPORT_C void CBaBackupServer::SetBusy(TUint32 aUniqueClientId)
   245 	{
   246 	iExtension->iUniqueBusyClientId=aUniqueClientId;
   247 	}
   248 
   249 /**
   250  *
   251  * Returns <code>ETrue</code> if the client using the server is not the one identified by aUniqueClientId
   252  * oterwise <code>EFalse</code>
   253  *
   254  * @param     "TUint32 aUniqueClientId"
   255  *            A unique client identifier.
   256  */
   257 EXPORT_C TBool CBaBackupServer::IsOtherClientBusy(TUint32 aUniqueClientId) const
   258 	{
   259 	return (iExtension->iUniqueBusyClientId!=0 && iExtension->iUniqueBusyClientId!=aUniqueClientId);
   260 	}
   261 
   262 /**
   263  *
   264  * Returns <code>ETrue</code> if the client using the server corresponds has aUniqueClientId as unique id
   265  * oterwise <code>EFalse</code>
   266  *
   267  * @param     "TUint32 aUniqueClientId"
   268  *            A unique client identifier id.
   269  */
   270 EXPORT_C TBool CBaBackupServer::IsClientBusy(TUint32 aUniqueClientId) const
   271 	{
   272 	return ((iExtension->iUniqueBusyClientId==aUniqueClientId) || 
   273 			((iExtension->iCachedBusyClientId != 0) && (iExtension->iCachedBusyClientId == aUniqueClientId))); 
   274 	}
   275 
   276 /**
   277  *
   278  * Handles the closing of all files by signaling the new file lock flag, aFlag, to all client.
   279  *
   280  * @param     "MBackupObserver::TFileLockFlags aFlag"
   281  *            A file lock flag.
   282  */
   283 EXPORT_C void CBaBackupServer::CloseAllFilesL(MBackupObserver::TFileLockFlags aFlag)
   284 	{
   285 	// Set the close all operation flag and the reregistration counter to zero
   286 	iCloseAllOperationRunning = ETrue;
   287 	iSessionLockReRegistrationCount = 0;
   288 	
   289 	// cleanup that calls RestartAll if required
   290 	TDblQueIter<CSession2> iter(iSessionIter);
   291 	iter.SetToFirst();
   292 
   293 	for (CSession2* session=iter++; session!=NULL; session=iter++)
   294 		{
   295 		static_cast<CBaServBackupSession*>(session)->SignalReleaseAllFileLocksL(aFlag);
   296 		}
   297 	}
   298 
   299 /**
   300  *
   301  * Signals to all clients of getting the lock of their respective files.
   302  *
   303  */
   304 EXPORT_C void CBaBackupServer::RestartAll()
   305 	{
   306 	TDblQueIter<CSession2> iter(iSessionIter);
   307 	iter.SetToFirst();
   308 
   309 	for (CSession2* session=iter++; session!=NULL; session=iter++)
   310 		{
   311 		static_cast<CBaServBackupSession*>(session)->SignalRetakeAllFileLocks();
   312 		}
   313 	}
   314 
   315 /**
   316  *
   317  * Allows any subclass of <code>CBaBackupServer</code> of completing the closing of files.
   318  * The server will lose the ownership of aClosedFiles object, which implies it is up to this virtual
   319  * function to deal with it in order to avoid a memory leak.
   320  *
   321  * @param     "CArrayFix<CBaServBackupSession::TClosedFile>* aClosedFiles"
   322  *            An array of closed files.
   323  */
   324 EXPORT_C void CBaBackupServer::CompleteClosingFiles(CArrayFix<CBaServBackupSession::TClosedFile>* aClosedFiles)
   325 	{
   326 	delete aClosedFiles;
   327 	}
   328 
   329 /**
   330  *
   331  * Allows application framework backup code to check if all registerd files have beem updated
   332  *
   333  */
   334 EXPORT_C TBool CBaBackupServer::HaveAllCloseAllFilesClientsReRegistered()
   335 	{
   336 	return((iRegisteredFilesCount == iSessionLockReRegistrationCount) ? ETrue : EFalse);
   337 	}
   338 
   339 void CBaBackupServer::CloseFileL(MBackupObserver::TFileLockFlags aFlag,const TDesC& aFileName)
   340 	{
   341 	TDblQueIter<CSession2> iter(iSessionIter);
   342 	iter.SetToFirst();
   343 
   344 	for (CSession2* session=iter++; session!=NULL; session=iter++)
   345 		{
   346 		static_cast<CBaServBackupSession*>(session)->SignalReleaseFileLockL(aFlag,aFileName);
   347 		}
   348 	}
   349 
   350 void CBaBackupServer::RestartFile(const TDesC& aFileName)
   351 	{
   352 	TDblQueIter<CSession2> iter(iSessionIter);
   353 	iter.SetToFirst();
   354 
   355 	for (CSession2* session=iter++; session!=NULL; session=iter++)
   356 		{
   357 		static_cast<CBaServBackupSession*>(session)->SignalRetakeFileLocks(aFileName);
   358 		}
   359 	}
   360 
   361 /**
   362  *
   363  * Creates a server-side client <code>CBaServBackupSession</code> session object by checking first if
   364  * the version of the server is compatible with the client.
   365  *
   366  * @param     "const TVersion &aVersion"
   367  *            Version information supplied by the client.
   368  */
   369 EXPORT_C CSession2* CBaBackupServer::NewSessionL(const TVersion &aVersion, const RMessage2& /*aMessage*/) const
   370 	{
   371 	TVersion ver(KBakServMajorVN,KBakServMinorVN,KBakServBuildVN);
   372 	if (!User::QueryVersionSupported(ver,aVersion))
   373 		User::Leave(KErrNotSupported);
   374 //
   375 	return CBaServBackupSession::NewL();
   376 	}
   377 
   378 /**
   379  *
   380  * Signals to all clients the aBackupOperationAttributes.
   381  *
   382  * @param     "const TBackupOperationAttributes& aBackupOperationAttributes"
   383  *            Backup operation attributes.
   384  */
   385 EXPORT_C void CBaBackupServer::SignalBackupOperation(const TBackupOperationAttributes& aBackupOperationAttributes)
   386 	{
   387 	TDblQueIter<CSession2> iter(iSessionIter);
   388 	iter.SetToFirst();
   389 
   390 	for (CSession2* session=iter++; session!=NULL; session=iter++)
   391 		{
   392 		static_cast<CBaServBackupSession*>(session)->SignalBackupOperation(aBackupOperationAttributes);
   393 		}
   394 	// Cache session id if starting backup
   395 	if (aBackupOperationAttributes.iOperation == MBackupOperationObserver::EStart)
   396 			iExtension->iCachedBusyClientId = iExtension->iUniqueBusyClientId;
   397 	}
   398 
   399 void CBaBackupServer::AddSession()
   400 	{
   401 	iShutdown->Cancel();
   402 	++iSessionCount;
   403 	}
   404 
   405 void CBaBackupServer::DropSession()
   406 	{
   407 	if (--iSessionCount==0)
   408 		{
   409 		iShutdown->Start();
   410 		}
   411 	}
   412 
   413 /*
   414  * Check to see if a CloseAll opertation is in progress
   415  * 
   416  */
   417 TBool CBaBackupServer::IsCloseAllOperationRunning()
   418 	{
   419 	return iCloseAllOperationRunning;
   420 	}
   421 
   422 /*
   423  * Set value of IsCloseAllOperationRunning
   424  * 
   425  */
   426 EXPORT_C void CBaBackupServer::SetCloseAllOperationRunningState(TBool aRunning)
   427 	{
   428 	iCloseAllOperationRunning = aRunning;
   429 	}
   430 
   431 /**
   432  *
   433  * This timer will only be created in cases of no derived backup server
   434  *
   435  */
   436 void CBaBackupServer::StartCloseAllFilesOperationTimer(const RMessagePtr2& aPtr)
   437 	{
   438 	// Store the CloseAll message in case we need to Complete on a timeout
   439 	iCloseAllFilesOperationTimer->SetMessage(aPtr);
   440 	
   441 	// If hardware use patchable constant if not default to 3 seconds
   442 	iCloseAllFilesOperationTimer->Start(KBaBackupCloseallFilesTimeout, KBaBackupCloseallFilesTimeout, TCallBack(CBaBackupServer::CBaServCloseAllOperationTimer::OperationTimerCallBack, iCloseAllFilesOperationTimer));
   443 	}
   444 
   445 /**
   446  * Handle an error from CBaServBackupSession::ServiceL()
   447  * A bad descriptor error implies a badly programmed client, so panic it;
   448  * otherwise report the error to the client
   449  *
   450  * @param     "TInt aError"
   451  *            The error.
   452  */
   453 EXPORT_C TInt CBaBackupServer::RunError(TInt aError)
   454 	{
   455 	if (aError==KErrBadDescriptor)
   456 		{
   457 		PanicClient(Message(), EBufferOverflow);
   458 		}
   459 	else
   460 		{
   461 		Message().Complete(aError);
   462 		}
   463 	//
   464 	// The leave will result in an early return from CServer::RunL(), skipping
   465 	// the call to request another message. So do that now in order to keep the
   466 	// server running.
   467 	ReStart();
   468 	return KErrNone;	// handled the error fully
   469 	}
   470 
   471 //
   472 // class CBaBackupServer::CBaServCloseAllOperationTimer
   473 //
   474 
   475 /**
   476 @internalComponent
   477 */
   478 CBaBackupServer::CBaServCloseAllOperationTimer* CBaBackupServer::CBaServCloseAllOperationTimer::NewL(CBaBackupServer* aBackupServer)
   479 	{ // static
   480 	CBaBackupServer::CBaServCloseAllOperationTimer* self=new(ELeave) CBaBackupServer::CBaServCloseAllOperationTimer();
   481 	CleanupStack::PushL(self);
   482 	self->ConstructL(aBackupServer);
   483 	CleanupStack::Pop(); // self
   484 	CActiveScheduler::Add(self);
   485 	return self;
   486 	}
   487 
   488 /**
   489 @internalComponent
   490 */
   491 
   492 void CBaBackupServer::CBaServCloseAllOperationTimer::ConstructL(CBaBackupServer* aBackupServer)
   493 	{
   494 	CTimer::ConstructL();
   495 	iBackupServer = aBackupServer;
   496 	iOperationCount = 0;
   497 	}
   498 /**
   499 @internalComponent
   500 */
   501 
   502 TInt CBaBackupServer::CBaServCloseAllOperationTimer::GetOperationCount()
   503 {
   504 	return iOperationCount;	
   505 }
   506 
   507 /**
   508 @internalComponent
   509 */
   510 
   511 void CBaBackupServer::CBaServCloseAllOperationTimer::SetOperationCount(TInt aCount)
   512 {
   513 	iOperationCount = aCount;
   514 }
   515 
   516 /**
   517 @internalComponent
   518 */
   519 
   520 TInt CBaBackupServer::CBaServCloseAllOperationTimer::RunError(TInt aError)
   521 	{
   522 	if (aError==KLeaveWithoutAlert)
   523 		{
   524 		return KErrNone;
   525 		}
   526 	return aError;
   527 	}
   528 	
   529 /**
   530 @internalComponent
   531 */
   532 CBaBackupServer::CBaServCloseAllOperationTimer::CBaServCloseAllOperationTimer()
   533 	: CPeriodic(CActive::EPriorityStandard)
   534 	{ ;	}
   535 	
   536 /**
   537 @internalComponent
   538 */
   539 CBaBackupServer::CBaServCloseAllOperationTimer::~CBaServCloseAllOperationTimer()
   540 	{
   541 	if (IsActive())
   542 		Cancel();	
   543 	}
   544 
   545 /**
   546 @internalComponent
   547 */
   548 void CBaBackupServer::CBaServCloseAllOperationTimer::SetMessage(const RMessagePtr2& aPtr)
   549 	{
   550 	iCloseAllFilesMessage = aPtr;
   551 	}
   552 
   553 /**
   554 @internalComponent
   555 */
   556 RMessagePtr2 CBaBackupServer::CBaServCloseAllOperationTimer::Message()
   557 	{
   558 	return iCloseAllFilesMessage;
   559 	}
   560 	
   561 /**
   562 @internalComponent
   563 */
   564 TInt CBaBackupServer::CBaServCloseAllOperationTimer::OperationTimerCallBack(TAny* aPtr)
   565 	{ // static
   566 	TRAP_IGNORE(REINTERPRET_CAST(CBaBackupServer::CBaServCloseAllOperationTimer*,aPtr)->HandleOperationTimerCallBack());
   567 	return 0;
   568 	}
   569 
   570 /**
   571 @internalComponent
   572 */
   573 void CBaBackupServer::CBaServCloseAllOperationTimer::HandleOperationTimerCallBack()
   574 	{
   575 	TBool finished = iBackupServer->HaveAllCloseAllFilesClientsReRegistered();
   576 	TInt retCode;
   577 	if (finished || (iOperationCount == KBakServMaxOperationTimerLoops))
   578 		{
   579 		if (finished)
   580 			{
   581 			retCode = KErrNone;
   582 			}
   583 		else
   584 			{
   585 			retCode = KErrLocked;
   586 			}
   587 		
   588 		// One way or another CloseAll is finished at this point
   589 		iBackupServer->SetCloseAllOperationRunningState(EFalse);
   590 		
   591 		iCloseAllFilesMessage.Complete(retCode);
   592 		Cancel();
   593 		}
   594 	else
   595 		{
   596 		iOperationCount++;
   597 		if (IsActive())
   598 			{
   599 			Cancel();
   600 
   601 			// If hardware use patchable constant if not default to 3 seconds
   602 			Start(KBaBackupCloseallFilesTimeout, KBaBackupCloseallFilesTimeout, TCallBack(CBaBackupServer::CBaServCloseAllOperationTimer::OperationTimerCallBack,this));
   603 			}
   604 		}
   605 	}
   606 
   607 //
   608 // class CBaServBackupMessageQueue
   609 //
   610 
   611 inline CBaServBackupMessageQueue::TQueueItem::TQueueItem(HBufC* aFileName,TInt aOperation)
   612 	: iFileName(aFileName), iOperation(aOperation)
   613 	{}
   614 
   615 CBaServBackupMessageQueue* CBaServBackupMessageQueue::NewL()
   616 	{ // static
   617 	CBaServBackupMessageQueue* self=new(ELeave) CBaServBackupMessageQueue();
   618 	return self;
   619 	}
   620 
   621 CBaServBackupMessageQueue::~CBaServBackupMessageQueue()
   622 	{
   623 	const TInt count=iQueue.Count();
   624 	for (TInt ii=0;ii<count;ii++)
   625 		{
   626 		delete iQueue[ii].iFileName;
   627 		}
   628 	iQueue.Reset();
   629 	iQueue.Close();
   630 	}
   631 
   632 void CBaServBackupMessageQueue::AddItemL(const TDesC& aFileName,MBackupObserver::TFileLockFlags aFlag)
   633 	{
   634 	const TInt count=iQueue.Count();
   635 	for (TInt ii=0;ii<count;ii++)
   636 		{
   637 		TQueueItem& item=iQueue[ii];
   638 		if(aFileName.MatchF(*item.iFileName) == KErrNone)
   639 			{
   640 			if (item.iOperation==MBackupObserver::EReleaseLockReadOnly && aFlag==MBackupObserver::EReleaseLockNoAccess)
   641 				{
   642 				item.iOperation=MBackupObserver::EReleaseLockNoAccess;
   643 				}
   644 			else if (item.iOperation!=MBackupObserver::EReleaseLockNoAccess)
   645 				{
   646 				HBufC* file=aFileName.AllocLC();
   647 				TQueueItem item(file,aFlag);
   648 				User::LeaveIfError(iQueue.Insert(item,ii));
   649 				CleanupStack::Pop(); // file
   650 				}
   651 			return;
   652 			}
   653 		}
   654 	HBufC* file=aFileName.AllocLC();
   655 	HBufC* copy=aFileName.AllocLC();
   656 	TQueueItem item(file,aFlag);
   657 	User::LeaveIfError(iQueue.Append(item));
   658 	item=TQueueItem(copy,-1);
   659 	const TInt err=iQueue.Append(item);
   660 	if (err!=KErrNone)
   661 		{
   662 		iQueue.Remove(iQueue.Count()-1);
   663 		User::Leave(err);
   664 		}
   665 	CleanupStack::Pop(2); // copy, file
   666 	}
   667 
   668 void CBaServBackupMessageQueue::AddItem(const TDesC& aFileName)
   669 	{
   670 	const TInt count=iQueue.Count();
   671 	for (TInt ii=0;ii<count;ii++)
   672 		{
   673 		TQueueItem& item=iQueue[ii];
   674 		if (aFileName.MatchF(*item.iFileName) == KErrNone && item.iOperation==-1)
   675 			{
   676 			item.iOperation=0;
   677 			break;
   678 			}
   679 		}
   680 	}
   681 
   682 TBool CBaServBackupMessageQueue::IsEmpty() const
   683 	{
   684 	return HeadIndex()==KErrNotFound;
   685 	}
   686 
   687 void CBaServBackupMessageQueue::RemoveHead()
   688 	{
   689 	const TInt index=HeadIndex();
   690 	if (index!=KErrNotFound)
   691 		{
   692 		delete iQueue[index].iFileName;
   693 		iQueue.Remove(index);
   694 		iQueue.Compress();
   695 		}
   696 	}
   697 
   698 void CBaServBackupMessageQueue::RemoveItem(const TDesC& aFileName)
   699 	{
   700 	const TInt count=iQueue.Count();
   701 	for (TInt ii=count-1;ii>=0;ii--)
   702 		{
   703 		const TQueueItem& item=iQueue[ii];
   704 		if (aFileName.MatchF(*item.iFileName) == KErrNone)
   705 			{
   706 			delete item.iFileName;
   707 			iQueue.Remove(ii);
   708 			iQueue.Compress();
   709 			}
   710 		}
   711 	}
   712 
   713 void CBaServBackupMessageQueue::GetHead(TDes& aFileName,MBackupObserver::TFileLockFlags& aFlag) const
   714 	{
   715 	aFileName.Zero();
   716 	const TInt index=HeadIndex();
   717 	if (index!=KErrNotFound)
   718 		{
   719 		const TQueueItem& item=iQueue[index];
   720 		aFileName=item.iFileName->Des();
   721 		aFlag=(MBackupObserver::TFileLockFlags)item.iOperation;
   722 		}
   723 	}
   724 
   725 TInt CBaServBackupMessageQueue::HeadIndex() const
   726 	{
   727 	TInt index=KErrNotFound;
   728 	const TInt count=iQueue.Count();
   729 	for (TInt ii=0;ii<count;ii++)
   730 		{
   731 		const TQueueItem& item=iQueue[ii];
   732 		if (item.iOperation!=ENoOp)
   733 			{
   734 			index=ii;
   735 			break;
   736 			}
   737 		}
   738 	return index;
   739 	}
   740 
   741 //
   742 // class CBaServBackupSession
   743 //
   744 
   745 CBaServBackupSession* CBaServBackupSession::NewL()
   746 	{ // static
   747 	CBaServBackupSession* self=new(ELeave) CBaServBackupSession();
   748 	CleanupStack::PushL(self);
   749 	self->ConstructL();
   750 	CleanupStack::Pop(); // self
   751 	return self;
   752 	}
   753 
   754 /**
   755  *
   756  * Constructor.
   757  *
   758  * @param     "RThread aClient"
   759  *            The client thread for which this server-side client session is being constructed.
   760  */
   761 EXPORT_C CBaServBackupSession::CBaServBackupSession()
   762 	: CSession2()
   763 	{
   764 	iUniqueClientId = (TUint32)this;
   765 	}
   766 
   767 /**
   768  *
   769  * Destructor.
   770  *
   771  */
   772 EXPORT_C CBaServBackupSession::~CBaServBackupSession()
   773 	{
   774 	CBaBackupServer* server=BackupServer();
   775 	if (server->IsClientBusy(iUniqueClientId))
   776 		{
   777 		RestartAll();
   778 		if (server->IsBackupOperationRunning())
   779 			{
   780 			TBackupOperationAttributes backupOpAtt(MBackupObserver::ETakeLock, MBackupOperationObserver::EAbort);
   781 			server->SignalBackupOperation(backupOpAtt);
   782 			server->SetBackupOperationRunning(EFalse);
   783 			}
   784 		server->SetBusy(0);
   785 		}
   786 
   787 	if (iFileLockObservers)
   788 		{
   789 		server->DecrementRegisteredFilesCount(iFileLockObservers->Count());	
   790 		}
   791 
   792 	delete iClosedFiles;
   793 	delete iFileLockObservers;
   794 	delete iReleasedFiles;
   795 	delete iMessageQueue;
   796 	delete iReRegistrationTimer;
   797 	iReRegistrationTimer = 0;
   798 	server->DropSession();
   799 	}
   800 
   801 /**
   802  *
   803  * Completes the session construction by creating a <code>CBaServBackupMessageQueue</code> object.
   804  *
   805  */
   806 EXPORT_C void CBaServBackupSession::ConstructL()
   807 	{
   808 	iMessageQueue=CBaServBackupMessageQueue::NewL();
   809 
   810 	// Cannot set iBackupServer in CReRegistrationTimer at this point but must be done before call to Start
   811 	iReRegistrationTimer=CBaServBackupSession::CReRegistrationTimer::NewL(CActive::EPriorityStandard);
   812 	}
   813 
   814 /**
   815  *
   816  * Completes the construction of this <code>CBaServBackupSession</code> session by just doing a base call class.
   817  * It also notify the server that a new session has been created.
   818  *
   819  * @param		"const CServer& aServer"
   820  *				The server active object which is responsible for this session
   821  */
   822 EXPORT_C void CBaServBackupSession::CreateL()
   823 	{
   824 	BackupServer()->AddSession();
   825 	}
   826 
   827 void CBaServBackupSession::SignalReleaseAllFileLocksL(MBackupObserver::TFileLockFlags aFlag)
   828 	{
   829 	CBaBackupServer* server=BackupServer();
   830 	if (iFileLockObservers)
   831 		{
   832 		const TInt count=iFileLockObservers->Count();
   833 		for (TInt ii=0;ii<count;ii++)
   834 			{
   835 			TFileName name=(*iFileLockObservers)[ii];
   836 			server->CloseFileL(aFlag,name);
   837 			}
   838 		}
   839 	}
   840 
   841 void CBaServBackupSession::SignalRetakeAllFileLocks()
   842 	{
   843 //	CBaBackupServer* server=BackupServer();
   844 	if (iReleasedFiles)
   845 		{
   846 		const TInt count=iReleasedFiles->Count();
   847 		for (TInt ii=count-1;ii>=0;ii--)
   848 			{
   849 			TFileName name=(*iReleasedFiles)[ii];
   850 //			server->RestartFile(name);
   851 			SignalRetakeFileLocks(name);
   852 			}
   853 		}
   854 	}
   855 
   856 LOCAL_C void CleanupCloseFail(TAny* aPtr)
   857 	{
   858 	CDesCArray* array=REINTERPRET_CAST(CDesCArray*,aPtr);
   859 	array->Delete(array->Count()-1);
   860 	}
   861 
   862 void CBaServBackupSession::SignalReleaseFileLockL(MBackupObserver::TFileLockFlags aFlag,const TDesC& aFileName)
   863 	{
   864 	TInt pos;
   865 	if (iFileLockObservers && iFileLockObservers->Find(aFileName,pos)==KErrNone)
   866 		{
   867 		if (iReleasedFiles==NULL)
   868 			{
   869 			iReleasedFiles=new(ELeave) CDesCArraySeg(1);
   870 			}
   871 		const TBool addedReleasedFile=iReleasedFiles->Find(aFileName,pos)!=KErrNone;
   872 		if (addedReleasedFile)
   873 			{
   874 			iReleasedFiles->AppendL(aFileName);
   875 			CleanupStack::PushL(TCleanupItem(CleanupCloseFail,iReleasedFiles));
   876 			}
   877 		iMessageQueue->AddItemL(aFileName,aFlag);
   878 		if (!iNotificationPullMsg.IsNull())
   879   			{
   880   			iNotificationPullMsg.Complete(KErrNone);
   881 
   882   			// Okay - if this is part of a CloseAll operation we need to kick off a ReRegistration timer
   883   			if (BackupServer()->IsCloseAllOperationRunning())
   884   				{
   885   				// Set backup server for the timer
   886   				iReRegistrationTimer->iBackupServer = BackupServer();
   887 
   888   				// If hardware use patchable constant if not default to 3 seconds
   889   				iReRegistrationTimer->Start(KBaBackupFileLockReRegistrationTimeout, KBaBackupFileLockReRegistrationTimeout, TCallBack(CBaServBackupSession::CReRegistrationTimer::ReRegistrationTimerCallBack, iReRegistrationTimer));  				
   890   				}
   891 
   892   			}
   893 		if (addedReleasedFile)
   894 			{
   895 			CleanupStack::Pop(); // CleanupCloseFail
   896 			}
   897 		}
   898 	}
   899 
   900 void CBaServBackupSession::SignalRetakeFileLocks(const TDesC& aFileName)
   901 	{
   902 	if (iReleasedFiles)
   903 		{
   904 		const TInt count=iReleasedFiles->Count();
   905 		for (TInt ii=count-1;ii>=0;ii--)
   906 			{
   907 			TFileName name=(*iReleasedFiles)[ii];
   908 			if (name.MatchF(aFileName)==0)
   909 				{
   910 				iMessageQueue->AddItem(aFileName);
   911 				if (!iNotificationPullMsg.IsNull())
   912   					{
   913   					iNotificationPullMsg.Complete(KErrNone);
   914   					}
   915 				iReleasedFiles->Delete(ii);
   916 				}
   917 			}
   918 		if (iReleasedFiles->Count()==0)
   919 			{
   920 			delete iReleasedFiles;
   921 			iReleasedFiles=NULL;
   922 			if (iClosedFiles==NULL && BackupServer()->IsClientBusy(iUniqueClientId))
   923 				{
   924 				BackupServer()->SetBusy(0);
   925 				}
   926 			}
   927 		}
   928 	}
   929 
   930 /**
   931  *
   932  * Allows the session to handle the error.
   933  *
   934  * @param		"TInt aError"
   935  *				The error.
   936  */
   937 EXPORT_C void CBaServBackupSession::HandleError(TInt aError)
   938 	{
   939 	if (aError==KLeaveWithoutAlert)
   940 		{
   941 		CBaServBackupScheduler::Current()->SetErrorHandler(NULL);
   942 		}
   943 	}
   944 
   945 void CBaServBackupSession::DoServiceL(TCompletionType& aCompleteType)
   946 	{
   947 	switch (iClientMessage->Function())
   948 		{
   949 	case EBakOpCodeEventReady:
   950 		{
   951 		HandleEventReadyL();
   952 		aCompleteType = ECompleteAsync;
   953 		}
   954 		break;
   955 	case EBakOpCodeStopNotifications:
   956 		{
   957 		StopNotifications();
   958 		}
   959 		break;
   960 	case EBakOpCodeGetEvent:
   961 		GetEventL();
   962 		break;
   963 	case EBakOpCodeCloseAllFiles:
   964 		{
   965 		aCompleteType = CloseAllFilesL(iClientMessage->Message());
   966 		}
   967 		break;
   968 	case EBakOpCodeRestartAll:
   969 		RestartAll();
   970 		break;
   971 	case EBakOpCodeCloseFile:
   972 		CloseFileL();
   973 		break;
   974 	case EBakOpCodeRestartFile:
   975 		RestartFileL();
   976 		break;
   977 	case EBakOpCodeNotifyLockChange:
   978 		NotifyLockChangeL();
   979 		break;
   980 	case EBakOpCodeNotifyLockChangeCancel:
   981 		NotifyLockChangeCancelL();
   982 		break;
   983 	case EBakOpCodeNotifyBackupOperation:
   984 		NotifyBackupOperationL();
   985 		break;
   986 	case EBakOpCodeCancelOutstandingBackupOperationEvent:
   987 		{
   988 		iBackupOperationObserverPresent = EFalse;
   989 		if (!iBackupOperationMessagePtr.IsNull())
   990 			{
   991 			GetBackupOperationEventL(iBackupOperationMessagePtr);
   992 			iBackupOperationMessagePtr.Complete(KErrCancel);
   993 			}
   994 		}
   995 		break;
   996 	case EBakOpCodeGetBackupOperationState:
   997 		GetBackupOperationStateL();
   998 		break;
   999 	case EBakOpCodeBackupOperationEventReady:
  1000 		BackupOperationEventReadyL();
  1001 		aCompleteType = ECompleteAsync;
  1002 		break;
  1003 	case EBakOpCodeGetBackupOperationEvent:
  1004 		GetBackupOperationEventL(iClientMessage->Message());
  1005 		break;
  1006 	case EBakOpCodeSetBackupOperationObserverIsPresent:
  1007 		{
  1008 		iBackupOperationObserverPresent = iClientMessage->GetIntL(0);
  1009 		}
  1010 		break;
  1011 	default:
  1012 		User::Leave(KErrNotSupported);
  1013 		break;
  1014 		}
  1015 	}
  1016 
  1017 
  1018 /**
  1019  *
  1020  * Handles the servicing of client requests passed to the backup server.
  1021  *
  1022  * @param		"const RMessage& aMessage"
  1023  *				The message containing the client request.
  1024  */
  1025 EXPORT_C void CBaServBackupSession::ServiceL(const RMessage2& aMessage)
  1026 	{
  1027 	
  1028 	TCompletionType completionType = ECompleteSync;
  1029 	
  1030 	BSUL::CClientMessage* clientMessage = 0;
  1031 	clientMessage = BSUL::CClientMessage::NewL(aMessage);
  1032 	
  1033 	//Push iClientMessage onto the cleanupstack. Although an instance variable, 
  1034 	//the lifetime of the object is contained to this function so it needs to
  1035 	//be pushed and popped here as it is not deleted in the destructor
  1036 	CleanupStack::PushL(clientMessage);
  1037 	
  1038 	//Validate the message
  1039 	TRAPD(error, clientMessage->ValidateL());
  1040 	
  1041 	iClientMessage = clientMessage;
  1042 	
  1043 	if(error == KErrNone)	
  1044 		{
  1045 		TRAP(error, DoServiceL(completionType));
  1046 		}
  1047 	
  1048 	if(completionType == ECompleteSync)
  1049 		{
  1050 		if (error==KLeaveWithoutAlert)
  1051 			{
  1052 			CBaServBackupScheduler::Current()->SetErrorHandler(NULL);
  1053 			}
  1054 		else
  1055 			{
  1056 			iClientMessage->CompleteRequestL(error);
  1057 			}
  1058 		}
  1059 	
  1060 	//Pop and destroy message
  1061 	CleanupStack::PopAndDestroy(clientMessage);
  1062 	clientMessage = NULL;
  1063 	iClientMessage = NULL;
  1064 	}
  1065 
  1066 void CBaServBackupSession::HandleEventReadyL()
  1067 	{
  1068 	if (iReRegistrationTimer->IsActive())
  1069 		{ // If timer is still active (ie not timed out) we need to increment the counter and cancel the timer
  1070 		BackupServer()->IncrementFilesReRegistrationCount();	
  1071 		iReRegistrationTimer->Cancel();
  1072 		}
  1073 		// else timer is already inactive because it's expired
  1074 	
  1075 	if (iMessageQueue->IsEmpty())
  1076 		{
  1077 		iNotificationPullMsg = iClientMessage->Message();
  1078 		}	
  1079 	else
  1080 		{
  1081 		iClientMessage->CompleteRequestL(KErrNone);
  1082 		}
  1083 	}
  1084 
  1085 const TInt KEventFileNameOffset=1;
  1086 
  1087 void CBaServBackupSession::GetEventL()
  1088 	{
  1089 	TFileName fileName;
  1090 	MBackupObserver::TFileLockFlags fileFlag;
  1091 	if(!iMessageQueue->IsEmpty())
  1092 		{
  1093 		iMessageQueue->GetHead(fileName,fileFlag);
  1094 		TBuf<KEventFileNameOffset> num;
  1095 		num.Num((TInt)fileFlag);
  1096 		
  1097 		iClientMessage->WriteL(0,num,0);
  1098 		
  1099 		iClientMessage->WriteL(0,fileName,KEventFileNameOffset);
  1100 	
  1101 		iMessageQueue->RemoveHead();	
  1102 		}
  1103 	else
  1104 		{
  1105 		iClientMessage->PanicClient(KPanic,ENoEventToFetch);
  1106 		User::Leave(KLeaveWithoutAlert);
  1107 		}
  1108 	}
  1109 
  1110 void CBaServBackupSession::CleanupCloseAllFiles(TAny* aPtr)
  1111 	{ // static
  1112 	CBaServBackupSession* self=REINTERPRET_CAST(CBaServBackupSession*,aPtr);
  1113 	delete self->iClosedFiles;
  1114 	self->iClosedFiles=NULL;
  1115 	self->BackupServer()->RestartAll();
  1116 	}
  1117 
  1118 /**
  1119  Asks the server to close all files. This function may leave in case the server is busy.
  1120  If the requesting client is the current busy client and it has already requested CloseAll,
  1121  this request will be ignored.
  1122  
  1123  @param	aMessage The reference to the message containing the client request: file lock.
  1124  @leave KErrServerBusy if the requesting client is not the busy client. Plus other system-wide 
  1125  errors.
  1126  */
  1127 EXPORT_C TCompletionType CBaServBackupSession::CloseAllFilesL(const RMessage2& aMessage)
  1128 	{
  1129 	// Raise file lock notifications
  1130 	TRAPD(err,DoCloseAllFilesL(aMessage));
  1131 	
  1132 	if (err == KErrNone)
  1133 		{
  1134 		// Start timer to check all file locks re-registered before completing message
  1135 		BackupServer()->StartCloseAllFilesOperationTimer(aMessage);
  1136 		}
  1137 	else
  1138 		{
  1139 		// If the error is that the same client has already requested CloseAll, ignore this request
  1140 		// If not this error, recover the CloseAllOperationRunningState flag and leave with the error.
  1141 		if (err != KErrAlreadyExists) 
  1142 			{
  1143 			BackupServer()->SetCloseAllOperationRunningState(EFalse);
  1144 			User::Leave(err);
  1145 			}
  1146 		}
  1147 
  1148 	return ECompleteAsync;
  1149 	}
  1150 
  1151 void CBaBackupServer::IncrementRegisteredFilesCount()
  1152 	{
  1153 	iRegisteredFilesCount++;
  1154 	}
  1155 
  1156 void CBaBackupServer::DecrementRegisteredFilesCount(TInt aNumberFiles)
  1157 	{
  1158 	iRegisteredFilesCount = iRegisteredFilesCount - aNumberFiles;
  1159 	}
  1160 
  1161 void CBaBackupServer::IncrementFilesReRegistrationCount()
  1162 	{
  1163 	iSessionLockReRegistrationCount++;
  1164 	}
  1165 
  1166 /**
  1167  Function called by both base and derived backup sessions in order to start asynchronous 
  1168  file lock notifications.
  1169  The requesting client is set to the current busy client.
  1170  
  1171  @leave KErrServerBusy if the requesting client is not the current busy client or the server
  1172  is under CloseAll operation. KErrAlreadyExists if the same client has sent CloseAll request.
  1173  Plus other system-wide errors.
  1174  */
  1175  
  1176 EXPORT_C TCompletionType CBaServBackupSession::DoCloseAllFilesL(const RMessage2& /*aMessage*/)
  1177 	{
  1178 	CBaBackupServer* server=BackupServer();
  1179 	if (server->IsOtherClientBusy(iUniqueClientId))
  1180 		{
  1181 		User::Leave(KErrServerBusy);
  1182 		}
  1183 		
  1184 	if (BackupServer()->IsCloseAllOperationRunning())
  1185 		{
  1186 		User::Leave(KErrAlreadyExists);
  1187 		}		
  1188 		
  1189 	CleanupStack::PushL(TCleanupItem(CleanupCloseAllFiles,this));
  1190 	if (iClosedFiles)
  1191 		{
  1192 		delete iClosedFiles;
  1193 		iClosedFiles=NULL;
  1194 		}
  1195 	server->SetBusy(iUniqueClientId);
  1196 	
  1197 	MBackupObserver::TFileLockFlags fileFlag=
  1198 		(MBackupObserver::TFileLockFlags)iClientMessage->GetIntL(0);
  1199 	server->CloseAllFilesL(fileFlag);
  1200 	
  1201 	iClosedFiles=new(ELeave) CArrayFixSeg<CBaServBackupSession::TClosedFile>(1);
  1202 	CBaServBackupScheduler::Current()->SetErrorHandler(this);
  1203 	CleanupStack::Pop(); // CleanupCloseAllFiles
  1204 	return ECompleteAsync;
  1205 	}
  1206 
  1207 /**
  1208  *
  1209  * Asks the server to signal all clients of getting the lock of their respective files.
  1210  *
  1211  */
  1212 EXPORT_C void CBaServBackupSession::RestartAll()
  1213 	{
  1214 	CBaBackupServer* server=BackupServer();	
  1215 	if (server->IsClientBusy(iUniqueClientId))
  1216 		{
  1217 		DoRestartAll();
  1218 		}
  1219 	}
  1220 
  1221 void CBaServBackupSession::DoRestartAll()
  1222 	{
  1223 	CBaBackupServer* server=BackupServer();	
  1224 	server->RestartAll();
  1225 	delete iReleasedFiles;
  1226 	iReleasedFiles=NULL;
  1227 	if (iClosedFiles)
  1228 		{
  1229 		CArrayFix<CBaServBackupSession::TClosedFile>* closedFiles=iClosedFiles;
  1230 		iClosedFiles=NULL;
  1231 		server->CompleteClosingFiles(closedFiles); // takes ownership of closedFiles immediately
  1232 		}
  1233 	}
  1234 
  1235 /**
  1236 Handle the client's request to close a file.
  1237 The request will be ignored if the requesting client the current busy client and the server is
  1238 under CloseAll operation.
  1239 
  1240 @leave KErrServerBusy if the server is busy with the other client, plus other system-wide errors.
  1241 */
  1242 void CBaServBackupSession::CloseFileL()
  1243 	{
  1244 	CBaBackupServer* server=BackupServer();
  1245 	if (server->IsOtherClientBusy(iUniqueClientId))
  1246 		{
  1247 		User::Leave(KErrServerBusy);
  1248 		}
  1249 
  1250 	if (! server->IsCloseAllOperationRunning())
  1251 		{
  1252 		MBackupObserver::TFileLockFlags flag=
  1253 			static_cast<MBackupObserver::TFileLockFlags>(iClientMessage->GetIntL(2));
  1254 		TFileName fileName;
  1255 		GetFileNameL(fileName);
  1256 		server->SetBusy(iUniqueClientId);
  1257 		server->CloseFileL(flag,fileName);
  1258 		}
  1259 	}
  1260 
  1261 void CBaServBackupSession::RestartFileL()
  1262 	{
  1263 	TFileName fileName;
  1264 	GetFileNameL(fileName);
  1265 	BackupServer()->RestartFile(fileName);
  1266 	}
  1267 
  1268 /**
  1269 Handles the client's request of notification of a file lock change.
  1270   
  1271 @leave KErrServerBusy if the server is under CloseAll operation, KLeaveWithoutAlert if the requested 
  1272  file has been registered. Plus other system-wide errors.
  1273 */
  1274 void CBaServBackupSession::NotifyLockChangeL()
  1275 	{
  1276 	if(BackupServer()->IsCloseAllOperationRunning())
  1277 		{
  1278 		User::Leave(KErrServerBusy);
  1279 		}
  1280 		
  1281 	TFileName fileName;
  1282 	GetFileNameL(fileName);
  1283 	if (iFileLockObservers==NULL)
  1284 		{
  1285 		iFileLockObservers=new(ELeave) CDesCArraySeg(1);
  1286 		}
  1287 	else
  1288 		{
  1289 		TInt pos;
  1290 		if(iFileLockObservers->Find(fileName,pos)== KErrNone)
  1291 			{
  1292 			iClientMessage->PanicClient(KPanic,EReqAlreadyOutstanding);
  1293 			User::Leave(KLeaveWithoutAlert);
  1294 			}		
  1295 		}
  1296 	iFileLockObservers->AppendL(fileName);
  1297 	BackupServer()->IncrementRegisteredFilesCount();
  1298 	}
  1299 
  1300 LOCAL_C void RemoveFileName(CDesCArray& aArray,const TDesC& aFileName)
  1301 	{
  1302 	TInt pos;
  1303 	if (aArray.Find(aFileName,pos)==KErrNone)
  1304 		{
  1305 		aArray.Delete(pos);
  1306 		}
  1307 	}
  1308 
  1309 void CBaServBackupSession::NotifyLockChangeCancelL()
  1310 	{
  1311 	TFileName fileName;
  1312 	GetFileNameL(fileName);
  1313 	if (iFileLockObservers)
  1314 		{
  1315 		RemoveFileName(*iFileLockObservers,fileName);
  1316 		BackupServer()->DecrementRegisteredFilesCount();
  1317 		}
  1318 	if (iReleasedFiles)
  1319 		{
  1320 		RemoveFileName(*iReleasedFiles,fileName);
  1321 		}
  1322 	iMessageQueue->RemoveItem(fileName);
  1323   	}
  1324 
  1325 void CBaServBackupSession::GetFileNameL(TDes& aFileName)
  1326 	{
  1327 	//The verification of this parameter has already been handled
  1328 	//by the CClientMessage class so we can safely read the value
  1329 	iClientMessage->ReadL(1,aFileName);
  1330 	}
  1331 
  1332 
  1333 void CBaServBackupSession::GetBackupOperationEventL(const RMessagePtr2& aPtr)
  1334 	{
  1335 	TPckg<TBackupOperationAttributes> backupOpAttPkg(iBackupOperationAttributes);
  1336 	
  1337 	aPtr.WriteL(0, backupOpAttPkg);
  1338 	}
  1339 
  1340 void CBaServBackupSession::BackupOperationEventReadyL()
  1341 	{
  1342 	if (iBackupOperationObserverPresent)
  1343 		{
  1344 		iBackupOperationMessagePtr = iClientMessage->Message();
  1345 		}
  1346 	else
  1347 		{
  1348 		iClientMessage->CompleteRequestL(KErrNone);
  1349 		}
  1350 	}
  1351 
  1352 void CBaServBackupSession::NotifyBackupOperationL()
  1353 	{
  1354 	CBaBackupServer* server=BackupServer();
  1355 	if (server->CBaBackupServer::IsOtherClientBusy(iUniqueClientId))
  1356 		{
  1357 		User::Leave(KErrServerBusy);
  1358 		}
  1359 	TPckg<TBackupOperationAttributes> backupOpAttPkg(iBackupOperationAttributes);
  1360 	
  1361 	iClientMessage->ReadL(0,backupOpAttPkg);
  1362 
  1363 	const TBool backupOperationRunning = ((iBackupOperationAttributes.iOperation==MBackupOperationObserver::EStart) ? ETrue : EFalse);
  1364 	server->SetBackupOperationRunning(backupOperationRunning);
  1365 	server->SetBusy(backupOperationRunning ? iUniqueClientId : 0);
  1366 	server->SignalBackupOperation(iBackupOperationAttributes);
  1367 	if (!iBackupOperationMessagePtr.IsNull())
  1368 		{
  1369 		GetBackupOperationEventL(iBackupOperationMessagePtr);
  1370 		iBackupOperationMessagePtr.Complete(KErrCancel);
  1371 		}
  1372 	}
  1373 
  1374 void CBaServBackupSession::GetBackupOperationStateL()
  1375 	{
  1376 	const TBool isRunning = BackupServer()->IsBackupOperationRunning();
  1377 	TPckgC<TBool> pkgObs(isRunning);
  1378 
  1379 	iClientMessage->WriteL(0, pkgObs);
  1380 	}
  1381 
  1382 void CBaServBackupSession::SignalBackupOperation(const TBackupOperationAttributes& aBackupOperationAttributes)
  1383 	{
  1384 	iBackupOperationAttributes = aBackupOperationAttributes;
  1385 	if (!iBackupOperationMessagePtr.IsNull())
  1386 		{
  1387 		TRAPD(err,GetBackupOperationEventL(iBackupOperationMessagePtr));
  1388 		iBackupOperationMessagePtr.Complete(err);
  1389 		}
  1390 	}
  1391 
  1392 void CBaServBackupSession::StopNotifications()
  1393 	{
  1394 		if(!iNotificationPullMsg.IsNull())
  1395 		{// complete the registration message
  1396 		iNotificationPullMsg.Complete(KErrNone);
  1397 		}
  1398 	}
  1399 
  1400 /**
  1401 @internalComponent
  1402 */
  1403 CBaServBackupSession::CReRegistrationTimer* CBaServBackupSession::CReRegistrationTimer::NewL(TInt aPriority)
  1404 	{ // static
  1405 	CBaServBackupSession::CReRegistrationTimer* self=new(ELeave) CBaServBackupSession::CReRegistrationTimer(aPriority);
  1406 	CleanupStack::PushL(self);
  1407 	self->ConstructL();
  1408 	CleanupStack::Pop(); // self
  1409 	CActiveScheduler::Add(self);
  1410 	return self;
  1411 	}
  1412 
  1413 /**
  1414 @internalComponent
  1415 */
  1416 TInt CBaServBackupSession::CReRegistrationTimer::RunError(TInt aError)
  1417 	{
  1418 	if (aError==KLeaveWithoutAlert)
  1419 		{
  1420 		return KErrNone;
  1421 		}
  1422 	return aError;
  1423 	}
  1424 	
  1425 /**
  1426 @internalComponent
  1427 */
  1428 CBaServBackupSession::CReRegistrationTimer::CReRegistrationTimer(TInt aPriority)
  1429 	: CPeriodic(aPriority)
  1430 	{ }
  1431 	
  1432 /**
  1433 @internalComponent
  1434 */
  1435 TInt CBaServBackupSession::CReRegistrationTimer::ReRegistrationTimerCallBack(TAny* aPtr)
  1436 	{ // static
  1437 	TRAP_IGNORE(REINTERPRET_CAST(CBaServBackupSession::CReRegistrationTimer*,aPtr)->HandleReRegistrationTimerCallBack());
  1438 	return 0;
  1439 	}
  1440 
  1441 /**
  1442 @internalComponent
  1443 */
  1444 void CBaServBackupSession::CReRegistrationTimer::HandleReRegistrationTimerCallBack()
  1445 	{
  1446 	iBackupServer->IncrementFilesReRegistrationCount();
  1447 	
  1448 	if (IsActive())
  1449 		{
  1450 		Cancel();
  1451 		}
  1452 	}
  1453