os/ossrv/lowlevellibsandfws/pluginfw/Framework/EcomTestUtils/TPropertyManagerSrv.cpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
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 <e32base.h>
sl@0
    17
#include <e32property.h>
sl@0
    18
#include <e32debug.h>
sl@0
    19
#include "TPropertyManager.h"
sl@0
    20
sl@0
    21
_LIT(KSeparator, "|"); // Char used to separate arguments
sl@0
    22
sl@0
    23
static TInt DefineProperty(TUid aCategory, TUint aKey, TInt aAttr,TInt aPreallocated)
sl@0
    24
	{
sl@0
    25
	_LIT_SECURE_ID(mySid,0X10204FC5);
sl@0
    26
	
sl@0
    27
	TSecurityPolicy readPolicy = TSecurityPolicy::EAlwaysPass;
sl@0
    28
	TSecurityPolicy writePolicy = TSecurityPolicy(mySid);
sl@0
    29
sl@0
    30
	TInt err = RProperty::Define(aCategory, aKey, aAttr, readPolicy, writePolicy, aPreallocated);
sl@0
    31
	
sl@0
    32
	//If the variable is already defined then return KErrNone as this is fine,
sl@0
    33
	if(err == KErrAlreadyExists)
sl@0
    34
		{
sl@0
    35
		err = KErrNone;	
sl@0
    36
		}
sl@0
    37
	
sl@0
    38
	RDebug::Print(_L("Property Manager - Define Property Cat = %d Key = %d err = %d\n"), aCategory,aKey, err);
sl@0
    39
		
sl@0
    40
	return err;
sl@0
    41
	}
sl@0
    42
sl@0
    43
static TInt DeleteProperty(TUid aCategory, TUint aKey)
sl@0
    44
	{
sl@0
    45
	TInt err = RProperty::Delete(aCategory, aKey);
sl@0
    46
	
sl@0
    47
	//If the variable is not found then return KErrNone as this is fine
sl@0
    48
	if(err == KErrNotFound)
sl@0
    49
		{
sl@0
    50
		err = KErrNone;	
sl@0
    51
		}
sl@0
    52
	
sl@0
    53
	RDebug::Print(_L("Property Manager - Delete Property Cat = %d Key = %d err = %d\n"), aCategory,aKey, err);
sl@0
    54
			
sl@0
    55
	return err;
sl@0
    56
	}
sl@0
    57
sl@0
    58
static TInt SetProperty(TUid aCategory, TUint aKey, TInt aValue)
sl@0
    59
	{
sl@0
    60
	TInt err = RProperty::Set(aCategory, aKey, aValue);
sl@0
    61
	RDebug::Print(_L("Property Manager - Set Property Cat = %d Key = %d Value = %d  err = %d\n"), aCategory,aKey,aValue,err);
sl@0
    62
	return err;
sl@0
    63
	}
sl@0
    64
sl@0
    65
static TInt SetProperty(TUid aCategory, TUint aKey, const TDesC8 &aValue)
sl@0
    66
	{
sl@0
    67
	TInt err = RProperty::Set(aCategory, aKey, aValue);
sl@0
    68
	RDebug::Print(_L("Property Manager - Set Property Cat = %d Key = %d Value = %S  err = %d\n"), aCategory,aKey,&aValue,err);
sl@0
    69
	return err;
sl@0
    70
	}
sl@0
    71
sl@0
    72
static TInt SetProperty(TUid aCategory, TUint aKey, const TDesC16 &aValue)
sl@0
    73
	{
sl@0
    74
	TInt err = RProperty::Set(aCategory, aKey, aValue);
sl@0
    75
	RDebug::Print(_L("Property Manager - Set Property Cat = %d Key = %d Value = %S  err = %d\n"), aCategory,aKey,&aValue,err);
sl@0
    76
	return err;
sl@0
    77
	}
sl@0
    78
sl@0
    79
TInt GetNumber(const TPtrC& aText, TInt& aLength)
sl@0
    80
	{
sl@0
    81
	TInt total = 0;
sl@0
    82
	aLength = 0;
sl@0
    83
	TInt textLength = aText.Length();
sl@0
    84
	
sl@0
    85
	//Loop through each character and verify that it is a valid digit
sl@0
    86
	//before converting to a decimal representation and adding to the total
sl@0
    87
	while (aLength < textLength)
sl@0
    88
		{
sl@0
    89
		TChar currentChar = aText[aLength];
sl@0
    90
		if (currentChar < '0' || currentChar > '9')
sl@0
    91
			{
sl@0
    92
			return total;
sl@0
    93
			}
sl@0
    94
		
sl@0
    95
		TInt digit = 0;
sl@0
    96
		TUint charValue = currentChar;
sl@0
    97
		
sl@0
    98
		//Convert from character value to decimal
sl@0
    99
		digit = charValue - 0x30; //(offset for western digit characters
sl@0
   100
		total = (total * 10) + digit;
sl@0
   101
		aLength++;
sl@0
   102
		}
sl@0
   103
	return total;
sl@0
   104
	}
