Skip to content
Snippets Groups Projects
Commit f6ba975e authored by Jan Trávníček's avatar Jan Trávníček
Browse files

Map container

parent 76ae38a1
No related branches found
No related tags found
No related merge requests found
...@@ -63,6 +63,14 @@ std::list<sax::Token> api<container::ObjectsPair>::compose(const container::Obje ...@@ -63,6 +63,14 @@ std::list<sax::Token> api<container::ObjectsPair>::compose(const container::Obje
return ToXMLComposers::containerComposer.compose(data); return ToXMLComposers::containerComposer.compose(data);
} }
   
container::ObjectsMap api<container::ObjectsMap>::parse(std::list<sax::Token>& input) {
return FromXMLParsers::containerParser.parseObjectsMap(input);
}
std::list<sax::Token> api<container::ObjectsMap>::compose(const container::ObjectsMap& data) {
return ToXMLComposers::containerComposer.compose(data);
}
alib::Object api<alib::Object>::parse(std::list<sax::Token>& input) { alib::Object api<alib::Object>::parse(std::list<sax::Token>& input) {
return FromXMLParsers::objectParser.parseObject(input); return FromXMLParsers::objectParser.parseObject(input);
} }
...@@ -472,6 +480,10 @@ void ToXMLComposers::Visit(void* data, const container::ObjectsPair& container) ...@@ -472,6 +480,10 @@ void ToXMLComposers::Visit(void* data, const container::ObjectsPair& container)
*((std::list<sax::Token>*) data) = std::move(api<container::ObjectsPair>::compose(container)); *((std::list<sax::Token>*) data) = std::move(api<container::ObjectsPair>::compose(container));
} }
   
void ToXMLComposers::Visit(void* data, const container::ObjectsMap& container) const {
*((std::list<sax::Token>*) data) = std::move(api<container::ObjectsMap>::compose(container));
}
void ToXMLComposers::Visit(void* data, const exception::AlibException& symbol) const { void ToXMLComposers::Visit(void* data, const exception::AlibException& symbol) const {
*((std::list<sax::Token>*) data) = std::move(api<exception::AlibException>::compose(symbol)); *((std::list<sax::Token>*) data) = std::move(api<exception::AlibException>::compose(symbol));
} }
......
...@@ -72,6 +72,18 @@ struct api<container::ObjectsPair> { ...@@ -72,6 +72,18 @@ struct api<container::ObjectsPair> {
static std::list<sax::Token> compose(const container::ObjectsPair& data); static std::list<sax::Token> compose(const container::ObjectsPair& data);
}; };
   
template<typename T, typename R>
struct api<std::map<T, R>> {
static std::map<T, R> parse(std::list<sax::Token>& input);
static std::list<sax::Token> compose(const std::map<T, R>& data);
};
template<>
struct api<container::ObjectsMap> {
static container::ObjectsMap parse(std::list<sax::Token>& input);
static std::list<sax::Token> compose(const container::ObjectsMap& data);
};
   
