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
//! Formatter policy configuration.
//!
//! Policy applies only to selector slots whose state remains ambiguous after
//! sequence-specific cleanup. Non-keycap and keycap-character slots query the
//! corresponding domains of the same policy sets; ZWJ,
//! malformed-selector, and other fixed-cleanup cases are repaired before
//! policy is consulted.
//!
//! A policy is expressed with two [`PolicyKeySet`] predicates:
//!
//! - `prefer_bare`: policy keys for which bare spelling is canonical when bare can
//! preserve the selected presentation
//! - `bare_as_text`: policy keys for which bare spelling should be interpreted as text
//! presentation, rather than emoji presentation
//!
//! The default policy uses [`policy_key_set::ASCII`] plus
//! [`policy_key_set::EMOJI_DEFAULTS`] for `prefer_bare` and
//! [`policy_key_set::TEXT_DEFAULTS`] plus
//! [`policy_key_set::KEYCAP_VARIATION_BASES`] for `bare_as_text`. That keeps
//! ASCII bare forms such as `#` canonical, removes redundant selectors such as
//! the `FE0E` in `#\u{FE0E}`, keeps emoji-default bare forms such as
//! `\u{2728}` canonical, resolves text-default bare forms such as `\u{00A9}` to
//! text presentation by inserting `FE0E`, and resolves bare keycap-character
//! forms such as `#\u{20E3}` to text presentation by inserting `FE0E` before
//! `U+20E3`.
//!
//! # Examples
//!
//! ```rust
//! use evfmt::{FormatResult, Policy, format_text};
//!
//! let policy = Policy::default();
//!
//! assert_eq!(format_text("#\u{FE0E}", &policy), FormatResult::Changed("#".into()));
//! assert_eq!(
//! format_text("\u{00A9}", &policy),
//! FormatResult::Changed("\u{00A9}\u{FE0E}".into())
//! );
//! ```
use crate;
/// Formatting policy for ambiguous selector slots.
///
/// The policy is base-indexed with a non-keycap/keycap domain qualifier. When
/// policy is needed, `evfmt` builds a policy key from the variation-sequence
/// base character and the selected domain, then queries the `prefer_bare` and
/// `bare_as_text` sets with that key. The pair of answers determines the
/// canonical replacement outcomes:
///
/// - in both sets: `FE0E` text presentation becomes bare, while bare stays bare
/// - only in `prefer_bare`: `FE0F` emoji presentation becomes bare, while bare
/// stays bare
/// - only in `bare_as_text`: bare becomes `FE0E` text presentation
/// - in neither set: bare becomes `FE0F` emoji presentation
///
/// Explicit selectors not described by those conversions are already
/// canonical for that standalone character, as long as they are sanctioned by
/// Unicode's variation-sequence data.
///
/// Use [`Policy::default`] for the command-line formatter's default behavior,
/// then override individual predicate sets with [`Policy::with_prefer_bare`]
/// and [`Policy::with_bare_as_text`].
///
/// # Examples
///
/// ```rust
/// use evfmt::{FormatResult, Policy, PolicyKeySet, format_text, policy_key_set};
///
/// let policy = Policy::default();
///
/// assert_eq!(format_text("#\u{FE0E}", &policy), FormatResult::Changed("#".into()));
/// assert_eq!(
/// format_text("\u{00A9}", &policy),
/// FormatResult::Changed("\u{00A9}\u{FE0E}".into())
/// );
/// assert_eq!(format_text("\u{2728}", &policy), FormatResult::Unchanged);
///
/// let ascii_and_copyright = policy_key_set::ASCII | PolicyKeySet::singleton('\u{00A9}');
/// let policy = Policy::default()
/// .with_prefer_bare(ascii_and_copyright)
/// .with_bare_as_text(ascii_and_copyright);
///
/// assert_eq!(format_text("\u{00A9}\u{FE0E}", &policy), FormatResult::Changed("\u{00A9}".into()));
/// ```
pub