Pretty print stack trace

This commit is contained in:
augustin64 2024-01-04 19:31:48 +01:00
parent a0c1724b2e
commit 19116dcbd0
5 changed files with 40 additions and 11 deletions

View File

@ -1,8 +1,10 @@
#include <vector> #include <vector>
#include <string> #include <string>
#include <iomanip>
#include <iostream> #include <iostream>
using namespace std; using namespace std;
#include "include/utils.h"
#include "include/errors.h" #include "include/errors.h"
#include "include/colors.h" #include "include/colors.h"
#include "include/tokenize.h" #include "include/tokenize.h"
@ -60,14 +62,26 @@ void print_error_position(vector<string> history, CodePosition pos) {
if (pos.column == -1 || pos.line == -1) if (pos.column == -1 || pos.line == -1)
return; return;
cout << endl; cout << endl << BOLD
string line = history[pos.line]; << setw(4) << setfill(' ')
<< pos.line+1 << " " RESET
printf(BOLD "%4d " RESET , pos.line+1); << history[pos.line] << endl;
cout << line << endl;
for (int i=0; i < pos.column + 5; i++) for (int i=0; i < pos.column + 5; i++)
cout << " "; cout << " ";
cout << BOLD RED "^--" RESET << endl; cout << BOLD RED "^--" RESET << endl;
} }
void print_error_stack_trace(vector<string> history, const RuntimeError& error) {
cout << "\n" BOLD "Traceback" RESET " (most recent call last)" << endl;
for (StackTraceEntry e : error.trace) {
cout << BOLD << setw(4) << setfill(' ')
<< get<1>(e).line+1 << RESET BLUE
<< setw(16) << setfill(' ')
<< get<0>(e) << RESET << "\t"
<< trim(history[get<1>(e).line]) << endl;
}
cout << BOLD RED "Runtime Error: " RESET << error.get_message() << endl;
}

View File

@ -115,4 +115,9 @@ public:
*/ */
void print_error_position(vector<string> history, CodePosition pos); void print_error_position(vector<string> history, CodePosition pos);
/**
* Display the stack trace associated with an error
*/
void print_error_stack_trace(vector<string> history, const RuntimeError& error);
#endif #endif

View File

@ -39,4 +39,9 @@ string _debug_get_type_type_name(TypeType type);
*/ */
bool equal_types(Type type1, Type type2); bool equal_types(Type type1, Type type2);
/**
* Trim a string (remove whitespaces before and after)
*/
string trim(const string& str);
#endif #endif

View File

@ -119,12 +119,7 @@ int main(int argc, char* argv[]) {
cout << BOLD RED "Type Error: " RESET << e.get_message() << endl; cout << BOLD RED "Type Error: " RESET << e.get_message() << endl;
} catch (const RuntimeError& e) { } catch (const RuntimeError& e) {
print_error_position(input, e.pos); print_error_stack_trace(input, e);
cout << BOLD RED "Runtime Error: " RESET << e.get_message() << endl;
for (StackTraceEntry e : e.trace) {
cout << get<0>(e) << " " << (get<1>(e).line + 1) << endl;
}
} }
cout << endl; cout << endl;
} }

View File

@ -112,3 +112,13 @@ bool equal_types(Type type1, Type type2) {
break; break;
} }
} }
string trim(const string& str) {
size_t first = str.find_first_not_of(" \t\n\r");
size_t last = str.find_last_not_of(" \t\n\r");
if (first == string::npos || last == string::npos)
return ""; // or handle empty string
return str.substr(first, last - first + 1);
}