os/ossrv/lowlevellibsandfws/pluginfw/Framework/EcomTestUtils/TPropertyManager.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.
     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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 #include <e32base.h>
    17 #include <e32def.h>
    18 #include <e32property.h>
    19 #include <e32debug.h>
    20 #include "TPropertyManager.h"
    21 
    22 _LIT(KSeparator, "|"); // Char used to separate arguments
    23 _LIT(KPropertyManagerSrvName,"TPropertyManagerSrv");
    24 _LIT(KPropertyManagerPanic,"TPropertyManager::SetProperty");
    25 
    26 TInt PropertyManager::LaunchHelperProcess(TOperation aOperation,TDesC& aArgs)
    27 	{
    28 		TBuf<64> args;	
    29 		args.AppendNum(aOperation);
    30 		args.Append(KSeparator);
    31 		args.Append(aArgs);
    32 		
    33 		// Property Manager Srv uid
    34 		const TUid KSystemAgentExeUid = {0x10204FC5}; 
    35 		const TUidType serverUid(KNullUid, KNullUid, KSystemAgentExeUid);
    36 		RProcess server;
    37 		TInt err = server.Create(KPropertyManagerSrvName, args, serverUid);
    38 		if(err != KErrNone)
    39 	        {
    40 	        RDebug::Print(_L("Error Launching Property Manager..."));
    41 			return err;
    42 	        }
    43 		
    44 		RDebug::Print(_L("Property Manager Launched..."));
    45 		TRequestStatus stat;
    46 		server.Rendezvous(stat);
    47 		if(stat != KRequestPending)
    48 	        {
    49 			server.Kill(0);		// abort startup
    50 	        }
    51 		else
    52 	        {
    53 			server.Resume();	// logon OK - start the server
    54 	        }
    55 		User::WaitForRequest(stat);		// wait for start or death
    56 		// we can't use the 'exit reason' if the server panicked as this
    57 		// is the panic 'reason' and may be '0' which cannot be distinguished
    58 		// from KErrNone
    59 		err = server.ExitType() == EExitPanic ? KErrGeneral : stat.Int();
    60 		server.Close();
    61 		
    62 		RDebug::Print(_L("Property Manager Terminated..."));
    63 		return err;
    64 
    65 	}
    66 
    67 EXPORT_C TInt PropertyManager::DefineProperty(TUid aCategory, TUint aKey, TInt aAttr,TInt aPreallocated)
    68 	{	
    69 	TBuf<64> args;
    70 	args.AppendNum(aCategory.iUid);
    71 	args.Append(KSeparator);
    72 	args.AppendNum(aKey);
    73 	args.Append(KSeparator);
    74 	args.AppendNum(aAttr);
    75 	args.Append(KSeparator);
    76 	args.AppendNum(aPreallocated);
    77 	
    78 	return LaunchHelperProcess(EDefineProperty,args);
    79 	}
    80 
    81 EXPORT_C TInt PropertyManager::DeleteProperty(TUid aCategory, TUint aKey)
    82 	{
    83 	TBuf<64> args;
    84 	args.AppendNum(aCategory.iUid);
    85 	args.Append(KSeparator);
    86 	args.AppendNum(aKey);
    87 	
    88 	return LaunchHelperProcess(EDeleteProperty,args);
    89 	}
    90 
    91 EXPORT_C TInt PropertyManager::SetProperty(TUid aCategory, TUint aKey, TInt aValue)
    92 	{
    93 	TBuf<64> args;
    94 	args.AppendNum(aCategory.iUid);
    95 	args.Append(KSeparator);
    96 	args.AppendNum(aKey);
    97 	args.Append(KSeparator);
    98 	args.AppendNum(aValue);
    99 	
   100 	return LaunchHelperProcess(ESetPropertyInt,args);
   101 	}
   102 
   103 EXPORT_C TInt PropertyManager::SetProperty(TUid aCategory, TUint aKey, const TDesC8 &aValue)
   104 	{
   105 	TBuf<64> args;
   106 	args.AppendNum(aCategory.iUid);
   107 	args.Append(KSeparator);
   108 	args.AppendNum(aKey);
   109 	args.Append(KSeparator);
   110 	
   111 	//Need to check maximum length of this field....
   112 	if((args.Size() + aValue.Size()) > args.MaxSize())
   113 		{
   114 		User::Panic(KPropertyManagerPanic,0);
   115 		}
   116 	
   117 	//Convert the 8Bit descriptor into a 16 bit version
   118 	TBuf<128> value;
   119 	value.Copy(aValue);
   120 	args.Append(value);
   121 	
   122 	return LaunchHelperProcess(ESetPropertyDes8,args);
   123 	}
   124 
   125 EXPORT_C TInt PropertyManager::SetProperty(TUid aCategory, TUint aKey, const TDesC16 &aValue)
   126 	{	
   127 	TBuf<64> args;
   128 	args.AppendNum(aCategory.iUid);
   129 	args.Append(KSeparator);
   130 	args.AppendNum(aKey);
   131 	args.Append(KSeparator);
   132 	
   133 	//Need to check maximum size of this field....
   134 	if((args.Size() + aValue.Size()) < args.MaxSize())
   135 		{
   136 		User::Panic(KPropertyManagerPanic,0);
   137 		}
   138 
   139 	args.Append(aValue);
   140 	
   141 	return LaunchHelperProcess(ESetPropertyDes16,args);
   142 	}