summaryrefslogtreecommitdiffhomepage
path: root/minicc.cpp
blob: 94bae72a1686227e260f7682e87ec0a484e497e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
#include <boost/algorithm/string.hpp>

#include "gmock/gmock.h"
#include "gtest/gtest.h"

#include <deque>
#include <map>
#include <memory>
#include <string>
#include <utility>
#include <vector>

using namespace std::string_literals;

using BNF = std::map<std::string, std::vector<std::vector<std::string>>>;
using Terminals = std::set<std::string>;
using ProgramNode = std::deque<std::string>;
using PathElement = std::pair<std::string, size_t>; // Name, Index

std::vector<std::string> split(std::string s)
{
 std::vector<std::string> result;
 boost::algorithm::split(result, s, boost::algorithm::is_any_of(s), boost::algorithm::token_compress_on);
 while (result.size() > 0 && result.back() == ""s)
  result.pop_back();
 return result;
}

std::vector<PathElement> GetPath(std::string Token, BNF ReverseBNF, std::string Top, Terminals terminals = {}, std::vector<PathElement> PreviousPath = {})
{
 throw std::runtime_error("Compile error");
 return {}; // TODO
}

auto Reverse(BNF bnf){
 std::map<std::string, std::vector<std::string>> result;

 for (const auto& [from, to] : bnf) {
  for (const auto& list : to) {
   for (const auto& element : list) {
    auto i{result.find(element)};
    if (i != result.end()) // already present
     i->second.push_back(from);
    else // new element
     result.emplace(element, std::vector{1, from});
   }
  }
 }

 return result;
}

using index_t = size_t;

struct TreeNode {
 index_t parent;
 std::vector<index_t> childs; // fill char by char
 std::vector<std::string> child_names; // fill always
 std::string name;
};

class Tree {
private:
 std::map<index_t, TreeNode> nodes; // index 0 = non existing; index starting at 1
 index_t node_num{};
 index_t root{};
 index_t last{};

public:
 bool Valid(const std::string& Top) const {
  // Start symbol on top
  if (node_num == 0)
   return false;

  auto rootNode{nodes.find(root)};
  if (rootNode == nodes.end())
   throw std::runtime_error("Node not found: "s + std::to_string(root));
  
  if (rootNode->second.name != Top)
   return false;

  // All nodes filled (implies all leaves are terminal)
  for (const auto& [index, node]: nodes) {
   if (node.childs.size() < node.child_names.size())
    return false; // node not filled
  }

  return true;
 }

 // try to add node
 bool Add(char c, const BNF& bnf, const std::map<std::string, std::vector<std::string>>& reverseBNF) {
  if (nodes.empty()) { // first node
   node_num ++;
   root = node_num;
   last = node_num;
   std::string node_name{1, c};
   auto rule{reverseBNF.find(node_name)};
   if (rule == reverseBNF.end())
    throw std::runtime_error("Rule not found: "s + node_name);
   nodes.emplace(root, TreeNode{0, std::vector<index_t>{}, std::vector<std::string>{}, node_name});
   return true;
  } else {
   // TODO
  }
  return false;
 }

};

class Lexer
{

private:
 const BNF &bnf;
 const std::string& Top;

 std::map<std::string, std::vector<std::string>> ReverseBNF;

 // to be called on token end
 void CheckCandidates(std::deque<Tree>& candidates, std::string& token, std::vector<std::string>& result)
 {
  if (candidates.empty()) { // skip
   if (!token.empty())
    throw std::runtime_error("Expected empty token, got "s + token);
  } else { // check candidates
   bool valid{false};
   for (const auto& ct : candidates) {
    if (ct.Valid(Top)) {
     if (valid)
      throw std::runtime_error("Found ambiguous token "s + token);
     result.push_back(token);
     token.clear();
     valid = true;
    }
   }
   if (!valid)
    throw std::runtime_error("Invalid token: "s + token);

   candidates.clear();
  }
 }

public:
 Lexer(const BNF& bnf, const std::string& Top): bnf(bnf), Top(Top), ReverseBNF{Reverse(bnf)}
 {
 }

