geometry-io-geojson 0.0.8

RFC 7946 GeoJSON reader and writer for the geometry model.
Documentation
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
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
//! A minimal, self-contained JSON value model, parser, and error type.
//!
//! RFC 7946 `GeoJSON` geometry objects use only a tiny slice of JSON:
//! objects (`{ "type": …, "coordinates": … }`, plus `"geometries"` for a
//! `GeometryCollection`), string keys and type names, `f64` coordinate
//! numbers, and arbitrarily nested arrays. This module supplies exactly
//! that — a hand-written recursive-descent [`parse_json`] over a small
//! [`JsonValue`] enum — so the crate carries **no external JSON
//! dependency**. It is deliberately not a general-purpose JSON library;
//! it handles the grammar RFC 7946 §3 needs and nothing more.
//!
//! Reference: RFC 7946 (the `GeoJSON` media type) §3 (geometry objects)
//! and RFC 8259 (JSON) §2–§9 for the value grammar.

use alloc::string::{String, ToString};
use alloc::vec::Vec;

/// Everything that can go wrong reading `GeoJSON`.
///
/// Covers the JSON layer's character-level failures ([`GeoJsonError::Json`],
/// [`GeoJsonError::UnexpectedEof`]) and the `GeoJSON` layer's structural
/// failures (a missing/invalid `"type"`, an unknown or unsupported kind,
/// malformed `"coordinates"`), so a single error type flows through the
/// whole read path — mirroring the single-error-type shape of the sibling
/// WKT crate's `WktError`.
#[derive(Debug, Clone, PartialEq)]
pub enum GeoJsonError {
    /// A JSON syntax error, with a human-readable description of what went
    /// wrong (unexpected character, bad escape, malformed number, …).
    Json(String),
    /// Input ended while the parser still needed more.
    UnexpectedEof,
    /// A `GeoJSON` object had no string `"type"` member (RFC 7946 §3
    /// requires one).
    ExpectedType,
    /// The `"type"` was not a recognised RFC 7946 geometry kind.
    UnknownGeometryType(String),
    /// A `"coordinates"` (or `"geometries"`) member was missing or did
    /// not have the shape the declared kind requires.
    MalformedCoordinates,
    /// A recognised `GeoJSON` object kind that this reader does not support
    /// — a `Feature` or `FeatureCollection` wrapper (RFC 7946 §3.2/§3.3).
    /// Only bare geometry objects are accepted.
    UnsupportedType(String),
}

impl core::fmt::Display for GeoJsonError {
    fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
        match self {
            GeoJsonError::Json(msg) => write!(f, "invalid JSON: {msg}"),
            GeoJsonError::UnexpectedEof => f.write_str("unexpected end of input"),
            GeoJsonError::ExpectedType => f.write_str("missing GeoJSON \"type\" member"),
            GeoJsonError::UnknownGeometryType(s) => {
                write!(f, "unknown GeoJSON geometry type {s:?}")
            }
            GeoJsonError::MalformedCoordinates => f.write_str("malformed or missing coordinates"),
            GeoJsonError::UnsupportedType(s) => write!(f, "unsupported GeoJSON type {s:?}"),
        }
    }
}

#[cfg(feature = "std")]
impl std::error::Error for GeoJsonError {}

/// A parsed JSON value — the smallest tree that covers RFC 7946 geometry
/// objects.
///
/// Hidden from the public docs: it is a `pub(crate)` implementation
/// detail of [`crate::from_geojson`]. `Object` preserves insertion order
/// (a `Vec` of pairs, not a map) because `GeoJSON` never depends on key
/// ordering and the member count is tiny.
#[doc(hidden)]
#[derive(Debug, Clone, PartialEq)]
pub(crate) enum JsonValue {
    /// JSON `null`.
    Null,
    /// JSON `true` / `false`.
    Bool(bool),
    /// A JSON number, held as `f64` (`GeoJSON` coordinates are `f64`).
    Number(f64),
    /// A JSON string with escapes already decoded.
    Str(String),
    /// A JSON array.
    Array(Vec<JsonValue>),
    /// A two-number `GeoJSON` position kept inline to avoid one allocation
    /// for every coordinate pair. The general JSON parser still emits
    /// [`JsonValue::Array`]; this variant is enabled only by
    /// [`parse_geojson`].
    Position([f64; 2]),
    /// A JSON object as insertion-ordered `(key, value)` pairs.
    Object(Vec<(String, JsonValue)>),
}

