/* --------------------------------------------------------------------- The template library textwolf implements an input iterator on a set of XML path expressions without backward references on an STL conforming input iterator as source. It does no buffering or read ahead and is dedicated for stream processing of XML for a small set of XML queries. Stream processing in this context refers to processing the document without buffering anything but the current result token processed with its tag hierarchy information. Copyright (C) 2010,2011,2012,2013,2014 Patrick Frey This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 3.0 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA -------------------------------------------------------------------- The latest version of textwolf can be found at 'http://github.com/patrickfrey/textwolf' For documentation see 'http://patrickfrey.github.com/textwolf' -------------------------------------------------------------------- */ /// \file textwolf/xmlpathautomatonparse.hpp /// \brief Parser to create a path expression selector automaton from a source (list of path expression in abbreviated syntax of xpath) #ifndef __TEXTWOLF_XML_PATH_AUTOMATON_PARSE_HPP__ #define __TEXTWOLF_XML_PATH_AUTOMATON_PARSE_HPP__ #include "textwolf/xmlpathautomaton.hpp" #include "textwolf/charset.hpp" #include "textwolf/cstringiterator.hpp" #include #include #include #include #include #include namespace textwolf { ///\class XMLPathSelectAutomatonParser ///\tparam SrcCharSet character set of the automaton definition source ///\tparam AtmCharSet character set of the token defintions of the automaton ///\brief Automaton to define XML path expressions and assign types (int values) to them template class XMLPathSelectAutomatonParser :public XMLPathSelectAutomaton { public: typedef XMLPathSelectAutomaton ThisAutomaton; typedef typename ThisAutomaton::PathElement PathElement; typedef XMLPathSelectAutomatonParser This; typedef TextScanner SrcScanner; public: ///\brief Constructor XMLPathSelectAutomatonParser(){} virtual ~XMLPathSelectAutomatonParser(){} int addExpression( int typeidx, const char* esrc, std::size_t esrcsize) { std::string idstrings; CStringIterator pitr( esrc, esrcsize); SrcScanner pp( m_srccharset, pitr); std::vector idref; for (; *pp; skipSpaces( pp)) { switch (*pp) { case '/': case '@': ++pp; continue; case '[': while (*pp != 0 && *pp != ']') pp++; if (*pp == 0) return pp.getPosition()+1; ++pp; continue; default: if (pp.control() == Undef || pp.control() == Any) { idref.push_back( parseIdentifier( pp, idstrings)); } else { return pp.getPosition()+1; } } } typename std::vector::const_iterator di = idref.begin(), de = idref.end(); CStringIterator itr( esrc, esrcsize); SrcScanner src( m_srccharset, itr); PathElement expr( this); for (; *src; skipSpaces( src)) { switch (*src) { case '@': { if (di == de) return src.getPosition()+1; ++src; skipIdentifier( src); expr( getIdentifier( *di, idstrings) ); } case '/': { ++src; if (*src == '/') { ++src; if (*src == '@') { if (di == de) return src.getPosition()+1; ++src; skipIdentifier( src); expr -- ( getIdentifier( *di, idstrings) ); } else { if (di == de) return src.getPosition()+1; skipIdentifier( src); expr -- [ getIdentifier( *di, idstrings) ]; } } else { if (*src == '@') { if (di == de) return src.getPosition()+1; ++src; skipIdentifier( src); expr ( getIdentifier( *di, idstrings) ); } else { if (di == de) return src.getPosition()+1; skipIdentifier( src); expr [ getIdentifier( *di, idstrings) ]; } } continue; } case '[': { // Range int range_start = -1; int range_end = -1; ++src; skipSpaces( src); range_start = parseNum( src); if (range_start < 0) return src.getPosition()+1; skipSpaces( src); if (*src == ',') { ++src; skipSpaces( src); if (*src == ']') { expr.FROM( range_start); ++src; } else { range_end = parseNum( src); if (range_end < 0) return src.getPosition()+1; ++src; skipSpaces( src); if (*src != ']') return src.getPosition()+1; expr.RANGE( range_start, range_end); ++src; } } else if (*src == ']') { range_start = range_end; expr.INDEX( range_start); ++src; } else { return src.getPosition()+1; } continue; } default: return src.getPosition()+1; } } expr.assignType( typeidx); return 0; } private: static void skipSpaces( SrcScanner& src) { for (; src.control() == Space; ++src); } static int parseNum( SrcScanner& src) { std::string num; for (; *src>='0' && *src<='9';++src) num.push_back( *src); if (num.size() == 0 || num.size() > 8) return -1; return std::atoi( num.c_str()); } std::size_t parseIdentifier( SrcScanner& src, std::string& idstrings) { std::size_t rt = idstrings.size(); for (; src.control() == Undef || src.control() == Any; ++src) { m_atmcharset.print( *src, idstrings); } m_atmcharset.print( 0, idstrings); return rt; } static void skipIdentifier( SrcScanner& src) { for (; src.control() == Undef || src.control() == Any; ++src); } const char* getIdentifier( std::size_t idx, const std::string& idstrings) const { return idstrings.c_str() + idx; } private: AtmCharSet m_atmcharset; SrcCharSet m_srccharset; }; } //namespace #endif