Skip to content

Commit 884b00e

Browse files
committed
Merge #105: Fix sampling
e7d7cac fix: Point mdbook to correct book location (Christian Lewe) 90963f6 fix: Separate Identifier and AliasName (Christian Lewe) 436f610 fix: Grammar (Christian Lewe) 03c1425 fix: Avoid reserved function names during sampling (Christian Lewe) Pull request description: Fixes #104 ACKs for top commit: apoelstra: ACK e7d7cac; successfully ran local tests Tree-SHA512: f483e9b4cdc1d1223254e5f41221d2b9d99ec2c2990181cb9b229bcafdbf3fb8bb190ce3020809caaaea15be62ff0c909d97905ee5a371c1600e0a98ca468a4c
2 parents ac84719 + e7d7cac commit 884b00e

File tree

7 files changed

+130
-36
lines changed

7 files changed

+130
-36
lines changed

.github/workflows/book.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
- name: Build website
2323
run: |
24-
nix develop .#book --command bash -c "mdbook build"
24+
nix develop .#book --command bash -c "mdbook build book"
2525
2626
- name: Deploy to GitHub pages
2727
uses: JamesIves/github-pages-deploy-action@v4

src/ast.rs

+6-6
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ use crate::error::{Error, RichError, Span, WithSpan};
1212
use crate::num::{NonZeroPow2Usize, Pow2Usize};
1313
use crate::parse::MatchPattern;
1414
use crate::pattern::Pattern;
15-
use crate::str::{FunctionName, Identifier, ModuleName, WitnessName};
15+
use crate::str::{AliasName, FunctionName, Identifier, ModuleName, WitnessName};
1616
use crate::types::{
1717
AliasedType, ResolvedType, StructuralType, TypeConstructible, TypeDeconstructible, UIntType,
1818
};
@@ -485,7 +485,7 @@ impl<'a> TreeLike for ExprTree<'a> {
485485
#[derive(Clone, Debug, Eq, PartialEq, Default)]
486486
struct Scope {
487487
variables: Vec<HashMap<Identifier, ResolvedType>>,
488-
aliases: HashMap<Identifier, ResolvedType>,
488+
aliases: HashMap<AliasName, ResolvedType>,
489489
parameters: HashMap<WitnessName, ResolvedType>,
490490
witnesses: HashMap<WitnessName, ResolvedType>,
491491
functions: HashMap<FunctionName, CustomFunction>,
@@ -569,7 +569,7 @@ impl Scope {
569569
/// There are any undefined aliases.
570570
pub fn resolve(&self, ty: &AliasedType) -> Result<ResolvedType, Error> {
571571
let get_alias =
572-
|name: &Identifier| -> Option<ResolvedType> { self.aliases.get(name).cloned() };
572+
|name: &AliasName| -> Option<ResolvedType> { self.aliases.get(name).cloned() };
573573
ty.resolve(get_alias).map_err(Error::UndefinedAlias)
574574
}
575575

@@ -578,9 +578,9 @@ impl Scope {
578578
/// ## Errors
579579
///
580580
/// There are any undefined aliases.
581-
pub fn insert_alias(&mut self, alias: Identifier, ty: AliasedType) -> Result<(), Error> {
581+
pub fn insert_alias(&mut self, name: AliasName, ty: AliasedType) -> Result<(), Error> {
582582
let resolved_ty = self.resolve(&ty)?;
583-
self.aliases.insert(alias, resolved_ty);
583+
self.aliases.insert(name, resolved_ty);
584584
Ok(())
585585
}
586586

@@ -1082,7 +1082,7 @@ impl AbstractSyntaxTree for Call {
10821082
let args_tys = crate::jet::source_type(jet)
10831083
.iter()
10841084
.map(AliasedType::resolve_builtin)
1085-
.collect::<Result<Vec<ResolvedType>, Identifier>>()
1085+
.collect::<Result<Vec<ResolvedType>, AliasName>>()
10861086
.map_err(Error::UndefinedAlias)
10871087
.with_span(from)?;
10881088
check_argument_types(from.args(), &args_tys).with_span(from)?;

src/error.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use simplicity::hashes::{sha256, Hash, HashEngine};
66
use simplicity::{elements, Cmr};
77

88
use crate::parse::{MatchPattern, Rule};
9-
use crate::str::{FunctionName, Identifier, JetName, ModuleName, WitnessName};
9+
use crate::str::{AliasName, FunctionName, Identifier, JetName, ModuleName, WitnessName};
1010
use crate::types::{ResolvedType, UIntType};
1111

1212
/// Position of an object inside a file.
@@ -323,7 +323,7 @@ pub enum Error {
323323
ExpressionNotConstant,
324324
IntegerOutOfBounds(UIntType),
325325
UndefinedVariable(Identifier),
326-
UndefinedAlias(Identifier),
326+
UndefinedAlias(AliasName),
327327
VariableReuseInPattern(Identifier),
328328
WitnessReused(WitnessName),
329329
WitnessTypeMismatch(WitnessName, ResolvedType, ResolvedType),

src/minimal.pest

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ statement = { assignment | expression }
77
expression = { block_expression | single_expression }
88
block_expression = { "{" ~ (statement ~ ";")* ~ expression? ~ "}" }
99

10-
identifier = @{ !builtin_type ~ ASCII_ALPHA ~ (ASCII_ALPHANUMERIC | "_")* }
10+
identifier = @{ ASCII_ALPHA ~ (ASCII_ALPHANUMERIC | "_")* }
1111
jet = @{ "jet::" ~ (ASCII_ALPHANUMERIC | "_")+ }
12-
witness_name = @{ (ASCII_ALPHANUMERIC | "_")+ }
12+
witness_name = @{ ASCII_ALPHA ~ (ASCII_ALPHANUMERIC | "_")* }
1313
builtin_type = @{ ("Either" | "Option" | "bool" | "List" | unsigned_type) ~ !ASCII_ALPHANUMERIC }
1414

15-
builtin_function = @{ (jet | "unwrap_left" | "unwrap_right" | "for_while" | "is_none" | "unwrap" | "assert" | "panic" | "match" | "into" | "fold" | "dbg") ~ !ASCII_ALPHANUMERIC }
15+
builtin_function = @{ ("unwrap_left" | "unwrap_right" | "for_while" | "is_none" | "unwrap" | "assert" | "panic" | "match" | "into" | "fold" | "dbg") ~ !ASCII_ALPHANUMERIC }
1616
function_name = { !builtin_function ~ identifier }
1717
typed_identifier = { identifier ~ ":" ~ ty }
1818
function_params = { "(" ~ (typed_identifier ~ ("," ~ typed_identifier)*)? ~ ")" }
@@ -47,7 +47,7 @@ list_bound = @{ ASCII_DIGIT+ }
4747
list_type = { "List<" ~ ty ~ "," ~ list_bound ~ ">" }
4848
ty = { alias_name | builtin_alias | sum_type | option_type | boolean_type | unsigned_type | tuple_type | array_type | list_type }
4949
builtin_alias = @{ "Ctx8" | "Pubkey" | "Message64" | "Message" | "Signature" | "Scalar" | "Fe" | "Gej" | "Ge" | "Point" | "Height" | "Time" | "Distance" | "Duration" | "Lock" | "Outpoint" | "Confidential1" | "ExplicitAsset" | "Asset1" | "ExplicitAmount" | "Amount1" | "ExplicitNonce" | "Nonce" | "TokenAmount1" }
50-
alias_name = { !builtin_alias ~ identifier }
50+
alias_name = { !builtin_type ~ !builtin_alias ~ identifier }
5151
type_keyword = @{ "type" ~ !ASCII_ALPHANUMERIC }
5252
type_alias = { type_keyword ~ alias_name ~ "=" ~ ty ~ ";" }
5353

src/parse.rs

+8-7
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ use crate::impl_eq_hash;
1616
use crate::num::NonZeroPow2Usize;
1717
use crate::pattern::Pattern;
1818
use crate::str::{
19-
Binary, Decimal, FunctionName, Hexadecimal, Identifier, JetName, ModuleName, WitnessName,
19+
AliasName, Binary, Decimal, FunctionName, Hexadecimal, Identifier, JetName, ModuleName,
20+
WitnessName,
2021
};
2122
use crate::types::{AliasedType, BuiltinAlias, TypeConstructible, UIntType};
2223

@@ -201,14 +202,14 @@ pub enum CallName {
201202
#[derive(Clone, Debug)]
202203
#[cfg_attr(feature = "arbitrary", derive(arbitrary::Arbitrary))]
203204
pub struct TypeAlias {
204-
name: Identifier,
205+
name: AliasName,
205206
ty: AliasedType,
206207
span: Span,
207208
}
208209

209210
impl TypeAlias {
210211
/// Access the name of the alias.
211-
pub fn name(&self) -> &Identifier {
212+
pub fn name(&self) -> &AliasName {
212213
&self.name
213214
}
214215

@@ -809,6 +810,7 @@ macro_rules! impl_parse_wrapped_string {
809810
impl_parse_wrapped_string!(FunctionName, function_name);
810811
impl_parse_wrapped_string!(Identifier, identifier);
811812
impl_parse_wrapped_string!(WitnessName, witness_name);
813+
impl_parse_wrapped_string!(AliasName, alias_name);
812814
impl_parse_wrapped_string!(ModuleName, module_name);
813815

814816
/// Copy of [`FromStr`] that internally uses the PEST parser.
@@ -1064,7 +1066,7 @@ impl PestParse for TypeAlias {
10641066
let span = Span::from(&pair);
10651067
let mut it = pair.into_inner();
10661068
let _type_keyword = it.next().unwrap();
1067-
let name = Identifier::parse(it.next().unwrap().into_inner().next().unwrap())?;
1069+
let name = AliasName::parse(it.next().unwrap())?;
10681070
let ty = AliasedType::parse(it.next().unwrap())?;
10691071
Ok(Self { name, ty, span })
10701072
}
@@ -1329,9 +1331,8 @@ impl PestParse for AliasedType {
13291331
for data in pair.post_order_iter() {
13301332
match data.node.0.as_rule() {
13311333
Rule::alias_name => {
1332-
let pair = data.node.0.into_inner().next().unwrap();
1333-
let identifier = Identifier::parse(pair)?;
1334-
output.push(Item::Type(AliasedType::alias(identifier)));
1334+
let name = AliasName::parse(data.node.0)?;
1335+
output.push(Item::Type(AliasedType::alias(name)));
13351336
}
13361337
Rule::builtin_alias => {
13371338
let builtin = BuiltinAlias::parse(data.node.0)?;

src/str.rs

+94-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,37 @@ impl FunctionName {
7979
}
8080

8181
wrapped_string!(FunctionName, "function name");
82-
impl_arbitrary_lowercase_alpha!(FunctionName);
82+
83+
#[cfg(feature = "arbitrary")]
84+
impl<'a> arbitrary::Arbitrary<'a> for FunctionName {
85+
fn arbitrary(u: &mut arbitrary::Unstructured<'a>) -> arbitrary::Result<Self> {
86+
const RESERVED_NAMES: [&str; 11] = [
87+
"unwrap_left",
88+
"unwrap_right",
89+
"for_while",
90+
"is_none",
91+
"unwrap",
92+
"assert",
93+
"panic",
94+
"match",
95+
"into",
96+
"fold",
97+
"dbg",
98+
];
99+
100+
let len = u.int_in_range(1..=10)?;
101+
let mut string = String::with_capacity(len);
102+
for _ in 0..len {
103+
let offset = u.int_in_range(0..=25)?;
104+
string.push((b'a' + offset) as char)
105+
}
106+
if RESERVED_NAMES.contains(&string.as_str()) {
107+
string.push('_');
108+
}
109+
110+
Ok(Self::from_str_unchecked(string.as_str()))
111+
}
112+
}
83113

84114
/// The identifier of a variable.
85115
#[derive(Clone, Ord, PartialOrd, Eq, PartialEq, Hash)]
@@ -111,6 +141,69 @@ impl<'a> arbitrary::Arbitrary<'a> for JetName {
111141
}
112142
}
113143

144+
/// The name of a type alias.
145+
#[derive(Clone, Ord, PartialOrd, Eq, PartialEq, Hash)]
146+
pub struct AliasName(Arc<str>);
147+
148+
wrapped_string!(AliasName, "name of a type alias");
149+
150+
#[cfg(feature = "arbitrary")]
151+
impl<'a> arbitrary::Arbitrary<'a> for AliasName {
152+
fn arbitrary(u: &mut arbitrary::Unstructured<'a>) -> arbitrary::Result<Self> {
153+
const RESERVED_NAMES: [&str; 37] = [
154+
"Either",
155+
"Option",
156+
"bool",
157+
"List",
158+
"u128",
159+
"u256",
160+
"u16",
161+
"u32",
162+
"u64",
163+
"u1",
164+
"u2",
165+
"u4",
166+
"u8",
167+
"Ctx8",
168+
"Pubkey",
169+
"Message64",
170+
"Message",
171+
"Signature",
172+
"Scalar",
173+
"Fe",
174+
"Gej",
175+
"Ge",
176+
"Point",
177+
"Height",
178+
"Time",
179+
"Distance",
180+
"Duration",
181+
"Lock",
182+
"Outpoint",
183+
"Confidential1",
184+
"ExplicitAsset",
185+
"Asset1",
186+
"ExplicitAmount",
187+
"Amount1",
188+
"ExplicitNonce",
189+
"Nonce",
190+
"TokenAmount1",
191+
];
192+
193+
let len = u.int_in_range(1..=10)?;
194+
let mut string = String::with_capacity(len);
195+
for _ in 0..len {
196+
let offset = u.int_in_range(0..=25)?;
197+
string.push((b'a' + offset) as char)
198+
}
199+
if RESERVED_NAMES.contains(&string.as_str()) {
200+
string.push('_');
201+
}
202+
203+
Ok(Self::from_str_unchecked(string.as_str()))
204+
}
205+
}
206+
114207
/// A string of decimal digits.
115208
#[derive(Clone, Ord, PartialOrd, Eq, PartialEq, Hash)]
116209
pub struct Decimal(Arc<str>);

src/types.rs

+15-15
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use simplicity::types::{CompleteBound, Final};
77

88
use crate::array::{BTreeSlice, Partition};
99
use crate::num::{NonZeroPow2Usize, Pow2Usize};
10-
use crate::str::Identifier;
10+
use crate::str::AliasName;
1111

1212
/// Primitives of the Simfony type system, excluding type aliases.
1313
#[derive(Debug, PartialEq, Eq, Hash, Clone)]
@@ -494,7 +494,7 @@ pub struct AliasedType(AliasedInner);
494494
#[derive(Debug, PartialEq, Eq, Hash, Clone)]
495495
enum AliasedInner {
496496
/// Type alias.
497-
Alias(Identifier),
497+
Alias(AliasName),
498498
/// Builtin type alias.
499499
Builtin(BuiltinAlias),
500500
/// Type primitive.
@@ -533,9 +533,9 @@ pub enum BuiltinAlias {
533533

534534
impl AliasedType {
535535
/// Access a user-defined alias.
536-
pub const fn as_alias(&self) -> Option<&Identifier> {
536+
pub const fn as_alias(&self) -> Option<&AliasName> {
537537
match &self.0 {
538-
AliasedInner::Alias(identifier) => Some(identifier),
538+
AliasedInner::Alias(name) => Some(name),
539539
_ => None,
540540
}
541541
}
@@ -549,8 +549,8 @@ impl AliasedType {
549549
}
550550

551551
/// Create a type alias from the given `identifier`.
552-
pub const fn alias(identifier: Identifier) -> Self {
553-
Self(AliasedInner::Alias(identifier))
552+
pub const fn alias(name: AliasName) -> Self {
553+
Self(AliasedInner::Alias(name))
554554
}
555555

556556
/// Create a builtin type alias.
@@ -559,15 +559,15 @@ impl AliasedType {
559559
}
560560

561561
/// Resolve all aliases in the type based on the given map of `aliases` to types.
562-
pub fn resolve<F>(&self, mut get_alias: F) -> Result<ResolvedType, Identifier>
562+
pub fn resolve<F>(&self, mut get_alias: F) -> Result<ResolvedType, AliasName>
563563
where
564-
F: FnMut(&Identifier) -> Option<ResolvedType>,
564+
F: FnMut(&AliasName) -> Option<ResolvedType>,
565565
{
566566
let mut output = vec![];
567567
for data in self.post_order_iter() {
568568
match &data.node.0 {
569-
AliasedInner::Alias(alias) => {
570-
let resolved = get_alias(alias).ok_or(alias.clone())?;
569+
AliasedInner::Alias(name) => {
570+
let resolved = get_alias(name).ok_or(name.clone())?;
571571
output.push(resolved);
572572
}
573573
AliasedInner::Builtin(builtin) => {
@@ -608,7 +608,7 @@ impl AliasedType {
608608
}
609609

610610
/// Resolve all aliases in the type based on the builtin type aliases only.
611-
pub fn resolve_builtin(&self) -> Result<ResolvedType, Identifier> {
611+
pub fn resolve_builtin(&self) -> Result<ResolvedType, AliasName> {
612612
self.resolve(|_| None)
613613
}
614614
}
@@ -741,8 +741,8 @@ impl From<UIntType> for AliasedType {
741741
}
742742
}
743743

744-
impl From<Identifier> for AliasedType {
745-
fn from(value: Identifier) -> Self {
744+
impl From<AliasName> for AliasedType {
745+
fn from(value: AliasName) -> Self {
746746
Self::alias(value)
747747
}
748748
}
@@ -760,14 +760,14 @@ impl crate::ArbitraryRec for AliasedType {
760760

761761
match budget.checked_sub(1) {
762762
None => match u.int_in_range(0..=3)? {
763-
0 => Identifier::arbitrary(u).map(Self::alias),
763+
0 => AliasName::arbitrary(u).map(Self::alias),
764764
1 => BuiltinAlias::arbitrary(u).map(Self::builtin),
765765
2 => Ok(Self::boolean()),
766766
3 => UIntType::arbitrary(u).map(Self::from),
767767
_ => unreachable!(),
768768
},
769769
Some(new_budget) => match u.int_in_range(0..=8)? {
770-
0 => Identifier::arbitrary(u).map(Self::alias),
770+
0 => AliasName::arbitrary(u).map(Self::alias),
771771
1 => BuiltinAlias::arbitrary(u).map(Self::builtin),
772772
2 => Ok(Self::boolean()),
773773
3 => UIntType::arbitrary(u).map(Self::from),

0 commit comments

Comments
 (0)