os/ossrv/lowlevellibsandfws/pluginfw/Framework/EcomTestUtils/TPropertyManagerSrv.cpp
Update contrib.
1 // Copyright (c) 2007-2009 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.
17 #include <e32property.h>
19 #include "TPropertyManager.h"
21 _LIT(KSeparator, "|"); // Char used to separate arguments
23 static TInt DefineProperty(TUid aCategory, TUint aKey, TInt aAttr,TInt aPreallocated)
25 _LIT_SECURE_ID(mySid,0X10204FC5);
27 TSecurityPolicy readPolicy = TSecurityPolicy::EAlwaysPass;
28 TSecurityPolicy writePolicy = TSecurityPolicy(mySid);
30 TInt err = RProperty::Define(aCategory, aKey, aAttr, readPolicy, writePolicy, aPreallocated);
32 //If the variable is already defined then return KErrNone as this is fine,
33 if(err == KErrAlreadyExists)
38 RDebug::Print(_L("Property Manager - Define Property Cat = %d Key = %d err = %d\n"), aCategory,aKey, err);
43 static TInt DeleteProperty(TUid aCategory, TUint aKey)
45 TInt err = RProperty::Delete(aCategory, aKey);
47 //If the variable is not found then return KErrNone as this is fine
48 if(err == KErrNotFound)
53 RDebug::Print(_L("Property Manager - Delete Property Cat = %d Key = %d err = %d\n"), aCategory,aKey, err);
58 static TInt SetProperty(TUid aCategory, TUint aKey, TInt aValue)
60 TInt err = RProperty::Set(aCategory, aKey, aValue);
61 RDebug::Print(_L("Property Manager - Set Property Cat = %d Key = %d Value = %d err = %d\n"), aCategory,aKey,aValue,err);
65 static TInt SetProperty(TUid aCategory, TUint aKey, const TDesC8 &aValue)
67 TInt err = RProperty::Set(aCategory, aKey, aValue);
68 RDebug::Print(_L("Property Manager - Set Property Cat = %d Key = %d Value = %S err = %d\n"), aCategory,aKey,&aValue,err);
72 static TInt SetProperty(TUid aCategory, TUint aKey, const TDesC16 &aValue)
74 TInt err = RProperty::Set(aCategory, aKey, aValue);
75 RDebug::Print(_L("Property Manager - Set Property Cat = %d Key = %d Value = %S err = %d\n"), aCategory,aKey,&aValue,err);
79 TInt GetNumber(const TPtrC& aText, TInt& aLength)
83 TInt textLength = aText.Length();
85 //Loop through each character and verify that it is a valid digit
86 //before converting to a decimal representation and adding to the total
87 while (aLength < textLength)
89 TChar currentChar = aText[aLength];
90 if (currentChar < '0' || currentChar > '9')
96 TUint charValue = currentChar;
98 //Convert from character value to decimal
99 digit = charValue - 0x30; //(offset for western digit characters
100 total = (total * 10) + digit;
106 static TInt ParseArgs(TDesC& aArgs, TInt& aStartIndex)
111 //Get a substrng of aArgs begining at aStartIndex
112 TPtrC string = aArgs.Mid(aStartIndex,aArgs.Length() - aStartIndex);
114 //Find the position of the first separator
115 TInt pos = string.Find(KSeparator);
119 //Get the number that exists in the substring before the separator
120 value = GetNumber(string.Mid(0,pos),length);
122 //If a separator is not found, then this must be the last number in aArgs
125 value = GetNumber(string,length);
128 //Update the start index to the character following the separator
129 aStartIndex += (pos +1);
134 static TInt ProcessCommandLine(TDesC& aArgs)
138 TInt length = aArgs.Length();
140 //Pull out the common elements of all commands - Op, Cat & Key
141 PropertyManager::TOperation operation = PropertyManager::TOperation(ParseArgs(aArgs,pos));
142 TInt category = ParseArgs(aArgs,pos);
143 TUid categoryUid = TUid::Uid(category);
144 TUint key = ParseArgs(aArgs,pos);
151 //Handle each operation separately to pull out the remaining arguments
152 //and process the request.
155 case PropertyManager::EDefineProperty:
156 attr = ParseArgs(aArgs,pos);
157 preallocated = ParseArgs(aArgs,pos);
158 error = DefineProperty(categoryUid,key,attr,preallocated);
161 case PropertyManager::EDeleteProperty:
162 error = DeleteProperty(categoryUid,key);
165 case PropertyManager::ESetPropertyInt:
166 intVal = ParseArgs(aArgs,pos);
167 error = SetProperty(categoryUid,key,intVal);
170 case PropertyManager::ESetPropertyDes8:
171 value.Copy(aArgs.Mid(pos,(aArgs.Length()-pos)));
172 error = SetProperty(categoryUid,key,value);
175 case PropertyManager::ESetPropertyDes16:
176 error = SetProperty(categoryUid,key,aArgs.Mid(pos,(aArgs.Length()-pos)));
180 error = KErrArgument;
187 GLDEF_C TInt E32Main()
190 CTrapCleanup* cleanup = CTrapCleanup::New();
193 User::CommandLine(args);
195 TInt error = ProcessCommandLine(args);