Update contrib.
1 // Copyright (c) 2010 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.
22 #include "t_fmgrbursim.h"
23 #include "t_fmgrburdefs.h"
25 CFeatMgrBURSim* CFeatMgrBURSim::NewLC()
27 CFeatMgrBURSim* newInstance = new (ELeave) CFeatMgrBURSim();
28 CleanupStack::PushL( newInstance );
29 newInstance->ConstructL();
33 void CFeatMgrBURSim::ConstructL()
35 iBackupClient = CBaBackupSessionWrapper::NewL();
38 CFeatMgrBURSim::CFeatMgrBURSim()
42 CFeatMgrBURSim::~CFeatMgrBURSim()
47 // BUR simulation functions
50 * Use the babackup API to "start" a backup.
51 * Ultimate effect is to cause the correct case statement inside
52 * ChangeFileLockL to be called.
54 void CFeatMgrBURSim::Simulate_StartBackupL()
56 iBackupClient->CloseFileL( KEfmBackupFileName, MBackupObserver::EReleaseLockReadOnly );
58 // Set BUR property to trigger
59 TInt ret = RProperty::Set(KTestUid , conn::KUidBackupRestoreKey, conn::EBackupBase|conn::EBURBackupPartial);
60 if (ret != KErrNone && ret != KErrNotFound)
65 // allow observers to be notified
71 * Use the babackup API to "end" a backup.
72 * Ultimate effect is to cause the correct case statement inside
73 * ChangeFileLockL to be called.
75 void CFeatMgrBURSim::Simulate_EndBackupL( TBool /* aNormal */ )
77 iBackupClient->CloseFileL( KEfmBackupFileName, MBackupObserver::ETakeLock );
79 // allow observers to be notified
86 * Use the babackup API to "start" a restore.
87 * Ultimate effect is to cause the correct case statement inside
88 * ChangeFileLockL to be called.
90 void CFeatMgrBURSim::Simulate_StartRestoreL()
92 iBackupClient->CloseFileL( KEfmBackupFileName, MBackupObserver::EReleaseLockNoAccess );
94 // Set BUR property to trigger
95 TInt ret = RProperty::Set(KTestUid , conn::KUidBackupRestoreKey, conn::EBackupBase|conn::EBURRestorePartial);
96 if (ret != KErrNone && ret != KErrNotFound)
101 // allow observers to be notified
107 * Use the babackup API to "end" a restore.
108 * Ultimate effect is to cause the correct case statement inside
109 * ChangeFileLockL to be called.
111 void CFeatMgrBURSim::Simulate_EndRestoreL( TBool /* aNormal */ )
113 iBackupClient->CloseFileL( KEfmBackupFileName, MBackupObserver::ETakeLock );
115 // allow observers to be notified
125 void CFeatMgrBURSim::Simulate_StartUndefinedL()
127 // Use the babackup API to "start" (neither a backup or restore explicitly).
128 // Ultimate effect is to cause the correct case statement inside
129 // CFeatMgrFeatureRegistry::HandleBackupOperationEventL
131 User::Leave( KErrNotSupported );
135 void CFeatMgrBURSim::Simulate_EndUndefinedL( TBool /* aNormal */ )
137 // Use the babackup API to "end" (neither a backup or restore explicitly).
138 // Ultimate effect is to cause the correct case statement inside
139 // CFeatMgrFeatureRegistry::HandleBackupOperationEventL
141 User::Leave( KErrNotSupported );
146 * Open the babackup file to confirm that the file is present
147 * this leaves if the KErrNotFound is returned
149 void CFeatMgrBURSim::Simulate_CheckRegFileL()
152 User::LeaveIfError(fs.Connect());
153 CleanupClosePushL(fs);
155 TInt err = file.Open(fs, KRegistrationFile, EFileRead);
157 if( err != KErrNone )
163 CleanupStack::PopAndDestroy(&fs);