impl JsonValue {
    /// Borrow this value as a `&str` if it is a [`JsonValue::Str`].
    pub(crate) fn as_str(&self) -> Option<&str> {
        match self {
            JsonValue::Str(s) => Some(s),
            _ => None,
        }
    }

    /// Read this value as an `f64` if it is a [`JsonValue::Number`].
    pub(crate) fn as_f64(&self) -> Option<f64> {
        match self {
            JsonValue::Number(n) => Some(*n),
            _ => None,
        }
    }

    /// Borrow this value's elements if it is a [`JsonValue::Array`].
    pub(crate) fn as_array(&self) -> Option<&[JsonValue]> {
        match self {
            JsonValue::Array(a) => Some(a),
            _ => None,
        }
    }

    /// Borrow an inline two-ordinate `GeoJSON` position.
    pub(crate) fn as_position(&self) -> Option<[f64; 2]> {
        match self {
            JsonValue::Position(position) => Some(*position),
            _ => None,
        }
    }

    /// Look up an object member by key, if this value is a
    /// [`JsonValue::Object`]. Returns the first match (`GeoJSON` objects do
    /// not carry duplicate keys).
    pub(crate) fn get(&self, key: &str) -> Option<&JsonValue> {
        match self {
            JsonValue::Object(members) => members.iter().find(|(k, _)| k == key).map(|(_, v)| v),
            _ => None,
        }
    }
}

/// Parse a JSON document into a [`JsonValue`].
///
/// A hand-written recursive-descent parser over the RFC 8259 grammar,
/// restricted to what `GeoJSON` needs: whitespace, `null`/`true`/`false`,
/// signed decimal / E-notation numbers, strings (with the `\" \\ \/ \n
/// \t` escapes), arrays, and objects. Trailing non-whitespace after a
/// complete value is rejected.
///
/// # Errors
///
/// Returns [`GeoJsonError::Json`] for a syntax error and
/// [`GeoJsonError::UnexpectedEof`] when the input ends mid-value.
#[cfg(test)]
pub(crate) fn parse_json(input: &str) -> Result<JsonValue, GeoJsonError> {
    parse_document(input, false)
}

/// Parse a `GeoJSON` document while storing exact two-number positions
/// inline. General arrays, including positions with extra ordinates, retain
/// the ordinary [`JsonValue::Array`] representation.
pub(crate) fn parse_geojson(input: &str) -> Result<JsonValue, GeoJsonError> {
    parse_document(input, true)
}

fn parse_document(input: &str, inline_positions: bool) -> Result<JsonValue, GeoJsonError> {
    let mut p = JsonParser {
        bytes: input.as_bytes(),
        pos: 0,
        inline_positions,
    };
    p.skip_ws();
    let value = p.parse_value(0)?;
    p.skip_ws();
    if p.pos != p.bytes.len() {
        return Err(GeoJsonError::Json(
            "trailing characters after value".to_string(),
        ));
    }
    Ok(value)
}

/// Maximum array/object nesting depth accepted while parsing. Recursive
/// descent over adversarial input (e.g. `[[[[…]]]]` tens of thousands
/// deep) would otherwise overflow the native stack and **abort the
/// process** — a stack overflow is not catchable by `catch_unwind`. A
/// bounded depth turns that denial-of-service into a normal recoverable
/// error. `128` matches the default recursion limit `serde_json` enforces
/// for the same reason (`serde_json::de::Deserializer::RECURSION_LIMIT`);
/// real `GeoJSON` nests only a handful of levels deep (a `MultiPolygon`
/// inside a `GeometryCollection` is nowhere near this).
const MAX_DEPTH: usize = 128;

