source: src/Common/SemanticError.cc@ b83c575

Last change on this file since b83c575 was b1f2007d, checked in by Peter A. Buhr <pabuhr@…>, 22 months ago

first attempt at simplifying SemanticError and its usage

  • Property mode set to 100644
File size: 5.6 KB
Line 
1//
2// Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
3//
4// The contents of this file are covered under the licence agreement in the
5// file "LICENCE" distributed with Cforall.
6//
7// SemanticError.cc --
8//
9// Author : Thierry Delisle
10// Created On : Mon May 18 07:44:20 2015
11// Last Modified By : Peter A. Buhr
12// Last Modified On : Mon Dec 11 15:59:09 2023
13// Update Count : 14
14//
15
16#include <cstdarg>
17#include <cstdio> // for fileno, stderr
18#include <cstring>
19#include <unistd.h> // for isatty
20#include <iostream> // for basic_ostream, operator<<, ostream
21#include <list> // for list, _List_iterator
22#include <string> // for string, operator<<, operator+, to_string
23#include <vector>
24
25#include "Common/utility.h" // for to_string, CodeLocation (ptr only)
26#include "SemanticError.h"
27
28//-----------------------------------------------------------------------------
29// Severity Handling
30std::vector<Severity> & get_severities() {
31 static std::vector<Severity> severities;
32 if(severities.empty()) {
33 severities.reserve((size_t)Warning::NUMBER_OF_WARNINGS);
34 for ( const auto w : WarningFormats ) {
35 severities.push_back( w.default_severity );
36 } // for
37 }
38 return severities;
39}
40
41void SemanticWarning_SuppressAll() {
42 for( auto & s : get_severities() ) {
43 s = Severity::Suppress;
44 }
45}
46
47void SemanticWarning_EnableAll() {
48 for( auto & s : get_severities() ) {
49 s = Severity::Warn;
50 }
51}
52
53void SemanticWarning_WarningAsError() {
54 for( auto & s : get_severities() ) {
55 if(s == Severity::Warn) s = Severity::Error;
56 }
57}
58
59void SemanticWarning_Set(const char * const name, Severity s) {
60 size_t idx = 0;
61 for ( const auto & w : WarningFormats ) {
62 if ( std::strcmp( name, w.name ) == 0 ) {
63 get_severities()[idx] = s;
64 break;
65 }
66 idx++;
67 }
68}
69
70//-----------------------------------------------------------------------------
71// Semantic Error
72
73bool SemanticErrorThrow = false;
74
75SemanticErrorException::SemanticErrorException( CodeLocation location, std::string error ) {
76 append( location, error );
77}
78
79void SemanticErrorException::append( SemanticErrorException &other ) {
80 errors.splice( errors.end(), other.errors );
81}
82
83void SemanticErrorException::append( CodeLocation location, const std::string & msg ) {
84 errors.emplace_back( location, msg );
85}
86
87bool SemanticErrorException::isEmpty() const {
88 return errors.empty();
89}
90
91void SemanticErrorException::print() {
92 using std::to_string;
93
94 errors.sort([](const error & lhs, const error & rhs) -> bool {
95 if(lhs.location.startsBefore(rhs.location)) return true;
96 if(rhs.location.startsBefore(lhs.location)) return false;
97
98 return lhs.description < rhs.description;
99 });
100
101 for( auto err : errors ) {
102 std::cerr << ErrorHelpers::bold() << err.location << ErrorHelpers::error_str() << ErrorHelpers::reset_font() << err.description << std::endl;
103 }
104}
105
106void SemanticError( CodeLocation location, const char * fmt, ... ) {
107 char msg[2048]; // worst-case error-message buffer
108 va_list args;
109 va_start( args, fmt );
110 vsnprintf( msg, sizeof(msg), fmt, args ); // always null terminated, but may be truncated
111 va_end( args );
112
113 SemanticErrorThrow = true;
114 throw SemanticErrorException( location, msg ); // convert msg to string
115}
116
117void SemanticError( CodeLocation location, std::string error ) {
118 SemanticErrorThrow = true;
119 throw SemanticErrorException( location, error );
120}
121
122namespace {
123 // convert format string and arguments into a single string
124 std::string fmtToString(const char * fmt, va_list ap) {
125 int size = 128;
126 while ( true ) {
127 char buf[size];
128 va_list args;
129 va_copy( args, ap );
130 int n = vsnprintf(&buf[0], size, fmt, args);
131 va_end( args );
132 if ( n < size && n >= 0 ) return buf;
133 size *= 2;
134 }
135 assert( false );
136 }
137}
138
139void SemanticWarningImpl( CodeLocation location, Warning warning, const char * const fmt, ... ) {
140 Severity severity = get_severities()[(int)warning];
141 switch(severity) {
142 case Severity::Suppress :
143 break;
144 case Severity::Warn :
145 {
146 va_list args;
147 va_start(args, fmt);
148 std::string msg = fmtToString( fmt, args );
149 va_end(args);
150 std::cerr << ErrorHelpers::bold() << location << ErrorHelpers::warning_str() << ErrorHelpers::reset_font() << msg << std::endl;
151 }
152 break;
153 case Severity::Error :
154 {
155 va_list args;
156 va_start(args, fmt);
157 std::string msg = fmtToString( fmt, args );
158 va_end(args);
159 SemanticError(location, msg);
160 }
161 break;
162 case Severity::Critical :
163 assertf(false, "Critical errors not implemented yet");
164 break;
165 }
166}
167
168//-----------------------------------------------------------------------------
169// Helpers
170namespace ErrorHelpers {
171 Colors colors = Colors::Auto;
172
173 static inline bool with_colors() {
174 return colors == Colors::Auto ? isatty( STDERR_FILENO ) : bool(colors);
175 }
176
177 const std::string & error_str() {
178 static std::string str = with_colors() ? "\e[31merror:\e[39m " : "error: ";
179 return str;
180 }
181
182 const std::string & warning_str() {
183 static std::string str = with_colors() ? "\e[95mwarning:\e[39m " : "warning: ";
184 return str;
185 }
186
187 const std::string & bold_ttycode() {
188 static std::string str = with_colors() ? "\e[1m" : "";
189 return str;
190 }
191
192 const std::string & reset_font_ttycode() {
193 static std::string str = with_colors() ? "\e[0m" : "";
194 return str;
195 }
196
197 std::string make_bold( const std::string & str ) {
198 return bold_ttycode() + str + reset_font_ttycode();
199 }
200
201 std::ostream & operator<<(std::ostream & os, bold) {
202 os << bold_ttycode();
203 return os;
204 }
205
206 std::ostream & operator<<(std::ostream & os, reset_font) {
207 os << reset_font_ttycode();
208 return os;
209 }
210}
211
212// Local Variables: //
213// tab-width: 4 //
214// mode: c++ //
215// compile-command: "make install" //
216// End: //
Note: See TracBrowser for help on using the repository browser.