diff -r f5050f1da672 -r 04becd199f91 javatools/certificatesconfigurator/src.s60/trustrootpolicy.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/javatools/certificatesconfigurator/src.s60/trustrootpolicy.h Tue Apr 27 16:30:29 2010 +0300 @@ -0,0 +1,97 @@ +/* +* Copyright (c) 2009 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 +#include // for MContentHandler +#include // for CParser +#include +#include +#include + +using namespace Xml; +using namespace std; + +class TrustRoot +{ +public: + TrustRoot(); + +public: + + std::string iName; + std::string iDomain; + std::string iMcc; + std::string iMnc; + bool iCanDelete; + bool iCanDisable; +}; + +class CTrustRootPolicy: public CBase, MContentHandler +{ + +public: + + static CTrustRootPolicy* NewL(); + + virtual ~CTrustRootPolicy(); + +public: + + void ReadFromFileL(const TDesC& aFileName, vector& aTrustRoots); + +private: + + CTrustRootPolicy(); + + void ConstructL(); + +private: // from MContentHandler + + void OnStartDocumentL(const RDocumentParameters &aDocParam, TInt aErrorCode); + + void OnEndDocumentL(TInt aErrorCode); + + void OnStartElementL(const RTagInfo &aElement, const RAttributeArray &aAttributes, + TInt aErrorCode); + + void OnEndElementL(const RTagInfo &aElement, TInt aErrorCode); + + void OnContentL(const TDesC8 &aBytes, TInt aErrorCode); + + void OnStartPrefixMappingL(const RString &aPrefix, const RString &aUri, + TInt aErrorCode); + + void OnEndPrefixMappingL(const RString &aPrefix, TInt aErrorCode); + + void OnIgnorableWhiteSpaceL(const TDesC8 &aBytes, TInt aErrorCode); + + void OnSkippedEntityL(const RString &aName, TInt aErrorCode); + + void OnProcessingInstructionL(const TDesC8 &aTarget, const TDesC8 &aData, + TInt aErrorCode); + + void OnError(TInt aErrorCode); + + TAny *GetExtendedInterface(const TInt32 aUid); + +private: + + CParser* iParser; + RFs iRfs; + vector* iTrustRoots; + string iCurrentContent; + TrustRoot iTrustRoot; +};