First public contribution.
1 // Copyright (c) 2008-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.
16 #include "clientmessagecmn.h"
21 Base 64 decoding table
23 const TInt8 AsciiToBase64[80]=
25 62, -1, -1, -1, 63, 52, 53, 54, 55, 56,
26 57, 58, 59, 60, 61, -1, -1, -1, 64, -1,
27 -1, -1, 0, 1, 2, 3, 4, 5, 6, 7,
28 8, 9, 10, 11, 12, 13, 14, 15, 16, 17,
29 18, 19, 20, 21, 22, 23, 24, 25, -1, -1,
30 -1, -1, -1, -1, 26, 27, 28, 29, 30, 31,
31 32, 33, 34, 35, 36, 37, 38, 39, 40, 41,
32 42, 43, 44, 45, 46, 47, 48, 49, 50, 51
36 Base 64 encoding table
38 const TInt8 Base64ToAscii[65]=
40 65, 66, 67, 68, 69, 70, 71, 72, 73, 74,
41 75, 76, 77, 78, 79, 80, 81, 82, 83, 84,
42 85, 86, 87, 88, 89, 90, 97, 98, 99,100,
43 101,102,103,104,105,106,107,108,109,110,
44 111,112,113,114,115,116,117,118,119,120,
45 121,122, 48, 49, 50, 51, 52, 53, 54, 55,
49 const TInt8 KImcvLookUpStartOffset = 43;
50 const TUint8 KImcvConvEquals = '=';
52 The maximum number of US ASCII characters per line that are before the CRLF line
53 terminator when sending emails. RFC 2822 recommends that each line SHOULD not exceed
54 80 characters including the CRLF terminator, and MUST not exceed 1000.
56 const TInt KMaxB64EncodedCharsPerLine = 60; // Could be increased to 75 characters for every encoded line if KDecodeLineLength = 675. 60 was chosen to maintain existing behaviour.
59 Parameter factory function lookup table. This is used to instantiate a
60 CMessageParameterBase derived object based on a TParamType enum value
62 const TMessageParameterFactoryFn KParameterFactoryFunctions[] = {NULL,
64 CDes8ReadParameter::NewL,
67 CDes16ReadParameter::NewL,
68 CDes16Parameter::NewL,
72 Panic string for client message framework panic
75 _LIT(KPanicCategory,"BSUL::ClientMsg");
78 const TInt KMaxServerNameLength = 32;
81 This static function is used to panic the server in case of
82 incorrect use of CMessageParameterBase APIs or a badly formed
84 @param aPanic The Panic value
86 void PanicServer(TInt aPanic)
88 _LIT(KUnknownServer, "Unknown");
89 TBuf<KMaxServerNameLength> serverName(KUnknownServer);
91 //Get the TLS data for this thread
92 TClientMessageServerData* serverData = static_cast<TClientMessageServerData*>(Dll::Tls());
94 if(serverData != NULL)
96 TPtrC8 name(serverData->iServerName);
97 serverName.Copy(name);
100 User::Panic(serverName, aPanic);
104 Static initialisation function for ClientMessage Framework
105 @param aServerData The initialisation data for the server using the library
106 @leave Any system wide error code
108 EXPORT_C void CClientMessage::InitialiseFrameworkL(const TClientMessageServerData& aServerData)
110 __ASSERT_DEBUG(User::StringLength(aServerData.iServerName) <= KMaxServerNameLength, User::Invariant());
111 Dll::SetTls((TAny*)&aServerData);
115 Static factory function for CClientMessage class
116 @param aMessage The message that this object encapsulates
117 @return Pointer to a fully constructed CClientMessage object.
118 @leave KErrNotInitialised if the framework has not been initialised by a
119 call to InitialiseFrameworkL.
121 EXPORT_C CClientMessage* CClientMessage::NewL(const RMessage2& aMessage)
123 const TClientMessageServerData* serverData = static_cast<const TClientMessageServerData*>(Dll::Tls());
124 if(serverData == NULL)
126 User::Leave(KErrNotInitialised);
129 CClientMessage* self = new(ELeave) CClientMessage(aMessage,*serverData);
130 CleanupStack::PushL(self);
132 CleanupStack::Pop(self);
139 Second phase constructor of CClientMessage Object
140 Finds the schema for this message and checks the caller against the security
141 policy defined for this message. Traverses the array of message parameters
142 and instantiates a CMessageParameterBase object for each parameter and adds these
143 to its internal array.
144 @leave KErrInvalidFunction If the message function is not found in the message table
145 @leave KErrBadHandle if the message handle is Null
146 @leave KErrPermissionDenied if the security policy for this message is not satisfied
148 void CClientMessage::ConstructL()
150 if(!iMessage.IsNull())
153 //Find the message schema for this message.
154 const TClientMessageSchema* messageSchema = FindMessageSchema();
158 LogBadMessageL(KErrInvalidFunction);
159 User::Leave(KErrInvalidFunction);
162 //Check message against security policy
163 CheckSecurityPolicyL(messageSchema->iPolicy);
165 //iterate through message parameters and instantiate all parameter objects
166 for(int index = 0;index < messageSchema->iParamCount;index++)
168 CMessageParameterBase* parameter =
169 CMessageParameterBase::CreateL(messageSchema->iParams[index], index, iMessage);
171 //Some parameter types are defined to be ignored. These
172 //should not be added to the list of parameters
173 if(parameter != NULL)
175 //AppendL can leave so use cleanupstack to ensure that memory is not
176 //leaked if AppendL leaves.
177 CleanupStack::PushL(parameter);
178 iParameters.AppendL(parameter);
179 CleanupStack::Pop(parameter);
185 LogBadMessageL(KErrBadHandle);
186 User::Leave(KErrBadHandle);
191 Constructor for CClientMessage Object
192 @param aMessage The RMessage2 to be represented by this object
193 @param aServerData The Initialisation data for the server creating this object
195 EXPORT_C CClientMessage::CClientMessage(const RMessage2& aMessage,
196 const TClientMessageServerData& aServerData)
197 : iParameters(KMaxParameters), iMessage(aMessage),
198 iServerData(aServerData),iFlags(aServerData.iFlags & 0xFFFF0000)
205 Destructor for CClientMessageObject
207 EXPORT_C CClientMessage::~CClientMessage()
209 for(int i = 0; i < iParameters.Count();i++)
211 delete iParameters[i];
216 EXPORT_C const RMessage2& CClientMessage::Message()
222 Panics the client through the message object
223 set an internal flag to indicate that the RMessage reference handle is now NULL
224 due to the client thread being tidied up.
225 @param aServer The Panic category
226 @param aPanic The Panic value
228 EXPORT_C void CClientMessage::PanicClient(const TDesC& aServer, TInt aPanic)
230 iMessage.Panic(aServer, aPanic);
231 iFlags.Set(EFlagPanicClient);
235 Checks a message against the security policy defined for the server
236 @param aPolicy The security policy to check this message against
237 @leave KErrPermissionDenied if the message does not fulfil the security policy
239 void CClientMessage::CheckSecurityPolicyL(const TSecurityPolicy& aPolicy)
241 if(!(aPolicy.CheckPolicy(iMessage,
242 "Client failed security policy check for this server")))
244 User::Leave(KErrPermissionDenied);
250 Finds a message schema in the message table for this server.
251 Does a binary search on the function number to pull the correct
252 message from the table. Note that this assumes that the table
254 @return A pointer to a TClientMessageSchema object in the message table, or Null if
255 the message does not correpsond to a message in the message table
257 const TClientMessageSchema* CClientMessage::FindMessageSchema()
259 //This should always be less than KNumClientMessages
260 TInt function = iMessage.Function();
262 TInt end = iServerData.iMessageCount - 1;
270 midFn = iServerData.iMessageSchema[mid].iFunction;
275 else if(midFn < function)
281 return &iServerData.iMessageSchema[mid];
291 Validates the message parameters against the constraints provided
293 @leave KErrBadMessage if the message fails validation against the criteria supplied in the
295 @leave Any system-wide error code
297 EXPORT_C void CClientMessage::ValidateL()
300 for(int i = 0; i < iParameters.Count();i++)
302 iParameters[i]->ValidateL();
308 Validates a single message argument against the constraints provided
310 @param aParam The index value identifying the argument to validate
311 @leave KErrBadMessage if the message fails validation against the criteria supplied in the
312 message table for the requested argument
313 @leave KErrArgument if aParam is negative or is greater than the number of parameters for
315 @leave Any system-wide error code
317 EXPORT_C void CClientMessage::ValidateL(TInt aParam)
320 if(( aParam >= 0) && (aParam < iParameters.Count()))
322 iParameters[aParam]->ValidateL();
327 User::Leave(KErrArgument);
332 Checks if a given parameter has been validated
333 @param aParam The index value identifying the paramater to check
334 @leave KErrArgument if aParam is not a valid parameter value
335 @leave KErrNotValidated if the parameter has not been validated
337 void CClientMessage::CheckValidatedL(TInt aParam)
339 if((aParam < EFlagParam0Validated) || (aParam > EFlagParam3Validated))
341 User::Leave(KErrArgument);
344 if(!iFlags.IsSet(aParam))
346 User::Leave(KErrNotValidated);
352 Checks if a bad messages should be logged
353 @return True if bad messages should be logged
355 TBool CClientMessage::LogBadMessages()
357 return iFlags.IsSet(EFlagLogBadMessages);
361 Checks if a bad messages should be logged
362 @param aError The error code to log
364 void CClientMessage::LogBadMessageL(TInt aError)
366 //Check if logging of bad messages is enabled
370 TUid sid = TUid(iMessage.SecureId());
371 TUidName clientSid = sid.Name();
373 TInt function = Function();
375 TBuf<KMaxServerNameLength> serverName;
376 TPtrC8 name(iServerData.iServerName);
377 serverName.Copy(name);
384 case KErrInvalidFunction:
385 RDebug::Print(_L("%S - CClientMessage Error: %d, Function %d. Unknown function request from client %S.\n"),
386 &serverName,aError,function, &clientSid);
389 case KErrBadParameter:
390 RDebug::Print(_L("%S - CClientMessage Error: %d, Function %d. Bad argument in IPC request from client %S.\n"),
391 &serverName,aError,function, &clientSid);
394 case KErrBadMessageSchema:
395 RDebug::Print(_L("%S - CClientMessage Error: %d, Function %d. Message schema incotrectly defined for this function %S.\n"),
396 &serverName,aError,function, &clientSid);
399 case KErrBadDescriptor:
401 RDebug::Print(_L("%S - CClientMessage Error: %d, Function %d. Bad descriptor argument in IPC request from client %S.\n"),
402 &serverName,aError,function, &clientSid);
405 case KErrNotValidated:
406 RDebug::Print(_L("%S - CClientMessage Error: %d, Function %d. Message parameter not validated before use %S.\n"),
407 &serverName,aError,function, &clientSid);
411 RDebug::Print(_L("%S - CClientMessage Error: %d, Function %d. Bad message received from client %S.\n"),
412 &serverName,aError,function, &clientSid);
425 Completes the message request or Panics the client if a
426 message error has occured.
427 @param aError The error value to complete the message with
429 EXPORT_C void CClientMessage::CompleteRequestL(TInt aError)
431 //If server panics client
432 //then iMessage will be NULL
433 if(!iFlags.IsSet(EFlagPanicClient))
435 if(aError != KErrNone)
437 LogBadMessageL(aError);
442 case KErrInvalidFunction:
443 case KErrBadDescriptor:
446 //Check if Panic is disabled
447 if( iFlags.IsClear(EFlagDoNotPanicClientOnBadMessageErrors) )
449 TBuf<KMaxServerNameLength> serverName;
450 TPtrC8 name(iServerData.iServerName);
451 serverName.Copy(name);
452 PanicClient(serverName, aError);
458 iMessage.Complete(aError);
467 Gets the function number of this message
468 @return The function number of this message
470 EXPORT_C TInt CClientMessage::Function()
472 return iMessage.Function();
476 Gets the requested message argument as an integer value
477 @param aParam The parameter number to retrieve
478 @return The Int value for the requested parameter
479 @leave KErrNotValidated if the message parameter has not been validated
480 KErrWrongParameterType in UREL is the parameter requested is not an integer type
481 Any other system wide error code
482 @panic ECMPanicWrongParameterType If this function is called for a parameter
483 type that is not CIntParameter.
485 EXPORT_C TInt CClientMessage::GetIntL(TInt aParam)
487 CheckValidatedL(aParam);
489 return iParameters[aParam]->GetIntL();
493 Gets the requested message argument as an TAny*
494 @param aParam The parameter number to retrieve
495 @return The TAny* for the requested parameter
496 @leave KErrNotValidated if the message parameter has not been validated
497 KErrWrongParameterType in UREL is the parameter requested is not an Ptr type
498 Any other system wide error code
499 @panic ECMPanicWrongParameterType If this function is called for a parameter
500 type that is not CPtrParameter.
502 EXPORT_C const TAny* CClientMessage::GetPtrL(TInt aParam)
504 CheckValidatedL(aParam);
506 return iParameters[aParam]->GetPtrL();
510 Gets a reference to the local copy of the descriptor read from the message
511 @param aParam The parameter number of the descriptor to retrieve
512 @leave KErrNotValidated if the message parameter has not been validated
513 KErrWrongParameterType in UREL is the parameter requested is not a readable
515 Any other system wide error code
516 @panic ECMPanicWrongParameterType If this function is called for a parameter
517 type that is not CDes8ReadParameter.
519 EXPORT_C const TDesC8& CClientMessage::GetDes8L(TInt aParam)
521 CheckValidatedL(aParam);
523 return iParameters[aParam]->GetDes8L();
527 Gets a reference to the local copy of the descriptor read from the message
528 @param aParam The parameter number of the descriptor to retrieve
529 @leave KErrNotValidated if the message parameter has not been validated
530 KErrWrongParameterType in UREL is the parameter requested is not a readable
532 Any other system wide error code
533 @panic ECMPanicWrongParameterType If this function is called for a parameter
534 type that is not CDes16ReadParameter.
536 EXPORT_C const TDesC& CClientMessage::GetDes16L(TInt aParam)
538 CheckValidatedL(aParam);
540 return iParameters[aParam]->GetDes16L();
546 Gets a descriptor value read from the message
547 @param aParam The parameter number of the descriptor to retrieve
548 @param aDes On exit contains the descriptor value requested
549 @param aOffset The desired offset from which to read the descriptor
550 @leave KErrNotValidated if the message parameter has not been validated
551 KErrWrongParameterType in UREL is the parameter requested is not a readable
553 Any other system wide error code
554 @panic ECMPanicWrongParameterType If this function is called for a parameter
555 type that is not CDes8Parameter or CDes8ReadParameter.
557 EXPORT_C void CClientMessage::ReadL(TInt aParam, TDes8& aDes, TInt aOffset)
559 CheckValidatedL(aParam);
561 iParameters[aParam]->ReadL(aDes, aOffset);
565 Gets a descriptor value read from the message
566 @param aParam The parameter number of the descriptor to retrieve
567 @param aDes On exit contains the descriptor value requested
568 @param aOffset The desired offset from which to read the descriptor
569 @leave KErrNotValidated if the message parameter has not been validated
570 KErrWrongParameterType in UREL is the parameter requested is not a readable
572 Any other system wide error code
573 @panic ECMPanicWrongParameterType If this function is called for a parameter
574 type that is not CDes16Parameter or CDes16ReadParameter.
576 EXPORT_C void CClientMessage::ReadL(TInt aParam, TDes16& aDes, TInt aOffset)
578 CheckValidatedL(aParam);
580 iParameters[aParam]->ReadL(aDes, aOffset);
584 Writes to a descriptor field in the message
585 @param aParam The parameter number of the descriptor to write
586 @param aDes The descriptor to write to the message
587 @param aOffset The desired offset at which to write the descriptor
588 @leave KErrNotValidated if the message parameter has not been validated
589 KErrWrongParameterType in UREL is the parameter requested is not a writable
591 Any other system wide error code
592 @panic ECMPanicWrongParameterType If this function is called for a parameter
593 type that is not CDes8Parameter
595 EXPORT_C void CClientMessage::WriteL(TInt aParam, const TDesC8& aDes, TInt aOffset)
597 CheckValidatedL(aParam);
599 iParameters[aParam]->WriteL(aDes, aOffset);
603 Writes to a descriptor field in the message
604 @param aParam The parameter number of the descriptor to write
605 @param aDes The descriptor to write to the message
606 @param aOffset The desired offset at which to write the descriptor
607 @leave KErrNotValidated if the message parameter has not been validated
608 KErrWrongParameterType in UREL is the parameter requested is not a writable
610 Any other system wide error code
611 @panic ECMPanicWrongParameterType If this function is called for a parameter
612 type that is notCDes16Parameter
614 EXPORT_C void CClientMessage::WriteL(TInt aParam, const TDesC16& aDes, TInt aOffset)
616 CheckValidatedL(aParam);
618 iParameters[aParam]->WriteL(aDes, aOffset);
622 Gets the length of the requested descriptor message argument
623 @param aParam The parameter number to retrieve
624 @return The Length of the descriptor in the client process
625 @leave KErrNotValidated if the message parameter has not been validated
626 KErrWrongParameterType in UREL is the parameter requested is not a descriptor type
627 Any other system wide error code
628 @panic ECMPanicWrongParameterType If this function is called for a parameter
629 type that is not a descriptor type.
631 EXPORT_C TInt CClientMessage::GetDesLengthL(TInt aParam)
633 CheckValidatedL(aParam);
635 return iParameters[aParam]->GetDesLengthL();
639 Gets the max length of the requested descriptor message argument
640 @param aParam The parameter number to retrieve
641 @return The Max length of the descriptor in the client process
642 @leave KErrNotValidated if the message parameter has not been validated
643 KErrWrongParameterType in UREL is the parameter requested is not a descriptor type
644 Any other system wide error code
645 @panic ECMPanicWrongParameterType If this function is called for a parameter type
646 that is not a descriptor type.
648 EXPORT_C TInt CClientMessage::GetDesMaxLengthL(TInt aParam)
650 CheckValidatedL(aParam);
652 return iParameters[aParam]->GetDesMaxLengthL();
655 /********************************************************************************
656 * CMessageParameterBase and Derived Class Definitions
657 *******************************************************************************/
661 Factory function for instantiating derived Parameter classes.
662 Uses factory lookup table to instantiate approptiate parameter
663 object based on parameter details passed in
664 @param aParam Parameter details object used to instantiate an appropriate
665 implementation of CMessageParameterBase.
666 @param aParamIndex The Index of this parameter within the RMessage2 arguments
667 @param aMessage The RMessage2 object containing the parameter represented by
669 @return A fully constructed CMessageParameterBase derived object deterimined by
671 @leave KErrBadMessageSchema in UREL if if the schema for this parameter is
673 @leave Any system-wide error code.
674 @panic ECMPanicBadMessageSchema in UDEB if the schema for this parameter is
677 CMessageParameterBase* CMessageParameterBase::CreateL(const TParameterDetails& aParam,
678 TInt aParamIndex, const RMessage2& aMessage)
681 //The parameter type is the bottom 16 bits of the param type
682 TInt paramType = (aParam.iType & KParamTypeMask);
684 __ASSERT_DEBUG((paramType > 0), PanicServer(ECMPanicBadMessageSchema));
686 CMessageParameterBase* newParam = NULL;
693 case EParamDes16Read:
698 //Create the new parameter object
699 newParam = (KParameterFactoryFunctions[paramType])(aParam, aParamIndex,
700 aMessage, GetValidationFunctionL(aParam));
707 PanicServer(ECMPanicBadMessageSchema);
709 User::Leave(KErrBadMessageSchema);
718 Constructor for CMessageParameterBase object
719 @param aParamIndex The Index of this parameter within the RMessage2 arguments
720 @param aMessage The RMessage2 object containing the parameter represented by
723 CMessageParameterBase::CMessageParameterBase(const TParameterDetails& aParam,
724 TInt aParamIndex,const RMessage2& aMessage, TCustomValidationFn aValidationFn)
725 : iIndex(aParamIndex), iMessage(aMessage), iParamDetails(aParam), iValidationFn(aValidationFn)
731 Gets the validation function for this parameter from the
732 TClientMessageServerData structure
733 @param aParam Parameter object used to find the validation function
734 @return The validation function for this parameter type
735 @leave KErrBadMessageSchema in UREL if if the schema for this parameter is
737 @leave Any other system wide error code
738 @panic ECMPanicBadMessageSchema in UDEB if the schema for this parameter is
741 TCustomValidationFn CMessageParameterBase::GetValidationFunctionL(const TParameterDetails& aParam)
743 //Get the TLS data for this thread - this will never be null at this point
744 //as it is checked in CClientMessage::NewL
745 TClientMessageServerData* serverData = static_cast<TClientMessageServerData*>(Dll::Tls());
747 //The index of the validation function for this parameter is held in
748 //the upper 16 bits of aParam.iType. Mask this out and shift down to
750 TInt fnIndex = (aParam.iType & KValidationFnIndexMask) >> KShift16Bit;
753 if(fnIndex >= serverData->iValidationFnCount)
756 PanicServer(ECMPanicBadMessageSchema);
758 User::Leave(KErrBadMessageSchema);
762 //Return the validation function
763 return serverData->iCustomValidationFns[fnIndex];
767 Default implementation of GetIntL for CMessageParameterBase object.
768 This is only called if this API is not defined for the given parameter type.
769 @return KErrNone - A Dummy return value
770 @leave KErrWrongParameterType in UREL if this function is not defined for the
772 @panic ECMPanicWrongParameterType in UDEB if this function is not defined for the
775 TInt CMessageParameterBase::GetIntL()
778 User::Panic(KPanicCategory,ECMPanicWrongParameterType);
780 User::Leave(KErrWrongParameterType);
786 Default implementation of GetPtrL for CMessageParameterBase object.
787 This is only called if this API is not defined for the given parameter type.
788 @return NULL - A Dummy return value
789 @leave KErrWrongParameterType in UREL if this function is not defined for the
791 @panic ECMPanicWrongParameterType in UDEB if this function is not defined for the
794 const TAny* CMessageParameterBase::GetPtrL()
797 User::Panic(KPanicCategory,ECMPanicWrongParameterType);
799 User::Leave(KErrWrongParameterType);
805 Default implementation of WriteL for CMessageParameterBase object.
806 This is only called if this API is not defined for the given parameter type.
807 @leave KErrWrongParameterType in UREL if this function is not defined for the
809 @panic ECMPanicWrongParameterType in UDEB if this function is not defined for the
812 void CMessageParameterBase::WriteL(const TDesC8& /*aDes*/, TInt /*aOffset*/)
815 User::Panic(KPanicCategory,ECMPanicWrongParameterType);
817 User::Leave(KErrWrongParameterType);
822 Default implementation of WriteL for CMessageParameterBase object.
823 This is only called if this API is not defined for the given parameter type.
824 @leave KErrWrongParameterType in UREL if this function is not defined for the
826 @panic ECMPanicWrongParameterType in UDEB if this function is not defined for the
829 void CMessageParameterBase::WriteL(const TDesC& /*aDes*/, TInt /*aOffset*/)
832 User::Panic(KPanicCategory,ECMPanicWrongParameterType);
834 User::Leave(KErrWrongParameterType);
839 Default implementation of ReadL for CMessageParameterBase object.
840 This is only called if this API is not defined for the given parameter type.
841 @leave KErrWrongParameterType in UREL if this function is not defined for the
843 @panic ECMPanicWrongParameterType in UDEB if this function is not defined for the
846 void CMessageParameterBase::ReadL(TDes8& /*aDes*/,TInt /*aOffset*/)
849 User::Panic(KPanicCategory,ECMPanicWrongParameterType);
851 User::Leave(KErrWrongParameterType);
856 Default implementation of ReadL for CMessageParameterBase object.
857 This is only called if this API is not defined for the given parameter type.
858 @leave KErrWrongParameterType in UREL if this function is not defined for the
860 @panic ECMPanicWrongParameterType in UDEB if this function is not defined for the
863 void CMessageParameterBase::ReadL(TDes& /*aDes*/, TInt /*aOffset*/)
866 User::Panic(KPanicCategory,ECMPanicWrongParameterType);
868 User::Leave(KErrWrongParameterType);
873 Default implementation of GetDesLengthL for CMessageParameterBase object.
874 This is only called if this API is not defined for the given parameter type.
875 @return KErrNone - A Dummy return
876 @leave KErrWrongParameterType in UREL if this function is not defined for the
878 @panic ECMPanicWrongParameterType in UDEB if this function is not defined for the
881 TInt CMessageParameterBase::GetDesLengthL()
884 User::Panic(KPanicCategory,ECMPanicWrongParameterType);
886 User::Leave(KErrWrongParameterType);
892 Default implementation of GetDesMaxLengthL for CMessageParameterBase object.
893 This is only called if this API is not defined for the given parameter type.
894 @return KErrNone - A Dummy return
895 @leave KErrWrongParameterType in UREL if this function is not defined for the
897 @panic ECMPanicWrongParameterType in UDEB if this function is not defined for the
900 TInt CMessageParameterBase::GetDesMaxLengthL()
903 User::Panic(KPanicCategory,ECMPanicWrongParameterType);
905 User::Leave(KErrWrongParameterType);
911 Default implementation of GetDes8L for CMessageParameterBase object.
912 This is only called if this API is not defined for the given parameter type.
913 @return KErrNone - A Dummy return
914 @leave KErrWrongParameterType in UREL if this function is not defined for the
916 @panic ECMPanicWrongParameterType in UDEB if this function is not defined for the
920 const TDesC8& CMessageParameterBase::GetDes8L()
923 User::Panic(KPanicCategory,ECMPanicWrongParameterType);
925 User::Leave(KErrWrongParameterType);
932 Default implementation of GetDes16L for CMessageParameterBase object.
933 This is only called if this API is not defined for the given parameter type.
934 @return KErrNone - A Dummy return
935 @leave KErrWrongParameterType in UREL if this function is not defined for the
937 @panic ECMPanicWrongParameterType in UDEB if this function is not defined for the
940 const TDesC& CMessageParameterBase::GetDes16L()
943 User::Panic(KPanicCategory,ECMPanicWrongParameterType);
945 User::Leave(KErrWrongParameterType);
953 Returns the value of iMin defined in the schema for this parameter
954 @return The Min constraint for this parameter
956 TInt CMessageParameterBase::Min()
958 return iParamDetails.iMin;
962 Returns the value of iMax defined in the schema for this parameter
963 @return The max constraint for this parameter
965 TInt CMessageParameterBase::Max()
967 return iParamDetails.iMax;
972 Factory function for instantiating CIntParameter objects
973 @param aParam Parameter details object used to construct object.
974 @param aParamIndex The Index of this parameter within the RMessage2 arguments
975 @param aMessage The RMessage2 object containing the parameter represented by
976 @return A fully constructed CIntParameter object.
977 @leave Any system-wide error code.
979 CMessageParameterBase* CIntParameter::NewL(const TParameterDetails& aParam,
980 TInt aParamIndex, const RMessage2& aMessage, TCustomValidationFn aValidationFn)
982 CIntParameter* self = new(ELeave) CIntParameter(aParam, aParamIndex, aMessage, aValidationFn);
987 Constructor for CIntParameter class.
988 @param aParam Parameter details to be encapsulated by object
989 @param aParamIndex The Index of this parameter within the RMessage2 arguments
990 @param aMessage The RMessage2 object containing the parameter to be represented
991 @panic ECMPanicBadMessageSchema in UDEB if the schema for this parameter is
994 CIntParameter::CIntParameter(const TParameterDetails& aParam, TInt aParamIndex,
995 const RMessage2& aMessage, TCustomValidationFn aValidationFn)
996 : CMessageParameterBase(aParam, aParamIndex, aMessage, aValidationFn)
999 __ASSERT_DEBUG((iParamDetails.iMax >= iParamDetails.iMin),
1000 PanicServer(ECMPanicBadMessageSchema));
1004 Destructor for CIntParameter class.
1006 CIntParameter::~CIntParameter()
1012 Validates given message parameter agains constraints
1013 represented by this object. Stores the Int value from the message
1014 to allow for simple retrieval when required.
1015 @leave KErrBadParameter if the message parameter does not conform
1016 to the constraints represented by this object
1017 @leave Any system-wide error code
1019 void CIntParameter::ValidateL()
1026 iValue = iMessage.Int0();
1030 iValue = iMessage.Int1();
1034 iValue = iMessage.Int2();
1038 iValue = iMessage.Int3();
1042 User::Leave(KErrArgument);
1046 if(iValidationFn != NULL)
1048 iValidationFn(this);
1053 if((iValue < iParamDetails.iMin)||(iValue > iParamDetails.iMax))
1055 User::Leave(KErrBadParameter);
1061 Retrieves the TInt value read from the clients message during validation
1062 @return The TInt value read from the client message
1064 TInt CIntParameter::GetIntL()
1070 Factory function for instantiating CDes8ReadParameter objects
1071 @param aParam Parameter details object used to construct object.
1072 @param aParamIndex The Index of this parameter within the RMessage2 arguments
1073 @param aMessage The RMessage2 object containing the parameter to be represented
1074 @return A fully constructed CDes8ReadParameter object.
1075 @leave Any system-wide error code.
1077 CMessageParameterBase* CDes8ReadParameter::NewL(const TParameterDetails& aParam,
1078 TInt aParamIndex, const RMessage2& aMessage, TCustomValidationFn aValidationFn)
1080 CDes8ReadParameter* self =
1081 new(ELeave) CDes8ReadParameter(aParam, aParamIndex, aMessage, aValidationFn);
1087 Constructor for CDes8ReadParameter class.
1088 @param aParam Parameter details to be encapsulated by object
1089 @param aParamIndex The Index of this parameter within the RMessage2 arguments
1090 @param aMessage The RMessage2 object containing the parameter to be represented
1091 @panic ECMPanicBadMessageSchema in UDEB if the schema for this parameter is
1094 CDes8ReadParameter::CDes8ReadParameter(const TParameterDetails& aParam, TInt aParamIndex,
1095 const RMessage2& aMessage, TCustomValidationFn aValidationFn)
1096 : CMessageParameterBase(aParam, aParamIndex, aMessage, aValidationFn)
1098 __ASSERT_DEBUG((iParamDetails.iMin >= 0),
1099 PanicServer(ECMPanicBadMessageSchema));
1101 __ASSERT_DEBUG((iParamDetails.iMax > 0),
1102 PanicServer(ECMPanicBadMessageSchema));
1104 __ASSERT_DEBUG((iParamDetails.iMax >= iParamDetails.iMin),
1105 PanicServer(ECMPanicBadMessageSchema));
1109 Destructor for CDes8ReadParameter class.
1111 CDes8ReadParameter::~CDes8ReadParameter()
1117 Validates given message argument against constraints
1118 represented by this object. Reads in the descriptor from the
1119 clients message to enable simple retrival when required.
1120 @leave KErrBadDescriptor if the message parameter does not conform
1121 to the constraints represented by this object
1122 @leave Any system-wide error code
1124 void CDes8ReadParameter::ValidateL()
1126 TInt length = iMessage.GetDesLengthL(iIndex);
1128 //if there is a supplied custom validation function, call that now
1129 if(iValidationFn != NULL)
1131 iValidationFn(this);
1136 if((length < iParamDetails.iMin) || (length > iParamDetails.iMax))
1138 User::Leave(KErrBadDescriptor);
1142 iValue = HBufC8::NewL(length);
1143 TPtr8 ptr = iValue->Des();
1148 Gets the descriptor read from the clients message during validation
1149 @return const reference to the local descriptor copy
1151 const TDesC8& CDes8ReadParameter::GetDes8L()
1157 Gets the length of the descriptor in the client message
1158 @return The length of the descriptor
1159 @leave KErrBadDescriptor if the message argument is not a descriptor type
1160 Any other system wide error code
1162 TInt CDes8ReadParameter::GetDesLengthL()
1164 return iMessage.GetDesLengthL(iIndex);
1168 Retrieves the descriptor value read from the clients
1169 message during validation
1170 @param aDes The target descriptor.
1171 @param aOffset The offset from the start of the clients descriptor
1172 @leave KErrArgument if iIndex has a value outside the valid range, or if aOffset is negative.
1173 @panic ECMPanicBadDescriptor in UDEB if the supplied descriptor is too small.
1174 if the schema for this parameter is incorrectly defined
1176 void CDes8ReadParameter::ReadL(TDes8& aDes, TInt aOffset)
1178 __ASSERT_DEBUG((aDes.MaxLength() >= (iMessage.GetDesLengthL(iIndex) - aOffset)),
1179 PanicServer(ECMPanicBadDescriptor));
1181 iMessage.ReadL(iIndex,aDes,aOffset);
1185 Factory function for instantiating CDes8WriteParameter objects
1186 @param aParam Parameter details object used to construct object.
1187 @param aParamIndex The Index of this parameter within the RMessage2 arguments
1188 @param aMessage The RMessage2 object containing the parameter to be represented
1189 @return A fully constructed CDes8WriteParameter object.
1190 @leave Any system-wide error code.
1192 CMessageParameterBase* CDes8Parameter::NewL(const TParameterDetails& aParam,
1193 TInt aParamIndex, const RMessage2& aMessage, TCustomValidationFn aValidationFn)
1195 CDes8Parameter* self =
1196 new(ELeave) CDes8Parameter(aParam, aParamIndex, aMessage, aValidationFn);
1202 Constructor for CDes8WriteParameter class.
1203 @param aParam Parameter details to be encapsulated by object
1204 @param aParamIndex The Index of this parameter within the RMessage2 arguments
1205 @param aMessage The RMessage2 object containing the parameter to be represented
1206 @panic ECMPanicBadMessageSchema in UDEB if the schema for this parameter is
1209 CDes8Parameter::CDes8Parameter(const TParameterDetails& aParam, TInt aParamIndex,
1210 const RMessage2& aMessage, TCustomValidationFn aValidationFn)
1211 : CMessageParameterBase(aParam, aParamIndex, aMessage, aValidationFn)
1214 __ASSERT_DEBUG((iParamDetails.iMin >= 0),
1215 PanicServer(ECMPanicBadMessageSchema));
1217 __ASSERT_DEBUG((iParamDetails.iMax >= 0),
1218 PanicServer(ECMPanicBadMessageSchema));
1222 Destructor for CDes8WriteParameter class.
1224 CDes8Parameter::~CDes8Parameter()
1229 Validates given message argument against constraints
1230 represented by this object.
1231 @leave KErrBadDescriptor if the message parameter does not conform
1232 to the constraints represented by this object
1233 @leave Any system-wide error code
1235 void CDes8Parameter::ValidateL()
1238 //if there is a supplied custom validation function, call that now
1239 if(iValidationFn != NULL)
1241 iValidationFn(this);
1246 TInt length = iMessage.GetDesLengthL(iIndex);
1247 TInt maxLength = iMessage.GetDesMaxLengthL(iIndex);
1249 if((maxLength < iParamDetails.iMin)||(length > iParamDetails.iMax))
1251 User::Leave(KErrBadDescriptor);
1257 Gets the length of the descriptor in the client message
1258 @return The length of the descriptor
1259 @leave KErrBadDescriptor if the message argument is not a descriptor type
1260 Any other system wide error code
1262 TInt CDes8Parameter::GetDesLengthL()
1264 return iMessage.GetDesLengthL(iIndex);
1268 Gets the max length of the descriptor in the client message
1269 @return The max length of the descriptor
1270 @leave KErrBadDescriptor if the message argument is not a descriptor type
1271 Any other system wide error code
1273 TInt CDes8Parameter::GetDesMaxLengthL()
1275 return iMessage.GetDesMaxLengthL(iIndex);
1280 Reads a descriptor from the requested message argument
1281 @param aDes The target descriptor.
1282 @param aOffset The offset from the start of the clients descriptor
1283 @leave Any system wide error code.
1284 @panic ECMPanicBadDescriptor in UDEB if the supplied descriptor is too small.
1286 void CDes8Parameter::ReadL(TDes8& aDes, TInt aOffset)
1288 __ASSERT_DEBUG((aDes.MaxLength() >= (iMessage.GetDesLengthL(iIndex) - aOffset)),
1289 PanicServer(ECMPanicBadDescriptor));
1291 iMessage.ReadL(iIndex,aDes,aOffset);
1295 Validates and writes a descriptor to the requested
1297 @param aDes The source descriptor containing the data to be written.
1298 @param aOffset The offset from the start of the clients descriptor
1299 @leave Any system wide error code.
1301 void CDes8Parameter::WriteL(const TDesC8& aDes, TInt aOffset)
1303 iMessage.WriteL(iIndex,aDes,aOffset);
1307 Factory function for instantiating CIntParameter objects
1308 @param aParam Parameter details object used to construct object.
1309 @param aParamIndex The Index of this parameter within the RMessage2 arguments
1310 @param aMessage The RMessage2 object containing the parameter to be represented
1311 @return A fully constructed CIntParameter object.
1312 @leave Any system-wide error code.
1314 CMessageParameterBase* CDes16ReadParameter::NewL(const TParameterDetails& aParam,
1315 TInt aParamIndex, const RMessage2& aMessage, TCustomValidationFn aValidationFn)
1317 CDes16ReadParameter* self =
1318 new(ELeave) CDes16ReadParameter(aParam, aParamIndex, aMessage, aValidationFn);
1324 Constructor for CDes8ReadParameter class.
1325 @param aParam Parameter details to be encapsulated by object
1326 @param aParamIndex The Index of this parameter within the RMessage2 arguments
1327 @param aMessage The RMessage2 object containing the parameter to be represented
1328 @panic ECMPanicBadMessageSchema in UDEB if the schema for this parameter is
1331 CDes16ReadParameter::CDes16ReadParameter(const TParameterDetails& aParam, TInt aParamIndex,
1332 const RMessage2& aMessage, TCustomValidationFn aValidationFn)
1333 : CMessageParameterBase(aParam, aParamIndex, aMessage, aValidationFn)
1335 __ASSERT_DEBUG((iParamDetails.iMin >= 0),
1336 PanicServer(ECMPanicBadMessageSchema));
1338 __ASSERT_DEBUG((iParamDetails.iMax > 0),
1339 PanicServer(ECMPanicBadMessageSchema));
1341 __ASSERT_DEBUG((iParamDetails.iMax >= iParamDetails.iMin),
1342 PanicServer(ECMPanicBadMessageSchema));
1346 Destructor for CDes16ReadParameter class.
1348 CDes16ReadParameter::~CDes16ReadParameter()
1354 Validates given message argument against constraints
1355 represented by this object. Reads in the descriptor from the
1356 clients message to enable simple retrival when required.
1357 @leave KErrBadDescriptor if the message parameter does not conform
1358 to the constraints represented by this object
1359 @leave Any system-wide error code
1361 void CDes16ReadParameter::ValidateL()
1363 TInt length = iMessage.GetDesLengthL(iIndex);
1365 //if there is a supplied custom validation function, call that now
1366 if(iValidationFn != NULL)
1368 iValidationFn(this);
1373 if((length < iParamDetails.iMin) || (length > iParamDetails.iMax))
1375 User::Leave(KErrBadDescriptor);
1379 iValue = HBufC::NewL(length);
1380 TPtr ptr = iValue->Des();
1385 Gets the descriptor read from the clients message during validation
1386 @return const reference to the local descriptor copy
1388 const TDesC& CDes16ReadParameter::GetDes16L()
1394 Gets the length of the descriptor in the client message
1395 @return The length of the descriptor
1396 @leave KErrBadDescriptor if the message argument is not a descriptor type
1397 Any other system wide error code
1399 TInt CDes16ReadParameter::GetDesLengthL()
1401 return iMessage.GetDesLengthL(iIndex);
1405 Retrieves the descriptor value read from the clients
1406 message during validation
1407 @param aDes The target descriptor.
1408 @param aOffset The offset from the start of the clients descriptor
1409 @leave KErrArgument if the suplied descriptor is too small or an invalid
1411 @panic ECMPanicBadDescriptor in UDEB if the supplied descriptor is too small.
1413 void CDes16ReadParameter::ReadL(TDes& aDes, TInt aOffset)
1415 __ASSERT_DEBUG((aDes.MaxLength() >= (iMessage.GetDesLengthL(iIndex) - aOffset)),
1416 PanicServer(ECMPanicBadDescriptor));
1418 iMessage.ReadL(iIndex,aDes,aOffset);
1422 Factory function for instantiating CDes16WriteParameter objects
1423 @param aParam Parameter details object used to construct object.
1424 @param aParamIndex The Index of this parameter within the RMessage2 arguments
1425 @param aMessage The RMessage2 object containing the parameter to be represented
1426 @return A fully constructed CDes16WriteParameter object.
1427 @leave Any system-wide error code.
1429 CMessageParameterBase* CDes16Parameter::NewL(const TParameterDetails& aParam,
1430 TInt aParamIndex, const RMessage2& aMessage, TCustomValidationFn aValidationFn)
1432 CDes16Parameter* self =
1433 new(ELeave) CDes16Parameter(aParam, aParamIndex, aMessage, aValidationFn);
1439 Constructor for CDes16WriteParameter class.
1440 @param aParam Parameter details to be encapsulated by object
1441 @param aParamIndex The Index of this parameter within the RMessage2 arguments
1442 @param aMessage The RMessage2 object containing the parameter to be represented
1443 @panic ECMPanicBadMessageSchema in UDEB if the schema for this parameter is
1446 CDes16Parameter::CDes16Parameter(const TParameterDetails& aParam, TInt aParamIndex,
1447 const RMessage2& aMessage, TCustomValidationFn aValidationFn)
1448 : CMessageParameterBase(aParam, aParamIndex, aMessage, aValidationFn)
1450 __ASSERT_DEBUG((iParamDetails.iMin >= 0),
1451 PanicServer(ECMPanicBadMessageSchema));
1452 __ASSERT_DEBUG((iParamDetails.iMax >= 0),
1453 PanicServer(ECMPanicBadMessageSchema));
1457 Destructor for CDes16WriteParameter class.
1459 CDes16Parameter::~CDes16Parameter()
1465 Validates given message argument against constraints
1466 represented by this object.
1467 @leave KErrBadDescriptor if the message parameter does not conform
1468 to the constraints represented by this object
1469 @leave Any system-wide error code
1471 void CDes16Parameter::ValidateL()
1474 //if there is a supplied custom validation function, call that now
1475 if(iValidationFn != NULL)
1477 iValidationFn(this);
1481 TInt length = iMessage.GetDesLengthL(iIndex);
1482 TInt maxLength = iMessage.GetDesMaxLengthL(iIndex);
1484 if((maxLength < iParamDetails.iMin)||(length > iParamDetails.iMax))
1486 User::Leave(KErrBadDescriptor);
1492 Gets the length of the descriptor in the client message
1493 @return The length of the descriptor
1494 @leave KErrBadDescriptor if the message argument is not a descriptor type
1495 Any other system wide error code
1497 TInt CDes16Parameter::GetDesLengthL()
1499 return iMessage.GetDesLengthL(iIndex);
1503 Gets the max length of the descriptor in the client message
1504 @return The max length of the descriptor
1505 @leave KErrBadDescriptor if the message argument is not a descriptor type
1506 Any other system wide error code
1508 TInt CDes16Parameter::GetDesMaxLengthL()
1510 return iMessage.GetDesMaxLengthL(iIndex);
1514 Reads a descriptor from the requested message argument
1515 @param aDes The target descriptor.
1516 @param aOffset The offset from the start of the clients descriptor
1517 @leave Any system wide error code.
1518 @panic ECMPanicBadDescriptor in UDEB if the supplied descriptor is too small.
1520 void CDes16Parameter::ReadL(TDes& aDes, TInt aOffset)
1522 __ASSERT_DEBUG((aDes.MaxLength() >= (iMessage.GetDesLengthL(iIndex) - aOffset)),
1523 PanicServer(ECMPanicBadDescriptor));
1525 iMessage.ReadL(iIndex,aDes,aOffset);
1529 Writes a descriptor to the requested message argument
1530 @param aDes The source descriptor containing the data to be written.
1531 @param aOffset The offset from the start of the clients descriptor
1532 @leave Any system wide error code.
1534 void CDes16Parameter::WriteL(const TDesC& aDes, TInt aOffset)
1536 iMessage.WriteL(iIndex,aDes,aOffset);
1540 Factory function for instantiating CPckgParameter objects
1541 @param aParam Parameter details object used to construct object.
1542 @param aParamIndex The Index of this parameter within the RMessage2 arguments
1543 @param aMessage The RMessage2 object containing the parameter to be represented
1544 @return A fully constructed CPckgParameter object.
1545 @leave Any system-wide error code.
1547 CMessageParameterBase* CPckgParameter::NewL(const TParameterDetails& aParam,
1548 TInt aParamIndex, const RMessage2& aMessage, TCustomValidationFn aValidationFn )
1550 CPckgParameter* self =
1551 new(ELeave) CPckgParameter(aParam, aParamIndex, aMessage, aValidationFn);
1557 Constructor for CPckgParameter class.
1558 @param aParam Parameter details to be encapsulated by object
1559 @param aParamIndex The Index of this parameter within the RMessage2 arguments
1560 @param aMessage The RMessage2 object containing the parameter to be represented
1562 CPckgParameter::CPckgParameter(const TParameterDetails& aParam, TInt aParamIndex,
1563 const RMessage2& aMessage, TCustomValidationFn aValidationFn)
1564 : CDes8Parameter(aParam, aParamIndex, aMessage, aValidationFn)
1571 Destructor for CPckgParameter class.
1573 CPckgParameter::~CPckgParameter()
1578 Validates given message argument against constraints
1579 represented by this object.
1580 @leave KErrBadDescriptor if the message parameter does not conform
1581 to the constraints represented by this object
1582 @leave Any system-wide error code
1584 void CPckgParameter::ValidateL()
1587 //if there is a supplied custom validation function, call that now
1588 if(iValidationFn != NULL)
1590 iValidationFn(this);
1595 TInt length = iMessage.GetDesLengthL(iIndex);
1597 if((length < iParamDetails.iMin)||(length > iParamDetails.iMax))
1599 User::Leave(KErrBadDescriptor);
1605 Factory function for instantiating CPtrParameter objects
1606 @param aParam Parameter details object used to construct object.
1607 @param aParamIndex The Index of this parameter within the RMessage2 arguments
1608 @param aMessage The RMessage2 object containing the parameter to be represented
1609 @return A fully constructed CPtrParameter object.
1610 @leave Any system-wide error code.
1612 CMessageParameterBase* CPtrParameter::NewL(const TParameterDetails& aParam,
1613 TInt aParamIndex, const RMessage2& aMessage, TCustomValidationFn aValidationFn)
1615 CPtrParameter* self = new(ELeave) CPtrParameter(aParam, aParamIndex, aMessage, aValidationFn);
1620 Constructor for CPtrParameter class.
1621 @param aParamIndex The Index of this parameter within the RMessage2 arguments
1622 @param aMessage The RMessage2 object containing the parameter to be represented
1624 CPtrParameter::CPtrParameter(const TParameterDetails& aParam, TInt aParamIndex,
1625 const RMessage2& aMessage, TCustomValidationFn aValidationFn)
1626 : CMessageParameterBase(aParam, aParamIndex, aMessage, aValidationFn)
1632 Validates given message argument against constraints
1633 represented by this object. Stores the TAny* from the
1634 clients message to enable simple retrival when required.
1635 @leave KErrArgument if the argument index is invalid
1636 @leave Any system-wide error code
1638 void CPtrParameter::ValidateL()
1645 iValue = iMessage.Ptr0();
1649 iValue = iMessage.Ptr1();
1653 iValue = iMessage.Ptr2();
1657 iValue = iMessage.Ptr3();
1661 User::Leave(KErrArgument);
1665 //if there is a supplied custom validation function, call that now
1666 if(iValidationFn != NULL)
1668 iValidationFn(this);
1673 Retrieves the TAny pointer read from the clients message during validation
1674 @return The TAny pointer read from the client message
1676 const TAny* CPtrParameter::GetPtrL()
1683 @param aSrcString Source string
1684 @param rDestString Destination string
1685 @return 1 if aSrcString is not long enough to decode fully, resulting in the storage of
1686 the last character and requiring another aSrcString (poss 0 length) to be passed to it to
1687 clear this character.
1688 @return 0 if the line was decoded OK or the end of the encoded file is reached ie "="
1691 EXPORT_C TInt Base64Codec::Decode(const TDesC8& aSrcString, TDes8& rDestString)
1693 TInt shiftStored = 0;
1694 TInt maskShiftStored = ESix;
1698 TUint8 decodedChar=0;
1700 // Clears the destination string
1703 // Initialise variables
1704 const TUint8* srcStringPtr=aSrcString.Ptr();
1705 const TUint8* srcStringEnd=aSrcString.Length()+srcStringPtr;
1706 TUint8* destStringPtr=(TUint8*)rDestString.Ptr();
1707 TUint8* destStringPtrBase=destStringPtr;
1709 TInt maskShift=maskShiftStored;
1710 TInt shiftStorage=shiftStored;
1712 // Main character process loop
1713 while(srcStringPtr<srcStringEnd)
1715 offsetChar=(TInt8)(*srcStringPtr-KImcvLookUpStartOffset);
1718 // Check for valid B64 character
1719 if((offsetChar>=0)&&(offsetChar<80))
1721 // Read in next character and B64 decode
1722 decodedInt=AsciiToBase64[offsetChar];
1724 // Exits when a PAD char is reached
1725 if(decodedInt==EPadChar)
1727 rDestString.SetLength((TInt)(destStringPtr-destStringPtrBase));
1731 // Ensures the first 2 chars of 4 are received before processing
1736 shiftStorage=shiftStorage<<ESix;
1737 shiftStorage=shiftStorage|decodedInt;
1738 decodedChar=(TUint8)((shiftStorage>>maskShift)&EEightBitMask);
1740 if((maskShift-=ETwo)<EZero)
1743 *destStringPtr++=decodedChar;
1745 shiftStorage=decodedInt;
1748 shiftStored=shiftStorage;
1749 maskShiftStored=maskShift;
1751 rDestString.SetLength((TInt)(destStringPtr-destStringPtrBase));
1753 return maskShift<ESix;
1758 @param aSrcString Source string
1759 @param rDestString Destination string
1760 @return 1 if aSrcString is not long enough to encode fully
1761 @return 0 if the line was encoded OK
1763 EXPORT_C TInt Base64Codec::Encode(const TDesC8& aSrcString, TDes8& rDestString)
1765 // Clears the destination string
1768 // Initialise variables
1769 const TUint8* srcStringPtr=aSrcString.Ptr();
1770 const TUint8* srcStringEnd=aSrcString.Length()+srcStringPtr;
1771 TUint8* destStringPtr=(TUint8*)rDestString.Ptr();
1772 TUint8* destStringPtrBase=destStringPtr;
1775 TUint8 encodedChar=0;
1777 TInt maskShift=EZero;
1778 TInt destStringCharNum = 0;
1780 while(srcStringPtr<=srcStringEnd)
1782 // maskShift is used as a char read counter
1785 // If the 3rd char read is also the last char then the while loop
1786 // is broken on the next check.
1787 if(srcStringPtr==srcStringEnd)
1794 if(srcStringPtr==srcStringEnd)
1797 character=*srcStringPtr;
1800 // Shifts charStorage ready for the next char
1801 charStorage=charStorage<<8;
1804 charStorage=charStorage|character;
1805 // Shifts the mask to the correct bit location
1806 // Masks (AND's) the valid bits from charStorage
1807 // Shifts the valid bits into the low order 8bits
1808 // Converts to BASE64 char, Casts the result to an unsigned char (which it should be ?....I hope)
1809 encodedChar=(TUint8)Base64ToAscii[((charStorage>>maskShift)&ESixBitMask)];
1811 *destStringPtr++=encodedChar;
1812 destStringCharNum++;
1814 // Add a CRLF every KMaxB64EncodedCharsPerLine characters so as not to exceed the line length
1815 // limitation specified in RFC 2822.
1816 if (destStringCharNum == KMaxB64EncodedCharsPerLine)
1818 destStringCharNum = 0;
1819 *destStringPtr++ = '\r';
1820 *destStringPtr++ = '\n';
1824 // Check for not enough chars and pad if required
1825 if (maskShift==EFour)
1827 *destStringPtr++=KImcvConvEquals;
1828 *destStringPtr++=KImcvConvEquals;
1832 *destStringPtr++=KImcvConvEquals;
1834 rDestString.SetLength((TInt)(destStringPtr-destStringPtrBase));
1835 return ((TInt)(srcStringPtr-srcStringEnd));