template<> template<>
struct api<Object> { struct api<Object> {
...@@ -459,6 +471,7 @@ class ToXMLComposers : public VisitableObjectBase::const_visitor_type { ...@@ -459,6 +471,7 @@ class ToXMLComposers : public VisitableObjectBase::const_visitor_type {
void Visit(void*, const container::ObjectsSet& set) const; void Visit(void*, const container::ObjectsSet& set) const;
void Visit(void*, const container::ObjectsVector& set) const; void Visit(void*, const container::ObjectsVector& set) const;
void Visit(void*, const container::ObjectsPair& set) const; void Visit(void*, const container::ObjectsPair& set) const;
void Visit(void*, const container::ObjectsMap& set) const;
   
public: public:
static const label::LabelToXMLComposer labelComposer; static const label::LabelToXMLComposer labelComposer;
...@@ -504,6 +517,16 @@ std::list<sax::Token> api<std::pair<T, R>>::compose(const std::pair<T, R>& input ...@@ -504,6 +517,16 @@ std::list<sax::Token> api<std::pair<T, R>>::compose(const std::pair<T, R>& input
return ToXMLComposers::containerComposer.compose<T, R>(input); return ToXMLComposers::containerComposer.compose<T, R>(input);
} }
   
template<typename T, typename R>
std::map<T, R> api<std::map<T, R>>::parse(std::list<sax::Token>& input) {
return FromXMLParsers::containerParser.parseMap<T, R>(input);
}
template<typename T, typename R>
std::list<sax::Token> api<std::map<T, R>>::compose(const std::map<T, R>& input) {
return ToXMLComposers::containerComposer.compose<T, R>(input);
}
} /* namespace alib */ } /* namespace alib */
   
#endif /* FROM_XML_PARSERS_HPP_ */ #endif /* FROM_XML_PARSERS_HPP_ */
...@@ -16,7 +16,8 @@ namespace container { ...@@ -16,7 +16,8 @@ namespace container {
typedef std::acceptor_base< typedef std::acceptor_base<
container::ObjectsSet, container::ObjectsSet,
container::ObjectsVector, container::ObjectsVector,
container::ObjectsPair container::ObjectsPair,
container::ObjectsMap
> VisitableContainerBase; > VisitableContainerBase;
   
/** /**
......
...@@ -13,7 +13,8 @@ namespace container { ...@@ -13,7 +13,8 @@ namespace container {
enum class FEATURES { enum class FEATURES {
SET, SET,
VECTOR, VECTOR,
PAIR PAIR,
MAP
}; };
   
} /* namespace container */ } /* namespace container */
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
namespace container { namespace container {
   
bool ContainerFromXMLParser::first(std::list<sax::Token>& input) const { bool ContainerFromXMLParser::first(std::list<sax::Token>& input) const {
if(isToken(input, sax::Token::TokenType::START_ELEMENT, "set") || isToken(input, sax::Token::TokenType::START_ELEMENT, "vector") || isToken(input, sax::Token::TokenType::START_ELEMENT, "pair")) { if(isToken(input, sax::Token::TokenType::START_ELEMENT, "set") || isToken(input, sax::Token::TokenType::START_ELEMENT, "vector") || isToken(input, sax::Token::TokenType::START_ELEMENT, "pair") || isToken(input, sax::Token::TokenType::START_ELEMENT, "map")) {
return true; return true;
} else { } else {
return false; return false;
...@@ -19,7 +19,7 @@ bool ContainerFromXMLParser::first(std::list<sax::Token>& input) const { ...@@ -19,7 +19,7 @@ bool ContainerFromXMLParser::first(std::list<sax::Token>& input) const {
} }
   
Container ContainerFromXMLParser::parseContainer(std::list<sax::Token>& input) const { Container ContainerFromXMLParser::parseContainer(std::list<sax::Token>& input) const {
return parseContainer(input, std::set<FEATURES>({FEATURES::SET, FEATURES::VECTOR, FEATURES::PAIR})); return parseContainer(input, std::set<FEATURES>({FEATURES::SET, FEATURES::VECTOR, FEATURES::PAIR, FEATURES::MAP}));
} }
   
Container ContainerFromXMLParser::parseContainer(std::list<sax::Token>& input, const std::set<FEATURES>& features) const { Container ContainerFromXMLParser::parseContainer(std::list<sax::Token>& input, const std::set<FEATURES>& features) const {
...@@ -32,8 +32,11 @@ Container ContainerFromXMLParser::parseContainer(std::list<sax::Token>& input, c ...@@ -32,8 +32,11 @@ Container ContainerFromXMLParser::parseContainer(std::list<sax::Token>& input, c
} else if(isToken(input, sax::Token::TokenType::START_ELEMENT, "pair")) { } else if(isToken(input, sax::Token::TokenType::START_ELEMENT, "pair")) {
if(!features.count(FEATURES::PAIR)) throw exception::AlibException(); if(!features.count(FEATURES::PAIR)) throw exception::AlibException();
return Container(parseObjectsPair(input)); return Container(parseObjectsPair(input));
} else if(isToken(input, sax::Token::TokenType::START_ELEMENT, "map")) {
if(!features.count(FEATURES::MAP)) throw exception::AlibException();
return Container(parseObjectsMap(input));
} else { } else {
throw sax::ParserException(sax::Token("set / vector", sax::Token::TokenType::START_ELEMENT), input.front()); throw sax::ParserException(sax::Token("set / vector / pair / map", sax::Token::TokenType::START_ELEMENT), input.front());
} }
} }
   
...@@ -75,5 +78,17 @@ ObjectsPair ContainerFromXMLParser::parseObjectsPair(std::list<sax::Token>& inpu ...@@ -75,5 +78,17 @@ ObjectsPair ContainerFromXMLParser::parseObjectsPair(std::list<sax::Token>& inpu
return pair; return pair;
} }
   
ObjectsMap ContainerFromXMLParser::parseObjectsMap(std::list<sax::Token>& input) const {
popToken(input, sax::Token::TokenType::START_ELEMENT, "map");
ObjectsMap map;
while(isTokenType(input, sax::Token::TokenType::START_ELEMENT)) {
map.insert(alib::api<std::pair<alib::Object, alib::Object>>::parse(input));
}
popToken(input, sax::Token::TokenType::END_ELEMENT, "map");
return map;
}
} /* namespace container */ } /* namespace container */
   
...@@ -13,6 +13,8 @@ ...@@ -13,6 +13,8 @@
   
#include "ObjectsSet.h" #include "ObjectsSet.h"
#include "ObjectsVector.h" #include "ObjectsVector.h"
#include "ObjectsPair.h"
#include "ObjectsMap.h"
   
#include "Container.h" #include "Container.h"
   
...@@ -47,6 +49,11 @@ class ContainerFromXMLParser : public sax::FromXMLParserHelper { ...@@ -47,6 +49,11 @@ class ContainerFromXMLParser : public sax::FromXMLParserHelper {
   
ObjectsPair parseObjectsPair(std::list<sax::Token>& input) const; ObjectsPair parseObjectsPair(std::list<sax::Token>& input) const;
   
template<typename T, typename R>
std::map<T, R> parseMap(std::list<sax::Token>& input) const;
ObjectsMap parseObjectsMap(std::list<sax::Token>& input) const;
template<typename T> friend class alib::api; template<typename T> friend class alib::api;
   
public: public:
...@@ -98,6 +105,20 @@ std::pair<T, R> ContainerFromXMLParser::parsePair(std::list<sax::Token>& input) ...@@ -98,6 +105,20 @@ std::pair<T, R> ContainerFromXMLParser::parsePair(std::list<sax::Token>& input)
return std::make_pair(first, second); return std::make_pair(first, second);
} }
   
template<typename T, typename R>
std::map<T, R> ContainerFromXMLParser::parseMap(std::list<sax::Token>& input) const {
popToken(input, sax::Token::TokenType::START_ELEMENT, "map");
std::map<T, R> map;
while(isTokenType(input, sax::Token::TokenType::START_ELEMENT)) {
map.insert(alib::api<std::pair<T, R>>::parse(input));
}
popToken(input, sax::Token::TokenType::END_ELEMENT, "map");
return map;
}
} /* namespace container */ } /* namespace container */
   
#endif /* CONTAINER_FROM_XML_PARSER_H_ */ #endif /* CONTAINER_FROM_XML_PARSER_H_ */
......
...@@ -56,5 +56,17 @@ std::list<sax::Token> ContainerToXMLComposer::compose(const ObjectsPair& contain ...@@ -56,5 +56,17 @@ std::list<sax::Token> ContainerToXMLComposer::compose(const ObjectsPair& contain
return out; return out;
} }
   
std::list<sax::Token> ContainerToXMLComposer::compose(const ObjectsMap& container) const {
std::list<sax::Token> out;
out.push_back(sax::Token("map", sax::Token::TokenType::START_ELEMENT));
for(const std::pair<alib::Object, alib::Object>& item : container) {
out.splice(out.end(), alib::api<std::pair<alib::Object, alib::Object>>::compose(item));
}
out.push_back(sax::Token("map", sax::Token::TokenType::END_ELEMENT));
return out;
}
} /* namespace container */ } /* namespace container */
   
...@@ -58,6 +58,11 @@ class ContainerToXMLComposer { ...@@ -58,6 +58,11 @@ class ContainerToXMLComposer {
   
std::list<sax::Token> compose(const ObjectsPair& container) const; std::list<sax::Token> compose(const ObjectsPair& container) const;
   
template<typename T, typename R>
std::list<sax::Token> compose(const std::map<T, R>& container) const;
std::list<sax::Token> compose(const ObjectsMap& container) const;
template<typename T> friend class alib::api; template<typename T> friend class alib::api;
}; };
   
...@@ -105,6 +110,19 @@ std::list<sax::Token> ContainerToXMLComposer::compose(const std::pair<T, R>& con ...@@ -105,6 +110,19 @@ std::list<sax::Token> ContainerToXMLComposer::compose(const std::pair<T, R>& con
return out; return out;
} }
   
template<typename T, typename R>
std::list<sax::Token> ContainerToXMLComposer::compose(const std::map<T, R>& container) const {
std::list<sax::Token> out;
out.push_back(sax::Token("map", sax::Token::TokenType::START_ELEMENT));
for(const std::pair<T, R>& item : container) {
out.splice(out.end(), alib::api<std::pair<T, R>>::compose(item));
}
out.push_back(sax::Token("map", sax::Token::TokenType::END_ELEMENT));
return out;
}
} /* namespace container */ } /* namespace container */
   
#endif /* CONTAINER_TO_XML_COMPOSER_H_ */ #endif /* CONTAINER_TO_XML_COMPOSER_H_ */
......
/*
* Map.cpp
*
* Created on: Apr 1, 2013
* Author: Jan Travnicek
*/
#include "ObjectsMap.h"
#include "../std/map.hpp"
#include <cstdlib>
#include <iostream>
#include <sstream>
namespace container {
ContainerBase* ObjectsMap::clone() const {
return new ObjectsMap(*this);
}
ContainerBase* ObjectsMap::plunder() && {
return new ObjectsMap(std::move(*this));
}
bool ObjectsMap::operator==(const ObjectBase& other) const {
return other == *this;
}
bool ObjectsMap::operator<(const ObjectBase& other) const {
return other > *this;
}
bool ObjectsMap::operator>(const ObjectBase& other) const {
return other < *this;
}
bool ObjectsMap::operator==(const ObjectsMap& other) const {
return static_cast<const std::map<alib::Object, alib::Object>>(*this) == static_cast<const std::map<alib::Object, alib::Object>>(other);
}
bool ObjectsMap::operator<(const ObjectsMap& other) const {
return static_cast<const std::map<alib::Object, alib::Object>>(*this) < static_cast<const std::map<alib::Object, alib::Object>>(other);
}
void ObjectsMap::operator>>(std::ostream& os) const {
os << *this;
}
ObjectsMap::operator std::string() const {
std::stringstream ss;
ss << *this;
return std::move(ss).str();
}
} /* namespace container */
/*
* Map.h
*
* Created on: Apr 1, 2013
* Author: Jan Travnicek
*/
#ifndef OBJECTS_MAP_H_
#define OBJECTS_MAP_H_
#include <map>
#include <string>
#include "../object/Object.h"
#include "ContainerBase.h"
namespace container {
/**
* Basic container from which are derived all other containers.
* Contains reason why the container occured.
*/
class ObjectsMap : public std::map<alib::Object, alib::Object>, public std::acceptor<ObjectsMap, VisitableContainerBase, std::acceptor<ObjectsMap, alib::VisitableObjectBase, ContainerBase> > {
public:
virtual ContainerBase* clone() const;
virtual ContainerBase* plunder() &&;
virtual bool operator>(const alib::ObjectBase& other) const;
virtual bool operator==(const alib::ObjectBase& other) const;
virtual bool operator<(const alib::ObjectBase& other) const;
virtual bool operator==(const ObjectsMap& other) const;
virtual bool operator<(const ObjectsMap& other) const;
virtual void operator>>(std::ostream& os) const;
virtual operator std::string() const;
virtual int selfTypeId() const {
return typeId(*this);
}
};
} /* namespace container */
#endif /* OBJECTS_MAP_H_ */
...@@ -93,6 +93,7 @@ namespace container { ...@@ -93,6 +93,7 @@ namespace container {
class ObjectsSet; class ObjectsSet;
class ObjectsVector; class ObjectsVector;
class ObjectsPair; class ObjectsPair;
class ObjectsMap;
   
} }
   
...@@ -106,7 +107,7 @@ typedef std::acceptor_base< ...@@ -106,7 +107,7 @@ typedef std::acceptor_base<
regexp::UnboundedRegExp, regexp::FormalRegExp, regexp::UnboundedRegExp, regexp::FormalRegExp,
string::Epsilon, string::LinearString, string::CyclicString, string::Epsilon, string::LinearString, string::CyclicString,
alphabet::LabeledSymbol, alphabet::BlankSymbol, alphabet::BottomOfTheStackSymbol, alphabet::EndSymbol, alphabet::LabeledSymbol, alphabet::BlankSymbol, alphabet::BottomOfTheStackSymbol, alphabet::EndSymbol,
container::ObjectsSet, container::ObjectsVector, container::ObjectsPair container::ObjectsSet, container::ObjectsVector, container::ObjectsPair, container::ObjectsMap
> VisitableObjectBase; > VisitableObjectBase;
   
class ObjectBase : class ObjectBase :
...@@ -119,7 +120,7 @@ class ObjectBase : ...@@ -119,7 +120,7 @@ class ObjectBase :
regexp::UnboundedRegExp, regexp::FormalRegExp, regexp::UnboundedRegExp, regexp::FormalRegExp,
string::Epsilon, string::LinearString, string::CyclicString, string::Epsilon, string::LinearString, string::CyclicString,
alphabet::LabeledSymbol, alphabet::BlankSymbol, alphabet::BottomOfTheStackSymbol, alphabet::EndSymbol, alphabet::LabeledSymbol, alphabet::BlankSymbol, alphabet::BottomOfTheStackSymbol, alphabet::EndSymbol,
container::ObjectsSet, container::ObjectsVector, container::ObjectsPair container::ObjectsSet, container::ObjectsVector, container::ObjectsPair, container::ObjectsMap
>, public VisitableObjectBase { >, public VisitableObjectBase {
}; };
   
......
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