diff -r 238f4cb8391f -r ad8ffc8e1982 imgtools/imgcheck/inc/xmlwriter.h --- a/imgtools/imgcheck/inc/xmlwriter.h Thu Jun 10 13:50:24 2010 +0800 +++ b/imgtools/imgcheck/inc/xmlwriter.h Mon Jul 26 11:04:29 2010 +0800 @@ -1,123 +1,123 @@ -/* -* Copyright (c) 2007-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: -* XmlWriter class implementation. -* @internalComponent -* @released -* -*/ - - - -#ifndef XMLWRITER_H -#define XMLWRITER_H - -#include "reportwriter.h" -#include "libxml/xmlwriter.h" -#include "common.h" - -/** -Constants for XML report generation. -xml tags (headers,elements and attribute names). -*/ -const String KXmlEncoding("ISO-8859-1"); -const String KXslFileName("imgcheck.xsl"); -const String KXmlVersion("1.0"); -const String KDtdXslInfo(" \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - \ - ]> \ - "); - -const String KXmlRootElement("imgcheck_report"); -const String KXmlcomment("comment"); -const String KXmlinputcmd("Inputcmd"); - -const String KXmlImageName("Image"); -const String KXmlImageAtt1("name"); - -const String KXmlExeName("Executable"); -const String KXmlExeAtt1("SNo"); -const String KXmlExeAtt2("name"); - -const String KDepName("Dependency"); -const String KDepAtt1("name"); -const String KAtt1("status"); -const String KAtt2("val"); -const String KDepAvaStatus("Available"); -const String KXml("XML"); -const String KXMLDbgFlag("DBG"); -const unsigned int KXmlGenBuffer=1024; - -/** -Xml writer derived class. - -@internalComponent -@released -*/ -class XmlWriter: public ReportWriter -{ -public: - - XmlWriter(const String& aXmlFileName, const String& aInputCommand); - ~XmlWriter(void); - - int CreateXslFile(void); - bool GetXslSourcePath(String& aExePath); - void StartReport(void); - void EndReport(void); - void StartImage(const String& aImageName); - void EndImage(void); - void WriteExeAttribute(ExeAttribute& aOneSetExeAtt); - void StartExecutable(const unsigned int aSerNo, const String& aExeName); - void EndExecutable(void); - void WriteNote(void); - const String& ReportType(void); - -private: - // File stream for xml output. - ofstream iXmlFile; - // Xml file name for output. - const String iXmlFileName; - // Xml Buffer pointer. - xmlBufferPtr iXmlBufPtr; - // Xml write pointer to buffer. - xmlTextWriterPtr iXmlTextWriter; - //Hold the input command string - String iInputCommnd; - //Hold the report type - String iRptType; -}; - -#endif // XMLWRITER_H +/* +* Copyright (c) 2007-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: +* XmlWriter class implementation. +* @internalComponent +* @released +* +*/ + + + +#ifndef XMLWRITER_H +#define XMLWRITER_H + +#include "reportwriter.h" +#include "libxml/xmlwriter.h" +#include "common.h" + +/** +Constants for XML report generation. +xml tags (headers,elements and attribute names). +*/ +const char KXmlEncoding[] = "ISO-8859-1"; +const char KXslFileName[] = "imgcheck.xsl"; +const char KXmlVersion[] = "1.0"; +const char KDtdXslInfo[] = " \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + \ + ]> \ + "; + +const char KXmlRootElement[] = "imgcheck_report"; +const char KXmlcomment[] = "comment"; +const char KXmlinputcmd[] = "Inputcmd"; + +const char KXmlImageName[] = "Image"; +const char KXmlImageAtt1[] = "name"; + +const char KXmlExeName[] = "Executable"; +const char KXmlExeAtt1[] = "SNo"; +const char KXmlExeAtt2[] = "name"; + +const char KDepName[] = "Dependency"; +const char KDepAtt1[] = "name"; +const char KAtt1[] = "status"; +const char KAtt2[] = "val"; +const char KDepAvaStatus[] = "Available"; +const char KXml[] = "XML"; +const char KXMLDbgFlag[] = "DBG"; +const unsigned int KXmlGenBuffer=1024; + +/** +Xml writer derived class. + +@internalComponent +@released +*/ +class XmlWriter: public ReportWriter +{ +public: + + XmlWriter(const string& aXmlFileName, const string& aInputCommand); + ~XmlWriter(void); + + int CreateXslFile(void); + bool GetXslSourcePath(string& aExePath); + void StartReport(void); + void EndReport(void); + void StartImage(const string& aImageName); + void EndImage(void); + void WriteExeAttribute(ExeAttribute& aOneSetExeAtt); + void StartExecutable(const unsigned int aSerNo, const string& aExeName); + void EndExecutable(void); + void WriteNote(void); + const string& ReportType(void); + +private: + // File stream for xml output. + ofstream iXmlFile; + // Xml file name for output. + string iXmlFileName; + // Xml Buffer pointer. + xmlBufferPtr iXmlBufPtr; + // Xml write pointer to buffer. + xmlTextWriterPtr iXmlTextWriter; + //Hold the input command string + string iInputCommnd; + //Hold the report type + string iRptType; +}; + +#endif // XMLWRITER_H