sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 2007-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 the License "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 |
*
|
sl@0
|
16 |
*/
|
sl@0
|
17 |
|
sl@0
|
18 |
|
sl@0
|
19 |
|
sl@0
|
20 |
#include <e32std.h>
|
sl@0
|
21 |
#include <e32base.h>
|
sl@0
|
22 |
#include <bacline.h>
|
sl@0
|
23 |
#include <f32file.h>
|
sl@0
|
24 |
#include <e32property.h>
|
sl@0
|
25 |
#include <numberconversion.h>
|
sl@0
|
26 |
#include "tupsproperty.h"
|
sl@0
|
27 |
|
sl@0
|
28 |
|
sl@0
|
29 |
CUpsProperty* CUpsProperty::NewL(const TUid& aCategory)
|
sl@0
|
30 |
{
|
sl@0
|
31 |
CUpsProperty* self = new(ELeave) CUpsProperty(aCategory);
|
sl@0
|
32 |
return self;
|
sl@0
|
33 |
}
|
sl@0
|
34 |
|
sl@0
|
35 |
CUpsProperty::CUpsProperty(const TUid& aCategory)
|
sl@0
|
36 |
: iCategory(aCategory)
|
sl@0
|
37 |
{
|
sl@0
|
38 |
|
sl@0
|
39 |
}
|
sl@0
|
40 |
|
sl@0
|
41 |
void CUpsProperty::GetL(TInt aInstanceNumber, TInt aPropertyKey, TType aType, TInt& aValue)
|
sl@0
|
42 |
{
|
sl@0
|
43 |
TInt key;
|
sl@0
|
44 |
if (aType == EPolicyEvaluator)
|
sl@0
|
45 |
{
|
sl@0
|
46 |
key = GetPropertyKey(aPropertyKey, KPe_Start, KInstanceInterval, aInstanceNumber);
|
sl@0
|
47 |
}
|
sl@0
|
48 |
else
|
sl@0
|
49 |
{
|
sl@0
|
50 |
key = GetPropertyKey(aPropertyKey, KDc_Start, KInstanceInterval, aInstanceNumber);
|
sl@0
|
51 |
}
|
sl@0
|
52 |
User::LeaveIfError(RProperty::Get(iCategory, key, aValue));
|
sl@0
|
53 |
}
|
sl@0
|
54 |
|
sl@0
|
55 |
void CUpsProperty::GetL(TInt aInstanceNumber, TInt aPropertyKey, TType aType, TDes& aValue)
|
sl@0
|
56 |
{
|
sl@0
|
57 |
TInt key;
|
sl@0
|
58 |
if (aType == EPolicyEvaluator)
|
sl@0
|
59 |
{
|
sl@0
|
60 |
key = GetPropertyKey(aPropertyKey, KPe_Start, KInstanceInterval, aInstanceNumber);
|
sl@0
|
61 |
}
|
sl@0
|
62 |
else
|
sl@0
|
63 |
{
|
sl@0
|
64 |
key = GetPropertyKey(aPropertyKey, KDc_Start, KInstanceInterval, aInstanceNumber);
|
sl@0
|
65 |
}
|
sl@0
|
66 |
User::LeaveIfError(RProperty::Get(iCategory, key, aValue));
|
sl@0
|
67 |
}
|
sl@0
|
68 |
|
sl@0
|
69 |
void CUpsProperty::SetL(TInt aInstanceNumber, TInt aPropertyKey, TType aType, TInt aValue)
|
sl@0
|
70 |
{
|
sl@0
|
71 |
TInt key;
|
sl@0
|
72 |
if (aType == EPolicyEvaluator)
|
sl@0
|
73 |
{
|
sl@0
|
74 |
key = GetPropertyKey(aPropertyKey, KPe_Start, KInstanceInterval, aInstanceNumber);
|
sl@0
|
75 |
}
|
sl@0
|
76 |
else
|
sl@0
|
77 |
{
|
sl@0
|
78 |
key = GetPropertyKey(aPropertyKey, KDc_Start, KInstanceInterval, aInstanceNumber);
|
sl@0
|
79 |
}
|
sl@0
|
80 |
User::LeaveIfError(RProperty::Set(iCategory, key, aValue));
|
sl@0
|
81 |
}
|
sl@0
|
82 |
|
sl@0
|
83 |
void CUpsProperty::SetL(TInt aInstanceNumber, TInt aPropertyKey, TType aType, TDes& aValue)
|
sl@0
|
84 |
{
|
sl@0
|
85 |
TInt key;
|
sl@0
|
86 |
if (aType == EPolicyEvaluator)
|
sl@0
|
87 |
{
|
sl@0
|
88 |
key = GetPropertyKey(aPropertyKey, KPe_Start, KInstanceInterval, aInstanceNumber);
|
sl@0
|
89 |
}
|
sl@0
|
90 |
else
|
sl@0
|
91 |
{
|
sl@0
|
92 |
key = GetPropertyKey(aPropertyKey, KDc_Start, KInstanceInterval, aInstanceNumber);
|
sl@0
|
93 |
}
|
sl@0
|
94 |
User::LeaveIfError(RProperty::Set(iCategory, key, aValue));
|
sl@0
|
95 |
}
|
sl@0
|
96 |
|
sl@0
|
97 |
TInt CUpsProperty::GetPropertyKey(TInt aPropertyKey, TInt aStart, TInt aInterval, TInt aInstanceNumber)
|
sl@0
|
98 |
{
|
sl@0
|
99 |
TInt actualKey = ((aInstanceNumber - 1) * aInterval) + aPropertyKey + aStart;
|
sl@0
|
100 |
return actualKey;
|
sl@0
|
101 |
}
|