hcl_edit/expr/func_call.rs
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
use crate::expr::{Expression, IntoIter, Iter, IterMut};
use crate::{Decor, Decorate, Decorated, Ident, RawString};
use std::ops::Range;
/// Type representing a (potentially namespaced) function name.
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct FuncName {
/// The function's namespace components, if any.
pub namespace: Vec<Decorated<Ident>>,
/// The function name.
pub name: Decorated<Ident>,
}
impl FuncName {
/// Create a new `FuncName` from a name identifier.
pub fn new(name: impl Into<Decorated<Ident>>) -> FuncName {
FuncName {
namespace: Vec::new(),
name: name.into(),
}
}
/// Sets the function namespace from an iterator of namespace parts.
pub fn set_namespace<I>(&mut self, namespace: I)
where
I: IntoIterator,
I::Item: Into<Decorated<Ident>>,
{
self.namespace = namespace.into_iter().map(Into::into).collect();
}
/// Returns `true` if the function name is namespaced.
pub fn is_namespaced(&self) -> bool {
!self.namespace.is_empty()
}
pub(crate) fn despan(&mut self, input: &str) {
for scope in &mut self.namespace {
scope.decor_mut().despan(input);
}
self.name.decor_mut().despan(input);
}
}
impl<T> From<T> for FuncName
where
T: Into<Decorated<Ident>>,
{
fn from(name: T) -> Self {
FuncName {
namespace: Vec::new(),
name: name.into(),
}
}
}
/// Type representing a function call.
#[derive(Debug, Clone, Eq)]
pub struct FuncCall {
/// The function name.
pub name: FuncName,
/// The arguments between the function call's `(` and `)` argument delimiters.
pub args: FuncArgs,
decor: Decor,
span: Option<Range<usize>>,
}
impl FuncCall {
/// Create a new `FuncCall` from an identifier and arguments.
pub fn new(name: impl Into<FuncName>, args: FuncArgs) -> FuncCall {
FuncCall {
name: name.into(),
args,
decor: Decor::default(),
span: None,
}
}
pub(crate) fn despan(&mut self, input: &str) {
self.decor.despan(input);
self.name.despan(input);
self.args.despan(input);
}
}
impl PartialEq for FuncCall {
fn eq(&self, other: &Self) -> bool {
self.name == other.name && self.args == other.args
}
}
/// Type representing the arguments of a function call.
///
/// In the HCL grammar, function arguments are delimited by `(` and `)`.
#[derive(Debug, Clone, Eq, Default)]
pub struct FuncArgs {
args: Vec<Expression>,
expand_final: bool,
trailing: RawString,
trailing_comma: bool,
decor: Decor,
span: Option<Range<usize>>,
}
impl FuncArgs {
/// Constructs new, empty `FuncArgs`.
#[inline]
pub fn new() -> Self {
FuncArgs::default()
}
/// Constructs new, empty `FuncArgs` with at least the specified capacity.
#[inline]
pub fn with_capacity(capacity: usize) -> Self {
FuncArgs {
args: Vec::with_capacity(capacity),
..Default::default()
}
}
/// Returns `true` if the function arguments are empty.
#[inline]
pub fn is_empty(&self) -> bool {
self.args.is_empty()
}
/// Returns the number of function arguments, also referred to as its 'length'.
#[inline]
pub fn len(&self) -> usize {
self.args.len()
}
/// Clears the function arguments.
#[inline]
pub fn clear(&mut self) {
self.args.clear();
}
/// Returns a reference to the argument at the given index, or `None` if the index is out of
/// bounds.
#[inline]
pub fn get(&self, index: usize) -> Option<&Expression> {
self.args.get(index)
}
/// Returns a mutable reference to the argument at the given index, or `None` if the index is
/// out of bounds.
#[inline]
pub fn get_mut(&mut self, index: usize) -> Option<&mut Expression> {
self.args.get_mut(index)
}
/// Inserts an argument at position `index`, shifting all arguments after it to the right.
///
/// # Panics
///
/// Panics if `index > len`.
#[inline]
pub fn insert(&mut self, index: usize, arg: impl Into<Expression>) {
self.args.insert(index, arg.into());
}
/// Removes the last argument and returns it, or [`None`] if it is empty.
#[inline]
pub fn pop(&mut self) -> Option<Expression> {
self.args.pop()
}
/// Appends an argument.
///
/// # Panics
///
/// Panics if the new capacity exceeds `isize::MAX` bytes.
#[inline]
pub fn push(&mut self, arg: impl Into<Expression>) {
self.args.push(arg.into());
}
/// Removes and returns the argument at position `index`, shifting all arguments after it to
/// the left.
///
/// Like `Vec::remove`, the argument is removed by shifting all of the arguments that follow
/// it, preserving their relative order. **This perturbs the index of all of those elements!**
///
/// # Panics
///
/// Panics if `index` is out of bounds.
#[inline]
pub fn remove(&mut self, index: usize) -> Expression {
self.args.remove(index)
}
/// An iterator visiting all values in insertion order. The iterator element type is `&'a
/// Expression`.
#[inline]
pub fn iter(&self) -> Iter<'_> {
Box::new(self.args.iter())
}
/// An iterator visiting all values in insertion order, with mutable references to the values.
/// The iterator element type is `&'a mut Expression`.
#[inline]
pub fn iter_mut(&mut self) -> IterMut<'_> {
Box::new(self.args.iter_mut())
}
/// Returns `true` if the final argument is a `...` list expansion.
#[inline]
pub fn expand_final(&self) -> bool {
self.expand_final
}
/// Set whether the final argument should be a `...` list expansion.
#[inline]
pub fn set_expand_final(&mut self, yes: bool) {
self.expand_final = yes;
}
/// Return a reference to raw trailing decor before the function argument's closing `)`.
#[inline]
pub fn trailing(&self) -> &RawString {
&self.trailing
}
/// Set the raw trailing decor before the function argument's closing `)`.
#[inline]
pub fn set_trailing(&mut self, trailing: impl Into<RawString>) {
self.trailing = trailing.into();
}
/// Returns `true` if the function arguments use a trailing comma.
#[inline]
pub fn trailing_comma(&self) -> bool {
self.trailing_comma
}
/// Set whether the function arguments will use a trailing comma.
#[inline]
pub fn set_trailing_comma(&mut self, yes: bool) {
self.trailing_comma = yes;
}
pub(crate) fn despan(&mut self, input: &str) {
self.decor.despan(input);
for arg in &mut self.args {
arg.despan(input);
}
self.trailing.despan(input);
}
}
impl PartialEq for FuncArgs {
fn eq(&self, other: &Self) -> bool {
self.args == other.args
&& self.trailing_comma == other.trailing_comma
&& self.trailing == other.trailing
}
}
impl From<Vec<Expression>> for FuncArgs {
fn from(args: Vec<Expression>) -> Self {
FuncArgs {
args,
..Default::default()
}
}
}
impl<T> Extend<T> for FuncArgs
where
T: Into<Expression>,
{
fn extend<I>(&mut self, iterable: I)
where
I: IntoIterator<Item = T>,
{
let iter = iterable.into_iter();
let reserve = if self.is_empty() {
iter.size_hint().0
} else {
(iter.size_hint().0 + 1) / 2
};
self.args.reserve(reserve);
iter.for_each(|v| self.push(v));
}
}
impl<T> FromIterator<T> for FuncArgs
where
T: Into<Expression>,
{
fn from_iter<I>(iterable: I) -> Self
where
I: IntoIterator<Item = T>,
{
let iter = iterable.into_iter();
let lower = iter.size_hint().0;
let mut func_args = FuncArgs::with_capacity(lower);
func_args.extend(iter);
func_args
}
}
impl IntoIterator for FuncArgs {
type Item = Expression;
type IntoIter = IntoIter;
fn into_iter(self) -> Self::IntoIter {
Box::new(self.args.into_iter())
}
}
impl<'a> IntoIterator for &'a FuncArgs {
type Item = &'a Expression;
type IntoIter = Iter<'a>;
fn into_iter(self) -> Self::IntoIter {
self.iter()
}
}
impl<'a> IntoIterator for &'a mut FuncArgs {
type Item = &'a mut Expression;
type IntoIter = IterMut<'a>;
fn into_iter(self) -> Self::IntoIter {
self.iter_mut()
}
}
decorate_impl!(FuncCall, FuncArgs);
span_impl!(FuncCall, FuncArgs);