sl@0
|
1 |
/**
|
sl@0
|
2 |
* Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
3 |
* All rights reserved.
|
sl@0
|
4 |
* This component and the accompanying materials are made available
|
sl@0
|
5 |
* under the terms of "Eclipse Public License v1.0"
|
sl@0
|
6 |
* which accompanies this distribution, and is available
|
sl@0
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* Initial Contributors:
|
sl@0
|
10 |
* Nokia Corporation - initial contribution.
|
sl@0
|
11 |
*
|
sl@0
|
12 |
* Contributors:
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* Description:
|
sl@0
|
15 |
* Declaration of Types and Constants for Secure Backup and Restore
|
sl@0
|
16 |
*
|
sl@0
|
17 |
*
|
sl@0
|
18 |
*/
|
sl@0
|
19 |
|
sl@0
|
20 |
|
sl@0
|
21 |
|
sl@0
|
22 |
/**
|
sl@0
|
23 |
@file
|
sl@0
|
24 |
*/
|
sl@0
|
25 |
#ifndef __SBDEFS_H__
|
sl@0
|
26 |
#define __SBDEFS_H__
|
sl@0
|
27 |
|
sl@0
|
28 |
#include <e32std.h>
|
sl@0
|
29 |
#include <f32file.h>
|
sl@0
|
30 |
|
sl@0
|
31 |
namespace conn
|
sl@0
|
32 |
{
|
sl@0
|
33 |
/** Secure Backup and Restore publish and subscribe key
|
sl@0
|
34 |
|
sl@0
|
35 |
Secure Backup and Restore uses a Publish and Subscribe key to publish
|
sl@0
|
36 |
the current backup / restore state.
|
sl@0
|
37 |
|
sl@0
|
38 |
The key is a system key so the category to be used when subscribing is KUidSystemCategoryValue
|
sl@0
|
39 |
The key to be used is KUidBackupRestoreKey.
|
sl@0
|
40 |
The value is a bit-wise OR of a TBURPartType value and a TBackupIncType value
|
sl@0
|
41 |
This means that a normal state (i.e. non-backup or restore) is EBURNormal | ENoBackup but
|
sl@0
|
42 |
If the key has not been set (i.e. == 0) then no backup or restore is in progress either
|
sl@0
|
43 |
|
sl@0
|
44 |
@released
|
sl@0
|
45 |
@publishedAll
|
sl@0
|
46 |
*/
|
sl@0
|
47 |
const TUint KUidBackupRestoreKey = 0x10202792 ;
|
sl@0
|
48 |
|
sl@0
|
49 |
|
sl@0
|
50 |
/** TBURPartType Bitmask
|
sl@0
|
51 |
@released
|
sl@0
|
52 |
@publishedAll
|
sl@0
|
53 |
*/
|
sl@0
|
54 |
const TUint KBURPartTypeMask = 0xff;
|
sl@0
|
55 |
|
sl@0
|
56 |
enum TBURPartType
|
sl@0
|
57 |
/**
|
sl@0
|
58 |
The backup / restore state of a device.
|
sl@0
|
59 |
|
sl@0
|
60 |
@released
|
sl@0
|
61 |
@publishedAll
|
sl@0
|
62 |
*/
|
sl@0
|
63 |
{
|
sl@0
|
64 |
EBURUnset = 0x00000000, /*!< 0x00000000: The backup / restore mode has not been set */
|
sl@0
|
65 |
EBURNormal = 0x00000001, /*!< 0x00000001: The device as a whole is not engaged in a backup or restore */
|
sl@0
|
66 |
EBURBackupFull = 0x00000002, /*!< 0x00000002: The device as a whole is engaged in a backup of all components data */
|
sl@0
|
67 |
EBURBackupPartial = 0x00000004, /*!< 0x00000004: The device as a whole is engaged in a backup of selected components data */
|
sl@0
|
68 |
EBURRestoreFull = 0x00000008, /*!< 0x00000008: The device as a whole is engaged in a restore of all components data */
|
sl@0
|
69 |
EBURRestorePartial = 0x00000010 /*!< 0x00000010: The device as a whole is engaged in a restore of all components data */
|
sl@0
|
70 |
};
|
sl@0
|
71 |
|
sl@0
|
72 |
/** TBackupIncType Bitmask
|
sl@0
|
73 |
@released
|
sl@0
|
74 |
@publishedAll
|
sl@0
|
75 |
*/
|
sl@0
|
76 |
const TUint KBackupIncTypeMask = 0xffffff00;
|
sl@0
|
77 |
|
sl@0
|
78 |
enum TBackupIncType
|
sl@0
|
79 |
/**
|
sl@0
|
80 |
The type of a backup.
|
sl@0
|
81 |
|
sl@0
|
82 |
@released
|
sl@0
|
83 |
@publishedAll
|
sl@0
|
84 |
*/
|
sl@0
|
85 |
{
|
sl@0
|
86 |
ENoBackup = 0x00000000, /*!< 0x00000000: No backup is in progress */
|
sl@0
|
87 |
EBackupBase = 0x00000100, /*!< 0x00000100: The backup is a base backup, i.e. it includes all files / data */
|
sl@0
|
88 |
EBackupIncrement = 0x00000200 /*!< 0x00000200: The backup is an incremental backup, i.e. it includes only files / data that have changed since a previous backup */
|
sl@0
|
89 |
};
|
sl@0
|
90 |
|
sl@0
|
91 |
} // end namespace
|
sl@0
|
92 |
#endif
|