author | sl |
Tue, 10 Jun 2014 14:32:02 +0200 | |
changeset 1 | 260cb5ec6c19 |
permissions | -rw-r--r-- |
sl@0 | 1 |
/* |
sl@0 | 2 |
* Copyright (c) 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 |
* Implements CSecSettingsSession. See class and function definitions for |
sl@0 | 16 |
* more information. |
sl@0 | 17 |
* |
sl@0 | 18 |
*/ |
sl@0 | 19 |
|
sl@0 | 20 |
|
sl@0 | 21 |
/** |
sl@0 | 22 |
@file |
sl@0 | 23 |
*/ |
sl@0 | 24 |
|
sl@0 | 25 |
#include "secsettingsserver.h" |
sl@0 | 26 |
#include <scs/ipcstream.h> |
sl@0 | 27 |
#include <scs/nullstream.h> |
sl@0 | 28 |
|
sl@0 | 29 |
// For KErrSettingNotFound. |
sl@0 | 30 |
#include<securityerr.h> |
sl@0 | 31 |
|
sl@0 | 32 |
// For CRepository class. |
sl@0 | 33 |
#include <centralrepository.h> |
sl@0 | 34 |
|
sl@0 | 35 |
|
sl@0 | 36 |
namespace SecuritySettingsServer |
sl@0 | 37 |
{ |
sl@0 | 38 |
|
sl@0 | 39 |
CSecSettingsSession* CSecSettingsSession::NewL(CSecSettingsServer &aServer) |
sl@0 | 40 |
/** |
sl@0 | 41 |
Factory function allocates new instance of CSecSettingsSession. |
sl@0 | 42 |
|
sl@0 | 43 |
@return New, initialized instance of CSecSettingsSession |
sl@0 | 44 |
which is owned by the caller. |
sl@0 | 45 |
*/ |
sl@0 | 46 |
{ |
sl@0 | 47 |
CSecSettingsSession* self = new(ELeave) CSecSettingsSession(aServer); |
sl@0 | 48 |
CleanupStack::PushL(self); |
sl@0 | 49 |
self->ConstructL(); // CScsSession implementation |
sl@0 | 50 |
CleanupStack::Pop(self); |
sl@0 | 51 |
return self; |
sl@0 | 52 |
} |
sl@0 | 53 |
|
sl@0 | 54 |
CSecSettingsSession::CSecSettingsSession(CSecSettingsServer &aServer) |
sl@0 | 55 |
/** |
sl@0 | 56 |
This private constructor prevents direct instantiation. |
sl@0 | 57 |
*/ |
sl@0 | 58 |
: CScsSession(aServer) |
sl@0 | 59 |
{ |
sl@0 | 60 |
} |
sl@0 | 61 |
|
sl@0 | 62 |
CSecSettingsSession::~CSecSettingsSession() |
sl@0 | 63 |
{ |
sl@0 | 64 |
} |
sl@0 | 65 |
|
sl@0 | 66 |
TBool CSecSettingsSession::DoServiceL(TInt aFunction, const RMessage2& aMessage) |
sl@0 | 67 |
/** |
sl@0 | 68 |
Implement CScsSession by handling the supplied message. |
sl@0 | 69 |
|
sl@0 | 70 |
@param aFunction Function identifier for the repository operations. |
sl@0 | 71 |
@param aMessage Standard server-side handle to message. Not used. |
sl@0 | 72 |
*/ |
sl@0 | 73 |
{ |
sl@0 | 74 |
|
sl@0 | 75 |
switch (aFunction) |
sl@0 | 76 |
{ |
sl@0 | 77 |
case ESettingValue: |
sl@0 | 78 |
{ |
sl@0 | 79 |
// Create a CRepository object with the supplied UID. |
sl@0 | 80 |
CRepository* repository = CRepository::NewL(TUid::Uid(aMessage.Int0())); |
sl@0 | 81 |
TInt Value = 0; |
sl@0 | 82 |
|
sl@0 | 83 |
|
sl@0 | 84 |
// Get the value of the setting whose key is supplied as the first argument. |
sl@0 | 85 |
TInt result = repository->Get(aMessage.Int1(), Value); |
sl@0 | 86 |
|
sl@0 | 87 |
delete repository; |
sl@0 | 88 |
|
sl@0 | 89 |
if( result == KErrNotFound ) |
sl@0 | 90 |
{ |
sl@0 | 91 |
// Interpreting this as - setting not found. |
sl@0 | 92 |
User::Leave(KErrSettingNotFound); |
sl@0 | 93 |
} |
sl@0 | 94 |
else |
sl@0 | 95 |
{ |
sl@0 | 96 |
User::LeaveIfError(result); |
sl@0 | 97 |
} |
sl@0 | 98 |
|
sl@0 | 99 |
TPckgBuf<TInt> Pkg(Value); |
sl@0 | 100 |
aMessage.WriteL(2, Pkg); |
sl@0 | 101 |
|
sl@0 | 102 |
break; |
sl@0 | 103 |
} |
sl@0 | 104 |
|
sl@0 | 105 |
default: |
sl@0 | 106 |
User::Leave(KErrNotSupported); |
sl@0 | 107 |
} |
sl@0 | 108 |
|
sl@0 | 109 |
return ETrue; |
sl@0 | 110 |
} |
sl@0 | 111 |
|
sl@0 | 112 |
|
sl@0 | 113 |
|
sl@0 | 114 |
} // End of namespace SecuritySettingsServer |
sl@0 | 115 |
// End of file |