os/ossrv/lowlevellibsandfws/pluginfw/Framework/EcomTestUtils/TPropertyManager.cpp
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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
18 #include <e32property.h>
20 #include "TPropertyManager.h"
22 _LIT(KSeparator, "|"); // Char used to separate arguments
23 _LIT(KPropertyManagerSrvName,"TPropertyManagerSrv");
24 _LIT(KPropertyManagerPanic,"TPropertyManager::SetProperty");
26 TInt PropertyManager::LaunchHelperProcess(TOperation aOperation,TDesC& aArgs)
29 args.AppendNum(aOperation);
30 args.Append(KSeparator);
33 // Property Manager Srv uid
34 const TUid KSystemAgentExeUid = {0x10204FC5};
35 const TUidType serverUid(KNullUid, KNullUid, KSystemAgentExeUid);
37 TInt err = server.Create(KPropertyManagerSrvName, args, serverUid);
40 RDebug::Print(_L("Error Launching Property Manager..."));
44 RDebug::Print(_L("Property Manager Launched..."));
46 server.Rendezvous(stat);
47 if(stat != KRequestPending)
49 server.Kill(0); // abort startup
53 server.Resume(); // logon OK - start the server
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
59 err = server.ExitType() == EExitPanic ? KErrGeneral : stat.Int();
62 RDebug::Print(_L("Property Manager Terminated..."));
67 EXPORT_C TInt PropertyManager::DefineProperty(TUid aCategory, TUint aKey, TInt aAttr,TInt aPreallocated)
70 args.AppendNum(aCategory.iUid);
71 args.Append(KSeparator);
73 args.Append(KSeparator);
74 args.AppendNum(aAttr);
75 args.Append(KSeparator);
76 args.AppendNum(aPreallocated);
78 return LaunchHelperProcess(EDefineProperty,args);
81 EXPORT_C TInt PropertyManager::DeleteProperty(TUid aCategory, TUint aKey)
84 args.AppendNum(aCategory.iUid);
85 args.Append(KSeparator);
88 return LaunchHelperProcess(EDeleteProperty,args);
91 EXPORT_C TInt PropertyManager::SetProperty(TUid aCategory, TUint aKey, TInt aValue)
94 args.AppendNum(aCategory.iUid);
95 args.Append(KSeparator);
97 args.Append(KSeparator);
98 args.AppendNum(aValue);
100 return LaunchHelperProcess(ESetPropertyInt,args);
103 EXPORT_C TInt PropertyManager::SetProperty(TUid aCategory, TUint aKey, const TDesC8 &aValue)
106 args.AppendNum(aCategory.iUid);
107 args.Append(KSeparator);
108 args.AppendNum(aKey);
109 args.Append(KSeparator);
111 //Need to check maximum length of this field....
112 if((args.Size() + aValue.Size()) > args.MaxSize())
114 User::Panic(KPropertyManagerPanic,0);
117 //Convert the 8Bit descriptor into a 16 bit version
122 return LaunchHelperProcess(ESetPropertyDes8,args);
125 EXPORT_C TInt PropertyManager::SetProperty(TUid aCategory, TUint aKey, const TDesC16 &aValue)
128 args.AppendNum(aCategory.iUid);
129 args.Append(KSeparator);
130 args.AppendNum(aKey);
131 args.Append(KSeparator);
133 //Need to check maximum size of this field....
134 if((args.Size() + aValue.Size()) < args.MaxSize())
136 User::Panic(KPropertyManagerPanic,0);
141 return LaunchHelperProcess(ESetPropertyDes16,args);