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
use std::fmt;
use crate::ast::display::{self, AstDisplay, AstFormatter};
use crate::keywords::Keyword;
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub struct Ident(pub(crate) String);
impl Ident {
pub fn new<S>(value: S) -> Self
where
S: Into<String>,
{
Ident(value.into())
}
pub fn can_be_printed_bare(&self) -> bool {
let mut chars = self.0.chars();
chars
.next()
.map(|ch| ('a'..='z').contains(&ch) || (ch == '_'))
.unwrap_or(false)
&& chars.all(|ch| ('a'..='z').contains(&ch) || (ch == '_') || ('0'..='9').contains(&ch))
&& !self
.as_keyword()
.map(Keyword::is_sometimes_reserved)
.unwrap_or(false)
}
pub fn as_str(&self) -> &str {
&self.0
}
pub fn as_keyword(&self) -> Option<Keyword> {
self.0.parse().ok()
}
pub fn into_string(self) -> String {
self.0
}
}
impl From<&str> for Ident {
fn from(value: &str) -> Self {
Ident(value.to_string())
}
}
impl From<String> for Ident {
fn from(value: String) -> Self {
Ident(value)
}
}
impl AstDisplay for Ident {
fn fmt<W: fmt::Write>(&self, f: &mut AstFormatter<W>) {
if self.can_be_printed_bare() && !f.stable() {
f.write_str(&self.0);
} else {
f.write_str("\"");
for ch in self.0.chars() {
if ch == '"' {
f.write_str("\"");
}
f.write_str(ch);
}
f.write_str("\"");
}
}
}
impl_display!(Ident);
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub struct UnresolvedObjectName(pub Vec<Ident>);
pub enum CatalogName {
ObjectName(Vec<Ident>),
FuncName(Vec<Ident>),
}
impl UnresolvedObjectName {
pub fn unqualified(n: &str) -> UnresolvedObjectName {
UnresolvedObjectName(vec![Ident::new(n)])
}
pub fn qualified(n: &[&str]) -> UnresolvedObjectName {
assert!(n.len() <= 3 && n.len() > 0);
UnresolvedObjectName(n.iter().map(|n| (*n).into()).collect::<Vec<_>>())
}
}
impl AstDisplay for UnresolvedObjectName {
fn fmt<W: fmt::Write>(&self, f: &mut AstFormatter<W>) {
display::separated(&self.0, ".").fmt(f);
}
}
impl_display!(UnresolvedObjectName);
impl AstDisplay for &UnresolvedObjectName {
fn fmt<W: fmt::Write>(&self, f: &mut AstFormatter<W>) {
display::separated(&self.0, ".").fmt(f);
}
}