os/security/cryptomgmtlibs/securityutils/source/secsettings/secsettingsserver/secsettingssession.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/security/cryptomgmtlibs/securityutils/source/secsettings/secsettingsserver/secsettingssession.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,115 @@
     1.4 +/*
     1.5 +* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
     1.6 +* All rights reserved.
     1.7 +* This component and the accompanying materials are made available
     1.8 +* under the terms of the License "Eclipse Public License v1.0"
     1.9 +* which accompanies this distribution, and is available
    1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.11 +*
    1.12 +* Initial Contributors:
    1.13 +* Nokia Corporation - initial contribution.
    1.14 +*
    1.15 +* Contributors:
    1.16 +*
    1.17 +* Description: 
    1.18 +* Implements CSecSettingsSession.	 See class and function definitions for
    1.19 +* more information.
    1.20 +*
    1.21 +*/
    1.22 +
    1.23 +
    1.24 +/**
    1.25 + @file
    1.26 +*/
    1.27 +
    1.28 +#include "secsettingsserver.h"
    1.29 +#include <scs/ipcstream.h>
    1.30 +#include <scs/nullstream.h>
    1.31 +
    1.32 +// For KErrSettingNotFound.
    1.33 +#include<securityerr.h>
    1.34 +
    1.35 +// For CRepository class.
    1.36 +#include <centralrepository.h>
    1.37 +
    1.38 +
    1.39 +namespace SecuritySettingsServer
    1.40 +{
    1.41 +
    1.42 +CSecSettingsSession* CSecSettingsSession::NewL(CSecSettingsServer &aServer)
    1.43 +/**
    1.44 +	Factory function allocates new instance of CSecSettingsSession.
    1.45 +
    1.46 +	@return					New, initialized instance of CSecSettingsSession
    1.47 +							which is owned by the caller.
    1.48 + */
    1.49 +	{
    1.50 +	CSecSettingsSession* self = new(ELeave) CSecSettingsSession(aServer);
    1.51 +	CleanupStack::PushL(self);
    1.52 +	self->ConstructL();			// CScsSession implementation
    1.53 +	CleanupStack::Pop(self);
    1.54 +	return self;
    1.55 +	}
    1.56 +
    1.57 +CSecSettingsSession::CSecSettingsSession(CSecSettingsServer &aServer)
    1.58 +/**
    1.59 +	This private constructor prevents direct instantiation.
    1.60 + */
    1.61 + :	CScsSession(aServer)
    1.62 +	{
    1.63 +	}
    1.64 +
    1.65 +CSecSettingsSession::~CSecSettingsSession()
    1.66 +	{
    1.67 +	}
    1.68 +
    1.69 +TBool CSecSettingsSession::DoServiceL(TInt aFunction, const RMessage2& aMessage)
    1.70 +/**
    1.71 +	Implement CScsSession by handling the supplied message.
    1.72 +
    1.73 +	@param	aFunction		Function identifier for the repository operations.
    1.74 +	@param	aMessage		Standard server-side handle to message.	 Not used.
    1.75 + */
    1.76 +	{
    1.77 +
    1.78 +	switch (aFunction)
    1.79 +		{
    1.80 +		case ESettingValue:
    1.81 +			{								
    1.82 +			// Create a CRepository object with the supplied UID.
    1.83 +			CRepository* repository = CRepository::NewL(TUid::Uid(aMessage.Int0()));
    1.84 +			TInt Value = 0;
    1.85 +
    1.86 +				
    1.87 +			// Get the value of the setting whose key is supplied as the first argument. 
    1.88 +			TInt result = repository->Get(aMessage.Int1(), Value);
    1.89 +
    1.90 +			delete repository;
    1.91 +
    1.92 +			if( result == KErrNotFound )
    1.93 +			{
    1.94 +				// Interpreting this as - setting not found.
    1.95 +				User::Leave(KErrSettingNotFound);
    1.96 +			}
    1.97 +			else
    1.98 +			{
    1.99 +				User::LeaveIfError(result);
   1.100 +			}
   1.101 +			
   1.102 +			TPckgBuf<TInt> Pkg(Value);
   1.103 +			aMessage.WriteL(2, Pkg);
   1.104 +
   1.105 +			break;
   1.106 +			}
   1.107 +
   1.108 +		default:
   1.109 +			User::Leave(KErrNotSupported);
   1.110 +		}
   1.111 +
   1.112 +	return ETrue;
   1.113 +	}
   1.114 +
   1.115 +
   1.116 +
   1.117 +} // End of namespace SecuritySettingsServer
   1.118 +// End of file