hotaru_http 0.8.3

HTTP/1.1 implementation for the Hotaru web framework
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
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
//! # HTTP Encoding
//!
//! This module provides types and functionality for working with HTTP encoding mechanisms,
//! specifically Transfer-Encoding and Content-Encoding as defined in HTTP standards.
//!
//! ## Overview
//!
//! HTTP allows for various encoding mechanisms:
//!
//! - **Transfer-Encoding**: Specifies the form in which the message body is transferred
//!   between HTTP nodes. The most common is "chunked" encoding.
//!
//! - **Content-Encoding**: Specifies how the content is compressed, such as gzip,
//!   deflate, or brotli.
//!
//! This module provides strongly-typed representations of these encodings with proper
//! validation according to HTTP standards.
//!
//! ## Examples
//!
//! ```
//! use crate::encoding::HttpEncoding;
//!
//! // Parse from headers
//! let encoding = HttpEncoding::from_headers(
//!     Some("chunked".to_string()),
//!     Some("br".to_string())
//! );
//!
//! // Check if chunked encoding is used
//! assert!(encoding.transfer().is_chunked());
//!
//! // Serialize back to headers
//! let (transfer, content) = encoding.to_headers();
//! assert_eq!(transfer, Some("chunked".to_string()));
//! assert_eq!(content, Some("br".to_string()));
//! ```

#[cfg(feature = "compression")]
use hotaru_lib::compression;

/// Represents HTTP transfer coding types as defined in HTTP standards.
///
/// Transfer codings are primarily used to define the message transfer format
/// between HTTP nodes. The most common is "chunked" encoding.
#[derive(Debug, Clone, PartialEq)]
pub enum TransferCoding {
    /// Chunked transfer encoding, where the message body is divided into a series
    /// of chunks, each with its own size indicator.
    Chunked,

    /// Any other transfer encoding not explicitly defined in this enum.
    Other(Box<str>),
}

impl TransferCoding {
    /// Creates a new `TransferCoding` from a string.
    ///
    /// The string is trimmed and converted to lowercase before matching.
    ///
    /// # Arguments
    ///
    /// * `s` - The string representation of the transfer coding
    ///
    /// # Returns
    ///
    /// A `TransferCoding` variant corresponding to the provided string
    ///
    /// # Examples
    ///
    /// ```
    /// use crate::encoding::TransferCoding;
    ///
    /// let coding = TransferCoding::from_string("chunked");
    /// assert!(matches!(coding, TransferCoding::Chunked));
    ///
    /// let coding = TransferCoding::from_string("compress");
    /// assert!(matches!(coding, TransferCoding::Other(_)));
    /// ```
    pub fn from_string(s: &str) -> Self {
        match s.trim().to_lowercase().as_str() {
            "chunked" => TransferCoding::Chunked,
            other => TransferCoding::Other(other.into()),
        }
    }

    /// Returns the string representation of this transfer coding.
    ///
    /// # Returns
    ///
    /// A string slice representing the transfer coding
    ///
    /// # Examples
    ///
    /// ```
    /// use crate::encoding::TransferCoding;
    ///
    /// let coding = TransferCoding::Chunked;
    /// assert_eq!(coding.as_str(), "chunked");
    ///
    /// let coding = TransferCoding::Other("custom".into());
    /// assert_eq!(coding.as_str(), "custom");
    /// ```
    pub fn as_str(&self) -> &str {
        match self {
            Self::Chunked => "chunked",
            Self::Other(s) => s,
        }
    }
}

/// Represents HTTP content coding types as defined in HTTP standards.
///
/// Content codings are compression algorithms applied to the message body.
#[derive(Debug, Clone, PartialEq)]
pub enum ContentCoding {
    /// gzip compression algorithm
    Gzip,

    /// deflate compression algorithm
    Deflate,

    /// compress compression algorithm
    Compress,

    /// Brotli compression algorithm (represented as "br" in HTTP headers)
    Brotli,

    /// Zstandard compression algorithm (represented as "zstd" in HTTP headers)
    Zstd,

    /// Any other content coding not explicitly defined in this enum
    Other(Box<str>),
}

