-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patherror.cpp
170 lines (153 loc) · 3.77 KB
/
error.cpp
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
/*
* Written by : Nikolaos S. Papaspyrou
* Modified by : Nikoletta Barmpa, Andreas Evangelatos
*/
#include <cstdio>
#include <cstdlib>
#include <cstdarg>
#include <string>
#include <set>
#include <iostream>
#include <fstream>
#include "general.hpp"
#include "error.hpp"
/**
* Global variables for error handling
*
*/
extern int lineno;
extern int columnno;
extern std::set<std::string> fileset;
extern std::string currentFilename;
//====================================================================================//
// Functions For Error Handling //
//====================================================================================//
/**
* @brief Open The file and get the line where an error appeared
*
*/
std::string getLine(std::string file, int lineno, int columnno){
std::ifstream inputfile;
inputfile.open(file);
for(int i =0 ; i < lineno-1; i++){
inputfile.ignore(10000, '\n');
}
char lex[columnno+20];
inputfile.getline(lex, columnno+20);
inputfile.close();
return std::string(lex);
}
/**
* @brief Used only for the symbol table
*
*/
void internal (const char * fmt, ...)
{
va_list ap;
va_start(ap, fmt);
if (fmt[0] == '\r')
fmt++;
else
fprintf(stderr, "%s:%d: ", filename, linecount);
fprintf(stderr, "Internal error, ");
vfprintf(stderr, fmt, ap);
fprintf(stderr, "\n");
va_end(ap);
exit(1);
}
/**
* @brief Static version of ErrorInfo::fatal. Implements panic error messaging.
* Prints the column, line, and file where the error appeared.
*
*/
void fatal (const char * fmt, ...)
{
va_list ap;
va_start(ap, fmt);
if (fmt[0] == '\r')
fmt++;
else
fprintf(stderr, "Fatal Error @ \"%s\":%d:%d \n", currentFilename.c_str(), lineno, columnno);
vfprintf(stderr, fmt, ap);
fprintf(stderr, "\n");
if (currentFilename != "stdin"){
auto s = getLine(currentFilename, lineno, columnno);
fprintf(stderr, "%s\n", s.c_str());
for(int i = 0; i < columnno-1; i++){
if(s[i] == '\t')
fprintf(stderr, "_______");
fprintf(stderr, "_");
}
fprintf(stderr, "^\n");
}
va_end(ap);
exit(1);
}
/*
* Not used
*/
void error (const char * fmt, ...){}
/*
* Not used
*/
void warning (const char * fmt, ...)
{
va_list ap;
va_start(ap, fmt);
if (fmt[0] == '\r')
fmt++;
else
fprintf(stderr, "%s:%d: ", filename, linecount);
fprintf(stderr, "Warning, ");
vfprintf(stderr, fmt, ap);
fprintf(stderr, "\n");
va_end(ap);
}
/**
* @brief A Way for the parser to call fatal
*
*/
void yyerror(const char *msg)
{
fatal(msg);
}
/**
* @brief Construct a new Error Info:: Error Info object
* Save the state for current line, column and filename.
*
*/
ErrorInfo::ErrorInfo(){
this->_lineappeared = lineno;
this->_columnappeared = columnno;
this->_fileappeared = fileset.find(currentFilename);
}
ErrorInfo::~ErrorInfo(){}
int ErrorInfo::getLineAppeared(){
return this->_lineappeared;
}
/**
* @brief Main function to implement panic from Nodes in AST
*
*/
void ErrorInfo::fatal(const char * fmt, ...){
va_list ap;
va_start(ap, fmt);
if (fmt[0] == '\r')
fmt++;
else
fprintf(stderr, "Fatal Error @ \"%s\":%d:%d \n", this->_fileappeared->c_str(), this->_lineappeared, this->_columnappeared);
vfprintf(stderr, fmt, ap);
fprintf(stderr, "\n");
if (*this->_fileappeared != "stdin"){
auto s = getLine(*this->_fileappeared, this->_lineappeared, this->_columnappeared);
fprintf(stderr, "%s\n", s.c_str());
for(int i = 0; i < this->_columnappeared-1; i++){
if(s[i] == '\t')
fprintf(stderr, "_______");
fprintf(stderr, "_");
}
fprintf(stderr, "^\n");
}
va_end(ap);
exit(1);
}