Skip to content
Snippets Groups Projects
Commit 56caa0d9 authored by Tomáš Pecka's avatar Tomáš Pecka
Browse files

Allow to call RegExp::toXML on const regexp

parent 4212016e
No related branches found
No related tags found
No related merge requests found
......@@ -81,11 +81,11 @@ bool RegExp::containsEmptyString() const {
return false;
}
 
void RegExp::toXML(ostream& out) {
void RegExp::toXML(ostream& out) const {
RegExpPrinter::toXML(*this, out);
}
 
ostream& operator <<(ostream& out, RegExp& regexp) {
ostream& operator <<(ostream& out, const RegExp& regexp) {
regexp.toXML(out);
return out;
}
......
......@@ -69,14 +69,14 @@ public:
* Prints XML representation of the RegExp to the output stream.
* @param out output stream to which print the RegExp
*/
void toXML(ostream& out);
void toXML(ostream& out) const;
 
/**
* Prints XML representation of the RegExp to the output stream.
* @param out output stream to which print the RegExp
* @param regexp RegExp to print
*/
friend ostream& operator<<(ostream& out, RegExp& regexp);
friend ostream& operator<<(ostream& out, const RegExp& regexp);
 
bool operator<(const RegExp&) const;
bool operator<=(const RegExp&) const;
......
......@@ -11,44 +11,44 @@ namespace regexp {
 
const string RegExpPrinter::INDENTATION = "\t";
 
void RegExpPrinter::toXML(RegExp& regexp, ostream& out) {
void RegExpPrinter::toXML(const RegExp& regexp, ostream& out) {
out << "<regexp>\n";
printElement(regexp.getRegExp(), out, INDENTATION);
out << "</regexp>\n";
}
 
void RegExpPrinter::printElement(RegExpElement* element, ostream& out, string prefix) {
Alternation* alternation = dynamic_cast<Alternation*>(element);
void RegExpPrinter::printElement(const RegExpElement* element, ostream& out, const string & prefix) {
const Alternation* alternation = dynamic_cast<const Alternation*>(element);
if (alternation) {
printAlternation(alternation, out, prefix);
return;
}
 
Concatenation* concatenation = dynamic_cast<Concatenation*>(element);
const Concatenation* concatenation = dynamic_cast<const Concatenation*>(element);
if(concatenation) {
printConcatenation(concatenation,out, prefix);
return;
}
 
Iteration* iteration = dynamic_cast<Iteration*>(element);
const Iteration* iteration = dynamic_cast<const Iteration*>(element);
if (iteration) {
printIteration(iteration, out, prefix);
return;
}
 
RegExpEpsilon* epsilon = dynamic_cast<RegExpEpsilon*>(element);
const RegExpEpsilon* epsilon = dynamic_cast<const RegExpEpsilon*>(element);
if (epsilon) {
printEpsilon(epsilon, out, prefix);
return;
}
 
RegExpEmpty* empty = dynamic_cast<RegExpEmpty*>(element);
const RegExpEmpty* empty = dynamic_cast<const RegExpEmpty*>(element);
if (empty) {
printEmpty(empty, out, prefix);
return;
}
 
RegExpSymbol* symbol = dynamic_cast<RegExpSymbol*>(element);
const RegExpSymbol* symbol = dynamic_cast<const RegExpSymbol*>(element);
if (symbol) {
printSymbol(symbol, out, prefix);
return;
......@@ -56,43 +56,43 @@ void RegExpPrinter::printElement(RegExpElement* element, ostream& out, string pr
 
}
 
void RegExpPrinter::printContent(list<RegExpElement*>& content, ostream& out, string prefix) {
void RegExpPrinter::printContent(const list<RegExpElement*>& content, ostream& out, const string & prefix) {
for (auto element : content) {
printElement(element, out, prefix);
}
}
 
void RegExpPrinter::printAlternation(Alternation* alternation, ostream& out, string prefix) {
void RegExpPrinter::printAlternation(const Alternation* alternation, ostream& out, const string & prefix) {
out << prefix << "<alternation>\n";
printContent(alternation->getElements(), out, prefix + INDENTATION);
out << prefix << "</alternation>\n";
}
 
void RegExpPrinter::printConcatenation(Concatenation* concatenation, ostream& out, string prefix) {
void RegExpPrinter::printConcatenation(const Concatenation* concatenation, ostream& out, const string & prefix) {
out << prefix <<"<concatenation>\n";
printContent(concatenation->getElements(), out, prefix + INDENTATION);
out << prefix <<"</concatenation>\n";
 
}
 
void RegExpPrinter::printIteration(Iteration* iteration, ostream& out, string prefix) {
void RegExpPrinter::printIteration(const Iteration* iteration, ostream& out, const string & prefix) {
out << prefix << "<iteration>\n";
printElement(iteration->getElement(), out, prefix + INDENTATION);
out << prefix << "</iteration>\n";
}
 
void RegExpPrinter::printSymbol(RegExpSymbol* symbol, ostream& out, string prefix) {
void RegExpPrinter::printSymbol(const RegExpSymbol* symbol, ostream& out, const string & prefix) {
out << prefix << "<symbol>";
out << symbol->getSymbol();
out << "</symbol>\n";
}
 
void RegExpPrinter::printEpsilon(RegExpEpsilon* symbol, ostream& out, string prefix) {
void RegExpPrinter::printEpsilon(const RegExpEpsilon* symbol, ostream& out, const string & prefix) {
out << prefix << "<epsilon>";
out << "</epsilon>\n";
}
 
void RegExpPrinter::printEmpty(RegExpEmpty* symbol, ostream& out, string prefix) {
void RegExpPrinter::printEmpty(const RegExpEmpty* symbol, ostream& out, const string & prefix) {
out << prefix << "<empty>";
out << "</empty>\n";
}
......
......@@ -27,15 +27,15 @@ using namespace std;
class RegExpPrinter {
protected:
static const string INDENTATION;
static void printElement(RegExpElement* element, ostream& out, string prefix);
static void printContent(list<RegExpElement*>& content, ostream& out, string prefix);
static void printAlternation(Alternation* alternation, ostream& out, string prefix);
static void printConcatenation(Concatenation* concatenation, ostream& out, string prefix);
static void printElement(const RegExpElement* element, ostream& out, const string & prefix);
static void printContent(const list<RegExpElement*>& content, ostream& out, const string & prefix);
static void printAlternation(const Alternation* alternation, ostream& out, const string & prefix);
static void printConcatenation(const Concatenation* concatenation, ostream& out, const string & prefix);
 
static void printIteration(Iteration* iteration, ostream& out, string prefix);
static void printSymbol(RegExpSymbol* symbol, ostream& out, string prefix);
static void printEpsilon(RegExpEpsilon* symbol, ostream& out, string prefix);
static void printEmpty(RegExpEmpty* symbol, ostream& out, string prefix);
static void printIteration(const Iteration* iteration, ostream& out, const string & prefix);
static void printSymbol(const RegExpSymbol* symbol, ostream& out, const string & prefix);
static void printEpsilon(const RegExpEpsilon* symbol, ostream& out, const string & prefix);
static void printEmpty(const RegExpEmpty* symbol, ostream& out, const string & prefix);
 
public:
/**
......@@ -43,7 +43,7 @@ public:
* @param regexp RegExp to print
* @param out output stream to which print the RegExp
*/
static void toXML(RegExp& regexp, ostream& out);
static void toXML(const RegExp& regexp, ostream& out);
};
 
} /* namespace regexp */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment