contentmgmt/referencedrmagent/RefTestAgent/RTAParser/contentparser.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Thu, 27 May 2010 14:32:46 +0300
changeset 66 8873e6835f7b
parent 8 35751d3474b7
permissions -rw-r--r--
Revision: 201021 Kit: 2010121

/*
* Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of the License "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: 
*
*/


/**
 @file
 @internalComponent
 @released
*/

#ifndef __CONTENTPARSER_H__
#define __CONTENTPARSER_H__

#include <caf/attributeset.h>
#include <caf/stringattributeset.h>
#include "parsehandlerbase.h"
#include "stringparser.h"

namespace ReferenceTestAgent
	{
	class CDrmFileContainer;

	/** Parses everything between the <Content> </Content> tags
	and writes the results to the relevant CDrmFileContent object
	*/
	class CContentParser : public CParseHandlerBase, public MStringParser
		{
	public:
		static CContentParser* NewL(CDrmFileContainer& aCurrentContainer);
		virtual ~CContentParser();

		// Overrides CParseHandlerBase functionality
		virtual void ParseStartElementL(const Xml::RTagInfo& aElement, const Xml::RAttributeArray& aAttributes);
		virtual void ParseEndElementL(const Xml::RTagInfo& aElement);
			
		// From MStringParser
		virtual void StringParseCompleteL(const TDesC& aString);
		
		void SetAttributeL(TInt aAttribute, TInt aValue);
		void SetStringAttributeL(TInt aStringAttribute, const TDesC& aValue);
	
	private:
		CContentParser(CDrmFileContainer& aCurrentContainer);

	private:
		TParserWaitingForTag iWaitingForTag;
		
		CDrmFileContainer& iCurrentContainer;
		HBufC* iName;
		HBufC* iUniqueId;
		HBufC* iFileName;
		HBufC8* iCid;
		ContentAccess::RAttributeSet iAttributeSet;
		ContentAccess::RStringAttributeSet iStringAttributeSet;
		};
	}

#endif