mirror of
https://github.com/YACReader/yacreader
synced 2025-07-18 13:04:28 -04:00
Add commit 43aab01 of BenHanson/lexertl14 from github
This commit is contained in:
committed by
Luis Ángel San Martín
parent
c4f792bd40
commit
d3de52ca82
96
YACReaderLibrary/lexertl/parser/tree/iteration_node.hpp
Normal file
96
YACReaderLibrary/lexertl/parser/tree/iteration_node.hpp
Normal file
@ -0,0 +1,96 @@
|
||||
// iteration_node.hpp
|
||||
// Copyright (c) 2005-2018 Ben Hanson (http://www.benhanson.net/)
|
||||
//
|
||||
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
||||
// file licence_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
||||
#ifndef LEXERTL_ITERATION_NODE_HPP
|
||||
#define LEXERTL_ITERATION_NODE_HPP
|
||||
|
||||
#include "node.hpp"
|
||||
|
||||
namespace lexertl
|
||||
{
|
||||
namespace detail
|
||||
{
|
||||
template<typename id_type>
|
||||
class basic_iteration_node : public basic_node<id_type>
|
||||
{
|
||||
public:
|
||||
using node = basic_node<id_type>;
|
||||
using bool_stack = typename node::bool_stack;
|
||||
using const_node_stack = typename node::const_node_stack;
|
||||
using node_ptr_vector = typename node::node_ptr_vector;
|
||||
using node_stack = typename node::node_stack;
|
||||
using node_type = typename node::node_type;
|
||||
using node_vector = typename node::node_vector;
|
||||
|
||||
basic_iteration_node(observer_ptr<node> next_, const bool greedy_) :
|
||||
node(true),
|
||||
_next(next_),
|
||||
_greedy(greedy_)
|
||||
{
|
||||
_next->append_firstpos(node::_firstpos);
|
||||
_next->append_lastpos(node::_lastpos);
|
||||
|
||||
for (observer_ptr<node> node_ : node::_lastpos)
|
||||
{
|
||||
node_->append_followpos(node::_firstpos);
|
||||
}
|
||||
|
||||
for (observer_ptr<node> node_ : node::_firstpos)
|
||||
{
|
||||
node_->greedy(greedy_);
|
||||
}
|
||||
}
|
||||
|
||||
virtual ~basic_iteration_node() override
|
||||
{
|
||||
}
|
||||
|
||||
virtual node_type what_type() const override
|
||||
{
|
||||
return node::ITERATION;
|
||||
}
|
||||
|
||||
virtual bool traverse(const_node_stack &node_stack_,
|
||||
bool_stack &perform_op_stack_) const override
|
||||
{
|
||||
perform_op_stack_.push(true);
|
||||
node_stack_.push(_next);
|
||||
return true;
|
||||
}
|
||||
|
||||
private:
|
||||
observer_ptr<node> _next;
|
||||
bool _greedy;
|
||||
|
||||
virtual void copy_node(node_ptr_vector &node_ptr_vector_,
|
||||
node_stack &new_node_stack_, bool_stack &perform_op_stack_,
|
||||
bool &down_) const override
|
||||
{
|
||||
if (perform_op_stack_.top())
|
||||
{
|
||||
observer_ptr<node> ptr_ = new_node_stack_.top();
|
||||
|
||||
node_ptr_vector_.emplace_back
|
||||
(std::make_unique<basic_iteration_node>(ptr_, _greedy));
|
||||
new_node_stack_.top() = node_ptr_vector_.back().get();
|
||||
}
|
||||
else
|
||||
{
|
||||
down_ = true;
|
||||
}
|
||||
|
||||
perform_op_stack_.pop();
|
||||
}
|
||||
|
||||
// No copy construction.
|
||||
basic_iteration_node(const basic_iteration_node &) = delete;
|
||||
// No assignment.
|
||||
const basic_iteration_node &operator =
|
||||
(const basic_iteration_node &) = delete;
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user