os/security/cryptomgmtlibs/securityutils/source/secsettings/secsettingsserver/secsettingssession.cpp
Update contrib.
2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of the License "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
15 * Implements CSecSettingsSession. See class and function definitions for
25 #include "secsettingsserver.h"
26 #include <scs/ipcstream.h>
27 #include <scs/nullstream.h>
29 // For KErrSettingNotFound.
30 #include<securityerr.h>
32 // For CRepository class.
33 #include <centralrepository.h>
36 namespace SecuritySettingsServer
39 CSecSettingsSession* CSecSettingsSession::NewL(CSecSettingsServer &aServer)
41 Factory function allocates new instance of CSecSettingsSession.
43 @return New, initialized instance of CSecSettingsSession
44 which is owned by the caller.
47 CSecSettingsSession* self = new(ELeave) CSecSettingsSession(aServer);
48 CleanupStack::PushL(self);
49 self->ConstructL(); // CScsSession implementation
50 CleanupStack::Pop(self);
54 CSecSettingsSession::CSecSettingsSession(CSecSettingsServer &aServer)
56 This private constructor prevents direct instantiation.
58 : CScsSession(aServer)
62 CSecSettingsSession::~CSecSettingsSession()
66 TBool CSecSettingsSession::DoServiceL(TInt aFunction, const RMessage2& aMessage)
68 Implement CScsSession by handling the supplied message.
70 @param aFunction Function identifier for the repository operations.
71 @param aMessage Standard server-side handle to message. Not used.
79 // Create a CRepository object with the supplied UID.
80 CRepository* repository = CRepository::NewL(TUid::Uid(aMessage.Int0()));
84 // Get the value of the setting whose key is supplied as the first argument.
85 TInt result = repository->Get(aMessage.Int1(), Value);
89 if( result == KErrNotFound )
91 // Interpreting this as - setting not found.
92 User::Leave(KErrSettingNotFound);
96 User::LeaveIfError(result);
99 TPckgBuf<TInt> Pkg(Value);
100 aMessage.WriteL(2, Pkg);
106 User::Leave(KErrNotSupported);
114 } // End of namespace SecuritySettingsServer