| [51587aa] | 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 | // | 
|---|
| [3906301] | 7 | // SemanticError.cc -- | 
|---|
| [51587aa] | 8 | // | 
|---|
| [af39199d] | 9 | // Author           : Thierry Delisle | 
|---|
| [51587aa] | 10 | // Created On       : Mon May 18 07:44:20 2015 | 
|---|
| [01aeade] | 11 | // Last Modified By : Peter A. Buhr | 
|---|
| [4358c1e] | 12 | // Last Modified On : Wed May 16 15:01:20 2018 | 
|---|
|  | 13 | // Update Count     : 9 | 
|---|
| [51587aa] | 14 | // | 
|---|
| [51b73452] | 15 |  | 
|---|
| [244b934] | 16 | #include <cstdarg> | 
|---|
| [9ed4f94] | 17 | #include <cstdio>                                                                               // for fileno, stderr | 
|---|
| [68e9ace] | 18 | #include <cstring> | 
|---|
| [9ed4f94] | 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 | 
|---|
| [68e9ace] | 23 | #include <vector> | 
|---|
| [51b73452] | 24 |  | 
|---|
| [9ed4f94] | 25 | #include "Common/utility.h"                                                             // for to_string, CodeLocation (ptr only) | 
|---|
| [51b73452] | 26 | #include "SemanticError.h" | 
|---|
|  | 27 |  | 
|---|
| [68e9ace] | 28 | //----------------------------------------------------------------------------- | 
|---|
|  | 29 | // Severity Handling | 
|---|
|  | 30 | std::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 |  | 
|---|
|  | 41 | void SemanticWarning_SuppressAll() { | 
|---|
|  | 42 | for( auto & s : get_severities() ) { | 
|---|
|  | 43 | s = Severity::Suppress; | 
|---|
|  | 44 | } | 
|---|
|  | 45 | } | 
|---|
|  | 46 |  | 
|---|
|  | 47 | void SemanticWarning_EnableAll() { | 
|---|
|  | 48 | for( auto & s : get_severities() ) { | 
|---|
|  | 49 | s = Severity::Warn; | 
|---|
|  | 50 | } | 
|---|
|  | 51 | } | 
|---|
|  | 52 |  | 
|---|
|  | 53 | void SemanticWarning_WarningAsError() { | 
|---|
|  | 54 | for( auto & s : get_severities() ) { | 
|---|
|  | 55 | if(s == Severity::Warn) s = Severity::Error; | 
|---|
|  | 56 | } | 
|---|
|  | 57 | } | 
|---|
|  | 58 |  | 
|---|
|  | 59 | void SemanticWarning_Set(const char * const name, Severity s) { | 
|---|
|  | 60 | size_t idx = 0; | 
|---|
| [af39199d] | 61 | for ( const auto & w : WarningFormats ) { | 
|---|
| [68e9ace] | 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 | 
|---|
| [4358c1e] | 72 | bool SemanticErrorThrow = false; | 
|---|
|  | 73 |  | 
|---|
| [a16764a6] | 74 | SemanticErrorException::SemanticErrorException( CodeLocation location, std::string error ) { | 
|---|
| [d55d7a6] | 75 | append( location, error ); | 
|---|
| [51b73452] | 76 | } | 
|---|
|  | 77 |  | 
|---|
| [a16764a6] | 78 | void SemanticErrorException::append( SemanticErrorException &other ) { | 
|---|
| [138e29e] | 79 | errors.splice( errors.end(), other.errors ); | 
|---|
| [3906301] | 80 | } | 
|---|
|  | 81 |  | 
|---|
| [a16764a6] | 82 | void SemanticErrorException::append( CodeLocation location, const std::string & msg ) { | 
|---|
| [d55d7a6] | 83 | errors.emplace_back( location, msg ); | 
|---|
| [51b73452] | 84 | } | 
|---|
|  | 85 |  | 
|---|
| [a16764a6] | 86 | bool SemanticErrorException::isEmpty() const { | 
|---|
| [01aeade] | 87 | return errors.empty(); | 
|---|
| [51b73452] | 88 | } | 
|---|
|  | 89 |  | 
|---|
| [a16764a6] | 90 | void SemanticErrorException::print() { | 
|---|
| [138e29e] | 91 | using std::to_string; | 
|---|
| [9ed4f94] | 92 | for( auto err : errors ) { | 
|---|
| [a16764a6] | 93 | std::cerr << ErrorHelpers::bold() << err.location << ErrorHelpers::error_str() << ErrorHelpers::reset_font() << err.description << std::endl; | 
|---|
| [138e29e] | 94 | } | 
|---|
| [51b73452] | 95 | } | 
|---|
| [01aeade] | 96 |  | 
|---|
| [a16764a6] | 97 | void SemanticError( CodeLocation location, std::string error ) { | 
|---|
| [4358c1e] | 98 | SemanticErrorThrow = true; | 
|---|
| [a16764a6] | 99 | throw SemanticErrorException(location, error); | 
|---|
|  | 100 | } | 
|---|
|  | 101 |  | 
|---|
| [2103a51] | 102 | namespace { | 
|---|
|  | 103 | // convert format string and arguments into a single string | 
|---|
|  | 104 | std::string fmtToString(const char * fmt, va_list ap) { | 
|---|
|  | 105 | int size = 128; | 
|---|
|  | 106 | while ( true ) { | 
|---|
|  | 107 | char buf[size]; | 
|---|
|  | 108 | va_list args; | 
|---|
|  | 109 | va_copy( args, ap ); | 
|---|
|  | 110 | int n = vsnprintf(&buf[0], size, fmt, args); | 
|---|
|  | 111 | va_end( args ); | 
|---|
|  | 112 | if ( n < size && n >= 0 ) return buf; | 
|---|
|  | 113 | size *= 2; | 
|---|
|  | 114 | } | 
|---|
|  | 115 | assert( false ); | 
|---|
|  | 116 | } | 
|---|
|  | 117 | } | 
|---|
|  | 118 |  | 
|---|
| [6040e67d] | 119 | void SemanticWarningImpl( CodeLocation location, Warning warning, const char * const fmt, ... ) { | 
|---|
| [68e9ace] | 120 | Severity severity = get_severities()[(int)warning]; | 
|---|
| [6040e67d] | 121 | switch(severity) { | 
|---|
|  | 122 | case Severity::Suppress : | 
|---|
|  | 123 | break; | 
|---|
|  | 124 | case Severity::Warn : | 
|---|
|  | 125 | { | 
|---|
|  | 126 | va_list args; | 
|---|
|  | 127 | va_start(args, fmt); | 
|---|
|  | 128 | std::string msg = fmtToString( fmt, args ); | 
|---|
|  | 129 | va_end(args); | 
|---|
|  | 130 | std::cerr << ErrorHelpers::bold() << location << ErrorHelpers::warning_str() << ErrorHelpers::reset_font() << msg << std::endl; | 
|---|
|  | 131 | } | 
|---|
|  | 132 | break; | 
|---|
|  | 133 | case Severity::Error : | 
|---|
|  | 134 | { | 
|---|
|  | 135 | va_list args; | 
|---|
|  | 136 | va_start(args, fmt); | 
|---|
|  | 137 | std::string msg = fmtToString( fmt, args ); | 
|---|
|  | 138 | va_end(args); | 
|---|
|  | 139 | SemanticError(location, msg); | 
|---|
|  | 140 | } | 
|---|
|  | 141 | break; | 
|---|
|  | 142 | case Severity::Critical : | 
|---|
|  | 143 | assertf(false, "Critical errors not implemented yet"); | 
|---|
|  | 144 | break; | 
|---|
|  | 145 | } | 
|---|
| [a16764a6] | 146 | } | 
|---|
|  | 147 |  | 
|---|
|  | 148 | //----------------------------------------------------------------------------- | 
|---|
|  | 149 | // Helpers | 
|---|
|  | 150 | namespace ErrorHelpers { | 
|---|
|  | 151 | const std::string & error_str() { | 
|---|
|  | 152 | static std::string str = isatty( STDERR_FILENO ) ? "\e[31merror:\e[39m " : "error: "; | 
|---|
|  | 153 | return str; | 
|---|
|  | 154 | } | 
|---|
|  | 155 |  | 
|---|
|  | 156 | const std::string & warning_str() { | 
|---|
|  | 157 | static std::string str = isatty( STDERR_FILENO ) ? "\e[95mwarning:\e[39m " : "warning: "; | 
|---|
|  | 158 | return str; | 
|---|
|  | 159 | } | 
|---|
|  | 160 |  | 
|---|
|  | 161 | const std::string & bold_ttycode() { | 
|---|
|  | 162 | static std::string str = isatty( STDERR_FILENO ) ? "\e[1m" : ""; | 
|---|
|  | 163 | return str; | 
|---|
|  | 164 | } | 
|---|
|  | 165 |  | 
|---|
|  | 166 | const std::string & reset_font_ttycode() { | 
|---|
|  | 167 | static std::string str = isatty( STDERR_FILENO ) ? "\e[0m" : ""; | 
|---|
|  | 168 | return str; | 
|---|
|  | 169 | } | 
|---|
|  | 170 |  | 
|---|
|  | 171 | std::string make_bold( const std::string & str ) { | 
|---|
|  | 172 | return bold_ttycode() + str + reset_font_ttycode(); | 
|---|
|  | 173 | } | 
|---|
|  | 174 |  | 
|---|
|  | 175 | std::ostream & operator<<(std::ostream & os, bold) { | 
|---|
|  | 176 | os << bold_ttycode(); | 
|---|
|  | 177 | return os; | 
|---|
|  | 178 | } | 
|---|
|  | 179 |  | 
|---|
|  | 180 | std::ostream & operator<<(std::ostream & os, reset_font) { | 
|---|
|  | 181 | os << reset_font_ttycode(); | 
|---|
|  | 182 | return os; | 
|---|
|  | 183 | } | 
|---|
| [294647b] | 184 | } | 
|---|
|  | 185 |  | 
|---|
| [51587aa] | 186 | // Local Variables: // | 
|---|
|  | 187 | // tab-width: 4 // | 
|---|
|  | 188 | // mode: c++ // | 
|---|
|  | 189 | // compile-command: "make install" // | 
|---|
|  | 190 | // End: // | 
|---|