serene/include/serene/reader/reader.h

113 lines
3.3 KiB
C
Raw Normal View History

2021-04-06 18:28:50 +01:00
/* -*- C++ -*-
* Serene programming language.
*
2021-04-06 18:28:50 +01:00
* Copyright (c) 2019-2021 Sameer Rahmani <lxsameer@gnu.org>
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
#ifndef READER_H
#define READER_H
#include "serene/errors.h"
#include "serene/exprs/expression.h"
#include "serene/exprs/list.h"
#include "serene/exprs/symbol.h"
#include "serene/reader/errors.h"
2021-04-06 18:24:05 +01:00
#include "serene/reader/location.h"
#include "serene/serene.h"
#include "llvm/Support/Debug.h"
#include "llvm/Support/raw_ostream.h"
#include <memory>
#include <sstream>
#include <stdexcept>
#include <string>
#include <system_error>
#include <vector>
2021-07-17 19:39:56 +01:00
#define READER_LOG(...) \
DEBUG_WITH_TYPE("READER", llvm::dbgs() \
<< "[READER]: " << __VA_ARGS__ << "\n");
2021-07-17 19:39:56 +01:00
namespace serene::reader {
2021-04-11 15:13:10 +01:00
/// Base reader class which reads from a string directly.
class Reader {
private:
char current_char = ';'; // Some arbitary char to begin with
std::stringstream input_stream;
Location current_location{0, 0, 0};
2021-07-17 19:39:56 +01:00
/// Returns the next character from the stream.
/// @param skip_whitespace An indicator to whether skip white space like chars
/// or not
char getChar(bool skip_whitespace);
2021-07-17 19:39:56 +01:00
/// Unreads the current character by moving the char pointer to the previous
/// char.
void ungetChar();
2021-07-17 19:39:56 +01:00
/// Returns a boolean indicating whether the given input character is valid
/// for an identifier or not.
bool isValidForIdentifier(char c);
// The property to store the ast tree
2021-04-25 23:07:08 +01:00
exprs::Ast ast;
2021-07-17 19:39:56 +01:00
2021-04-25 23:02:52 +01:00
exprs::Node readSymbol();
exprs::Node readNumber(bool);
exprs::Node readList();
exprs::Node readExpr();
public:
Reader() : input_stream(""){};
Reader(const llvm::StringRef string);
void setInput(const llvm::StringRef string);
2021-07-17 19:39:56 +01:00
/// Parses the the input and creates a possible AST out of it or errors
/// otherwise.
Result<exprs::Ast> read();
2020-07-21 22:23:11 +01:00
~Reader();
};
2021-04-11 15:13:10 +01:00
/// A reader to read the content of a file as AST
class FileReader {
std::string file;
Reader *reader;
public:
FileReader(const std::string file_name)
: file(file_name), reader(new Reader()) {}
Result<exprs::Ast> read();
~FileReader();
};
/// Parses the given `input` string and returns a `Result<ast>`
/// which may contains an AST or an `llvm::Error`
Result<exprs::Ast> read(llvm::StringRef input);
2021-07-17 19:39:56 +01:00
} // namespace serene::reader
#endif