1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/persistentdata/persistentstorage/centralrepository/cenrepsrv/rstrepos.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,103 @@
1.4 +// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +//
1.18 +
1.19 +#include "rstrepos.h"
1.20 +
1.21 +/**
1.22 +Constructor.
1.23 +Constructs the object of this class with the specified uid.
1.24 +
1.25 +@param aUid The uid of the repository which is to be restored
1.26 +*/
1.27 +CRestoredRepository::CRestoredRepository(TUid aUid) :
1.28 + iReposUid(aUid), iChangedKeys()
1.29 + {
1.30 + }
1.31 +
1.32 +/**
1.33 +Destructor.
1.34 +Closes the array of the changed keys.
1.35 +*/
1.36 +CRestoredRepository::~CRestoredRepository()
1.37 + {
1.38 + iChangedKeys.Close();
1.39 + }
1.40 +
1.41 +/**
1.42 +Get the uid of the repository represented by this class.
1.43 +
1.44 +@return the uid of the repository represented by this class.
1.45 +*/
1.46 +TUid CRestoredRepository::Uid() const
1.47 + {
1.48 + return iReposUid;
1.49 + }
1.50 +
1.51 +
1.52 +/**
1.53 +Gets the reference of the array of changed keys.
1.54 +
1.55 +@return the reference of the array of changed keys.
1.56 +*/
1.57 +const RArray<TUint32>& CRestoredRepository::ChangedKeys() const
1.58 + {
1.59 + return const_cast<const RArray<TUint32>&>(iChangedKeys);
1.60 + }
1.61 +
1.62 +
1.63 +/**
1.64 +Adds a specified key to the key list of the repository.
1.65 +which has been changed during the restoration.
1.66 +If the key is already on the list, no repeated entry will be added.
1.67 +
1.68 +@param aKey The key to be added.
1.69 +@leave The function leaves with one of the system wide error codes except for
1.70 +KErrAlreadyExists, if the operation fails.
1.71 +*/
1.72 +void CRestoredRepository::AddKeyL(TUint32 aKey)
1.73 + {
1.74 + TInt err = iChangedKeys.InsertInUnsignedKeyOrder(aKey);
1.75 + if((err != KErrNone) && (err != KErrAlreadyExists))
1.76 + {
1.77 + User::Leave(err);
1.78 + }
1.79 + }
1.80 +
1.81 +/**
1.82 +Compares 2 CRestoredRepository objects using their data members iUid.
1.83 +
1.84 +@param aRstRepos1 The first CRestoredRepository object to be compared.
1.85 +@param aRstRepos2 The second CRestoredRepository object to be compared.
1.86 +@return: 1 if the first object is greater than the second. -1 if the
1.87 +first object is less than the second. 0 if they are equal.
1.88 +*/
1.89 +TInt CRestoredRepository::CompareUids(const CRestoredRepository& aRstRepos1,const CRestoredRepository& aRstRepos2)
1.90 + {
1.91 + if (aRstRepos1.iReposUid.iUid < aRstRepos2.iReposUid.iUid)
1.92 + {
1.93 + return -1 ;
1.94 + }
1.95 + else
1.96 + {
1.97 + if (aRstRepos1.iReposUid.iUid > aRstRepos2.iReposUid.iUid)
1.98 + {
1.99 + return 1 ;
1.100 + }
1.101 + else
1.102 + {
1.103 + return 0 ;
1.104 + }
1.105 + }
1.106 + }