diff -r f5050f1da672 -r 04becd199f91 javaextensions/satsa/apdu/src.s60/cstspath.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/javaextensions/satsa/apdu/src.s60/cstspath.cpp Tue Apr 27 16:30:29 2010 +0300 @@ -0,0 +1,124 @@ +/* +* Copyright (c) 2008 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of "Eclipse Public License v1.0" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: + * +*/ + + +// INCLUDE FILES +#include +#include "cstspath.h" + +namespace java +{ +namespace satsa +{ + +// CONSTANTS +const TInt KSTSMinNumberOfSubModules = 1; +const TInt KSTSMaxNumberOfSubModules = 3; + +// ============================ MEMBER FUNCTIONS =============================== + +// ----------------------------------------------------------------------------- +// CSTSPath::CSTSPath +// C++ default constructor can NOT contain any code, that +// might leave. +// ----------------------------------------------------------------------------- +// +CSTSPath::CSTSPath() +{ +} + +// ----------------------------------------------------------------------------- +// CSTSPath::ConstructL +// Symbian 2nd phase constructor can leave. +// ----------------------------------------------------------------------------- +// +void CSTSPath::ConstructL() +{ + iPath = KNullDesC8().AllocL(); +} + +// ----------------------------------------------------------------------------- +// CSTSPath::NewL +// Two-phased constructor. +// ----------------------------------------------------------------------------- +// +CSTSPath* CSTSPath::NewLC() +{ + CSTSPath* self = new(ELeave) CSTSPath(); + CleanupStack::PushL(self); + self->ConstructL(); + return self; +} + +// ----------------------------------------------------------------------------- +// CSTSPath::NewL +// Two-phased constructor. +// ----------------------------------------------------------------------------- +// +CSTSPath* CSTSPath::NewL() +{ + CSTSPath* self = CSTSPath::NewLC(); + CleanupStack::Pop(self); + + return self; +} + +// Destructor +CSTSPath::~CSTSPath() +{ + delete iPath; +} + +// ----------------------------------------------------------------------------- +// CSTSPath::DecodeL +// Decrypts raw data to this instance +// ----------------------------------------------------------------------------- +void CSTSPath::DecodeL(const TDesC8& aRawData) +{ + CArrayPtr* itemsData = DecodeSequenceLC(ETrue, //must be sequence + aRawData, KSTSMinNumberOfSubModules, KSTSMaxNumberOfSubModules); + + // we would not get this far if there is not 1-3 elements + TInt pos = 0; + if (pos >= itemsData->Count()) + { + User::Leave(KErrArgument); + } + + //decoding Path (octet string) + TASN1DecOctetString path; + HBufC8* tmpPath = path.DecodeDERL(*itemsData->At(pos++)); + delete iPath; + iPath = tmpPath; + //optional index and optional length are not needed + + CleanupStack::PopAndDestroy(itemsData); + +} + +// ----------------------------------------------------------------------------- +// CSTSPath::Path +// Getter for Path +// ----------------------------------------------------------------------------- +const TDesC8& CSTSPath::Path() const +{ + return *iPath; +} + +} // namespace satsa +} // namespace java +// End of File