os/persistentdata/persistentstorage/centralrepository/cenrepsrv/clientrequest.cpp
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/persistentdata/persistentstorage/centralrepository/cenrepsrv/clientrequest.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,229 @@
1.4 +// Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +//
1.18 +
1.19 +//system includes
1.20 +#include <e32std.h>
1.21 +#include <u32std.h>
1.22 +
1.23 +
1.24 +//class signature
1.25 +#include "clientrequest.h"
1.26 +
1.27 +#ifndef CENTRAL_REPOSITORY_SERVER_TESTING
1.28 +
1.29 +///////////////////////////////////////////////////////////////////////////////
1.30 +// TClientRequest
1.31 +///////////////////////////////////////////////////////////////////////////////
1.32 +TClientRequest::TClientRequest(const RMessage2& aMessage)
1.33 +: iMessage(aMessage)
1.34 + {
1.35 + }
1.36 +
1.37 +TInt TClientRequest::Function() const
1.38 + {
1.39 + return iMessage.Function();
1.40 + }
1.41 +
1.42 +void TClientRequest::Complete(TInt aReason) const
1.43 + {
1.44 + iMessage.Complete(aReason);
1.45 + }
1.46 +
1.47 +void TClientRequest::Panic(const TDesC& aCategory, TInt aReason) const
1.48 + {
1.49 + iMessage.Panic(aCategory, aReason);
1.50 + }
1.51 +
1.52 +TInt TClientRequest::Int0() const
1.53 + {
1.54 + return iMessage.Int0();
1.55 + }
1.56 +
1.57 +TInt TClientRequest::Int1() const
1.58 + {
1.59 + return iMessage.Int1();
1.60 + }
1.61 +
1.62 +TInt TClientRequest::Int2() const
1.63 + {
1.64 + return iMessage.Int2();
1.65 + }
1.66 +
1.67 +TInt TClientRequest::Int3() const
1.68 + {
1.69 + return iMessage.Int3();
1.70 + }
1.71 +
1.72 +TInt TClientRequest::GetDesLengthL(TInt aParam) const
1.73 + {
1.74 + return iMessage.GetDesLengthL(aParam);
1.75 + }
1.76 +
1.77 +TInt TClientRequest::GetDesMaxLength(TInt aParam) const
1.78 + {
1.79 + return iMessage.GetDesMaxLength(aParam);
1.80 + }
1.81 +
1.82 +void TClientRequest::ReadL(TInt aParam, TDes8& aDes, TInt aOffset) const
1.83 + {
1.84 + iMessage.ReadL(aParam, aDes, aOffset);
1.85 + }
1.86 +
1.87 +void TClientRequest::ReadL(TInt aParam, TDes& aDes, TInt aOffset) const
1.88 + {
1.89 + iMessage.ReadL(aParam, aDes, aOffset);
1.90 + }
1.91 +
1.92 +void TClientRequest::Read(TInt aParam, TDes8& aDes, TInt aOffset) const
1.93 + {
1.94 + iMessage.Read(aParam, aDes, aOffset);
1.95 + }
1.96 +
1.97 +void TClientRequest::Read(TInt aParam, TDes& aDes, TInt aOffset) const
1.98 + {
1.99 + iMessage.Read(aParam, aDes, aOffset);
1.100 + }
1.101 +
1.102 +TInt TClientRequest::Write(TInt aParam, const TDesC8& aDes, TInt aOffset) const
1.103 + {
1.104 + return iMessage.Write(aParam, aDes, aOffset);
1.105 + }
1.106 +
1.107 +void TClientRequest::WriteL(TInt aParam, const TDesC8& aDes) const
1.108 + {
1.109 + iMessage.WriteL(aParam, aDes);
1.110 + }
1.111 +
1.112 +void TClientRequest::WriteL(TInt aParam, const TDesC& aDes, TInt aOffset) const
1.113 + {
1.114 + iMessage.WriteL(aParam, aDes, aOffset);
1.115 + }
1.116 +
1.117 +TBool TClientRequest::CheckPolicy(const TSecurityPolicy& aSecurityPolicy,const char *aDiagnostic) const
1.118 + {
1.119 + return (aSecurityPolicy.CheckPolicy(iMessage,aDiagnostic));
1.120 + }
1.121 +
1.122 +///////////////////////////////////////////////////////////////////////////////
1.123 +///////////////////////////////////////////////////////////////////////////////
1.124 +#else //IF _UNIT_TESTING_
1.125 +
1.126 +TClientRequest::TClientRequest()
1.127 +: iFunction(KMinTInt), iCapability(0U), iCompletion(KRequestPending),
1.128 +iStatusActive(EFalse), iIdentity(KNullUid)
1.129 + {
1.130 + Mem::FillZ(&iParams, sizeof(TInt) * KMaxMessageArguments);
1.131 + }
1.132 +
1.133 +TInt TClientRequest::Function() const
1.134 + {
1.135 + return iFunction;
1.136 + }
1.137 +
1.138 +void TClientRequest::Complete(TInt aReason) const
1.139 + {
1.140 + iCompletion = aReason;
1.141 + if(iStatusActive)
1.142 + {
1.143 + TRequestStatus* stat = iStatus;
1.144 + User::RequestComplete(stat, aReason);
1.145 + }
1.146 + }
1.147 +
1.148 +void TClientRequest::Panic(const TDesC& aCategory, TInt aReason) const
1.149 + {
1.150 + User::Panic(aCategory, aReason);
1.151 + }
1.152 +
1.153 +TInt TClientRequest::Int0() const
1.154 + {
1.155 + return iParams[0];
1.156 + }
1.157 +
1.158 +TInt TClientRequest::Int1() const
1.159 + {
1.160 + return iParams[1];
1.161 + }
1.162 +
1.163 +TInt TClientRequest::Int2() const
1.164 + {
1.165 + return iParams[2];
1.166 + }
1.167 +
1.168 +TInt TClientRequest::Int3() const
1.169 + {
1.170 + return iParams[3];
1.171 + }
1.172 +
1.173 +TInt TClientRequest::GetDesLengthL(TInt aParam) const
1.174 + {
1.175 + const TDesC8* desPtr = (const TDesC8*)iParams[aParam];
1.176 + return desPtr->Length();
1.177 + }
1.178 +
1.179 +TInt TClientRequest::GetDesMaxLength(TInt aParam) const
1.180 + {
1.181 + const TDes8* desPtr = (const TDes8*)iParams[aParam];
1.182 + return desPtr->MaxLength();
1.183 + }
1.184 +
1.185 +void TClientRequest::ReadL(TInt aParam, TDes8& aDes, TInt aOffset) const
1.186 + {
1.187 + const TDesC8* desPtr = (const TDesC8*)iParams[aParam];
1.188 + aDes.Copy(desPtr->Mid(aOffset));
1.189 + }
1.190 +
1.191 +void TClientRequest::ReadL(TInt aParam, TDes& aDes, TInt aOffset) const
1.192 + {
1.193 + const TDesC* desPtr = (const TDesC*)iParams[aParam];
1.194 + aDes.Copy(desPtr->Mid(aOffset));
1.195 + }
1.196 +
1.197 +void TClientRequest::Read(TInt aParam, TDes8& aDes, TInt aOffset) const
1.198 + {
1.199 + const TDesC8* desPtr = (const TDesC8*)iParams[aParam];
1.200 + aDes.Copy(desPtr->Mid(aOffset));
1.201 + }
1.202 +
1.203 +void TClientRequest::Read(TInt aParam, TDes& aDes, TInt aOffset) const
1.204 + {
1.205 + const TDesC* desPtr = (const TDesC*)iParams[aParam];
1.206 + aDes.Copy(desPtr->Mid(aOffset));
1.207 + }
1.208 +
1.209 +TInt TClientRequest::Write(TInt aParam, const TDesC8& aDes, TInt aOffset) const
1.210 + {
1.211 + TDes8* desPtr = (TDes8*)iParams[aParam];
1.212 + desPtr->Copy(aDes.Mid(aOffset));
1.213 + return KErrNone;
1.214 + }
1.215 +
1.216 +void TClientRequest::WriteL(TInt aParam, const TDesC8& aDes) const
1.217 + {
1.218 + User::LeaveIfError(Write(aParam, aDes));
1.219 + }
1.220 +
1.221 +void TClientRequest::WriteL(TInt aParam, const TDesC& aDes, TInt aOffset) const
1.222 + {
1.223 + TDes* desPtr = (TDes*)iParams[aParam];
1.224 + desPtr->Copy(aDes.Mid(aOffset));
1.225 + }
1.226 +
1.227 +TBool TClientRequest::CheckPolicy(const TSecurityPolicy& /*aSecurityPolicy*/,const char * /*aDiagnostic*/) const
1.228 + {
1.229 + return iPolicyCheck;
1.230 + }
1.231 +
1.232 +#endif //CENTRAL_REPOSITORY_SERVER_TESTING