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
//! Buffered streams — Rust port of `lzio.c` + `lzio.h`.
//!
//! Provides two public types:
//! - [`ZIO`]: a read cursor wrapping an external chunk-supplier callback.
//! - [`LexBuffer`]: a growable `Vec<u8>` byte buffer with the named interface
//! that C code accessed through the `luaZ_*buffer*` macro family.
//!
//! The lzio header is merged here per PORTING.md §1 ("Headers merge into the
//! consuming `.rs`"). All macros defined in `lzio.h` are translated at their
//! call sites and collected as methods or constants in this module.
//!
//! # C source files
//! - `reference/lua-5.4.7/src/lzio.c` (68 lines, 3 functions)
//! - `reference/lua-5.4.7/src/lzio.h` (66 lines, struct + macros; merged)
// TODO(port): import path for LuaState will need adjustment once the
// crate-internal module graph is settled in Phase B. Using a local path
// for now; may become `use lua_types::state::LuaState` or similar.
use crateLuaState;
use LuaError;
// ── Constants ──────────────────────────────────────────────────────────────────
// macros.tsv: EOZ → const EOZ: i32 = -1
/// End-of-stream sentinel returned by [`ZIO::getc`] and [`ZIO::fill`].
pub const EOZ: i32 = -1;
// ── LexBuffer (was Mbuffer in C) ───────────────────────────────────────────────
/// Growable byte buffer used by the lexer for token text accumulation.
///
/// Corresponds to `Mbuffer` in `lzio.h`. The C struct tracked `buffer`,
/// `n` (used length), and `buffsize` (allocated capacity) as three separate
/// fields with manual realloc. In Rust all three are implicit in `Vec<u8>`.
///
/// # C mapping (types.tsv)
/// ```text
/// Mbuffer → LexBuffer
/// .buffer → Vec<u8> (heap storage)
/// .n → Vec::len()
/// .buffsize → Vec::capacity()
/// ```
// ── ZIO (buffered input stream) ────────────────────────────────────────────────
/// Buffered input stream wrapping an external chunk-reader callback.
///
/// Corresponds to `struct Zio` / `ZIO` in `lzio.h`. The C struct stored a
/// `lua_State *L` back-pointer and a `void *data` opaque pointer alongside a
/// raw `lua_Reader` function pointer. In Rust:
///
/// - `lua_State *L` is removed from the struct; callers hold `&mut LuaState`
/// directly and pass it to fallible methods (per types.tsv).
/// - `void *data` is folded into the reader closure (per types.tsv).
/// - `const char *p` (raw pointer into the reader's internal buffer) becomes a
/// `usize` index into the owned `current_chunk` field.
///
/// # C mapping (types.tsv)
/// ```text
/// Zio → ZIO
/// .n → usize (bytes still unread in current_chunk)
/// .p → usize (cursor index; was const char *)
/// .reader+.data → Box<dyn FnMut() -> Option<Vec<u8>>> (combined)
/// .L → removed; callers pass &mut LuaState to methods
/// ```
///
/// PORT NOTE: The types.tsv entry for `Zio.reader` lists
/// `Box<dyn FnMut() -> Option<&[u8]>>`, but `&[u8]` cannot name a lifetime
/// in a `dyn Fn` trait object without HRTB and a pinned source. Phase A uses
/// `Option<Vec<u8>>` instead; the reader returns an owned chunk. Phase B
/// should evaluate whether a zero-copy `&[u8]` path is achievable (e.g. by
/// making the reader hold a pinned internal buffer and returning a slice into
/// it via HRTB).
// ──────────────────────────────────────────────────────────────────────────────
// PORT STATUS
// source: src/lzio.c (68 lines, 3 functions)
// src/lzio.h (66 lines, merged)
// target_crate: lua-vm
// confidence: medium
// todos: 1
// port_notes: 4
// unsafe_blocks: 0 (must be 0 outside explicit unsafe-budget crates)
// notes: Logic is faithful. The one open question (TODO) is whether
// concrete reader callbacks will need `&mut LuaState` as a
// parameter when load/dofile lands in Phase B. If so,
// `ZIO::reader`, `fill`, `getc`, and `read` all need a
// threading change. `LexBuffer::resize` stubs OOM handling
// (real allocator wiring is Phase D). Import paths for
// `LuaState` and `LuaError` will require crate-graph fixes
// in Phase B.
// ──────────────────────────────────────────────────────────────────────────────