impl ContentCoding {
    /// Creates a new `ContentCoding` from a string.
    ///
    /// The string is trimmed and converted to lowercase before matching.
    ///
    /// # Arguments
    ///
    /// * `s` - The string representation of the content coding
    ///
    /// # Returns
    ///
    /// A `ContentCoding` variant corresponding to the provided string
    ///
    /// # Examples
    ///
    /// ```
    /// use crate::encoding::ContentCoding;
    ///
    /// let coding = ContentCoding::from_string("gzip");
    /// assert!(matches!(coding, ContentCoding::Gzip));
    ///
    /// let coding = ContentCoding::from_string("br");
    /// assert!(matches!(coding, ContentCoding::Brotli));
    /// ```
    pub fn from_string(s: &str) -> Self {
        match s.trim().to_lowercase().as_str() {
            "gzip" => ContentCoding::Gzip,
            "deflate" => ContentCoding::Deflate,
            "compress" => ContentCoding::Compress,
            "br" => ContentCoding::Brotli,
            "zstd" => ContentCoding::Zstd,
            other => ContentCoding::Other(other.into()),
        }
    }

    /// Returns the string representation of this content coding.
    ///
    /// # Returns
    ///
    /// A string slice representing the content coding
    ///
    /// # Examples
    ///
    /// ```
    /// use crate::encoding::ContentCoding;
    ///
    /// let coding = ContentCoding::Gzip;
    /// assert_eq!(coding.as_str(), "gzip");
    ///
    /// let coding = ContentCoding::Brotli;
    /// assert_eq!(coding.as_str(), "br");
    /// ```
    pub fn as_str(&self) -> &str {
        match self {
            Self::Gzip => "gzip",
            Self::Deflate => "deflate",
            Self::Compress => "compress",
            Self::Brotli => "br",
            Self::Zstd => "zstd",
            Self::Other(s) => s,
        }
    }

    pub fn decode_compressed(encoding: &ContentCoding, data: &[u8]) -> std::io::Result<Vec<u8>> {
        match encoding {
            #[cfg(feature = "compression")]
            ContentCoding::Gzip => compression::decompress_gzip(data),
            #[cfg(feature = "compression")]
            ContentCoding::Deflate => compression::decompress_deflate(data),
            #[cfg(feature = "compression")]
            ContentCoding::Brotli => compression::decompress_brotli(data),
            #[cfg(feature = "compression")]
            ContentCoding::Zstd => compression::decompress_zstd(data),
            #[cfg(not(feature = "compression"))]
            ContentCoding::Gzip
            | ContentCoding::Deflate
            | ContentCoding::Brotli
            | ContentCoding::Zstd => Err(std::io::Error::new(
                std::io::ErrorKind::Unsupported,
                "compression feature not enabled",
            )),
            ContentCoding::Compress => Err(std::io::Error::new(
                std::io::ErrorKind::Unsupported,
                "compress encoding not supported",
            )),
            _ => Ok(data.to_vec()), // Identity or unsupported
        }
    }

    pub fn encode_compressed(encoding: &ContentCoding, data: &[u8]) -> std::io::Result<Vec<u8>> {
        match encoding {
            #[cfg(feature = "compression")]
            ContentCoding::Gzip => compression::compress_gzip(data),
            #[cfg(feature = "compression")]
            ContentCoding::Deflate => compression::compress_deflate(data),
            #[cfg(feature = "compression")]
            ContentCoding::Brotli => compression::compress_brotli(data),
            #[cfg(feature = "compression")]
            ContentCoding::Zstd => compression::compress_zstd(data, 1),
            #[cfg(not(feature = "compression"))]
            ContentCoding::Gzip
            | ContentCoding::Deflate
            | ContentCoding::Brotli
            | ContentCoding::Zstd => Err(std::io::Error::new(
                std::io::ErrorKind::Unsupported,
                "compression feature not enabled",
            )),
            ContentCoding::Compress => Err(std::io::Error::new(
                std::io::ErrorKind::Unsupported,
                "compress encoding not supported",
            )),
            _ => Ok(data.to_vec()), // Identity or unsupported
        }
    }
}