sl@0
   105
sl@0
   106
static TInt ParseArgs(TDesC& aArgs, TInt& aStartIndex)
sl@0
   107
	{
sl@0
   108
	TInt length;
sl@0
   109
	TInt value;
sl@0
   110
	
sl@0
   111
	//Get a substrng of aArgs begining at aStartIndex
sl@0
   112
	TPtrC string = aArgs.Mid(aStartIndex,aArgs.Length() - aStartIndex);
sl@0
   113
	
sl@0
   114
	//Find the position of the first separator
sl@0
   115
	TInt pos = string.Find(KSeparator);
sl@0
   116
	
sl@0
   117
	if(pos > 0)
sl@0
   118
		{
sl@0
   119
		//Get the number that exists in the substring before the separator
sl@0
   120
		value = GetNumber(string.Mid(0,pos),length);	
sl@0
   121
		}
sl@0
   122
	//If a separator is not found, then this must be the last number in aArgs
sl@0
   123
	else
sl@0
   124
		{
sl@0
   125
		value = GetNumber(string,length);
sl@0
   126
		}
sl@0
   127
sl@0
   128
	//Update the start index to the character following the separator
sl@0
   129
	aStartIndex += (pos +1);
sl@0
   130
	
sl@0
   131
	return value;
sl@0
   132
	}
sl@0
   133
sl@0
   134
static TInt ProcessCommandLine(TDesC& aArgs)
sl@0
   135
	{
sl@0
   136
	TInt error;
sl@0
   137
	TInt pos = 0;
sl@0
   138
	TInt length = aArgs.Length();
sl@0
   139
		
sl@0
   140
	//Pull out the common elements of all commands - Op, Cat & Key
sl@0
   141
	PropertyManager::TOperation operation = PropertyManager::TOperation(ParseArgs(aArgs,pos));
sl@0
   142
	TInt category = ParseArgs(aArgs,pos);
sl@0
   143
	TUid categoryUid = TUid::Uid(category);
sl@0
   144
	TUint key =	ParseArgs(aArgs,pos);
sl@0
   145
	
sl@0
   146
	TInt attr;
sl@0
   147
	TInt preallocated;
sl@0
   148
	TInt intVal;
sl@0
   149
	TBuf8<64> value;
sl@0
   150
	
sl@0
   151
	//Handle each operation separately to pull out the remaining arguments
sl@0
   152
	//and process the request.
sl@0
   153
	switch(operation)
sl@0
   154
		{		
sl@0
   155
		case PropertyManager::EDefineProperty:
sl@0
   156
		attr = ParseArgs(aArgs,pos);
sl@0
   157
		preallocated = ParseArgs(aArgs,pos);
sl@0
   158
		error = DefineProperty(categoryUid,key,attr,preallocated);
sl@0
   159
		break;
sl@0
   160
		
sl@0
   161
		case PropertyManager::EDeleteProperty:
sl@0
   162
		error = DeleteProperty(categoryUid,key);
sl@0
   163
		break;
sl@0
   164
		
sl@0
   165
		case PropertyManager::ESetPropertyInt:
sl@0
   166
		intVal = ParseArgs(aArgs,pos);
sl@0
   167
		error = SetProperty(categoryUid,key,intVal);
sl@0
   168
		break;
sl@0
   169
		
sl@0
   170
		case PropertyManager::ESetPropertyDes8:
sl@0
   171
		value.Copy(aArgs.Mid(pos,(aArgs.Length()-pos)));
sl@0
   172
		error = SetProperty(categoryUid,key,value);
sl@0
   173
		break;
sl@0
   174
		
sl@0
   175
		case PropertyManager::ESetPropertyDes16:
sl@0
   176
		error = SetProperty(categoryUid,key,aArgs.Mid(pos,(aArgs.Length()-pos)));
sl@0
   177
		break;
sl@0
   178
		
sl@0
   179
		default:
sl@0
   180
		error = KErrArgument;
sl@0
   181
		break;
sl@0
   182
		}
sl@0
   183
	
sl@0
   184
	return error;
sl@0
   185
	}
sl@0
   186
sl@0
   187
GLDEF_C TInt E32Main()
sl@0
   188
    {
sl@0
   189
        	
sl@0
   190
    CTrapCleanup* cleanup = CTrapCleanup::New(); 
sl@0
   191
sl@0
   192
	TBuf<64> args;
sl@0
   193
	User::CommandLine(args);
sl@0
   194
sl@0
   195
	TInt error = ProcessCommandLine(args);
sl@0
   196
	
sl@0
   197
	delete cleanup;
sl@0
   198
	return error;	
sl@0
   199
    	
sl@0
   200
	}
sl@0
   201