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
use crate::{
tokens::{Token, WritingDirection},
BoundingBox, Error, Font, Glyph, Size, Value
};
use bit_vec::BitVec;
use log::debug;
use std::{
collections::{BTreeSet, HashMap},
io::BufRead,
mem
};
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub enum State {
Initial,
Font,
Properties { len: usize },
Chars { len: usize },
Glyph { chars: usize },
Bitmap { chars: usize, len: usize },
Final
}
impl State {
fn assert_initial(self, token: &Token) -> Result<(), Error> {
match self {
Self::Initial => Ok(()),
_ => Err(Error::InvalidContext(token.clone(), self, "Initial"))
}
}
fn assert_font(self, token: &Token) -> Result<(), Error> {
match self {
Self::Font => Ok(()),
_ => Err(Error::InvalidContext(token.clone(), self, "Font"))
}
}
fn assert_properties(self, token: &Token) -> Result<usize, Error> {
match self {
Self::Properties { len } => Ok(len),
_ => Err(Error::InvalidContext(token.clone(), self, "Properties"))
}
}
fn assert_chars(self, token: &Token) -> Result<usize, Error> {
match self {
Self::Chars { len } => Ok(len),
_ => Err(Error::InvalidContext(token.clone(), self, "Chars"))
}
}
fn assert_glyph(self, token: &Token) -> Result<usize, Error> {
match self {
Self::Glyph { chars } => Ok(chars),
_ => Err(Error::InvalidContext(token.clone(), self, "Glyph"))
}
}
fn assert_bitmap(self, token: &Token) -> Result<(usize, usize), Error> {
match self {
Self::Bitmap { chars, len } => Ok((chars, len)),
_ => Err(Error::InvalidContext(token.clone(), self, "Bitmap"))
}
}
}
impl Font {
pub fn read<R: BufRead>(reader: R) -> Result<Self, Error> {
let mut font_version = None;
let mut font_name = None;
let mut font_size = None;
let mut font_bbox = None;
let mut font_swidth = None;
let mut font_dwidth = None;
let mut font_properties = HashMap::new();
let mut font_glyphs = BTreeSet::new();
let mut glyph_name = None;
let mut glyph_encoding = None;
let mut glyph_swidth = None;
let mut glyph_dwidth = None;
let mut glyph_bbox = None;
let mut glyph_bitmap = Vec::new();
let mut state = State::Initial;
for (ll, line) in reader.lines().enumerate().map(|(ll, line)| (ll + 1, line)) {
let line = line?;
if line.trim().is_empty() {
debug!("Skipping blank line {ll}");
continue;
}
debug!("Parsing line {ll} {line:?}, state={state:?}");
match &mut state {
State::Properties { len } if *len > 0 => {
let idx: usize = line
.chars()
.take_while(|ch| !ch.is_ascii_whitespace())
.map(|ch| ch.len_utf8())
.sum();
let key = &line[0 .. idx];
let value_str = &line[idx + 1 ..];
let v = if value_str.starts_with('"') && value_str.ends_with('"') {
Value::String(value_str.trim_matches('"').replace("''", "\""))
} else {
Value::Integer(
value_str.parse().map_err(Error::InvalidPropertyValue)?
)
};
font_properties.insert(key.to_owned(), v);
*len -= 1;
continue;
},
State::Bitmap { len, .. } if *len > 0 => {
let mut iter = line.chars().filter(|ch| ch.is_ascii_hexdigit());
let mut raw = Vec::new();
while let Some(first) = iter.next() {
let second = iter.next().ok_or_else(|| {
Error::InvalidBitmapValue(format!("{first}"))
})?;
let hex = format!("{first}{second}");
let byte = u8::from_str_radix(&hex, 16)
.map_err(|_| Error::InvalidBitmapValue(hex))?;
raw.push(byte);
}
glyph_bitmap.push(BitVec::from_bytes(&raw));
*len -= 1;
continue;
},
_ => {}
}
let token = Token::parse_line(&line)?;
match token {
Token::StartFont { .. } => {
state.assert_initial(&token)?;
state = State::Font;
},
Token::ContentVersion { ver } => {
state.assert_font(&token)?;
font_version = Some(ver);
},
Token::Font { ref name } => {
state.assert_font(&token)?;
font_name = Some(name.into());
},
Token::Size { pt, xres, yres } => {
state.assert_font(&token)?;
font_size = Some(Size { pt, xres, yres });
},
Token::FontBoundingBox {
fbbx,
fbby,
xoff,
yoff
} => {
state.assert_font(&token)?;
font_bbox = Some(BoundingBox {
width: fbbx,
height: fbby,
offset_x: xoff,
offset_y: yoff
});
},
Token::MetricsSet {
dir: WritingDirection::Horizontal
} => {},
Token::MetricsSet { dir } => {
unimplemented!("METRICSSET {dir:?} is currently not supported");
},
Token::SWidth { swx0, swy0 } if matches!(state, State::Font) => {
font_swidth = Some((swx0, swy0));
},
Token::SWidth { swx0, swy0 } => {
state.assert_glyph(&token)?;
glyph_swidth = Some((swx0, swy0));
},
Token::DWidth { dwx0, dwy0 } if matches!(state, State::Font) => {
font_dwidth = Some((dwx0, dwy0));
},
Token::DWidth { dwx0, dwy0 } => {
state.assert_glyph(&token)?;
glyph_dwidth = Some((dwx0, dwy0));
},
Token::SWidthVertical { swx1, swy1 } => {
unimplemented!("SWIDTH1 {swx1} {swy1} is currently not supported");
},
Token::DWidthVertical { dwx1, dwy1 } => {
unimplemented!("DWIDTH1 {dwx1} {dwy1} is currently not supported");
},
Token::VVector { xoff, yoff } => {
unimplemented!("VVECTOR {xoff} {yoff} is currently not supported");
},
Token::StartProperties { n } => {
state.assert_font(&token)?;
state = State::Properties { len: n };
},
Token::EndProperties => {
let len = state.assert_properties(&token)?;
if len != 0 {
return Err(Error::UnexpectedEnd("Properties"));
}
state = State::Font;
},
Token::Chars { nglyphs } => {
state.assert_font(&token)?;
state = State::Chars { len: nglyphs };
},
Token::StartChar { ref name } => {
let chars = state.assert_chars(&token)?;
state = State::Glyph { chars };
glyph_name = Some(name.to_owned());
glyph_encoding = None;
glyph_swidth = font_swidth;
glyph_dwidth = font_dwidth;
glyph_bbox = font_bbox;
glyph_bitmap.clear();
},
Token::Encoding { enc } => {
state.assert_glyph(&token)?;
glyph_encoding = Some(enc);
},
Token::BoundingBox {
bbw,
bbh,
bbxoff,
bbyoff
} => {
state.assert_glyph(&token)?;
glyph_bbox = Some(BoundingBox {
width: bbw,
height: bbh,
offset_x: bbxoff,
offset_y: bbyoff
});
},
Token::Bitmap => {
let chars = state.assert_glyph(&token)?;
state = State::Bitmap {
chars,
len: glyph_bbox.ok_or(Error::MissingGlyphBoundingBox)?.height
as usize
}
},
Token::EndChar => {
let (chars, len) = state.assert_bitmap(&token)?;
if len != 0 {
return Err(Error::UnexpectedEnd("Char"));
}
state = State::Chars { len: chars - 1 };
font_glyphs.insert(
Glyph {
name: glyph_name.take().unwrap(),
encoding: glyph_encoding
.ok_or(Error::MissingGlyphEncoding)?,
swidth: glyph_swidth,
dwidth: glyph_dwidth,
bbox: glyph_bbox.ok_or(Error::MissingGlyphBoundingBox)?,
bitmap: mem::take(&mut glyph_bitmap)
}
.into()
);
},
Token::EndFont => {
let chars = state.assert_chars(&token)?;
if chars != 0 {
return Err(Error::UnexpectedEnd("Font"));
}
state = State::Final;
},
Token::Comment { .. } => {}
};
}
Ok(Self {
version: font_version,
name: font_name.ok_or(Error::MissingFontName)?,
bbox: font_bbox.ok_or(Error::MissingFontBoundingBox)?,
size: font_size.ok_or(Error::MissingFontSize)?,
properties: font_properties,
glyphs: font_glyphs
})
}
}