/// A collection of transfer codings with validation according to HTTP standards.
///
/// This struct ensures that:
/// - "chunked" appears at most once
/// - "chunked" is always the last transfer coding
#[derive(Debug, Clone, Default)]
pub struct TransferCodings {
    codings: Vec<TransferCoding>,
}

impl TransferCodings {
    /// Creates a new empty `TransferCodings` collection.
    ///
    /// # Returns
    ///
    /// A new `TransferCodings` instance
    ///
    /// # Examples
    ///
    /// ```
    /// use crate::encoding::TransferCodings;
    ///
    /// let codings = TransferCodings::new();
    /// assert!(codings.is_identity());
    /// ```
    pub fn new() -> Self {
        Self::default()
    }

    /// Adds a transfer coding to the collection, with validation.
    ///
    /// According to HTTP standards:
    /// - "chunked" can appear at most once
    /// - "chunked" must be the last transfer coding
    ///
    /// # Arguments
    ///
    /// * `coding` - The transfer coding to add
    ///
    /// # Returns
    ///
    /// `Ok(())` if the coding was successfully added, or an error message
    /// explaining why the coding could not be added.
    ///
    /// # Examples
    ///
    /// ```
    /// use crate::encoding::{TransferCodings, TransferCoding};
    ///
    /// let mut codings = TransferCodings::new();
    ///
    /// // Add a non-chunked coding
    /// codings.push(TransferCoding::Other("gzip".into())).unwrap();
    ///
    /// // Add chunked coding (must be last)
    /// codings.push(TransferCoding::Chunked).unwrap();
    ///
    /// // Cannot add another coding after chunked
    /// assert!(codings.push(TransferCoding::Other("compress".into())).is_err());
    ///
    /// // Cannot add chunked twice
    /// let mut codings = TransferCodings::new();
    /// codings.push(TransferCoding::Chunked).unwrap();
    /// assert!(codings.push(TransferCoding::Chunked).is_err());
    /// ```
    pub fn push(&mut self, coding: TransferCoding) -> Result<(), &'static str> {
        if matches!(coding, TransferCoding::Chunked) {
            if self
                .codings
                .iter()
                .any(|c| matches!(c, TransferCoding::Chunked))
            {
                return Err("chunked can only appear once");
            }
        } else if self
            .codings
            .last()
            .is_some_and(|c| matches!(c, TransferCoding::Chunked))
        {
            return Err("no coding can follow chunked");
        }

        self.codings.push(coding);
        Ok(())
    }

    /// Checks if chunked transfer encoding is used.
    ///
    /// # Returns
    ///
    /// `true` if chunked encoding is present, `false` otherwise
    ///
    /// # Examples
    ///
    /// ```
    /// use crate::encoding::{TransferCodings, TransferCoding};
    ///
    /// let mut codings = TransferCodings::new();
    /// assert!(!codings.is_chunked());
    ///
    /// codings.push(TransferCoding::Chunked).unwrap();
    /// assert!(codings.is_chunked());
    /// ```
    pub fn is_chunked(&self) -> bool {
        self.codings
            .iter()
            .any(|c| matches!(c, TransferCoding::Chunked))
    }

    /// Checks if identity transfer encoding is used (no transfer encoding).
    ///
    /// # Returns
    ///
    /// `true` if no transfer encodings are present, `false` otherwise
    ///
    /// # Examples
    ///
    /// ```
    /// use crate::encoding::{TransferCodings, TransferCoding};
    ///
    /// let mut codings = TransferCodings::new();
    /// assert!(codings.is_identity());
    ///
    /// codings.push(TransferCoding::Chunked).unwrap();
    /// assert!(!codings.is_identity());
    /// ```
    pub fn is_identity(&self) -> bool {
        self.codings.is_empty()
    }

    /// Converts the transfer codings to a header value string.
    ///
    /// # Returns
    ///
    /// A comma-separated string of transfer codings
    ///
    /// # Examples
    ///
    /// ```
    /// use crate::encoding::{TransferCodings, TransferCoding};
    ///
    /// let mut codings = TransferCodings::new();
    /// codings.push(TransferCoding::Other("gzip".into())).unwrap();
    /// codings.push(TransferCoding::Chunked).unwrap();
    ///
    /// assert_eq!(codings.to_header(), "gzip, chunked");
    /// ```
    pub fn to_header(&self) -> String {
        self.codings
            .iter()
            .map(|c| c.as_str())
            .collect::<Vec<_>>()
            .join(", ")
    }
}

