81 lines
3.2 KiB
C++
81 lines
3.2 KiB
C++
//
|
|
// ********************************************************************
|
|
// * DISCLAIMER *
|
|
// * *
|
|
// * The following disclaimer summarizes all the specific disclaimers *
|
|
// * of contributors to this software. The specific disclaimers,which *
|
|
// * govern, are listed with their locations in: *
|
|
// * http://cern.ch/geant4/license *
|
|
// * *
|
|
// * Neither the authors of this software system, nor their employing *
|
|
// * institutes,nor the agencies providing financial support for this *
|
|
// * work make any representation or warranty, express or implied, *
|
|
// * regarding this software system or assume any liability for its *
|
|
// * use. *
|
|
// * *
|
|
// * This code implementation is the intellectual property of the *
|
|
// * GEANT4 collaboration. *
|
|
// * By copying, distributing or modifying the Program (or any work *
|
|
// * based on the Program) you indicate your acceptance of this *
|
|
// * statement, and all its terms. *
|
|
// ********************************************************************
|
|
//
|
|
#ifndef XMLWRITER_H
|
|
#define XMLWRITER_H 1
|
|
|
|
#include "FreeHepTypes.h"
|
|
|
|
#include <iostream>
|
|
#include <map>
|
|
#include <stack>
|
|
#include <vector>
|
|
#include <string>
|
|
|
|
#include "IndentPrintWriter.h"
|
|
|
|
/**
|
|
* A class that makes it easy to write XML documents.
|
|
*
|
|
* @author Tony Johnson
|
|
* @author Mark Donszelmann
|
|
*/
|
|
class XMLWriter {
|
|
|
|
public:
|
|
XMLWriter(std::ostream* out, std::string indentString = " ", std::string defaultNameSpace = "");
|
|
virtual ~XMLWriter();
|
|
void close();
|
|
void openDoc(std::string version = "1.0", std::string encoding = "", bool standalone = false);
|
|
void referToDTD(std::string name, std::string pid, std::string ref);
|
|
void referToDTD(std::string name, std::string system);
|
|
void closeDoc();
|
|
void printComment(std::string comment);
|
|
void print(std::string text);
|
|
void println(std::string text);
|
|
void openTag(std::string ns, std::string name);
|
|
void openTag(std::string name);
|
|
void closeTag();
|
|
void printTag(std::string ns, std::string name);
|
|
void printTag(std::string name);
|
|
void setAttribute(std::string name, std::string value);
|
|
void setAttribute(std::string ns, std::string name, std::string value);
|
|
void setAttribute(std::string name, double value);
|
|
void setAttribute(std::string ns, std::string name, double value);
|
|
void printAttributes(int tagLength);
|
|
std::string normalize(std::string s);
|
|
std::string normalizeText(std::string s);
|
|
void checkNameValid(std::string s);
|
|
|
|
protected:
|
|
bool closed;
|
|
IndentPrintWriter* writer;
|
|
std::string defaultNameSpace;
|
|
|
|
private:
|
|
std::string* dtdName;
|
|
std::map<std::string, std::string> attributes;
|
|
std::stack<std::string> openTags;
|
|
};
|
|
|
|
#endif
|