From 8b707351c72edb799195ea8c8423f34c72c5c46b Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Tue, 31 Mar 2015 04:09:03 +0200 Subject: Add generator_t --- src/CMakeLists.txt | 1 + src/generator.cpp | 44 ++++++++++++++++++++++++++++++++++++++++++++ src/generator.hpp | 46 ++++++++++++++++++++++++++++++++++++++++++++++ src/parser_state.cpp | 7 +------ src/parser_state.hpp | 8 +++----- src/solar.cpp | 4 ++++ 6 files changed, 99 insertions(+), 11 deletions(-) create mode 100644 src/generator.cpp create mode 100644 src/generator.hpp diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 67773dc..ca658c2 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -1,4 +1,5 @@ add_executable(solar + generator.cpp lex.cpp parser.cpp parser_state.cpp diff --git a/src/generator.cpp b/src/generator.cpp new file mode 100644 index 0000000..62c2584 --- /dev/null +++ b/src/generator.cpp @@ -0,0 +1,44 @@ +/* + Copyright (c) 2015, Matthias Schiffer + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + 2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + + +#include "generator.hpp" + + +namespace solar { + +generator_t::generator_t(const std::set &rules0) { + for (item_t rule : rules0) { + rules.emplace(rule.get_lhs(), rule); + + while (rule.has_next()) { + items.emplace(rule.get_next_symbol(), rule); + rule.shift(); + } + } + +} + +} diff --git a/src/generator.hpp b/src/generator.hpp new file mode 100644 index 0000000..74108d7 --- /dev/null +++ b/src/generator.hpp @@ -0,0 +1,46 @@ +/* + Copyright (c) 2015, Matthias Schiffer + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + 2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + + +#pragma once + +#include "item.hpp" + +#include +#include + + +namespace solar { + +class generator_t { +private: + std::multimap rules; + std::multimap items; + +public: + generator_t(const std::set &rules0); +}; + +} diff --git a/src/parser_state.cpp b/src/parser_state.cpp index c8053be..94f9c93 100644 --- a/src/parser_state.cpp +++ b/src/parser_state.cpp @@ -53,12 +53,7 @@ void parser_state_t::add_rule_terminal(unsigned char term) { } void parser_state_t::add_rule() { - rules.emplace(current.get_lhs(), current); - - while (current.has_next()) { - items.emplace(current.get_next_symbol(), current); - current.shift(); - } + rules.emplace(current); } } diff --git a/src/parser_state.hpp b/src/parser_state.hpp index a0341c6..b516dee 100644 --- a/src/parser_state.hpp +++ b/src/parser_state.hpp @@ -28,23 +28,21 @@ #include "item.hpp" -#include -#include +#include namespace solar { class parser_state_t { private: - std::multimap rules; - std::multimap items; + std::set rules; item_t current; public: parser_state_t() : current("") {} - const std::multimap & get_rules() const { + const std::set & get_rules() const { return rules; } diff --git a/src/solar.cpp b/src/solar.cpp index f466db8..975ea22 100644 --- a/src/solar.cpp +++ b/src/solar.cpp @@ -26,6 +26,8 @@ #include "lex.hpp" #include "parser.hpp" +#include "generator.hpp" + #include #include @@ -79,5 +81,7 @@ int main() { if (!read_grammar("grammar.y", &state)) return 1; + generator_t generator(state.get_rules()); + return 0; } -- cgit v1.2.3