/// A collection of content codings.
#[derive(Debug, Clone, Default)]
pub struct ContentCodings {
    codings: Vec<ContentCoding>,
}

impl ContentCodings {
    /// Creates a new empty `ContentCodings` collection.
    ///
    /// # Returns
    ///
    /// A new `ContentCodings` instance
    ///
    /// # Examples
    ///
    /// ```
    /// use crate::encoding::ContentCodings;
    ///
    /// let codings = ContentCodings::new();
    /// assert!(codings.is_identity());
    /// ```
    pub fn new() -> Self {
        Self::default()
    }

    /// Adds a content coding to the collection.
    ///
    /// # Arguments
    ///
    /// * `coding` - The content coding to add
    ///
    /// # Examples
    ///
    /// ```
    /// use crate::encoding::{ContentCodings, ContentCoding};
    ///
    /// let mut codings = ContentCodings::new();
    /// codings.push(ContentCoding::Gzip);
    /// codings.push(ContentCoding::Brotli);
    /// ```
    pub fn push(&mut self, coding: ContentCoding) {
        self.codings.push(coding);
    }

    /// Checks if identity content encoding is used (no content encoding).
    ///
    /// # Returns
    ///
    /// `true` if no content encodings are present, `false` otherwise
    ///
    /// # Examples
    ///
    /// ```
    /// use crate::encoding::{ContentCodings, ContentCoding};
    ///
    /// let mut codings = ContentCodings::new();
    /// assert!(codings.is_identity());
    ///
    /// codings.push(ContentCoding::Gzip);
    /// assert!(!codings.is_identity());
    /// ```
    pub fn is_identity(&self) -> bool {
        self.codings.is_empty()
    }

    /// Converts the content codings to a header value string.
    ///
    /// # Returns
    ///
    /// A comma-separated string of content codings
    ///
    /// # Examples
    ///
    /// ```
    /// use crate::encoding::{ContentCodings, ContentCoding};
    ///
    /// let mut codings = ContentCodings::new();
    /// codings.push(ContentCoding::Gzip);
    /// codings.push(ContentCoding::Brotli);
    ///
    /// assert_eq!(codings.to_header(), "gzip, br");
    /// ```
    pub fn to_header(&self) -> String {
        self.codings
            .iter()
            .map(|c| c.as_str())
            .collect::<Vec<_>>()
            .join(", ")
    }

    /// Decodes compressed data using the content codings in this collection.
    ///
    /// # Arguments
    ///
    /// * `data` - The compressed data to decode
    ///
    /// # Returns
    ///
    /// A `Result` containing the decompressed data as a `Vec<u8>`, or an error if decoding fails.
    ///
    /// # Examples
    ///
    /// ```
    /// use crate::encoding::ContentCodings;
    /// let codings = ContentCodings::new();
    /// let data = b"hello".to_vec();
    /// let result = codings.decode_compressed(data.clone()).unwrap();
    /// assert_eq!(result, data);
    /// ```
    pub fn decode_compressed(&self, data: Vec<u8>) -> std::io::Result<Vec<u8>> {
        if self.is_identity() {
            return Ok(data);
        }

        let mut result = data;
        // Decompress in REVERSE order (last applied first)
        for coding in self.codings.iter().rev() {
            result = ContentCoding::decode_compressed(coding, &result)?;
        }
        Ok(result)
    }

    /// Encodes data using the content codings in this collection.
    ///
    /// # Arguments
    ///
    /// * `data` - The data to encode
    ///
    /// # Returns
    ///
    /// A `Result` containing the encoded data as a `Vec<u8>`, or an error if encoding fails.
    ///
    /// # Examples
    /// ```
    /// use crate::encoding::ContentCodings;
    /// let codings = ContentCodings::new();
    /// let data = b"hello".to_vec();
    /// let result = codings.encode_compressed(data.clone()).unwrap();
    /// assert_eq!(result, data);
    /// ```
    pub fn encode_compressed(&self, data: Vec<u8>) -> std::io::Result<Vec<u8>> {
        if self.is_identity() {
            return Ok(data);
        }

        let mut result = data;
        // Compress in ORDER (first applied first)
        for coding in &self.codings {
            result = ContentCoding::encode_compressed(coding, &result)?;
        }
        Ok(result)
    }
}

