sl@0
|
1 |
// Copyright (c) 2007-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 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
#include "rstrepos.h"
|
sl@0
|
17 |
|
sl@0
|
18 |
/**
|
sl@0
|
19 |
Constructor.
|
sl@0
|
20 |
Constructs the object of this class with the specified uid.
|
sl@0
|
21 |
|
sl@0
|
22 |
@param aUid The uid of the repository which is to be restored
|
sl@0
|
23 |
*/
|
sl@0
|
24 |
CRestoredRepository::CRestoredRepository(TUid aUid) :
|
sl@0
|
25 |
iReposUid(aUid), iChangedKeys()
|
sl@0
|
26 |
{
|
sl@0
|
27 |
}
|
sl@0
|
28 |
|
sl@0
|
29 |
/**
|
sl@0
|
30 |
Destructor.
|
sl@0
|
31 |
Closes the array of the changed keys.
|
sl@0
|
32 |
*/
|
sl@0
|
33 |
CRestoredRepository::~CRestoredRepository()
|
sl@0
|
34 |
{
|
sl@0
|
35 |
iChangedKeys.Close();
|
sl@0
|
36 |
}
|
sl@0
|
37 |
|
sl@0
|
38 |
/**
|
sl@0
|
39 |
Get the uid of the repository represented by this class.
|
sl@0
|
40 |
|
sl@0
|
41 |
@return the uid of the repository represented by this class.
|
sl@0
|
42 |
*/
|
sl@0
|
43 |
TUid CRestoredRepository::Uid() const
|
sl@0
|
44 |
{
|
sl@0
|
45 |
return iReposUid;
|
sl@0
|
46 |
}
|
sl@0
|
47 |
|
sl@0
|
48 |
|
sl@0
|
49 |
/**
|
sl@0
|
50 |
Gets the reference of the array of changed keys.
|
sl@0
|
51 |
|
sl@0
|
52 |
@return the reference of the array of changed keys.
|
sl@0
|
53 |
*/
|
sl@0
|
54 |
const RArray<TUint32>& CRestoredRepository::ChangedKeys() const
|
sl@0
|
55 |
{
|
sl@0
|
56 |
return const_cast<const RArray<TUint32>&>(iChangedKeys);
|
sl@0
|
57 |
}
|
sl@0
|
58 |
|
sl@0
|
59 |
|
sl@0
|
60 |
/**
|
sl@0
|
61 |
Adds a specified key to the key list of the repository.
|
sl@0
|
62 |
which has been changed during the restoration.
|
sl@0
|
63 |
If the key is already on the list, no repeated entry will be added.
|
sl@0
|
64 |
|
sl@0
|
65 |
@param aKey The key to be added.
|
sl@0
|
66 |
@leave The function leaves with one of the system wide error codes except for
|
sl@0
|
67 |
KErrAlreadyExists, if the operation fails.
|
sl@0
|
68 |
*/
|
sl@0
|
69 |
void CRestoredRepository::AddKeyL(TUint32 aKey)
|
sl@0
|
70 |
{
|
sl@0
|
71 |
TInt err = iChangedKeys.InsertInUnsignedKeyOrder(aKey);
|
sl@0
|
72 |
if((err != KErrNone) && (err != KErrAlreadyExists))
|
sl@0
|
73 |
{
|
sl@0
|
74 |
User::Leave(err);
|
sl@0
|
75 |
}
|
sl@0
|
76 |
}
|
sl@0
|
77 |
|
sl@0
|
78 |
/**
|
sl@0
|
79 |
Compares 2 CRestoredRepository objects using their data members iUid.
|
sl@0
|
80 |
|
sl@0
|
81 |
@param aRstRepos1 The first CRestoredRepository object to be compared.
|
sl@0
|
82 |
@param aRstRepos2 The second CRestoredRepository object to be compared.
|
sl@0
|
83 |
@return: 1 if the first object is greater than the second. -1 if the
|
sl@0
|
84 |
first object is less than the second. 0 if they are equal.
|
sl@0
|
85 |
*/
|
sl@0
|
86 |
TInt CRestoredRepository::CompareUids(const CRestoredRepository& aRstRepos1,const CRestoredRepository& aRstRepos2)
|
sl@0
|
87 |
{
|
sl@0
|
88 |
if (aRstRepos1.iReposUid.iUid < aRstRepos2.iReposUid.iUid)
|
sl@0
|
89 |
{
|
sl@0
|
90 |
return -1 ;
|
sl@0
|
91 |
}
|
sl@0
|
92 |
else
|
sl@0
|
93 |
{
|
sl@0
|
94 |
if (aRstRepos1.iReposUid.iUid > aRstRepos2.iReposUid.iUid)
|
sl@0
|
95 |
{
|
sl@0
|
96 |
return 1 ;
|
sl@0
|
97 |
}
|
sl@0
|
98 |
else
|
sl@0
|
99 |
{
|
sl@0
|
100 |
return 0 ;
|
sl@0
|
101 |
}
|
sl@0
|
102 |
}
|
sl@0
|
103 |
}
|