 std::vector<std::string> Lex(const std::string& s)
 {
  std::vector<std::string> result;
  std::string token;

  std::string Whitespace{"\t \n\r"};
  std::deque<Tree> candidates;

  for (size_t pos{0}; pos < s.size(); pos++) {
   char c{s[pos]};
   if (Whitespace.find(c) != std::string::npos) { // found whitespace character
    // evaluate token up to now and skip whitespace
    CheckCandidates(candidates, token, result);
   } else { // no whitespace: try to add to tree
    std::deque<index_t> EraseList;
    int i = 0;
    for (auto ct = candidates.begin(); ct != candidates.end(); ct++, i++) {
     if (!ct->Add(c, bnf, ReverseBNF)) { // either add char or delete candidate
      // push to front to get reversed order
      EraseList.push_front(i); // no candidate anymore
     }
    }
    
    if (candidates.size() - EraseList.size() > 0) { // Added to some candidates: Continue growing token
     token.push_back(c);
     for (const auto& i : EraseList)
      candidates.erase(candidates.begin() + i);
    } else { // no candidates left: new tree
     CheckCandidates(candidates, token, result);
    }
    
    // new candidate: starting with c
    auto element {ReverseBNF.find(std::string(1, c))};
    if (element != ReverseBNF.end()) {
     Tree newTree;
     if (newTree.Add(c, bnf, ReverseBNF))
      candidates.push_back(newTree);
    }
   }
  }

  // Final evaluation of last token
  CheckCandidates(candidates, token, result);

  return result;
 }

};

ProgramNode Compile(std::vector<std::string> Tokens, std::string Top, BNF bnf, Terminals terminals)
{
 BNF ReverseBNF;//{ Reverse(bnf)};

 if (Tokens.size()){
  std::string Token = Tokens[0];
  auto Path = GetPath(Token, ReverseBNF, Top, terminals);
  if (Path.size()) {
   size_t Index{1};
   while (Index < Tokens.size()) {
    Path = GetPath(Token, ReverseBNF, Top, terminals, Path);
    Index++;
   }
  } else
   throw std::runtime_error("Invalid token: "s + Token);
 } else
  throw std::runtime_error("No tokens!");

 return {};
}

class Test: public ::testing::Test {
protected:
 Test(){}
 ~Test() override {}
};

TEST_F(Test, BNF) {
 std::string LexTop{"preprocessing-token"};
 BNF LexBNF{
  {"preprocessing-token", {{"identifier"},
                           {"preprocessing-op-or-punc"},
                           {"pp-number"}}},

  {"identifier", {{"identifier-nondigit"},
                  {"identifier", "identifier-nondigit"},
                  {"identifier", "digit"}}},
  {"digit", {{"0", "1", "2", "3", "4", "5", "6", "7", "8", "9" }}},
  {"identifier-nondigit", {{"a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z",
                            "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "_"}}},
  {"preprocessing-op-or-punc", {{";"},
                                {"="}}},
  {"pp-number", {{"digit"},
                 {"pp-number", "digit"}}}
 };

 std::string Top{"program"};
 BNF bnf{
  {"program", {{"statement-list"}}},
  {"statement-list", {{"statement", "statement-list"},
                      {}, }},
  {"statement", {{"assigmnent", ";"}}},
  {"assignment", {{"identifier", "=", "identifier"}}}
 };

 std::set<std::string> Terminals{"identifier", "=", ";"};

 std::string Code{"a = bc ; c = 123 ; esd = Ff ; 1 = XYZ"};

 Lexer lexer(LexBNF, LexTop);
 auto tokens = lexer.Lex(Code);
 
 for (const auto& i: tokens) {
  std::cout << i << std::endl;
 }
 //auto Program = Compile(tokens, Top, bnf, Terminals);
}

int main(int argc, char* argv[]) {
 ::testing::InitGoogleMock(&argc, argv);
 return RUN_ALL_TESTS();
}