commit da33be9b021d57ad29cf04f1178555daf53ef40a Author: Ilja Date: Fri Oct 3 18:11:35 2025 +0200 Initial commit, introduced Scanner diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..480bdf5 --- /dev/null +++ b/.gitignore @@ -0,0 +1,39 @@ +target/ +!.mvn/wrapper/maven-wrapper.jar +!**/src/main/**/target/ +!**/src/test/**/target/ +.kotlin + +### IntelliJ IDEA ### +.idea/modules.xml +.idea/jarRepositories.xml +.idea/compiler.xml +.idea/libraries/ +*.iws +*.iml +*.ipr + +### Eclipse ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache + +### NetBeans ### +/nbproject/private/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ +build/ +!**/src/main/**/build/ +!**/src/test/**/build/ + +### VS Code ### +.vscode/ + +### Mac OS ### +.DS_Store \ No newline at end of file diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..26d3352 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,3 @@ +# Default ignored files +/shelf/ +/workspace.xml diff --git a/.idea/encodings.xml b/.idea/encodings.xml new file mode 100644 index 0000000..aa00ffa --- /dev/null +++ b/.idea/encodings.xml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..de5c651 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,14 @@ + + + + + + + + + + \ No newline at end of file diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..84cd896 --- /dev/null +++ b/pom.xml @@ -0,0 +1,34 @@ + + + 4.0.0 + + com.craftinginterpreters.lox + jlox + 1.0-SNAPSHOT + + + 25 + 25 + UTF-8 + + + + + + org.apache.maven.plugins + maven-jar-plugin + 3.4.1 + + + + + com.craftinginterpreters.lox.Lox + + + + + + + \ No newline at end of file diff --git a/src/main/java/com/craftinginterpreters/lox/Lox.java b/src/main/java/com/craftinginterpreters/lox/Lox.java new file mode 100644 index 0000000..a9ae249 --- /dev/null +++ b/src/main/java/com/craftinginterpreters/lox/Lox.java @@ -0,0 +1,66 @@ +package com.craftinginterpreters.lox; + +import java.io.BufferedReader; +import java.io.IOException; +import java.io.InputStreamReader; +import java.nio.charset.Charset; +import java.nio.file.Files; +import java.nio.file.Paths; +import java.util.List; + +//TIP To Run code, press or +// click the icon in the gutter. +public class Lox { + private static boolean hadError = false; + + static void main(String[] args) throws IOException { + if (args.length > 1){ + System.exit(64); + } + if (args.length == 1){ // Filepath + runFile(args[0]); + } + else{ + runPrompt(); + } + } + + private static void runFile(String filePath) throws IOException { + byte[] bytes = Files.readAllBytes(Paths.get(filePath)); + run(new String(bytes, Charset.defaultCharset())); + if(hadError) System.exit(65); + } + + private static void runPrompt() throws IOException { + InputStreamReader stream = new InputStreamReader(System.in); + BufferedReader reader = new BufferedReader(stream); + + while(true){ + System.out.print("> "); + String line = reader.readLine(); + if(line == null) break; + run(line); + hadError = false; + } + } + + private static void run(String source){ + Scanner scanner = new Scanner(source); + List tokens = scanner.scanTokens(); + + for (Token token : tokens){ + System.out.println(token); + } + } + + static void error(int line, String message){ + report(line, "", message); + } + + private static void report(int line, String where, String message){ + System.err.println( + "[line" + line + "] Error" + where + ": " + message + ); + hadError = true; + } +} diff --git a/src/main/java/com/craftinginterpreters/lox/Scanner.java b/src/main/java/com/craftinginterpreters/lox/Scanner.java new file mode 100644 index 0000000..3feaf58 --- /dev/null +++ b/src/main/java/com/craftinginterpreters/lox/Scanner.java @@ -0,0 +1,202 @@ +package com.craftinginterpreters.lox; + +import java.util.ArrayList; +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +import static com.craftinginterpreters.lox.TokenType.*; + +class Scanner { + private final String source; + private final List tokens = new ArrayList<>(); + + private int start = 0; + private int current = 0; + private int line = 0; + + private static final Map keywords; + + static { + keywords = new HashMap<>(); + keywords.put("and", AND); + keywords.put("class", CLASS); + keywords.put("else", ELSE); + keywords.put("false", FALSE); + keywords.put("for", FOR); + keywords.put("fun", FUN); + keywords.put("if", IF); + keywords.put("nil", NIL); + keywords.put("or", OR); + keywords.put("print", PRINT); + keywords.put("return", RETURN); + keywords.put("super", SUPER); + keywords.put("this", THIS); + keywords.put("true", TRUE); + keywords.put("var", VAR); + keywords.put("while", WHILE); + } + + Scanner(String source) { + this.source = source; + } + + List scanTokens() { + while (!isAtEnd()) { + // We are at the beginning of the next lexeme. + start = current; + scanToken(); + } + + tokens.add(new Token(EOF, "", null, line)); + return tokens; + } + + private boolean isAtEnd() { + return current >= source.length(); + } + + private void scanToken() { + char c = advance(); + switch (c) { + case '(': addToken(LEFT_PAREN); break; + case ')': addToken(RIGHT_PAREN); break; + case '{': addToken(LEFT_BRACE); break; + case '}': addToken(RIGHT_BRACE); break; + case ',': addToken(COMMA); break; + case '.': addToken(DOT); break; + case '-': addToken(MINUS); break; + case '+': addToken(PLUS); break; + case ';': addToken(SEMICOLON); break; + case '*': addToken(STAR); break; + case '!': + addToken(match('=') ? BANG_EQUAL : BANG); + break; + case '=': + addToken(match('=') ? EQUAL_EQUAL : EQUAL); + break; + case '<': + addToken(match('=') ? LESS_EQUAL : LESS); + break; + case '>': + addToken(match('=') ? GREATER_EQUAL : GREATER); + break; + case '/': + if (match('/')) { + // A comment goes until the end of the line. + while (peek() != '\n' && !isAtEnd()) advance(); + } else { + addToken(SLASH); + } + break; + case ' ': + case '\r': + case '\t': + // Ignore whitespace. + break; + + case '\n': + line++; + break; + case '"': string(); break; + default: + if (isDigit(c)) { + number(); + } else if (isAlpha(c)) { + identifier(); + } else { + Lox.error(line, "Unexpected character."); + } + Lox.error(line, "Unexpected character."); + break; + } + } + + private void identifier() { + while (isAlphaNumeric(peek())) advance(); + + String text = source.substring(start, current); + TokenType type = keywords.get(text); + if (type == null) type = IDENTIFIER; + addToken(type); + } + + private void number() { + while (isDigit(peek())) advance(); + + // Look for a fractional part. + if (peek() == '.' && isDigit(peekNext())) { + // Consume the "." + advance(); + + while (isDigit(peek())) advance(); + } + + addToken(NUMBER, + Double.parseDouble(source.substring(start, current))); + } + + private void string() { + while (peek() != '"' && !isAtEnd()) { + if (peek() == '\n') line++; + advance(); + } + + if (isAtEnd()) { + Lox.error(line, "Unterminated string."); + return; + } + + // The closing ". + advance(); + + // Trim the surrounding quotes. + String value = source.substring(start + 1, current - 1); + addToken(STRING, value); + } + + private boolean match(char expected) { + if (isAtEnd()) return false; + if (source.charAt(current) != expected) return false; + + current++; + return true; + } + + private char peek() { + if (isAtEnd()) return '\0'; + return source.charAt(current); + } + + private char peekNext() { + if (current + 1 >= source.length()) return '\0'; + return source.charAt(current + 1); + } + + private boolean isAlpha(char c) { + return (c >= 'a' && c <= 'z') || + (c >= 'A' && c <= 'Z') || + c == '_'; + } + + private boolean isAlphaNumeric(char c) { + return isAlpha(c) || isDigit(c); + } + + private boolean isDigit(char c) { + return c >= '0' && c <= '9'; + } + + private char advance() { + return source.charAt(current++); + } + + private void addToken(TokenType type) { + addToken(type, null); + } + + private void addToken(TokenType type, Object literal) { + String text = source.substring(start, current); + tokens.add(new Token(type, text, literal, line)); + } +} \ No newline at end of file diff --git a/src/main/java/com/craftinginterpreters/lox/Token.java b/src/main/java/com/craftinginterpreters/lox/Token.java new file mode 100644 index 0000000..eb79b08 --- /dev/null +++ b/src/main/java/com/craftinginterpreters/lox/Token.java @@ -0,0 +1,19 @@ +package com.craftinginterpreters.lox; + +class Token { + final TokenType type; + final String lexeme; + final Object literal; + final int line; + + Token(TokenType type, String lexeme, Object literal, int line) { + this.type = type; + this.lexeme = lexeme; + this.literal = literal; + this.line = line; + } + + public String toString() { + return type + " " + lexeme + " " + literal; + } +} \ No newline at end of file diff --git a/src/main/java/com/craftinginterpreters/lox/TokenType.java b/src/main/java/com/craftinginterpreters/lox/TokenType.java new file mode 100644 index 0000000..cad29e7 --- /dev/null +++ b/src/main/java/com/craftinginterpreters/lox/TokenType.java @@ -0,0 +1,22 @@ +package com.craftinginterpreters.lox; + +enum TokenType { + // Single-character tokens. + LEFT_PAREN, RIGHT_PAREN, LEFT_BRACE, RIGHT_BRACE, + COMMA, DOT, MINUS, PLUS, SEMICOLON, SLASH, STAR, + + // One or two character tokens. + BANG, BANG_EQUAL, + EQUAL, EQUAL_EQUAL, + GREATER, GREATER_EQUAL, + LESS, LESS_EQUAL, + + // Literals. + IDENTIFIER, STRING, NUMBER, + + // Keywords. + AND, CLASS, ELSE, FALSE, FUN, FOR, IF, NIL, OR, + PRINT, RETURN, SUPER, THIS, TRUE, VAR, WHILE, + + EOF +} \ No newline at end of file