2022-11-26 23:57:50 +00:00
|
|
|
// Copyright 2020 The Jujutsu Authors
|
2020-12-12 08:00:42 +00:00
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// https://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2023-02-04 12:36:11 +00:00
|
|
|
use std::num::ParseIntError;
|
2023-02-03 05:36:01 +00:00
|
|
|
use std::ops::{RangeFrom, RangeInclusive};
|
2023-02-02 12:30:49 +00:00
|
|
|
use std::{error, fmt, iter};
|
2023-02-02 08:57:55 +00:00
|
|
|
|
2023-01-28 11:09:13 +00:00
|
|
|
use itertools::Itertools as _;
|
2023-01-02 23:34:54 +00:00
|
|
|
use jujutsu_lib::backend::{Signature, Timestamp};
|
2021-05-15 16:16:31 +00:00
|
|
|
use jujutsu_lib::commit::Commit;
|
2022-02-02 18:14:03 +00:00
|
|
|
use jujutsu_lib::op_store::WorkspaceId;
|
2021-05-15 16:16:31 +00:00
|
|
|
use jujutsu_lib::repo::RepoRef;
|
2023-01-31 03:48:38 +00:00
|
|
|
use jujutsu_lib::rewrite;
|
2021-03-14 17:46:35 +00:00
|
|
|
use pest::iterators::{Pair, Pairs};
|
2020-12-12 08:00:42 +00:00
|
|
|
use pest::Parser;
|
2022-09-22 04:52:04 +00:00
|
|
|
use pest_derive::Parser;
|
2023-02-02 08:57:55 +00:00
|
|
|
use thiserror::Error;
|
2020-12-12 08:00:42 +00:00
|
|
|
|
|
|
|
use crate::templater::{
|
2023-01-26 11:00:52 +00:00
|
|
|
BranchProperty, CommitOrChangeId, ConditionalTemplate, FormattablePropertyTemplate,
|
2023-02-06 06:37:32 +00:00
|
|
|
GitHeadProperty, GitRefsProperty, LabelTemplate, ListTemplate, Literal,
|
|
|
|
PlainTextFormattedProperty, SeparateTemplate, ShortestIdPrefix, TagProperty, Template,
|
|
|
|
TemplateFunction, TemplateProperty, TemplatePropertyFn, WorkingCopiesProperty,
|
2020-12-12 08:00:42 +00:00
|
|
|
};
|
2023-01-31 03:48:38 +00:00
|
|
|
use crate::{cli_util, time_util};
|
2020-12-12 08:00:42 +00:00
|
|
|
|
|
|
|
#[derive(Parser)]
|
|
|
|
#[grammar = "template.pest"]
|
|
|
|
pub struct TemplateParser;
|
|
|
|
|
2023-02-03 10:42:03 +00:00
|
|
|
type TemplateParseResult<T> = Result<T, TemplateParseError>;
|
|
|
|
|
2023-02-02 08:57:55 +00:00
|
|
|
#[derive(Clone, Debug)]
|
|
|
|
pub struct TemplateParseError {
|
|
|
|
kind: TemplateParseErrorKind,
|
|
|
|
pest_error: Box<pest::error::Error<Rule>>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Clone, Debug, Eq, Error, PartialEq)]
|
|
|
|
pub enum TemplateParseErrorKind {
|
|
|
|
#[error("Syntax error")]
|
|
|
|
SyntaxError,
|
2023-02-04 12:36:11 +00:00
|
|
|
#[error("Invalid integer literal: {0}")]
|
|
|
|
ParseIntError(#[source] ParseIntError),
|
2023-02-02 10:31:50 +00:00
|
|
|
#[error(r#"Keyword "{0}" doesn't exist"#)]
|
|
|
|
NoSuchKeyword(String),
|
|
|
|
#[error(r#"Function "{0}" doesn't exist"#)]
|
|
|
|
NoSuchFunction(String),
|
|
|
|
#[error(r#"Method "{name}" doesn't exist for type "{type_name}""#)]
|
|
|
|
NoSuchMethod { type_name: String, name: String },
|
2023-02-03 15:01:53 +00:00
|
|
|
// TODO: clean up argument error variants
|
|
|
|
#[error("Expected {0} arguments")]
|
|
|
|
InvalidArgumentCountExact(usize),
|
|
|
|
#[error("Expected {} to {} arguments", .0.start(), .0.end())]
|
|
|
|
InvalidArgumentCountRange(RangeInclusive<usize>),
|
2023-02-03 05:36:01 +00:00
|
|
|
#[error("Expected at least {} arguments", .0.start)]
|
|
|
|
InvalidArgumentCountRangeFrom(RangeFrom<usize>),
|
2023-02-02 11:13:12 +00:00
|
|
|
#[error(r#"Expected argument of type "{0}""#)]
|
|
|
|
InvalidArgumentType(String),
|
2023-02-02 10:31:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl TemplateParseError {
|
|
|
|
fn with_span(kind: TemplateParseErrorKind, span: pest::Span<'_>) -> Self {
|
|
|
|
let pest_error = Box::new(pest::error::Error::new_from_span(
|
|
|
|
pest::error::ErrorVariant::CustomError {
|
|
|
|
message: kind.to_string(),
|
|
|
|
},
|
|
|
|
span,
|
|
|
|
));
|
|
|
|
TemplateParseError { kind, pest_error }
|
|
|
|
}
|
|
|
|
|
|
|
|
fn no_such_keyword(pair: &Pair<'_, Rule>) -> Self {
|
|
|
|
TemplateParseError::with_span(
|
|
|
|
TemplateParseErrorKind::NoSuchKeyword(pair.as_str().to_owned()),
|
|
|
|
pair.as_span(),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn no_such_function(pair: &Pair<'_, Rule>) -> Self {
|
|
|
|
TemplateParseError::with_span(
|
|
|
|
TemplateParseErrorKind::NoSuchFunction(pair.as_str().to_owned()),
|
|
|
|
pair.as_span(),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn no_such_method(type_name: impl Into<String>, pair: &Pair<'_, Rule>) -> Self {
|
|
|
|
TemplateParseError::with_span(
|
|
|
|
TemplateParseErrorKind::NoSuchMethod {
|
|
|
|
type_name: type_name.into(),
|
|
|
|
name: pair.as_str().to_owned(),
|
|
|
|
},
|
|
|
|
pair.as_span(),
|
|
|
|
)
|
|
|
|
}
|
2023-02-02 11:13:12 +00:00
|
|
|
|
2023-02-03 15:01:53 +00:00
|
|
|
fn invalid_argument_count_exact(count: usize, span: pest::Span<'_>) -> Self {
|
2023-02-02 11:21:00 +00:00
|
|
|
TemplateParseError::with_span(
|
2023-02-03 15:01:53 +00:00
|
|
|
TemplateParseErrorKind::InvalidArgumentCountExact(count),
|
|
|
|
span,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn invalid_argument_count_range(count: RangeInclusive<usize>, span: pest::Span<'_>) -> Self {
|
|
|
|
TemplateParseError::with_span(
|
|
|
|
TemplateParseErrorKind::InvalidArgumentCountRange(count),
|
2023-02-02 11:21:00 +00:00
|
|
|
span,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2023-02-03 05:36:01 +00:00
|
|
|
fn invalid_argument_count_range_from(count: RangeFrom<usize>, span: pest::Span<'_>) -> Self {
|
|
|
|
TemplateParseError::with_span(
|
|
|
|
TemplateParseErrorKind::InvalidArgumentCountRangeFrom(count),
|
|
|
|
span,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2023-02-02 11:13:12 +00:00
|
|
|
fn invalid_argument_type(expected_type_name: impl Into<String>, span: pest::Span<'_>) -> Self {
|
|
|
|
TemplateParseError::with_span(
|
|
|
|
TemplateParseErrorKind::InvalidArgumentType(expected_type_name.into()),
|
|
|
|
span,
|
|
|
|
)
|
|
|
|
}
|
2023-02-02 08:57:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl From<pest::error::Error<Rule>> for TemplateParseError {
|
|
|
|
fn from(err: pest::error::Error<Rule>) -> Self {
|
|
|
|
TemplateParseError {
|
|
|
|
kind: TemplateParseErrorKind::SyntaxError,
|
|
|
|
pest_error: Box::new(err),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl fmt::Display for TemplateParseError {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
|
|
self.pest_error.fmt(f)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl error::Error for TemplateParseError {
|
|
|
|
fn source(&self) -> Option<&(dyn error::Error + 'static)> {
|
|
|
|
match &self.kind {
|
|
|
|
// SyntaxError is a wrapper for pest::error::Error.
|
|
|
|
TemplateParseErrorKind::SyntaxError => Some(&self.pest_error as &dyn error::Error),
|
|
|
|
// Otherwise the kind represents this error.
|
2023-02-02 10:31:50 +00:00
|
|
|
e => e.source(),
|
2023-02-02 08:57:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-12 08:00:42 +00:00
|
|
|
fn parse_string_literal(pair: Pair<Rule>) -> String {
|
|
|
|
assert_eq!(pair.as_rule(), Rule::literal);
|
|
|
|
let mut result = String::new();
|
|
|
|
for part in pair.into_inner() {
|
|
|
|
match part.as_rule() {
|
|
|
|
Rule::raw_literal => {
|
|
|
|
result.push_str(part.as_str());
|
|
|
|
}
|
|
|
|
Rule::escape => match part.as_str().as_bytes()[1] as char {
|
|
|
|
'"' => result.push('"'),
|
|
|
|
'\\' => result.push('\\'),
|
|
|
|
'n' => result.push('\n'),
|
2022-12-15 02:30:06 +00:00
|
|
|
char => panic!("invalid escape: \\{char:?}"),
|
2020-12-12 08:00:42 +00:00
|
|
|
},
|
2022-12-15 02:30:06 +00:00
|
|
|
_ => panic!("unexpected part of string: {part:?}"),
|
2020-12-12 08:00:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
result
|
|
|
|
}
|
|
|
|
|
2023-01-07 02:04:08 +00:00
|
|
|
enum Property<'a, I> {
|
templater: turn output parameter of TemplateProperty into associated type
When implementing FormattablePropertyTemplate, I tried a generic 'property: P'
first, and I couldn't figure out how to constrain the output type.
impl<C, O, P> Template<C> for FormattablePropertyTemplate<P>
where
P: TemplateProperty<C, O>, // 'O' isn't constrained by type
O: Template<()>,
According to the book, the problem is that we can add multiple implementations
of 'TemplateProperty<C, *>'. Since TemplateProperty is basically a function
to extract data from 'C', I think the output parameter shouldn't be freely
chosen.
https://doc.rust-lang.org/book/ch19-03-advanced-traits.html
With this change, I can express the type constraint as follows:
impl<C, P> Template<C> for FormattablePropertyTemplate<P>
where
P: TemplateProperty<C>,
P::Output: Template<()>,
2023-01-23 06:26:27 +00:00
|
|
|
String(Box<dyn TemplateProperty<I, Output = String> + 'a>),
|
|
|
|
Boolean(Box<dyn TemplateProperty<I, Output = bool> + 'a>),
|
2023-02-04 12:36:11 +00:00
|
|
|
Integer(Box<dyn TemplateProperty<I, Output = i64> + 'a>),
|
2023-01-23 06:51:01 +00:00
|
|
|
CommitOrChangeId(Box<dyn TemplateProperty<I, Output = CommitOrChangeId<'a>> + 'a>),
|
2023-02-06 06:37:32 +00:00
|
|
|
ShortestIdPrefix(Box<dyn TemplateProperty<I, Output = ShortestIdPrefix> + 'a>),
|
templater: turn output parameter of TemplateProperty into associated type
When implementing FormattablePropertyTemplate, I tried a generic 'property: P'
first, and I couldn't figure out how to constrain the output type.
impl<C, O, P> Template<C> for FormattablePropertyTemplate<P>
where
P: TemplateProperty<C, O>, // 'O' isn't constrained by type
O: Template<()>,
According to the book, the problem is that we can add multiple implementations
of 'TemplateProperty<C, *>'. Since TemplateProperty is basically a function
to extract data from 'C', I think the output parameter shouldn't be freely
chosen.
https://doc.rust-lang.org/book/ch19-03-advanced-traits.html
With this change, I can express the type constraint as follows:
impl<C, P> Template<C> for FormattablePropertyTemplate<P>
where
P: TemplateProperty<C>,
P::Output: Template<()>,
2023-01-23 06:26:27 +00:00
|
|
|
Signature(Box<dyn TemplateProperty<I, Output = Signature> + 'a>),
|
|
|
|
Timestamp(Box<dyn TemplateProperty<I, Output = Timestamp> + 'a>),
|
2023-01-07 02:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a, I: 'a> Property<'a, I> {
|
2023-01-30 10:52:41 +00:00
|
|
|
fn try_into_boolean(self) -> Option<Box<dyn TemplateProperty<I, Output = bool> + 'a>> {
|
|
|
|
match self {
|
|
|
|
Property::String(property) => {
|
|
|
|
Some(Box::new(TemplateFunction::new(property, |s| !s.is_empty())))
|
|
|
|
}
|
|
|
|
Property::Boolean(property) => Some(property),
|
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-02-04 12:36:11 +00:00
|
|
|
fn try_into_integer(self) -> Option<Box<dyn TemplateProperty<I, Output = i64> + 'a>> {
|
|
|
|
match self {
|
|
|
|
Property::Integer(property) => Some(property),
|
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-26 11:20:43 +00:00
|
|
|
fn into_plain_text(self) -> Box<dyn TemplateProperty<I, Output = String> + 'a> {
|
|
|
|
match self {
|
|
|
|
Property::String(property) => property,
|
|
|
|
_ => Box::new(PlainTextFormattedProperty::new(self.into_template())),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-22 23:02:46 +00:00
|
|
|
fn into_template(self) -> Box<dyn Template<I> + 'a> {
|
|
|
|
fn wrap<'a, I: 'a, O: Template<()> + 'a>(
|
templater: turn output parameter of TemplateProperty into associated type
When implementing FormattablePropertyTemplate, I tried a generic 'property: P'
first, and I couldn't figure out how to constrain the output type.
impl<C, O, P> Template<C> for FormattablePropertyTemplate<P>
where
P: TemplateProperty<C, O>, // 'O' isn't constrained by type
O: Template<()>,
According to the book, the problem is that we can add multiple implementations
of 'TemplateProperty<C, *>'. Since TemplateProperty is basically a function
to extract data from 'C', I think the output parameter shouldn't be freely
chosen.
https://doc.rust-lang.org/book/ch19-03-advanced-traits.html
With this change, I can express the type constraint as follows:
impl<C, P> Template<C> for FormattablePropertyTemplate<P>
where
P: TemplateProperty<C>,
P::Output: Template<()>,
2023-01-23 06:26:27 +00:00
|
|
|
property: Box<dyn TemplateProperty<I, Output = O> + 'a>,
|
2023-01-22 23:02:46 +00:00
|
|
|
) -> Box<dyn Template<I> + 'a> {
|
|
|
|
Box::new(FormattablePropertyTemplate::new(property))
|
|
|
|
}
|
|
|
|
match self {
|
|
|
|
Property::String(property) => wrap(property),
|
|
|
|
Property::Boolean(property) => wrap(property),
|
2023-02-04 12:36:11 +00:00
|
|
|
Property::Integer(property) => wrap(property),
|
2023-01-23 06:51:01 +00:00
|
|
|
Property::CommitOrChangeId(property) => wrap(property),
|
2023-02-06 06:37:32 +00:00
|
|
|
Property::ShortestIdPrefix(property) => wrap(property),
|
2023-01-22 23:02:46 +00:00
|
|
|
Property::Signature(property) => wrap(property),
|
|
|
|
Property::Timestamp(property) => wrap(property),
|
|
|
|
}
|
|
|
|
}
|
2023-01-07 02:04:08 +00:00
|
|
|
}
|
|
|
|
|
2023-01-29 03:34:24 +00:00
|
|
|
struct PropertyAndLabels<'a, C>(Property<'a, C>, Vec<String>);
|
|
|
|
|
2023-01-31 02:42:26 +00:00
|
|
|
impl<'a, C: 'a> PropertyAndLabels<'a, C> {
|
|
|
|
fn into_template(self) -> Box<dyn Template<C> + 'a> {
|
|
|
|
let PropertyAndLabels(property, labels) = self;
|
|
|
|
if labels.is_empty() {
|
|
|
|
property.into_template()
|
|
|
|
} else {
|
2023-01-26 11:00:52 +00:00
|
|
|
Box::new(LabelTemplate::new(
|
|
|
|
property.into_template(),
|
|
|
|
Literal(labels),
|
|
|
|
))
|
2023-01-31 02:42:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-28 23:54:53 +00:00
|
|
|
enum Expression<'a, C> {
|
|
|
|
Property(PropertyAndLabels<'a, C>),
|
|
|
|
Template(Box<dyn Template<C> + 'a>),
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a, C: 'a> Expression<'a, C> {
|
2023-01-29 03:15:17 +00:00
|
|
|
fn try_into_boolean(self) -> Option<Box<dyn TemplateProperty<C, Output = bool> + 'a>> {
|
|
|
|
match self {
|
|
|
|
Expression::Property(PropertyAndLabels(property, _)) => property.try_into_boolean(),
|
|
|
|
Expression::Template(_) => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-02-04 12:36:11 +00:00
|
|
|
fn try_into_integer(self) -> Option<Box<dyn TemplateProperty<C, Output = i64> + 'a>> {
|
|
|
|
match self {
|
|
|
|
Expression::Property(PropertyAndLabels(property, _)) => property.try_into_integer(),
|
|
|
|
Expression::Template(_) => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-26 11:20:43 +00:00
|
|
|
fn into_plain_text(self) -> Box<dyn TemplateProperty<C, Output = String> + 'a> {
|
|
|
|
match self {
|
|
|
|
Expression::Property(PropertyAndLabels(property, _)) => property.into_plain_text(),
|
|
|
|
Expression::Template(template) => Box::new(PlainTextFormattedProperty::new(template)),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-28 23:54:53 +00:00
|
|
|
fn into_template(self) -> Box<dyn Template<C> + 'a> {
|
|
|
|
match self {
|
|
|
|
Expression::Property(property_labels) => property_labels.into_template(),
|
|
|
|
Expression::Template(template) => template,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-02-02 12:30:49 +00:00
|
|
|
type OptionalArg<'i> = Option<Pair<'i, Rule>>;
|
|
|
|
|
2023-02-04 08:26:00 +00:00
|
|
|
fn expect_no_arguments(pair: Pair<Rule>) -> Result<(), TemplateParseError> {
|
|
|
|
let span = pair.as_span();
|
|
|
|
let mut pairs = pair.into_inner();
|
|
|
|
if pairs.next().is_none() {
|
|
|
|
Ok(())
|
|
|
|
} else {
|
|
|
|
Err(TemplateParseError::invalid_argument_count_exact(0, span))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-02-02 12:30:49 +00:00
|
|
|
/// Extracts exactly N required arguments.
|
|
|
|
fn expect_exact_arguments<const N: usize>(
|
|
|
|
pair: Pair<Rule>,
|
|
|
|
) -> TemplateParseResult<[Pair<Rule>; N]> {
|
|
|
|
let span = pair.as_span();
|
|
|
|
let make_error = || TemplateParseError::invalid_argument_count_exact(N, span);
|
|
|
|
let mut pairs = pair.into_inner();
|
|
|
|
let required: [Pair<Rule>; N] = pairs
|
|
|
|
.by_ref()
|
|
|
|
.take(N)
|
|
|
|
.collect_vec()
|
|
|
|
.try_into()
|
|
|
|
.map_err(|_| make_error())?;
|
|
|
|
if pairs.next().is_none() {
|
|
|
|
Ok(required)
|
|
|
|
} else {
|
|
|
|
Err(make_error())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Extracts N required arguments and remainders.
|
|
|
|
fn expect_some_arguments<const N: usize>(
|
|
|
|
pair: Pair<Rule>,
|
|
|
|
) -> TemplateParseResult<([Pair<Rule>; N], Pairs<Rule>)> {
|
|
|
|
let span = pair.as_span();
|
|
|
|
let make_error = || TemplateParseError::invalid_argument_count_range_from(N.., span);
|
|
|
|
let mut pairs = pair.into_inner();
|
|
|
|
let required: [Pair<Rule>; N] = pairs
|
|
|
|
.by_ref()
|
|
|
|
.take(N)
|
|
|
|
.collect_vec()
|
|
|
|
.try_into()
|
|
|
|
.map_err(|_| make_error())?;
|
|
|
|
Ok((required, pairs))
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Extracts N required arguments and M optional arguments.
|
|
|
|
fn expect_arguments<const N: usize, const M: usize>(
|
|
|
|
pair: Pair<Rule>,
|
|
|
|
) -> TemplateParseResult<([Pair<Rule>; N], [OptionalArg; M])> {
|
|
|
|
let span = pair.as_span();
|
|
|
|
let make_error = || TemplateParseError::invalid_argument_count_range(N..=(N + M), span);
|
|
|
|
let mut pairs = pair.into_inner().fuse();
|
|
|
|
let required: [Pair<Rule>; N] = pairs
|
|
|
|
.by_ref()
|
|
|
|
.take(N)
|
|
|
|
.collect_vec()
|
|
|
|
.try_into()
|
|
|
|
.map_err(|_| make_error())?;
|
|
|
|
let optional: [OptionalArg; M] = pairs
|
|
|
|
.by_ref()
|
|
|
|
.map(Some)
|
|
|
|
.chain(iter::repeat(None))
|
|
|
|
.take(M)
|
|
|
|
.collect_vec()
|
|
|
|
.try_into()
|
|
|
|
.unwrap();
|
|
|
|
if pairs.next().is_none() {
|
|
|
|
Ok((required, optional))
|
|
|
|
} else {
|
|
|
|
Err(make_error())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-12 08:00:42 +00:00
|
|
|
fn parse_method_chain<'a, I: 'a>(
|
2023-01-27 10:06:32 +00:00
|
|
|
input_property: PropertyAndLabels<'a, I>,
|
2023-02-04 12:28:14 +00:00
|
|
|
method_pairs: Pairs<Rule>,
|
2023-02-04 06:55:12 +00:00
|
|
|
parse_keyword: &impl Fn(Pair<Rule>) -> TemplateParseResult<PropertyAndLabels<'a, I>>,
|
2023-02-03 10:42:03 +00:00
|
|
|
) -> TemplateParseResult<PropertyAndLabels<'a, I>> {
|
2023-01-27 10:06:32 +00:00
|
|
|
let PropertyAndLabels(mut property, mut labels) = input_property;
|
2023-02-04 12:28:14 +00:00
|
|
|
for chain in method_pairs {
|
2023-01-27 10:06:32 +00:00
|
|
|
assert_eq!(chain.as_rule(), Rule::function);
|
2023-02-04 06:36:44 +00:00
|
|
|
let (name, args_pair) = {
|
2023-01-29 03:39:51 +00:00
|
|
|
let mut inner = chain.into_inner();
|
|
|
|
let name = inner.next().unwrap();
|
|
|
|
let args_pair = inner.next().unwrap();
|
|
|
|
assert_eq!(name.as_rule(), Rule::identifier);
|
|
|
|
assert_eq!(args_pair.as_rule(), Rule::function_arguments);
|
2023-02-04 06:36:44 +00:00
|
|
|
(name, args_pair)
|
2023-01-29 03:39:51 +00:00
|
|
|
};
|
2023-01-27 10:06:32 +00:00
|
|
|
labels.push(name.as_str().to_owned());
|
|
|
|
property = match property {
|
2023-02-04 06:55:12 +00:00
|
|
|
Property::String(property) => {
|
|
|
|
parse_string_method(property, name, args_pair, parse_keyword)?
|
|
|
|
}
|
|
|
|
Property::Boolean(property) => {
|
|
|
|
parse_boolean_method(property, name, args_pair, parse_keyword)?
|
|
|
|
}
|
2023-02-04 12:36:11 +00:00
|
|
|
Property::Integer(property) => {
|
|
|
|
parse_integer_method(property, name, args_pair, parse_keyword)?
|
|
|
|
}
|
2023-01-23 06:51:01 +00:00
|
|
|
Property::CommitOrChangeId(property) => {
|
2023-02-04 06:55:12 +00:00
|
|
|
parse_commit_or_change_id_method(property, name, args_pair, parse_keyword)?
|
2022-11-26 01:33:24 +00:00
|
|
|
}
|
2023-02-06 06:43:24 +00:00
|
|
|
Property::ShortestIdPrefix(property) => {
|
|
|
|
parse_shortest_id_prefix_method(property, name, args_pair, parse_keyword)?
|
2023-01-31 04:41:50 +00:00
|
|
|
}
|
2023-02-04 06:55:12 +00:00
|
|
|
Property::Signature(property) => {
|
|
|
|
parse_signature_method(property, name, args_pair, parse_keyword)?
|
|
|
|
}
|
|
|
|
Property::Timestamp(property) => {
|
|
|
|
parse_timestamp_method(property, name, args_pair, parse_keyword)?
|
|
|
|
}
|
2023-01-07 20:00:51 +00:00
|
|
|
};
|
2020-12-12 08:00:42 +00:00
|
|
|
}
|
2023-02-02 10:36:33 +00:00
|
|
|
Ok(PropertyAndLabels(property, labels))
|
2020-12-12 08:00:42 +00:00
|
|
|
}
|
|
|
|
|
2023-02-03 11:28:44 +00:00
|
|
|
fn chain_properties<'a, I: 'a, J: 'a, O: 'a>(
|
|
|
|
first: impl TemplateProperty<I, Output = J> + 'a,
|
|
|
|
second: impl TemplateProperty<J, Output = O> + 'a,
|
|
|
|
) -> Box<dyn TemplateProperty<I, Output = O> + 'a> {
|
|
|
|
Box::new(TemplateFunction::new(first, move |value| {
|
|
|
|
second.extract(&value)
|
|
|
|
}))
|
|
|
|
}
|
|
|
|
|
|
|
|
fn parse_string_method<'a, I: 'a>(
|
|
|
|
self_property: impl TemplateProperty<I, Output = String> + 'a,
|
2023-02-02 10:36:33 +00:00
|
|
|
name: Pair<Rule>,
|
2023-02-04 08:26:00 +00:00
|
|
|
args_pair: Pair<Rule>,
|
2023-02-04 07:38:39 +00:00
|
|
|
parse_keyword: &impl Fn(Pair<Rule>) -> TemplateParseResult<PropertyAndLabels<'a, I>>,
|
2023-02-03 11:28:44 +00:00
|
|
|
) -> TemplateParseResult<Property<'a, I>> {
|
2023-02-02 10:36:33 +00:00
|
|
|
let property = match name.as_str() {
|
2023-02-04 07:38:39 +00:00
|
|
|
"contains" => {
|
|
|
|
let [needle_pair] = expect_exact_arguments(args_pair)?;
|
|
|
|
// TODO: or .try_into_string() to disable implicit type cast?
|
|
|
|
let needle_property =
|
|
|
|
parse_template_rule(needle_pair, parse_keyword)?.into_plain_text();
|
|
|
|
Property::Boolean(chain_properties(
|
|
|
|
(self_property, needle_property),
|
|
|
|
TemplatePropertyFn(|(haystack, needle): &(String, String)| {
|
|
|
|
haystack.contains(needle)
|
|
|
|
}),
|
|
|
|
))
|
|
|
|
}
|
2023-02-04 08:26:00 +00:00
|
|
|
"first_line" => {
|
|
|
|
expect_no_arguments(args_pair)?;
|
|
|
|
Property::String(chain_properties(
|
|
|
|
self_property,
|
|
|
|
TemplatePropertyFn(|s: &String| s.lines().next().unwrap_or_default().to_string()),
|
|
|
|
))
|
|
|
|
}
|
2023-02-02 10:31:50 +00:00
|
|
|
_ => return Err(TemplateParseError::no_such_method("String", &name)),
|
2023-02-02 10:36:33 +00:00
|
|
|
};
|
|
|
|
Ok(property)
|
2020-12-12 08:00:42 +00:00
|
|
|
}
|
|
|
|
|
2023-02-03 11:28:44 +00:00
|
|
|
fn parse_boolean_method<'a, I: 'a>(
|
|
|
|
_self_property: impl TemplateProperty<I, Output = bool> + 'a,
|
2023-02-02 10:36:33 +00:00
|
|
|
name: Pair<Rule>,
|
2023-02-04 06:36:44 +00:00
|
|
|
_args_pair: Pair<Rule>,
|
2023-02-04 06:55:12 +00:00
|
|
|
_parse_keyword: &impl Fn(Pair<Rule>) -> TemplateParseResult<PropertyAndLabels<'a, I>>,
|
2023-02-03 11:28:44 +00:00
|
|
|
) -> TemplateParseResult<Property<'a, I>> {
|
2023-02-02 10:31:50 +00:00
|
|
|
Err(TemplateParseError::no_such_method("Boolean", &name))
|
2020-12-12 08:00:42 +00:00
|
|
|
}
|
|
|
|
|
2023-02-04 12:36:11 +00:00
|
|
|
fn parse_integer_method<'a, I: 'a>(
|
|
|
|
_self_property: impl TemplateProperty<I, Output = i64> + 'a,
|
|
|
|
name: Pair<Rule>,
|
|
|
|
_args_pair: Pair<Rule>,
|
|
|
|
_parse_keyword: &impl Fn(Pair<Rule>) -> TemplateParseResult<PropertyAndLabels<'a, I>>,
|
|
|
|
) -> TemplateParseResult<Property<'a, I>> {
|
|
|
|
Err(TemplateParseError::no_such_method("Integer", &name))
|
|
|
|
}
|
|
|
|
|
2023-02-03 11:28:44 +00:00
|
|
|
fn parse_commit_or_change_id_method<'a, I: 'a>(
|
|
|
|
self_property: impl TemplateProperty<I, Output = CommitOrChangeId<'a>> + 'a,
|
2023-01-27 10:06:32 +00:00
|
|
|
name: Pair<Rule>,
|
2023-02-04 08:26:00 +00:00
|
|
|
args_pair: Pair<Rule>,
|
2023-01-21 04:56:34 +00:00
|
|
|
parse_keyword: &impl Fn(Pair<Rule>) -> TemplateParseResult<PropertyAndLabels<'a, I>>,
|
2023-02-03 11:28:44 +00:00
|
|
|
) -> TemplateParseResult<Property<'a, I>> {
|
2023-01-21 04:56:34 +00:00
|
|
|
let parse_optional_integer = |args_pair: Pair<Rule>| -> Result<Option<_>, TemplateParseError> {
|
|
|
|
let ([], [len_pair]) = expect_arguments(args_pair)?;
|
|
|
|
len_pair
|
|
|
|
.map(|len_pair| {
|
|
|
|
let span = len_pair.as_span();
|
|
|
|
parse_template_rule(len_pair, parse_keyword).and_then(|p| {
|
|
|
|
p.try_into_integer()
|
|
|
|
.ok_or_else(|| TemplateParseError::invalid_argument_type("Integer", span))
|
|
|
|
})
|
|
|
|
})
|
|
|
|
.transpose()
|
|
|
|
};
|
2023-02-02 10:36:33 +00:00
|
|
|
let property = match name.as_str() {
|
2023-02-04 08:26:00 +00:00
|
|
|
"short" => {
|
2023-02-03 06:48:39 +00:00
|
|
|
let len_property = parse_optional_integer(args_pair)?;
|
2023-02-04 08:26:00 +00:00
|
|
|
Property::String(chain_properties(
|
2023-02-03 06:48:39 +00:00
|
|
|
(self_property, len_property),
|
|
|
|
TemplatePropertyFn(|(id, len): &(CommitOrChangeId, Option<i64>)| {
|
|
|
|
id.short(len.and_then(|l| l.try_into().ok()).unwrap_or(12))
|
|
|
|
}),
|
2023-02-04 08:26:00 +00:00
|
|
|
))
|
|
|
|
}
|
2023-02-06 06:37:32 +00:00
|
|
|
"shortest" => {
|
2023-01-21 04:56:34 +00:00
|
|
|
let len_property = parse_optional_integer(args_pair)?;
|
2023-02-06 06:37:32 +00:00
|
|
|
Property::ShortestIdPrefix(chain_properties(
|
2023-01-21 04:56:34 +00:00
|
|
|
(self_property, len_property),
|
|
|
|
TemplatePropertyFn(|(id, len): &(CommitOrChangeId, Option<i64>)| {
|
2023-02-06 06:52:16 +00:00
|
|
|
id.shortest(len.and_then(|l| l.try_into().ok()).unwrap_or(0))
|
2023-01-21 04:56:34 +00:00
|
|
|
}),
|
2023-02-04 08:26:00 +00:00
|
|
|
))
|
|
|
|
}
|
2023-02-02 10:31:50 +00:00
|
|
|
_ => {
|
|
|
|
return Err(TemplateParseError::no_such_method(
|
|
|
|
"CommitOrChangeId",
|
|
|
|
&name,
|
|
|
|
));
|
|
|
|
}
|
2023-02-02 10:36:33 +00:00
|
|
|
};
|
|
|
|
Ok(property)
|
2020-12-12 08:00:42 +00:00
|
|
|
}
|
|
|
|
|
2023-02-06 06:43:24 +00:00
|
|
|
fn parse_shortest_id_prefix_method<'a, I: 'a>(
|
|
|
|
self_property: impl TemplateProperty<I, Output = ShortestIdPrefix> + 'a,
|
|
|
|
name: Pair<Rule>,
|
|
|
|
args_pair: Pair<Rule>,
|
|
|
|
_parse_keyword: &impl Fn(Pair<Rule>) -> TemplateParseResult<PropertyAndLabels<'a, I>>,
|
|
|
|
) -> TemplateParseResult<Property<'a, I>> {
|
|
|
|
let property = match name.as_str() {
|
|
|
|
"with_brackets" => {
|
|
|
|
// TODO: If we had a map function, this could be expressed as a template
|
|
|
|
// like 'id.shortest() % (.prefix() if(.rest(), "[" .rest() "]"))'
|
|
|
|
expect_no_arguments(args_pair)?;
|
|
|
|
Property::String(chain_properties(
|
|
|
|
self_property,
|
|
|
|
TemplatePropertyFn(|id: &ShortestIdPrefix| id.with_brackets()),
|
|
|
|
))
|
|
|
|
}
|
|
|
|
_ => {
|
|
|
|
return Err(TemplateParseError::no_such_method(
|
|
|
|
"ShortestIdPrefix",
|
|
|
|
&name,
|
|
|
|
));
|
|
|
|
}
|
|
|
|
};
|
|
|
|
Ok(property)
|
|
|
|
}
|
|
|
|
|
2023-02-03 11:28:44 +00:00
|
|
|
fn parse_signature_method<'a, I: 'a>(
|
|
|
|
self_property: impl TemplateProperty<I, Output = Signature> + 'a,
|
2023-02-02 10:36:33 +00:00
|
|
|
name: Pair<Rule>,
|
2023-02-04 08:26:00 +00:00
|
|
|
args_pair: Pair<Rule>,
|
2023-02-04 06:55:12 +00:00
|
|
|
_parse_keyword: &impl Fn(Pair<Rule>) -> TemplateParseResult<PropertyAndLabels<'a, I>>,
|
2023-02-03 11:28:44 +00:00
|
|
|
) -> TemplateParseResult<Property<'a, I>> {
|
2023-02-02 10:36:33 +00:00
|
|
|
let property = match name.as_str() {
|
2023-02-04 08:26:00 +00:00
|
|
|
"name" => {
|
|
|
|
expect_no_arguments(args_pair)?;
|
|
|
|
Property::String(chain_properties(
|
|
|
|
self_property,
|
|
|
|
TemplatePropertyFn(|signature: &Signature| signature.name.clone()),
|
|
|
|
))
|
|
|
|
}
|
|
|
|
"email" => {
|
|
|
|
expect_no_arguments(args_pair)?;
|
|
|
|
Property::String(chain_properties(
|
|
|
|
self_property,
|
|
|
|
TemplatePropertyFn(|signature: &Signature| signature.email.clone()),
|
|
|
|
))
|
|
|
|
}
|
|
|
|
"timestamp" => {
|
|
|
|
expect_no_arguments(args_pair)?;
|
|
|
|
Property::Timestamp(chain_properties(
|
|
|
|
self_property,
|
|
|
|
TemplatePropertyFn(|signature: &Signature| signature.timestamp.clone()),
|
|
|
|
))
|
|
|
|
}
|
2023-02-02 10:31:50 +00:00
|
|
|
_ => return Err(TemplateParseError::no_such_method("Signature", &name)),
|
2023-02-02 10:36:33 +00:00
|
|
|
};
|
|
|
|
Ok(property)
|
2020-12-12 08:00:42 +00:00
|
|
|
}
|
|
|
|
|
2023-02-03 11:28:44 +00:00
|
|
|
fn parse_timestamp_method<'a, I: 'a>(
|
|
|
|
self_property: impl TemplateProperty<I, Output = Timestamp> + 'a,
|
2023-02-02 10:36:33 +00:00
|
|
|
name: Pair<Rule>,
|
2023-02-04 08:26:00 +00:00
|
|
|
args_pair: Pair<Rule>,
|
2023-02-04 06:55:12 +00:00
|
|
|
_parse_keyword: &impl Fn(Pair<Rule>) -> TemplateParseResult<PropertyAndLabels<'a, I>>,
|
2023-02-03 11:28:44 +00:00
|
|
|
) -> TemplateParseResult<Property<'a, I>> {
|
2023-02-02 10:36:33 +00:00
|
|
|
let property = match name.as_str() {
|
2023-02-04 08:26:00 +00:00
|
|
|
"ago" => {
|
|
|
|
expect_no_arguments(args_pair)?;
|
|
|
|
Property::String(chain_properties(
|
|
|
|
self_property,
|
|
|
|
TemplatePropertyFn(time_util::format_timestamp_relative_to_now),
|
|
|
|
))
|
|
|
|
}
|
2023-02-02 10:31:50 +00:00
|
|
|
_ => return Err(TemplateParseError::no_such_method("Timestamp", &name)),
|
2023-02-02 10:36:33 +00:00
|
|
|
};
|
|
|
|
Ok(property)
|
2022-11-26 01:33:24 +00:00
|
|
|
}
|
|
|
|
|
2023-02-05 03:53:03 +00:00
|
|
|
fn parse_global_function<'a, C: 'a>(
|
|
|
|
name: Pair<Rule>,
|
|
|
|
args_pair: Pair<Rule>,
|
|
|
|
parse_keyword: &impl Fn(Pair<Rule>) -> TemplateParseResult<PropertyAndLabels<'a, C>>,
|
|
|
|
) -> TemplateParseResult<Expression<'a, C>> {
|
|
|
|
let expression = match name.as_str() {
|
|
|
|
"label" => {
|
|
|
|
let [label_pair, content_pair] = expect_exact_arguments(args_pair)?;
|
|
|
|
let label_property = parse_template_rule(label_pair, parse_keyword)?.into_plain_text();
|
|
|
|
let content = parse_template_rule(content_pair, parse_keyword)?.into_template();
|
|
|
|
let labels = TemplateFunction::new(label_property, |s| {
|
|
|
|
s.split_whitespace().map(ToString::to_string).collect()
|
|
|
|
});
|
|
|
|
let template = Box::new(LabelTemplate::new(content, labels));
|
|
|
|
Expression::Template(template)
|
|
|
|
}
|
|
|
|
"if" => {
|
|
|
|
let ([condition_pair, true_pair], [false_pair]) = expect_arguments(args_pair)?;
|
|
|
|
let condition_span = condition_pair.as_span();
|
|
|
|
let condition = parse_template_rule(condition_pair, parse_keyword)?
|
|
|
|
.try_into_boolean()
|
|
|
|
.ok_or_else(|| {
|
|
|
|
TemplateParseError::invalid_argument_type("Boolean", condition_span)
|
|
|
|
})?;
|
|
|
|
let true_template = parse_template_rule(true_pair, parse_keyword)?.into_template();
|
|
|
|
let false_template = false_pair
|
|
|
|
.map(|pair| parse_template_rule(pair, parse_keyword))
|
|
|
|
.transpose()?
|
|
|
|
.map(|x| x.into_template());
|
|
|
|
let template = Box::new(ConditionalTemplate::new(
|
|
|
|
condition,
|
|
|
|
true_template,
|
|
|
|
false_template,
|
|
|
|
));
|
|
|
|
Expression::Template(template)
|
|
|
|
}
|
|
|
|
"separate" => {
|
|
|
|
let ([separator_pair], content_pairs) = expect_some_arguments(args_pair)?;
|
|
|
|
let separator = parse_template_rule(separator_pair, parse_keyword)?.into_template();
|
|
|
|
let contents = content_pairs
|
|
|
|
.map(|pair| parse_template_rule(pair, parse_keyword).map(|x| x.into_template()))
|
|
|
|
.try_collect()?;
|
|
|
|
let template = Box::new(SeparateTemplate::new(separator, contents));
|
|
|
|
Expression::Template(template)
|
|
|
|
}
|
|
|
|
_ => return Err(TemplateParseError::no_such_function(&name)),
|
|
|
|
};
|
|
|
|
Ok(expression)
|
|
|
|
}
|
|
|
|
|
2022-02-02 18:14:03 +00:00
|
|
|
fn parse_commit_keyword<'a>(
|
|
|
|
repo: RepoRef<'a>,
|
|
|
|
workspace_id: &WorkspaceId,
|
|
|
|
pair: Pair<Rule>,
|
2023-02-03 10:42:03 +00:00
|
|
|
) -> TemplateParseResult<PropertyAndLabels<'a, Commit>> {
|
2023-01-31 03:48:38 +00:00
|
|
|
fn wrap_fn<'a, O>(
|
|
|
|
f: impl Fn(&Commit) -> O + 'a,
|
|
|
|
) -> Box<dyn TemplateProperty<Commit, Output = O> + 'a> {
|
|
|
|
Box::new(TemplatePropertyFn(f))
|
|
|
|
}
|
2020-12-12 08:00:42 +00:00
|
|
|
assert_eq!(pair.as_rule(), Rule::identifier);
|
|
|
|
let property = match pair.as_str() {
|
2023-01-31 03:48:38 +00:00
|
|
|
"description" => Property::String(wrap_fn(|commit| {
|
|
|
|
cli_util::complete_newline(commit.description())
|
|
|
|
})),
|
|
|
|
"change_id" => Property::CommitOrChangeId(wrap_fn(move |commit| {
|
|
|
|
CommitOrChangeId::new(repo, commit.change_id())
|
|
|
|
})),
|
|
|
|
"commit_id" => Property::CommitOrChangeId(wrap_fn(move |commit| {
|
|
|
|
CommitOrChangeId::new(repo, commit.id())
|
|
|
|
})),
|
|
|
|
"author" => Property::Signature(wrap_fn(|commit| commit.author().clone())),
|
|
|
|
"committer" => Property::Signature(wrap_fn(|commit| commit.committer().clone())),
|
2022-09-18 21:46:12 +00:00
|
|
|
"working_copies" => Property::String(Box::new(WorkingCopiesProperty { repo })),
|
2023-02-03 03:39:48 +00:00
|
|
|
"current_working_copy" => {
|
|
|
|
let workspace_id = workspace_id.clone();
|
|
|
|
Property::Boolean(wrap_fn(move |commit| {
|
|
|
|
Some(commit.id()) == repo.view().get_wc_commit_id(&workspace_id)
|
|
|
|
}))
|
|
|
|
}
|
2021-07-15 08:31:48 +00:00
|
|
|
"branches" => Property::String(Box::new(BranchProperty { repo })),
|
|
|
|
"tags" => Property::String(Box::new(TagProperty { repo })),
|
2021-01-03 08:26:57 +00:00
|
|
|
"git_refs" => Property::String(Box::new(GitRefsProperty { repo })),
|
2022-12-17 18:17:50 +00:00
|
|
|
"git_head" => Property::String(Box::new(GitHeadProperty::new(repo))),
|
2023-01-31 03:48:38 +00:00
|
|
|
"divergent" => Property::Boolean(wrap_fn(move |commit| {
|
|
|
|
// The given commit could be hidden in e.g. obslog.
|
|
|
|
let maybe_entries = repo.resolve_change_id(commit.change_id());
|
|
|
|
maybe_entries.map_or(0, |entries| entries.len()) > 1
|
|
|
|
})),
|
|
|
|
"conflict" => Property::Boolean(wrap_fn(|commit| commit.tree().has_conflict())),
|
|
|
|
"empty" => Property::Boolean(wrap_fn(move |commit| {
|
|
|
|
commit.tree().id() == rewrite::merge_commit_trees(repo, &commit.parents()).id()
|
|
|
|
})),
|
2023-02-02 10:31:50 +00:00
|
|
|
_ => return Err(TemplateParseError::no_such_keyword(&pair)),
|
2020-12-12 08:00:42 +00:00
|
|
|
};
|
2023-02-02 10:36:33 +00:00
|
|
|
Ok(PropertyAndLabels(property, vec![pair.as_str().to_string()]))
|
2020-12-12 08:00:42 +00:00
|
|
|
}
|
|
|
|
|
2023-02-03 13:31:26 +00:00
|
|
|
fn parse_term<'a, C: 'a>(
|
2022-02-02 18:14:03 +00:00
|
|
|
pair: Pair<Rule>,
|
2023-02-03 13:31:26 +00:00
|
|
|
parse_keyword: &impl Fn(Pair<Rule>) -> TemplateParseResult<PropertyAndLabels<'a, C>>,
|
|
|
|
) -> TemplateParseResult<Expression<'a, C>> {
|
2020-12-12 08:00:42 +00:00
|
|
|
assert_eq!(pair.as_rule(), Rule::term);
|
2023-01-28 11:09:13 +00:00
|
|
|
let mut inner = pair.into_inner();
|
|
|
|
let expr = inner.next().unwrap();
|
2023-02-04 12:10:18 +00:00
|
|
|
let primary = match expr.as_rule() {
|
2023-01-28 11:09:13 +00:00
|
|
|
Rule::literal => {
|
|
|
|
let text = parse_string_literal(expr);
|
|
|
|
let term = PropertyAndLabels(Property::String(Box::new(Literal(text))), vec![]);
|
2023-02-04 12:10:18 +00:00
|
|
|
Expression::Property(term)
|
2023-01-28 11:09:13 +00:00
|
|
|
}
|
2023-02-04 12:36:11 +00:00
|
|
|
Rule::integer_literal => {
|
|
|
|
let value = expr.as_str().parse().map_err(|err| {
|
|
|
|
TemplateParseError::with_span(
|
|
|
|
TemplateParseErrorKind::ParseIntError(err),
|
|
|
|
expr.as_span(),
|
|
|
|
)
|
|
|
|
})?;
|
|
|
|
let term = PropertyAndLabels(Property::Integer(Box::new(Literal(value))), vec![]);
|
|
|
|
Expression::Property(term)
|
|
|
|
}
|
2023-02-04 12:10:18 +00:00
|
|
|
Rule::identifier => Expression::Property(parse_keyword(expr)?),
|
2023-01-28 11:09:13 +00:00
|
|
|
Rule::function => {
|
2023-02-05 03:53:03 +00:00
|
|
|
let mut inner = expr.into_inner();
|
|
|
|
let name = inner.next().unwrap();
|
|
|
|
let args_pair = inner.next().unwrap();
|
|
|
|
assert_eq!(name.as_rule(), Rule::identifier);
|
|
|
|
assert_eq!(args_pair.as_rule(), Rule::function_arguments);
|
|
|
|
parse_global_function(name, args_pair, parse_keyword)?
|
2020-12-12 08:00:42 +00:00
|
|
|
}
|
2023-02-04 12:10:18 +00:00
|
|
|
Rule::template => parse_template_rule(expr, parse_keyword)?,
|
2023-01-28 11:09:13 +00:00
|
|
|
other => panic!("unexpected term: {other:?}"),
|
2023-02-04 12:10:18 +00:00
|
|
|
};
|
|
|
|
match primary {
|
|
|
|
Expression::Property(property) => {
|
2023-02-04 12:28:14 +00:00
|
|
|
parse_method_chain(property, inner, parse_keyword).map(Expression::Property)
|
2023-02-04 12:10:18 +00:00
|
|
|
}
|
|
|
|
Expression::Template(template) => {
|
2023-02-04 12:28:14 +00:00
|
|
|
if let Some(chain) = inner.next() {
|
2023-02-04 12:10:18 +00:00
|
|
|
assert_eq!(chain.as_rule(), Rule::function);
|
|
|
|
let name = chain.into_inner().next().unwrap();
|
|
|
|
Err(TemplateParseError::no_such_method("Template", &name))
|
|
|
|
} else {
|
|
|
|
Ok(Expression::Template(template))
|
|
|
|
}
|
|
|
|
}
|
2020-12-12 08:00:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-02-03 13:31:26 +00:00
|
|
|
fn parse_template_rule<'a, C: 'a>(
|
2020-12-12 08:00:42 +00:00
|
|
|
pair: Pair<Rule>,
|
2023-02-03 13:31:26 +00:00
|
|
|
parse_keyword: &impl Fn(Pair<Rule>) -> TemplateParseResult<PropertyAndLabels<'a, C>>,
|
|
|
|
) -> TemplateParseResult<Expression<'a, C>> {
|
2023-01-28 11:09:13 +00:00
|
|
|
assert_eq!(pair.as_rule(), Rule::template);
|
|
|
|
let inner = pair.into_inner();
|
2023-02-02 10:36:33 +00:00
|
|
|
let mut expressions: Vec<_> = inner
|
2023-02-03 13:31:26 +00:00
|
|
|
.map(|term| parse_term(term, parse_keyword))
|
2023-02-02 10:36:33 +00:00
|
|
|
.try_collect()?;
|
2023-01-28 23:54:53 +00:00
|
|
|
if expressions.len() == 1 {
|
2023-02-02 10:36:33 +00:00
|
|
|
Ok(expressions.pop().unwrap())
|
2023-01-29 03:59:46 +00:00
|
|
|
} else {
|
2023-01-28 23:54:53 +00:00
|
|
|
let templates = expressions.into_iter().map(|x| x.into_template()).collect();
|
2023-02-02 10:36:33 +00:00
|
|
|
Ok(Expression::Template(Box::new(ListTemplate(templates))))
|
2020-12-12 08:00:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-02-03 13:31:26 +00:00
|
|
|
// TODO: We'll probably need a trait that abstracts the Property enum and
|
|
|
|
// keyword/method parsing functions per the top-level context.
|
|
|
|
fn parse_template_str<'a, C: 'a>(
|
2020-12-12 08:00:42 +00:00
|
|
|
template_text: &str,
|
2023-02-03 13:31:26 +00:00
|
|
|
parse_keyword: impl Fn(Pair<Rule>) -> TemplateParseResult<PropertyAndLabels<'a, C>>,
|
2023-02-05 03:30:17 +00:00
|
|
|
) -> TemplateParseResult<Expression<'a, C>> {
|
2023-02-02 08:57:55 +00:00
|
|
|
let mut pairs: Pairs<Rule> = TemplateParser::parse(Rule::program, template_text)?;
|
2020-12-12 08:00:42 +00:00
|
|
|
let first_pair = pairs.next().unwrap();
|
2023-01-29 03:59:46 +00:00
|
|
|
if first_pair.as_rule() == Rule::EOI {
|
2023-02-05 03:30:17 +00:00
|
|
|
Ok(Expression::Template(Box::new(Literal(String::new()))))
|
2023-01-29 03:59:46 +00:00
|
|
|
} else {
|
2023-02-05 03:30:17 +00:00
|
|
|
parse_template_rule(first_pair, &parse_keyword)
|
2023-01-29 03:59:46 +00:00
|
|
|
}
|
2020-12-12 08:00:42 +00:00
|
|
|
}
|
2023-02-03 13:31:26 +00:00
|
|
|
|
|
|
|
pub fn parse_commit_template<'a>(
|
|
|
|
repo: RepoRef<'a>,
|
|
|
|
workspace_id: &WorkspaceId,
|
|
|
|
template_text: &str,
|
|
|
|
) -> TemplateParseResult<Box<dyn Template<Commit> + 'a>> {
|
2023-02-05 03:30:17 +00:00
|
|
|
let expression = parse_template_str(template_text, |pair| {
|
2023-02-03 13:31:26 +00:00
|
|
|
parse_commit_keyword(repo, workspace_id, pair)
|
2023-02-05 03:30:17 +00:00
|
|
|
})?;
|
|
|
|
Ok(expression.into_template())
|
2023-02-03 13:31:26 +00:00
|
|
|
}
|
2023-02-04 12:36:11 +00:00
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
fn parse(template_text: &str) -> TemplateParseResult<Expression<()>> {
|
|
|
|
parse_template_str(template_text, |pair| {
|
|
|
|
Err(TemplateParseError::no_such_keyword(&pair))
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_integer_literal() {
|
|
|
|
let extract = |x: Expression<()>| x.try_into_integer().unwrap().extract(&());
|
|
|
|
|
|
|
|
assert_eq!(extract(parse("0").unwrap()), 0);
|
|
|
|
assert_eq!(extract(parse("(42)").unwrap()), 42);
|
|
|
|
assert!(parse("00").is_err());
|
|
|
|
|
|
|
|
assert_eq!(extract(parse(&format!("{}", i64::MAX)).unwrap()), i64::MAX);
|
|
|
|
assert!(parse(&format!("{}", (i64::MAX as u64) + 1)).is_err());
|
|
|
|
}
|
|
|
|
}
|