Skip to main content

faf_fafb/
section.rs

1//! FAFB Section Entry and Section Table
2//!
3//! The section table is located at the end of the file (at section_table_offset).
4//! Each entry is 16 bytes and describes one section's location and metadata.
5//!
6//! ## Section Entry Layout (16 bytes)
7//!
8//! ```text
9//! Offset  Size  Field
10//! ------  ----  -----
11//! 0       1     section_name_index (string table index)
12//! 1       1     priority
13//! 2       4     offset
14//! 6       4     length
15//! 10      2     token_count
16//! 12      4     flags (bits 0-1 = classification, bits 2+ section-specific)
17//! ------  ----
18//! Total: 16 bytes
19//! ```
20
21use byteorder::{LittleEndian, ReadBytesExt, WriteBytesExt};
22use std::io::{Read, Write};
23
24use super::canon::{CLASSIFICATION_MASK, ChunkClassification};
25use super::error::{FafbError, FafbResult};
26use super::priority::Priority;
27
28/// Size of a single section entry in bytes
29pub const SECTION_ENTRY_SIZE: usize = 16;
30
31/// A single section entry in the section table
32#[derive(Debug, Clone, PartialEq, Eq)]
33pub struct SectionEntry {
34    /// String-table index of this section's name
35    pub name_index: u8,
36    /// Truncation priority (0-255, higher = more important)
37    pub priority: Priority,
38    /// Byte offset to section data (from start of file)
39    pub offset: u32,
40    /// Section data length in bytes
41    pub length: u32,
42    /// Pre-computed token count estimate
43    pub token_count: u16,
44    /// Section flags: bits 0-1 = classification, bits 2+ section-specific
45    pub flags: u32,
46}
47
48impl SectionEntry {
49    /// Create a new section entry. Callers normally set the real priority via
50    /// `with_priority` (from the canonical chunk table); the default is medium.
51    pub fn new(name_index: u8, offset: u32, length: u32) -> Self {
52        Self {
53            name_index,
54            priority: Priority::medium(),
55            offset,
56            length,
57            token_count: estimate_tokens(length),
58            flags: 0,
59        }
60    }
61
62    /// Create with explicit priority
63    pub fn with_priority(mut self, priority: Priority) -> Self {
64        self.priority = priority;
65        self
66    }
67
68    /// Create with explicit token count
69    pub fn with_token_count(mut self, count: u16) -> Self {
70        self.token_count = count;
71        self
72    }
73
74    /// Create with section-specific flags
75    pub fn with_flags(mut self, flags: u32) -> Self {
76        self.flags = flags;
77        self
78    }
79
80    /// Set classification in the low 2 bits of flags
81    pub fn with_classification(mut self, classification: ChunkClassification) -> Self {
82        // Clear low 2 bits, then set classification
83        self.flags = (self.flags & !CLASSIFICATION_MASK) | classification.bits();
84        self
85    }
86
87    /// Get the classification from the low 2 bits of flags
88    pub fn classification(&self) -> ChunkClassification {
89        ChunkClassification::from_bits(self.flags)
90    }
91
92    /// Get section-specific flags (bits 2+, excluding classification)
93    pub fn section_flags(&self) -> u32 {
94        self.flags & !CLASSIFICATION_MASK
95    }
96
97    /// Write entry to a byte buffer
98    pub fn write<W: Write>(&self, writer: &mut W) -> FafbResult<()> {
99        writer.write_u8(self.name_index)?;
100        writer.write_u8(self.priority.value())?;
101        writer.write_u32::<LittleEndian>(self.offset)?;
102        writer.write_u32::<LittleEndian>(self.length)?;
103        writer.write_u16::<LittleEndian>(self.token_count)?;
104        writer.write_u32::<LittleEndian>(self.flags)?;
105        Ok(())
106    }
107
108    /// Write entry to a new `Vec<u8>`
109    pub fn to_bytes(&self) -> FafbResult<Vec<u8>> {
110        let mut buf = Vec::with_capacity(SECTION_ENTRY_SIZE);
111        self.write(&mut buf)?;
112        Ok(buf)
113    }
114
115    /// Read entry from a byte buffer
116    pub fn read<R: Read>(reader: &mut R) -> FafbResult<Self> {
117        let name_index = reader.read_u8()?;
118        let priority = Priority::from(reader.read_u8()?);
119        let offset = reader.read_u32::<LittleEndian>()?;
120        let length = reader.read_u32::<LittleEndian>()?;
121        let token_count = reader.read_u16::<LittleEndian>()?;
122        let flags = reader.read_u32::<LittleEndian>()?;
123
124        Ok(Self {
125            name_index,
126            priority,
127            offset,
128            length,
129            token_count,
130            flags,
131        })
132    }
133
134    /// Read entry from a byte slice
135    pub fn from_bytes(data: &[u8]) -> FafbResult<Self> {
136        if data.len() < SECTION_ENTRY_SIZE {
137            return Err(FafbError::FileTooSmall {
138                expected: SECTION_ENTRY_SIZE,
139                actual: data.len(),
140            });
141        }
142        let mut cursor = std::io::Cursor::new(data);
143        Self::read(&mut cursor)
144    }
145
146    /// Check if this section's data range is valid within a file
147    pub fn validate_bounds(&self, file_size: u32) -> FafbResult<()> {
148        // WHY: checked_add prevents integer overflow attacks where offset + length wraps
149        // around u32::MAX to produce a small "end" that passes the bounds check
150        // Example attack: offset=0xFFFFFF00, length=0x200 would wrap to 0x100
151        let end =
152            self.offset
153                .checked_add(self.length)
154                .ok_or(FafbError::InvalidSectionTableOffset {
155                    offset: self.offset,
156                    file_size,
157                })?;
158
159        // WHY: Bounds check prevents reading past file end - memory safety
160        if end > file_size {
161            return Err(FafbError::InvalidSectionTableOffset {
162                offset: self.offset,
163                file_size,
164            });
165        }
166
167        Ok(())
168    }
169}
170
171/// The section table containing all section entries
172#[derive(Debug, Clone, Default)]
173pub struct SectionTable {
174    entries: Vec<SectionEntry>,
175}
176
177impl SectionTable {
178    /// Create an empty section table
179    pub fn new() -> Self {
180        Self {
181            entries: Vec::new(),
182        }
183    }
184
185    /// Create with pre-allocated capacity
186    pub fn with_capacity(capacity: usize) -> Self {
187        Self {
188            entries: Vec::with_capacity(capacity),
189        }
190    }
191
192    /// Add a section entry
193    pub fn push(&mut self, entry: SectionEntry) {
194        self.entries.push(entry);
195    }
196
197    /// Get number of sections
198    pub fn len(&self) -> usize {
199        self.entries.len()
200    }
201
202    /// Check if table is empty
203    pub fn is_empty(&self) -> bool {
204        self.entries.is_empty()
205    }
206
207    /// Get entry by index
208    pub fn get(&self, index: usize) -> Option<&SectionEntry> {
209        self.entries.get(index)
210    }
211
212    /// Get entry by its string-table name index
213    pub fn get_by_name_index(&self, name_index: u8) -> Option<&SectionEntry> {
214        self.entries.iter().find(|e| e.name_index == name_index)
215    }
216
217    /// Get all entries
218    pub fn entries(&self) -> &[SectionEntry] {
219        &self.entries
220    }
221
222    /// Get entries sorted by priority (highest first)
223    pub fn entries_by_priority(&self) -> Vec<&SectionEntry> {
224        let mut sorted: Vec<_> = self.entries.iter().collect();
225        sorted.sort_by_key(|e| std::cmp::Reverse(e.priority));
226        sorted
227    }
228
229    /// Get entries that fit within a token budget
230    pub fn entries_within_budget(&self, budget: u16) -> Vec<&SectionEntry> {
231        // WHY: Priority-first traversal ensures highest-value sections get budget first
232        // This is a greedy algorithm - optimal for most use cases where priorities
233        // accurately reflect importance
234        let mut result = Vec::new();
235        let mut remaining = budget;
236
237        for entry in self.entries_by_priority() {
238            if entry.token_count <= remaining {
239                result.push(entry);
240                remaining -= entry.token_count;
241            } else if entry.priority.is_critical() {
242                // WHY: Critical sections always included - they define project identity
243                // (e.g., project name, version) and are small enough to never skip
244                result.push(entry);
245            }
246            // WHY: Non-critical sections that don't fit are silently dropped
247            // This enables graceful degradation under tight token budgets
248        }
249
250        result
251    }
252
253    /// Calculate total token count
254    pub fn total_tokens(&self) -> u32 {
255        self.entries.iter().map(|e| e.token_count as u32).sum()
256    }
257
258    /// Calculate total size in bytes (for section table only)
259    pub fn table_size(&self) -> usize {
260        self.entries.len() * SECTION_ENTRY_SIZE
261    }
262
263    /// Write section table to a byte buffer
264    pub fn write<W: Write>(&self, writer: &mut W) -> FafbResult<()> {
265        for entry in &self.entries {
266            entry.write(writer)?;
267        }
268        Ok(())
269    }
270
271    /// Write section table to a new `Vec<u8>`
272    pub fn to_bytes(&self) -> FafbResult<Vec<u8>> {
273        let mut buf = Vec::with_capacity(self.table_size());
274        self.write(&mut buf)?;
275        Ok(buf)
276    }
277
278    /// Read section table from a byte buffer
279    pub fn read<R: Read>(reader: &mut R, count: usize) -> FafbResult<Self> {
280        let mut entries = Vec::with_capacity(count);
281        for _ in 0..count {
282            entries.push(SectionEntry::read(reader)?);
283        }
284        Ok(Self { entries })
285    }
286
287    /// Read section table from a byte slice
288    pub fn from_bytes(data: &[u8], count: usize) -> FafbResult<Self> {
289        let expected_size = count * SECTION_ENTRY_SIZE;
290        if data.len() < expected_size {
291            return Err(FafbError::FileTooSmall {
292                expected: expected_size,
293                actual: data.len(),
294            });
295        }
296        let mut cursor = std::io::Cursor::new(data);
297        Self::read(&mut cursor, count)
298    }
299
300    /// Validate all entries against file size
301    pub fn validate_bounds(&self, file_size: u32) -> FafbResult<()> {
302        for entry in &self.entries {
303            entry.validate_bounds(file_size)?;
304        }
305        Ok(())
306    }
307}
308
309impl IntoIterator for SectionTable {
310    type Item = SectionEntry;
311    type IntoIter = std::vec::IntoIter<SectionEntry>;
312
313    fn into_iter(self) -> Self::IntoIter {
314        self.entries.into_iter()
315    }
316}
317
318impl<'a> IntoIterator for &'a SectionTable {
319    type Item = &'a SectionEntry;
320    type IntoIter = std::slice::Iter<'a, SectionEntry>;
321
322    fn into_iter(self) -> Self::IntoIter {
323        self.entries.iter()
324    }
325}
326
327/// Estimate token count from byte length
328/// Rough estimate: ~4 bytes per token for English text
329fn estimate_tokens(byte_length: u32) -> u16 {
330    // WHY: 4 bytes/token is the empirical average for English prose in BPE tokenizers
331    // Code tends to be slightly higher (3-3.5), YAML slightly lower (4-5)
332    // WHY: u16::MAX cap prevents overflow - sections >256KB truncate to max tokens
333    // This is acceptable because such large sections will likely be truncated anyway
334    std::cmp::min(byte_length / 4, u16::MAX as u32) as u16
335}
336
337#[cfg(test)]
338mod tests {
339    use super::*;
340
341    #[test]
342    fn test_section_entry_size() {
343        let entry = SectionEntry::new(0, 32, 100);
344        let bytes = entry.to_bytes().unwrap();
345        assert_eq!(bytes.len(), SECTION_ENTRY_SIZE);
346        assert_eq!(bytes.len(), 16);
347    }
348
349    #[test]
350    fn test_section_entry_roundtrip() {
351        let original = SectionEntry::new(5, 64, 256)
352            .with_priority(Priority::high())
353            .with_token_count(100)
354            .with_flags(0xDEADBEEF);
355
356        let bytes = original.to_bytes().unwrap();
357        let recovered = SectionEntry::from_bytes(&bytes).unwrap();
358
359        assert_eq!(original.name_index, recovered.name_index);
360        assert_eq!(original.priority, recovered.priority);
361        assert_eq!(original.offset, recovered.offset);
362        assert_eq!(original.length, recovered.length);
363        assert_eq!(original.token_count, recovered.token_count);
364        assert_eq!(original.flags, recovered.flags);
365    }
366
367    #[test]
368    fn test_token_estimation() {
369        assert_eq!(estimate_tokens(0), 0);
370        assert_eq!(estimate_tokens(4), 1);
371        assert_eq!(estimate_tokens(100), 25);
372        assert_eq!(estimate_tokens(1000), 250);
373    }
374
375    #[test]
376    fn test_token_estimation_cap() {
377        // Should cap at u16::MAX
378        let huge = estimate_tokens(u32::MAX);
379        assert_eq!(huge, u16::MAX);
380    }
381
382    #[test]
383    fn test_section_table_empty() {
384        let table = SectionTable::new();
385        assert!(table.is_empty());
386        assert_eq!(table.len(), 0);
387        assert_eq!(table.table_size(), 0);
388    }
389
390    #[test]
391    fn test_section_table_push() {
392        let mut table = SectionTable::new();
393        table.push(SectionEntry::new(0, 32, 100));
394        table.push(SectionEntry::new(1, 132, 200));
395
396        assert_eq!(table.len(), 2);
397        assert_eq!(table.table_size(), 32);
398    }
399
400    #[test]
401    fn test_section_table_roundtrip() {
402        let mut original = SectionTable::new();
403        original.push(SectionEntry::new(0, 32, 100));
404        original.push(SectionEntry::new(1, 132, 200));
405        original.push(SectionEntry::new(2, 332, 500));
406
407        let bytes = original.to_bytes().unwrap();
408        assert_eq!(bytes.len(), 48); // 3 × 16 bytes
409
410        let recovered = SectionTable::from_bytes(&bytes, 3).unwrap();
411        assert_eq!(recovered.len(), 3);
412
413        for (orig, recv) in original.entries().iter().zip(recovered.entries().iter()) {
414            assert_eq!(orig.name_index, recv.name_index);
415            assert_eq!(orig.offset, recv.offset);
416            assert_eq!(orig.length, recv.length);
417        }
418    }
419
420    #[test]
421    fn test_section_table_get_by_name_index() {
422        let mut table = SectionTable::new();
423        table.push(SectionEntry::new(0, 32, 100));
424        table.push(SectionEntry::new(1, 132, 200));
425
426        let first = table.get_by_name_index(0);
427        assert!(first.is_some());
428        assert_eq!(first.unwrap().offset, 32);
429
430        assert!(table.get_by_name_index(9).is_none());
431    }
432
433    #[test]
434    fn test_section_table_priority_sorting() {
435        let mut table = SectionTable::new();
436        table.push(SectionEntry::new(2, 0, 100).with_priority(Priority::low()));
437        table.push(SectionEntry::new(0, 0, 100).with_priority(Priority::critical()));
438        table.push(SectionEntry::new(1, 0, 100).with_priority(Priority::high()));
439
440        let sorted = table.entries_by_priority();
441        assert_eq!(sorted[0].name_index, 0); // Critical first
442        assert_eq!(sorted[1].name_index, 1); // High second
443        assert_eq!(sorted[2].name_index, 2); // Low last
444    }
445
446    #[test]
447    fn test_section_table_budget() {
448        let mut table = SectionTable::new();
449        table.push(
450            SectionEntry::new(0, 0, 100)
451                .with_priority(Priority::critical())
452                .with_token_count(50),
453        );
454        table.push(
455            SectionEntry::new(1, 0, 200)
456                .with_priority(Priority::high())
457                .with_token_count(100),
458        );
459        table.push(
460            SectionEntry::new(2, 0, 1000)
461                .with_priority(Priority::low())
462                .with_token_count(500),
463        );
464
465        // Budget of 200 should include critical (50) and high (100)
466        let within_budget = table.entries_within_budget(200);
467        assert_eq!(within_budget.len(), 2);
468
469        // The critical entry must always be included
470        assert!(within_budget.iter().any(|e| e.name_index == 0));
471    }
472
473    #[test]
474    fn test_section_table_total_tokens() {
475        let mut table = SectionTable::new();
476        table.push(SectionEntry::new(0, 0, 100).with_token_count(50));
477        table.push(SectionEntry::new(1, 0, 200).with_token_count(100));
478
479        assert_eq!(table.total_tokens(), 150);
480    }
481
482    #[test]
483    fn test_section_entry_validate_bounds() {
484        let entry = SectionEntry::new(0, 100, 50);
485
486        // Valid: offset 100, length 50, file size 200
487        assert!(entry.validate_bounds(200).is_ok());
488
489        // Invalid: offset 100, length 50 = end 150, but file only 100
490        assert!(entry.validate_bounds(100).is_err());
491    }
492
493    #[test]
494    fn test_unknown_name_index_preserved() {
495        // The IFF rule: a reader must carry unknown names through untouched
496        let entry = SectionEntry::new(0x99, 0, 100)
497            .with_priority(Priority::medium())
498            .with_token_count(25);
499
500        let bytes = entry.to_bytes().unwrap();
501        let recovered = SectionEntry::from_bytes(&bytes).unwrap();
502
503        assert_eq!(recovered.name_index, 0x99);
504    }
505}