aboutsummaryrefslogtreecommitdiff
path: root/src/syntax/Parser.cxx
blob: be73b0884fccf28604b1908787296064189620e0 (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
// -*- C++ -*-
// Copyright (C) 2014-2017, Gabriel Dos Reis.
// All rights reserved.
// Written by Gabriel Dos Reis.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
//     - Redistributions of source code must retain the above copyright
//       notice, this list of conditions and the following disclaimer.
//
//     - 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.
//
//     - Neither the name of OpenAxiom. nor the names of its contributors
//       may be used to endorse or promote products derived from this
//       software without specific prior written permission.
//
// 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 OWNER
// 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 <iostream>
#include <fstream>
#include <vector>
#include <string>
#include <stack>
#include <iterator>
#include <ctype.h>

#include <open-axiom/diagnostics>
#include <open-axiom/InputFragment>
#include <open-axiom/SourceInput>
#include <open-axiom/token>
#include <open-axiom/Parser>

namespace {
   using namespace OpenAxiom;

   using TokenSequence = TokenStream<Token>;

   struct ParsingContext {
      explicit ParsingContext(TokenSequence& ts)
            : tokens{ ts }, position{ }
      { }

      bool exhausted() const {
         return position >= tokens.size();
      }

      const Token* current_token() const {
         if (exhausted())
            return nullptr;
         return &tokens[position];
      }

      void advance() { ++position; }

   private:
      TokenSequence& tokens;
      TokenSequence::size_type position;
   };

   // Simple wrapper around standard file streams, along with the pathname
   // to the file.
   template<typename T>
   struct FileAs {
      const char* path;
      T stream;
      FileAs(const char* p, std::ios_base::openmode flags)
            : path{ p }, stream{ p, flags }
      {
         if (!stream)
            throw Error::CannotOpenFile{ path };
      }
   };

   using InputFile = FileAs<std::ifstream>;
   using OutputFile = FileAs<std::ofstream>;

   void format_text(const Fragment& f, const Token& t, std::ostream& os) {
      if (t.start.line == t.end.line) {
         auto& line = f(t.start);
         std::copy(line.begin() + t.start.column, line.begin() + t.end.column,
                   std::ostream_iterator<char>(os));
      }
      else {
         auto& first_line = f(t.start);
         std::copy(first_line.begin() + t.start.column, first_line.end(),
                   std::ostream_iterator<char>(os));
         for (auto i = t.start.line + 1; i < t.end.line; ++i)
            os << f[i];
         auto& last_line = f[t.end.line];
         std::copy(last_line.begin(), last_line.begin() + t.end.column,
                   std::ostream_iterator<char>(os));
      }
   }

   void format_token(const Fragment& f, const Token& t, std::ostream& os) {
      os << t.category << '{'
         << t.start << '-' << t.end
         << ", ";
      switch (t.category) {
      case TokenCategory::Integer:
      case TokenCategory::FloatingPoint:
      case TokenCategory::String:
      case TokenCategory::Identifier:
         format_text(f, t, os);
         break;
      default:
         os << t.value;
         break;
      }
      os << '}';
   }

   // FIXME: This is just a stub to get a native parsing entry point
   //        into the bootsys and interpsys images.
   void transpile_boot_to_lisp(InputFile& in, OutputFile& out) {
      out.stream << "## Input: " << in.path << '\n'
                 << "## Output: " << out.path << '\n';

      SourceInput src { in.stream };
      while (auto f = src.get()) {
         out.stream << "================================================\n";
         out.stream << f;
         try {
            TokenSequence ts { f, Language::Boot };
            for (auto& t : ts) {
               out.stream << '\t';
               format_token(f, t, out.stream);
               switch (t.category) {
               case TokenCategory::Junk:
               case TokenCategory::Unclassified:
                  out.stream //<< f[t.start.line].sub_string(t.start.column, t.end.column)
                     << " in file " << in.path
                     << " at line " << t.start.line
                     << ", column " << t.start.column;
                  break;
               default:
                  break;
               }
               out.stream << '\n';
            }
         }
         catch(const EndOfStringUnseen& e) {
            std::cerr << in.path << ": syntax error: "
                      << "premature end of line before matching quote "
                      << "of string literal on line " << e.line
                      << " at column " << e.column
                      << std::endl;
         }
         catch (const MissingExponent& e) {
            std::cerr << in.path << ": syntax error: "
                      << "missing exponent of floating point constant "
                      << "on line " << e.line
                      << ", column " << e.column
                      << std::endl;
         }
         out.stream << "================================================\n";
      }
      out.stream << std::flush;
   }
}

namespace OpenAxiom {

   int boot_to_lisp(const char* boot_path, const char* lisp_path) try {
      InputFile in { boot_path, std::ios_base::binary };
      OutputFile out { lisp_path, std::ios_base::binary };
      transpile_boot_to_lisp(in, out);
      return 0;
   }
   catch (const Error::CannotOpenFile& e) {
      Diagnostics::StandardStream diagnostics { };
      diagnostics.error() << "error: could not open file `"
                          << e.path << "'\n";
      return -1;
   }
}