/// A byte cursor over the JSON input. The `GeoJSON` grammar is ASCII apart
/// from string contents, and strings are handled char-by-char, so a
/// `&[u8]` cursor is sufficient and keeps the scan simple.
struct JsonParser<'a> {
    bytes: &'a [u8],
    pos: usize,
    inline_positions: bool,
}

impl JsonParser<'_> {
    /// Peek at the current byte without consuming it.
    fn peek(&self) -> Option<u8> {
        self.bytes.get(self.pos).copied()
    }

    /// Advance past ASCII JSON whitespace.
    fn skip_ws(&mut self) {
        while let Some(b) = self.peek() {
            if b == b' ' || b == b'\t' || b == b'\n' || b == b'\r' {
                self.pos += 1;
            } else {
                break;
            }
        }
    }

    /// Consume the literal `word`, or fail with a syntax error.
    fn expect_literal(&mut self, word: &str, value: JsonValue) -> Result<JsonValue, GeoJsonError> {
        let w = word.as_bytes();
        if self.bytes[self.pos..].starts_with(w) {
            self.pos += w.len();
            Ok(value)
        } else {
            Err(GeoJsonError::Json(alloc::format!("expected `{word}`")))
        }
    }

    /// Parse any JSON value at the current position. `depth` is the
    /// current array/object nesting level; it is checked against
    /// [`MAX_DEPTH`] before descending so adversarial deep nesting fails
    /// with a recoverable error instead of overflowing the stack.
    fn parse_value(&mut self, depth: usize) -> Result<JsonValue, GeoJsonError> {
        match self.peek() {
            None => Err(GeoJsonError::UnexpectedEof),
            Some(b'{') => self.parse_object(depth),
            Some(b'[') => self.parse_array(depth),
            Some(b'"') => Ok(JsonValue::Str(self.parse_string()?)),
            Some(b't') => self.expect_literal("true", JsonValue::Bool(true)),
            Some(b'f') => self.expect_literal("false", JsonValue::Bool(false)),
            Some(b'n') => self.expect_literal("null", JsonValue::Null),
            Some(b) if b == b'-' || b.is_ascii_digit() => {
                Ok(JsonValue::Number(self.parse_number()?))
            }
            Some(b) => Err(GeoJsonError::Json(alloc::format!(
                "unexpected character {:?}",
                b as char
            ))),
        }
    }

    /// Parse an object: `{ "k": v, … }`.
    fn parse_object(&mut self, depth: usize) -> Result<JsonValue, GeoJsonError> {
        if depth >= MAX_DEPTH {
            return Err(GeoJsonError::Json("nesting too deep".to_string()));
        }
        self.pos += 1; // consume '{'
        let mut members = Vec::new();
        self.skip_ws();
        if self.peek() == Some(b'}') {
            self.pos += 1;
            return Ok(JsonValue::Object(members));
        }
        loop {
            self.skip_ws();
            if self.peek() != Some(b'"') {
                return Err(GeoJsonError::Json("expected string key".to_string()));
            }
            let key = self.parse_string()?;
            self.skip_ws();
            if self.peek() != Some(b':') {
                return Err(GeoJsonError::Json("expected `:` after key".to_string()));
            }
            self.pos += 1;
            self.skip_ws();
            let value = self.parse_value(depth + 1)?;
            members.push((key, value));
            self.skip_ws();
            match self.peek() {
                Some(b',') => self.pos += 1,
                Some(b'}') => {
                    self.pos += 1;
                    return Ok(JsonValue::Object(members));
                }
                Some(_) => {
                    return Err(GeoJsonError::Json("expected `,` or `}`".to_string()));
                }
                None => return Err(GeoJsonError::UnexpectedEof),
            }
        }
    }

    /// Parse an array: `[ v, … ]`.
    fn parse_array(&mut self, depth: usize) -> Result<JsonValue, GeoJsonError> {
        if depth >= MAX_DEPTH {
            return Err(GeoJsonError::Json("nesting too deep".to_string()));
        }
        self.pos += 1; // consume '['
        let mut items = Vec::new();
        self.skip_ws();
        if self.peek() == Some(b']') {
            self.pos += 1;
            return Ok(JsonValue::Array(items));
        }
        if self.inline_positions {
            if let Some(position) = self.parse_position()? {
                return Ok(JsonValue::Position(position));
            }
        }
        loop {
            self.skip_ws();
            items.push(self.parse_value(depth + 1)?);
            self.skip_ws();
            match self.peek() {
                Some(b',') => self.pos += 1,
                Some(b']') => {
                    self.pos += 1;
                    return Ok(JsonValue::Array(items));
                }
                Some(_) => {
                    return Err(GeoJsonError::Json("expected `,` or `]`".to_string()));
                }
                None => return Err(GeoJsonError::UnexpectedEof),
            }
        }
    }

    /// Parse an exact two-number array without allocating. Any other array
    /// shape restores the cursor and falls back to the general array parser.
    fn parse_position(&mut self) -> Result<Option<[f64; 2]>, GeoJsonError> {
        let start = self.pos;
        if !matches!(self.peek(), Some(b'-' | b'0'..=b'9')) {
            return Ok(None);
        }
        let x = self.parse_number()?;
        self.skip_ws();
        if self.peek() != Some(b',') {
            self.pos = start;
            return Ok(None);
        }
        self.pos += 1;
        self.skip_ws();
        if !matches!(self.peek(), Some(b'-' | b'0'..=b'9')) {
            self.pos = start;
            return Ok(None);
        }
        let y = self.parse_number()?;
        self.skip_ws();
        if self.peek() == Some(b']') {
            self.pos += 1;
            return Ok(Some([x, y]));
        }
        self.pos = start;
        Ok(None)
    }

    /// Parse a string literal, decoding the `\" \\ \/ \n \t \r \b \f`
    /// escapes. `\uXXXX` is not needed by `GeoJSON` keys/type names and is
    /// rejected.
    fn parse_string(&mut self) -> Result<String, GeoJsonError> {
        self.pos += 1; // consume opening '"'
        let mut out = String::new();
        loop {
            match self.peek() {
                None => return Err(GeoJsonError::UnexpectedEof),
                Some(b'"') => {
                    self.pos += 1;
                    return Ok(out);
                }
                Some(b'\\') => {
                    self.pos += 1;
                    match self.peek() {
                        None => return Err(GeoJsonError::UnexpectedEof),
                        Some(b'"') => out.push('"'),
                        Some(b'\\') => out.push('\\'),
                        Some(b'/') => out.push('/'),
                        Some(b'n') => out.push('\n'),
                        Some(b't') => out.push('\t'),
                        Some(b'r') => out.push('\r'),
                        Some(b'b') => out.push('\u{0008}'),
                        Some(b'f') => out.push('\u{000C}'),
                        Some(other) => {
                            return Err(GeoJsonError::Json(alloc::format!(
                                "unsupported escape \\{:?}",
                                other as char
                            )));
                        }
                    }
                    self.pos += 1;
                }
                Some(_) => {
                    // Copy one whole UTF-8 character so multi-byte
                    // sequences in string contents survive intact.
                    let rest = &self.bytes[self.pos..];
                    let ch_len = utf8_char_len(rest[0]);
                    let slice = rest.get(..ch_len).ok_or(GeoJsonError::UnexpectedEof)?;
                    let s = core::str::from_utf8(slice).expect(
                        "GeoJSON input is valid UTF-8 and the cursor advances by characters",
                    );
                    out.push_str(s);
                    self.pos += ch_len;
                }
            }
        }
    }

    /// Parse a number: optional sign, integer part, optional fraction,
    /// optional `e`/`E` exponent. The lexeme is handed to Rust's `f64`
    /// parser.
    fn parse_number(&mut self) -> Result<f64, GeoJsonError> {
        let start = self.pos;
        if self.peek() == Some(b'-') {
            self.pos += 1;
        }
        while let Some(b) = self.peek() {
            if b.is_ascii_digit() || b == b'.' || b == b'e' || b == b'E' || b == b'+' || b == b'-' {
                self.pos += 1;
            } else {
                break;
            }
        }
        let slice = &self.bytes[start..self.pos];
        let text = core::str::from_utf8(slice)
            .expect("number tokens contain only ASCII bytes copied from valid UTF-8 input");
        match text.parse::<f64>() {
            Ok(number) => Ok(number),
            Err(_) => Err(GeoJsonError::Json(alloc::format!(
                "invalid number {text:?}"
            ))),
        }
    }
}