/// Combines HTTP transfer and content encodings into a single structure.
///
/// This struct handles both Transfer-Encoding and Content-Encoding HTTP headers.
#[derive(Debug, Clone, Default)]
pub struct HttpEncoding {
    transfer: TransferCodings,
    content: ContentCodings,
}

impl HttpEncoding {
    /// Creates a new `HttpEncoding` from HTTP header values.
    ///
    /// # Arguments
    ///
    /// * `transfer_header` - Optional Transfer-Encoding header value
    /// * `content_header` - Optional Content-Encoding header value
    ///
    /// # Returns
    ///
    /// A new `HttpEncoding` instance parsed from the provided headers
    ///
    /// # Examples
    ///
    /// ```
    /// use crate::encoding::HttpEncoding;
    ///
    /// let encoding = HttpEncoding::from_headers(
    ///     Some("chunked, gzip".to_string()),
    ///     Some("br".to_string())
    /// );
    ///
    /// assert!(encoding.transfer().is_chunked());
    /// assert!(!encoding.content().is_identity());
    /// ```
    pub fn from_headers(transfer_header: Option<String>, content_header: Option<String>) -> Self {
        let mut transfer = TransferCodings::new();
        let mut content = ContentCodings::new();

        if let Some(header) = transfer_header {
            for part in header.split(',') {
                if !part.trim().is_empty() {
                    let coding = TransferCoding::from_string(part);
                    if let Err(e) = transfer.push(coding) {
                        eprintln!("[WARN] Invalid Transfer-Encoding: {}", e);
                    }
                }
            }
        }

        if let Some(header) = content_header {
            for part in header.split(',') {
                if !part.trim().is_empty() {
                    content.push(ContentCoding::from_string(part));
                }
            }
        }

        Self { transfer, content }
    }

    /// Converts the HTTP encodings to header values.
    ///
    /// # Returns
    ///
    /// A tuple of optional strings representing the Transfer-Encoding and
    /// Content-Encoding header values. If an encoding is identity (empty),
    /// its corresponding header value will be None.
    ///
    /// # Examples
    ///
    /// ```
    /// use crate::encoding::{HttpEncoding, TransferCoding, ContentCoding};
    ///
    /// let mut encoding = HttpEncoding::from_headers(
    ///     Some("chunked".to_string()),
    ///     Some("gzip".to_string())
    /// );
    ///
    /// let (transfer, content) = encoding.to_headers();
    /// assert_eq!(transfer, Some("chunked".to_string()));
    /// assert_eq!(content, Some("gzip".to_string()));
    /// ```
    pub fn to_headers(&self) -> (Option<String>, Option<String>) {
        let transfer = if !self.transfer.is_identity() {
            Some(self.transfer.to_header())
        } else {
            None
        };

        let content = if !self.content.is_identity() {
            Some(self.content.to_header())
        } else {
            None
        };

        (transfer, content)
    }

    /// Returns a reference to the transfer codings.
    ///
    /// # Returns
    ///
    /// A reference to the `TransferCodings` instance
    ///
    /// # Examples
    ///
    /// ```
    /// use crate::encoding::HttpEncoding;
    ///
    /// let encoding = HttpEncoding::from_headers(
    ///     Some("chunked".to_string()),
    ///     None
    /// );
    ///
    /// assert!(encoding.transfer().is_chunked());
    /// ```
    pub fn transfer(&self) -> &TransferCodings {
        &self.transfer
    }

    /// Returns a reference to the content codings.
    ///
    /// # Returns
    ///
    /// A reference to the `ContentCodings` instance
    ///
    /// # Examples
    ///
    /// ```
    /// use crate::encoding::HttpEncoding;
    ///
    /// let encoding = HttpEncoding::from_headers(
    ///     None,
    ///     Some("gzip, br".to_string())
    /// );
    ///
    /// assert!(!encoding.content().is_identity());
    /// ```
    pub fn content(&self) -> &ContentCodings {
        &self.content
    }
}