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 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460
/*********************** GNU General Public License 3.0 ***********************\
| |
| Copyright (C) 2023 Kevin Matthes |
| |
| This program is free software: you can redistribute it and/or modify |
| it under the terms of the GNU General Public License as published by |
| the Free Software Foundation, either version 3 of the License, or |
| (at your option) any later version. |
| |
| This program is distributed in the hope that it will be useful, |
| but WITHOUT ANY WARRANTY; without even the implied warranty of |
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| GNU General Public License for more details. |
| |
| You should have received a copy of the GNU General Public License |
| along with this program. If not, see <https://www.gnu.org/licenses/>. |
| |
\******************************************************************************/
use crate::{ceprintln, PatternReader};
use sysexits::{ExitCode, Result};
/// An Aeruginous Graph Description.
#[derive(Clone, Debug, Eq, PartialEq)]
pub struct GraphDescription {
/// The buffer holding the characters of the pending token.
buffer: String,
/// The current comment depth.
comment_depth: usize,
/// The count of identifiers found so far.
count_identifiers: usize,
/// The count of string literals found so far.
count_strings: usize,
/// The known identifiers.
identifiers: Vec<String>,
/// The current line.
line: usize,
/// The pending token.
pending_token: Option<Tokens>,
/// The current column position.
position: usize,
/// The held string literals.
string_literals: Vec<String>,
/// The held tokens.
tokens: Vec<Tokens>,
}
impl GraphDescription {
crate::getters!(@fn @ref
identifiers: Vec<String>,
string_literals: Vec<String>,
tokens: Vec<Tokens>
);
/// Assume that the next token is going to be a comment.
fn assume_comment(&mut self) {
self.comment_depth += 1;
self.pending_token = Some(Tokens::Comment);
}
/// Assume that the next token is going to be an identifier.
fn assume_identifier(&mut self, character: char) {
self.buffer.push(character);
self.pending_token = Some(Tokens::Identifier(self.count_identifiers));
}
/// Assume that the next token is going to be a line feed.
fn assume_line_feed(&mut self) {
self.line += 1;
self.position = 0;
self.pending_token = Some(Tokens::LineFeed(1));
}
/// The detected syntax issues in the input source file.
///
/// These mistakes are critical, so they will be written in red.
///
/// # Errors
///
/// - [`sysexits::ExitCode::IoErr`]
pub fn check_for_syntax_issues(&self) -> Result<usize> {
let mut result = 0;
if self.starts_with_obsolete_spaces()? {
result += 1;
}
if self.has_no_trailing_line_feed()? {
result += 1;
}
Ok(result)
}
/// The detected typos in the input source file.
///
/// The typos will be named well human readable by writing the found
/// character and the line as well as the column position it is found in to
/// [`std::io::Stderr`]. As typos are mistakes which are easy to fix, the
/// error message will be written in green.
///
/// # Errors
///
/// - [`sysexits::ExitCode::IoErr`]
pub fn check_for_typos(&self) -> Result<usize> {
let mut result = 0;
for token in &self.tokens {
match token {
Tokens::Unexpected {
character,
line,
position,
} => {
result += 1;
ceprintln!(
" Typo "!Green,
"'{character}' in line {line} at position {position}."
);
}
_ => continue,
}
}
Ok(result)
}
/// Determine whether all lines fit the line width of 80 characters.
///
/// A line is allowed to consist of at most 80 characters and a line feed. If
/// a line should have more characters, this is a sign that the overall design
/// of the source file urgently deserves a refactoring. Hence, this is a more
/// critical issue than just a simple typo which is why the indication colour
/// of the error message is written in yellow.
///
/// # Errors
///
/// - [`sysexits::ExitCode::IoErr`]
pub fn check_line_width(&self, input: &str) -> Result<usize> {
let mut column = 0;
let mut line = 1;
let mut result = 0;
for character in input.chars() {
if character == '\n' {
if column > 80 {
result += 1;
ceprintln!(
" Line "!Yellow,
"{line} is {} characters too long.",
column - 80
);
}
column = 0;
line += 1;
} else {
column += 1;
}
}
Ok(result)
}
/// Push the pending token and match the current character.
fn finalise_pending_token(&mut self, token: Tokens, character: char) {
self.tokens.push(token);
self.pending_token = None;
self.match_character(character);
}
/// Check whether there is a trailing line feed in the given source file.
fn has_no_trailing_line_feed(&self) -> Result<bool> {
if matches!(self.tokens.last(), Some(Tokens::LineFeed(_)) | None) {
Ok(false)
} else {
ceprintln!(
"Syntax "!Red,
"rule violation: each source file must be ended by line feeds."
);
Ok(true)
}
}
/// The main function for the Aeruginous Graph Description processing.
///
/// # Errors
///
/// See
///
/// - [`crate::PatternBuffer::try_into_string`]
/// - [`PatternReader::read`]
/// - [`Self::check_for_typos`]
/// - [`Self::read`]
pub fn main(input: &Option<std::path::PathBuf>) -> Result<()> {
let mut agd = Self::new();
let input = input.read()?.try_into_string()?;
let lines = agd.check_line_width(&input)?;
agd.read(&input)?;
let typos = agd.check_for_typos()?;
let syntax = agd.check_for_syntax_issues()?;
let sum = lines + syntax + typos;
if sum == 0 {
Ok(())
} else {
ceprintln!(
"Failed "!Red,
"due to {sum} issue{} to fix.",
if sum == 1 { "" } else { "s" }
);
Err(ExitCode::DataErr)
}
}
/// Match an input character against the possible redirections.
fn match_character(&mut self, character: char) {
match character {
'\n' => self.assume_line_feed(),
' ' => self.pending_token = Some(Tokens::Space(1)),
'"' => {
self.pending_token = Some(Tokens::StringLiteral(self.count_strings));
}
'(' => self.assume_comment(),
'.' => self.tokens.push(Tokens::FullStop),
'A'..='Z' | 'a'..='z' => self.assume_identifier(character),
_ => self.push_unexpected(character),
}
}
/// Initialise a new instance.
#[must_use]
pub const fn new() -> Self {
Self {
buffer: String::new(),
comment_depth: 0,
count_identifiers: 0,
count_strings: 0,
identifiers: Vec::new(),
line: 1,
pending_token: None,
position: 0,
string_literals: Vec::new(),
tokens: Vec::new(),
}
}
/// Push an identifier to the list of tokens.
fn push_identifier(&mut self) {
let identifier = self.buffer.clone();
self.buffer.clear();
self.pending_token = None;
match identifier.as_str() {
"Abbreviate" => self.tokens.push(Tokens::Abbreviate),
"Connect" => self.tokens.push(Tokens::Connect),
"Declare" => self.tokens.push(Tokens::Declare),
"and" => self.tokens.push(Tokens::And),
"by" => self.tokens.push(Tokens::By),
_ => {
self.identifiers.push(identifier);
self.tokens.push(Tokens::Identifier(self.count_identifiers));
self.count_identifiers += 1;
}
}
}
/// Push a string literal to the list of tokens.
fn push_string(&mut self) {
self.string_literals.push(self.buffer.clone());
self.tokens.push(Tokens::StringLiteral(self.count_strings));
self.buffer.clear();
self.pending_token = None;
self.count_strings += 1;
}
/// Push an unexpected character to the list of tokens.
fn push_unexpected(&mut self, character: char) {
self.tokens.push(Tokens::Unexpected {
character,
line: self.line,
position: self.position,
});
}
/// Fill this instance based on an input file's contents.
///
/// # Errors
///
/// - [`sysexits::ExitCode::DataErr`]
pub fn read(&mut self, s: &str) -> Result<()> {
for character in s.chars() {
self.position += 1;
match self.pending_token {
Some(token) => match token {
Tokens::Comment => match character {
'(' => {
self.comment_depth += 1;
}
')' => {
self.comment_depth -= 1;
if self.comment_depth == 0 {
self.tokens.push(token);
self.pending_token = None;
}
}
_ => continue,
},
Tokens::Identifier(_) => {
if matches!(
character,
'0'..='9'
| 'A'..='Z'
| 'a'..='z'
| '_'
| '-'
) {
self.buffer.push(character);
} else {
self.push_identifier();
self.match_character(character);
}
}
Tokens::LineFeed(n) => {
if character == '\n' {
self.line += 1;
self.position = 0;
self.pending_token = Some(Tokens::LineFeed(n + 1));
} else {
self.finalise_pending_token(token, character);
}
}
Tokens::Space(n) => {
if character == ' ' {
self.pending_token = Some(Tokens::Space(n + 1));
} else {
self.finalise_pending_token(token, character);
}
}
Tokens::StringLiteral(_) => {
if character == '"' {
self.push_string();
} else {
self.buffer.push(character);
}
}
_ => unreachable!(),
},
None => self.match_character(character),
}
}
if self.pending_token.is_none() {
Ok(())
} else {
match self.pending_token {
Some(token) => {
if matches!(token, Tokens::LineFeed(_) | Tokens::Space(_)) {
self.tokens.push(token);
self.pending_token = None;
Ok(())
} else {
eprintln!("This source file is not ready for review, yet.");
Err(ExitCode::DataErr)
}
}
None => unreachable!(),
}
}
}
/// Check whether the source file starts with obsolete spaces.
fn starts_with_obsolete_spaces(&self) -> Result<bool> {
if matches!(self.tokens.first(), Some(Tokens::Space(_))) {
ceprintln!(
"Syntax "!Red,
"rule violation: the source file starts with obsolete spaces."
);
Ok(true)
} else {
Ok(false)
}
}
}
impl Default for GraphDescription {
fn default() -> Self {
Self::new()
}
}
/// The possible token types for the Aeruginous Graph Description.
#[derive(Copy, Clone, Debug, Eq, PartialEq)]
pub enum Tokens {
/// The `Abbreviate` keyword.
Abbreviate,
/// The `and` keyword.
And,
/// The `by` keyword.
By,
/// A comment.
Comment,
/// The `Connect` keyword.
Connect,
/// The `Declare` keyword.
Declare,
/// The `.` keyword.
FullStop,
/// An identifier's index within a [`GraphDescription`]'s set of identifiers.
Identifier(usize),
/// A simple line feed.
LineFeed(usize),
/// A space character.
Space(usize),
/// A string literal's index within a [`GraphDescription`]'s set of string
/// literals.
StringLiteral(usize),
/// An unexpected character.
Unexpected {
/// The unexpected character.
character: char,
/// The line in which the unexpected character occurs.
line: usize,
/// The column in which the unexpected character occurs.
position: usize,
},
}
/******************************************************************************/