/// Byte length of the UTF-8 character that starts with `first`.
fn utf8_char_len(first: u8) -> usize {
    if first < 0x80 {
        1
    } else if first < 0xE0 {
        2
    } else if first < 0xF0 {
        3
    } else {
        4
    }
}

#[cfg(test)]
mod tests {
    //! Round-trips a small object, nested arrays, escapes, and the
    //! numeric forms; plus one malformed fixture per JSON error category.
    #![allow(
        clippy::float_cmp,
        reason = "number literals in these fixtures are exact"
    )]

    use super::{GeoJsonError, JsonValue, parse_geojson, parse_json};
    use alloc::string::ToString;

    #[test]
    fn parses_object_with_array_and_string() {
        let v = parse_json(r#"{"a":[1,2.5,-3e2],"b":"x"}"#).unwrap();
        let arr = v.get("a").unwrap().as_array().unwrap();
        assert_eq!(arr.len(), 3);
        assert_eq!(arr[0].as_f64(), Some(1.0));
        assert_eq!(arr[1].as_f64(), Some(2.5));
        assert_eq!(arr[2].as_f64(), Some(-300.0));
        assert_eq!(v.get("b").unwrap().as_str(), Some("x"));
    }

    #[test]
    fn parses_deeply_nested_arrays() {
        let v = parse_json("[[[1,2]],[[3,4]]]").unwrap();
        let outer = v.as_array().unwrap();
        assert_eq!(outer.len(), 2);
        let inner = outer[1].as_array().unwrap()[0].as_array().unwrap();
        assert_eq!(inner[0].as_f64(), Some(3.0));
        assert_eq!(inner[1].as_f64(), Some(4.0));
    }

    #[test]
    fn geojson_positions_are_inline_with_general_array_fallback() {
        assert_eq!(
            parse_geojson("[1,2]").unwrap(),
            JsonValue::Position([1.0, 2.0])
        );
        assert!(matches!(
            parse_geojson("[1,2,3]").unwrap(),
            JsonValue::Array(values) if values.len() == 3
        ));
        assert!(matches!(
            parse_json("[1,2]").unwrap(),
            JsonValue::Array(values) if values.len() == 2
        ));
    }

    #[test]
    fn decodes_string_escapes() {
        let v = parse_json(r#""a\"b\\c\/d\ne""#).unwrap();
        assert_eq!(v.as_str(), Some("a\"b\\c/d\ne"));
    }

    #[test]
    fn parses_keywords() {
        assert_eq!(parse_json("true").unwrap(), JsonValue::Bool(true));
        assert_eq!(parse_json("false").unwrap(), JsonValue::Bool(false));
        assert_eq!(parse_json("null").unwrap(), JsonValue::Null);
    }

    #[test]
    fn rejects_trailing_characters() {
        let err = parse_json("{} junk").unwrap_err();
        assert_eq!(
            err,
            GeoJsonError::Json("trailing characters after value".to_string())
        );
    }

    #[test]
    fn reports_eof_on_truncated_input() {
        assert_eq!(
            parse_json("[1, 2").unwrap_err(),
            GeoJsonError::UnexpectedEof
        );
    }

    #[test]
    fn rejects_malformed_number() {
        assert!(matches!(
            parse_json("1.2.3").unwrap_err(),
            GeoJsonError::Json(_)
        ));
    }

    /// Every `GeoJsonError` variant renders a distinct, descriptive
    /// message through its `Display` impl.
    #[test]
    fn error_display_covers_every_variant() {
        use alloc::string::String;
        let cases: Vec<(GeoJsonError, &str)> = vec![
            (GeoJsonError::Json("boom".to_string()), "invalid JSON: boom"),
            (GeoJsonError::UnexpectedEof, "unexpected end of input"),
            (
                GeoJsonError::ExpectedType,
                "missing GeoJSON \"type\" member",
            ),
            (
                GeoJsonError::UnknownGeometryType("Xyz".to_string()),
                "unknown GeoJSON geometry type \"Xyz\"",
            ),
            (
                GeoJsonError::MalformedCoordinates,
                "malformed or missing coordinates",
            ),
            (
                GeoJsonError::UnsupportedType("Feature".to_string()),
                "unsupported GeoJSON type \"Feature\"",
            ),
        ];
        for (err, want) in cases {
            let rendered: String = alloc::format!("{err}");
            assert_eq!(rendered, want);
        }
    }

    /// The `JsonValue` accessors return `None` when the value is a
    /// different variant.
    #[test]
    fn accessors_return_none_on_mismatch() {
        let n = JsonValue::Number(1.0);
        assert_eq!(n.as_str(), None);
        assert_eq!(n.as_array(), None);
        assert_eq!(n.get("k"), None); // not an object
        let s = JsonValue::Bool(true);
        assert_eq!(s.as_f64(), None);
    }

    /// A truncated keyword literal fails `expect_literal` with a
    /// descriptive `Json` error.
    #[test]
    fn truncated_literal_is_reported() {
        let err = parse_json("tru").unwrap_err();
        assert_eq!(err, GeoJsonError::Json("expected `true`".to_string()));
    }

    /// The three structural object errors are each reported: a non-string
    /// key, a missing colon, and a bad separator after a member.
    #[test]
    fn object_structure_errors_are_reported() {
        assert_eq!(
            parse_json("{1: 2}").unwrap_err(),
            GeoJsonError::Json("expected string key".to_string())
        );
        assert_eq!(
            parse_json(r#"{"a" 2}"#).unwrap_err(),
            GeoJsonError::Json("expected `:` after key".to_string())
        );
        assert_eq!(
            parse_json(r#"{"a": 1 "b": 2}"#).unwrap_err(),
            GeoJsonError::Json("expected `,` or `}`".to_string())
        );
    }

    /// A bad separator inside an array is reported.
    #[test]
    fn array_separator_error_is_reported() {
        assert_eq!(
            parse_json("[1 2]").unwrap_err(),
            GeoJsonError::Json("expected `,` or `]`".to_string())
        );
    }

    /// The `\r`, `\b`, and `\f` string escapes decode to their control
    /// characters, and an unknown escape is rejected.
    #[test]
    fn control_escapes_decode_and_bad_escape_rejected() {
        let v = parse_json(r#""a\rb\bc\fd""#).unwrap();
        assert_eq!(v.as_str(), Some("a\rb\u{0008}c\u{000C}d"));

        let err = parse_json(r#""\x""#).unwrap_err();
        assert!(
            matches!(&err, GeoJsonError::Json(m) if m.contains("unsupported escape")),
            "got {err:?}"
        );
    }

    /// A multi-byte UTF-8 character inside a string is copied intact
    /// through the non-ASCII branch (exercising `utf8_char_len`'s 2/3/4
    /// byte arms).
    #[test]
    fn multibyte_utf8_in_string_survives() {
        // é (2 bytes), € (3 bytes), 𝄞 (4 bytes).
        let v = parse_json("\"é€𝄞\"").unwrap();
        assert_eq!(v.as_str(), Some("é€𝄞"));
    }

    #[test]
    fn rejects_deeply_nested_input_without_overflow() {
        // Regression: recursive descent over adversarial deep nesting must
        // fail with a recoverable error, NOT overflow the native stack
        // (which aborts the process uncatchably). 100k-deep arrays and
        // objects both used to `SIGABRT`; now they return a `Json` error.
        let deep_arrays = "[".repeat(100_000);
        assert!(matches!(
            parse_json(&deep_arrays).unwrap_err(),
            GeoJsonError::Json(_)
        ));

        let mut deep_objects = String::new();
        for _ in 0..100_000 {
            deep_objects.push_str("{\"a\":");
        }
        assert!(matches!(
            parse_json(&deep_objects).unwrap_err(),
            GeoJsonError::Json(_)
        ));

        // A modest, legitimate nesting depth still parses fine.
        let ok = "[".repeat(64) + "1" + &"]".repeat(64);
        assert!(parse_json(&ok).is_ok());
    }
}