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
// This file is part of yash, an extended POSIX shell.
// Copyright (C) 2020 WATANABE Yuki
//
// 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/>.
//! Source code that is passed to the parser.
//!
//! This module contains items representing information about the source code
//! from which ASTs originate. [`Source`] identifies the origin of source code
//! fragments contained in [`Code`]. A [`Location`] specifies a particular
//! character in a `Code` instance. You can use the [`pretty`] submodule to
//! format messages describing source code locations.
pub mod pretty;
use crate::alias::Alias;
use std::cell::RefCell;
use std::num::NonZeroU64;
use std::ops::Range;
use std::rc::Rc;
/// Origin of source code.
#[derive(Clone, Debug, Eq, PartialEq)]
#[non_exhaustive]
pub enum Source {
/// Source code of unknown origin.
///
/// Normally you should not use this value, but it may be useful for quick debugging.
Unknown,
/// Standard input.
Stdin,
/// Alias substitution.
///
/// This applies to a code fragment that replaced another as a result of alias substitution.
Alias {
/// Position of the original word that was replaced
original: Location,
/// Definition of the alias that was substituted
alias: Rc<Alias>,
},
/// Command substitution.
CommandSubst { original: Location },
/// Arithmetic expansion.
Arith { original: Location },
/// Trap command.
Trap {
/// Trap condition name, typically the signal name.
condition: String,
/// Location of the simple command that has set this trap command.
origin: Location,
},
// TODO More Source types
}
impl Source {
/// Tests if this source is alias substitution for the given name.
///
/// Returns true if `self` is `Source::Alias` with the `name` or such an
/// original, recursively.
///
/// ```
/// // `is_alias_for` returns false for sources other than an Alias
/// # use yash_syntax::source::Source;
/// assert_eq!(Source::Unknown.is_alias_for("foo"), false);
/// ```
///
/// ```
/// // `is_alias_for` returns true if the names match
/// # use yash_syntax::source::*;
/// let original = Location::dummy("");
/// let alias = std::rc::Rc::new(yash_syntax::alias::Alias{
/// name: "foo".to_string(),
/// replacement: "".to_string(),
/// global: false,
/// origin: original.clone()
/// });
/// let source = Source::Alias{original, alias};
/// assert_eq!(source.is_alias_for("foo"), true);
/// assert_eq!(source.is_alias_for("bar"), false);
/// ```
///
/// ```
/// // `is_alias_for` checks aliases recursively.
/// # use std::rc::Rc;
/// # use yash_syntax::source::*;
/// let mut original = Location::dummy("");
/// let alias = Rc::new(yash_syntax::alias::Alias{
/// name: "foo".to_string(),
/// replacement: "".to_string(),
/// global: false,
/// origin: original.clone()
/// });
/// let source = Source::Alias{original: original.clone(), alias};
/// let alias = Rc::new(yash_syntax::alias::Alias{
/// name: "bar".to_string(),
/// replacement: "".to_string(),
/// global: false,
/// origin: original.clone()
/// });
/// Rc::make_mut(&mut original.code).source = source;
/// let source = Source::Alias{original, alias};
/// assert_eq!(source.is_alias_for("foo"), true);
/// assert_eq!(source.is_alias_for("bar"), true);
/// assert_eq!(source.is_alias_for("baz"), false);
/// ```
pub fn is_alias_for(&self, name: &str) -> bool {
if let Source::Alias { original, alias } = self {
alias.name == name || original.code.source.is_alias_for(name)
} else {
false
}
}
/// Returns a label that describes the source.
pub fn label(&self) -> &str {
use Source::*;
match self {
Unknown => "<?>",
Stdin => "<stdin>",
Alias { .. } => "<alias>",
CommandSubst { .. } => "<command_substitution>",
Arith { .. } => "<arith>",
Trap { condition, .. } => condition,
}
}
}
/// Source code fragment
///
/// An instance of `Code` contains a block of the source code that was parsed to
/// produce an AST.
#[derive(Clone, Debug, Eq, PartialEq)]
pub struct Code {
/// Content of the code, usually terminated by a newline.
///
/// The value is contained in a `RefCell` so that more lines can be appended
/// to the value as the parser reads input lines.
pub value: RefCell<String>,
/// Line number of the first line of the code. Counted from 1.
pub start_line_number: NonZeroU64,
/// Source of this code.
pub source: Source,
}
/// Creates an iterator of [source char](SourceChar)s from a string.
///
/// `index_offset` will be the index of the first source char's location.
/// For each succeeding char, the index will be incremented by one.
///
/// ```
/// # use yash_syntax::source::{Code, Source, source_chars};
/// # use std::cell::RefCell;
/// # use std::num::NonZeroU64;
/// # use std::rc::Rc;
/// let s = "abc";
/// let code = Rc::new(Code {
/// value: RefCell::new(s.to_string()),
/// start_line_number: NonZeroU64::new(1).unwrap(),
/// source: Source::Unknown,
/// });
/// let chars: Vec<_> = source_chars(s, &code, 10).collect();
/// assert_eq!(chars[0].value, 'a');
/// assert_eq!(chars[0].location.code, code);
/// assert_eq!(chars[0].location.range, 10..11);
/// assert_eq!(chars[1].value, 'b');
/// assert_eq!(chars[1].location.code, code);
/// assert_eq!(chars[1].location.range, 11..12);
/// ```
pub fn source_chars<'a>(
s: &'a str,
code: &'a Rc<Code>,
index_offset: usize,
) -> impl Iterator<Item = SourceChar> + 'a {
s.chars().enumerate().map(move |(i, value)| SourceChar {
value,
location: Location {
code: Rc::clone(code),
range: index_offset + i..index_offset + i + 1,
},
})
}
/// Position of source code.
#[derive(Clone, Debug, Eq, PartialEq)]
pub struct Location {
/// Code that contains the character.
pub code: Rc<Code>,
/// Character position in the code, counted from 0.
///
/// Characters are counted in the number of Unicode scalar values, not
/// bytes. That means the index should be between 0 and
/// `code.value.borrow().chars().count()`.
pub range: Range<usize>,
}
impl Location {
/// Creates a dummy location.
///
/// The returned location has [unknown](Source::Unknown) source and the
/// given source code value. The `start_line_number` will be 1.
/// The location ranges over the whole code.
///
/// This function is mainly for use in testing.
#[inline]
pub fn dummy<S: Into<String>>(value: S) -> Location {
fn with_line(value: String) -> Location {
let range = 0..value.chars().count();
let code = Rc::new(Code {
value: RefCell::new(value),
start_line_number: NonZeroU64::new(1).unwrap(),
source: Source::Unknown,
});
Location { code, range }
}
with_line(value.into())
}
}
/// Character with source description.
#[derive(Clone, Debug, Eq, PartialEq)]
pub struct SourceChar {
/// Character value.
pub value: char,
/// Location of this character in source code.
pub location: Location,
}