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
#[cfg(feature = "accept_transfer_chunked")]
use bytes::{Buf, Bytes};
#[cfg(feature = "accept_transfer_chunked")]
use crate::http::request::{FieldCallBackResult, H1StreamHolder, MultipartStreamHolder};
#[cfg(feature = "accept_transfer_chunked")]
use crate::server::connection::BodyReadingBuffer;
#[cfg(feature = "accept_transfer_chunked")]
use crate::util::hex_bytes_to_usize;
#[cfg(feature = "accept_transfer_chunked")]
/// check if reading bytes is going well or not
pub type BodyChunksReadingResult = Result<Bytes,()>;
/// incoming body chunked bytes
#[cfg(feature = "accept_transfer_chunked")]
#[derive(Debug)]
/// for handling multipart from data in both protocols http1 and http2
pub struct BodyChunkedReader<'a> {
stream_holder:MultipartStreamHolder<'a>,
reading_buffer:&'a mut BodyReadingBuffer,
chunk_indexes_count:usize,
#[cfg(feature = "accept_transfer_chunked")]
original_left_bytes_length:usize,
#[cfg(feature = "accept_transfer_chunked")]
to_advance_bytes: &'a mut Option<usize>
// remaining:usize,
}
#[derive(Debug)]
pub struct Chunk {
/// refer to the index of chunk between incoming chunks
pub index:usize,
/// incoming chunk length
pub chunk_size:usize
}
#[cfg(feature = "accept_transfer_chunked")]
macro_rules! try_call_back {
($callback:expr,$chunk:expr,$data:expr) => {
match $callback($chunk,$data) {
Err(_) => {return Err(())}
Ok(future) => {
if let Some(future) = future {
if future.await.is_err() {return Err(())}
}
}
}
};
}
#[cfg(feature = "accept_transfer_chunked")]
impl<'a> BodyChunkedReader<'a> {
/// for creating new [BodyChunkedReader]
pub (crate) fn new(
stream_holder:MultipartStreamHolder<'a>,
reading_buffer:&'a mut BodyReadingBuffer,
#[cfg(feature = "accept_transfer_chunked")]
to_advance_bytes:&'a mut Option<usize>
)->BodyChunkedReader<'a>{
BodyChunkedReader {
reading_buffer,
chunk_indexes_count:0,
#[cfg(feature = "accept_transfer_chunked")]
original_left_bytes_length:match &stream_holder {
MultipartStreamHolder::H1(holder) => { holder.left_bytes.len() }
MultipartStreamHolder::H2(_) => {0}
},
#[cfg(feature = "accept_transfer_chunked")]
to_advance_bytes,
stream_holder,
}
}
/// for polling chunks in order and efficient
pub async fn on_chunk_detected(&mut self,
mut callback:impl FnMut(&Chunk,&[u8])->FieldCallBackResult
)->Result<(),()>{
let chunk_index = &mut self.chunk_indexes_count;
match &mut self.stream_holder {
MultipartStreamHolder::H1(holder) => {
let mut chunk:Option<Chunk> = None;
loop {
match &chunk {
None => {
return match find_new_line(holder.left_bytes,16) {
Ok(index_option) => {
#[cfg(feature = "debugging")]
{
tracing::debug!("trying to find chunk on {:?}",index_option)
}
match index_option {
None => {
#[cfg(feature = "debugging")]
{
tracing::debug!("the left data is {}",String::from_utf8_lossy(holder.left_bytes));
}
self.reading_buffer.extend_from_slice(holder.left_bytes);
holder.left_bytes = &[];
h1_chunk_detecting_on_stream(
holder,
self.reading_buffer,
chunk_index,
&mut callback,
chunk
).await
}
Some(i) => {
let chunk_size = hex_bytes_to_usize(&holder.left_bytes[..i]);
if let Some(chunk_size) = chunk_size {
#[cfg(feature = "debugging")]
{
tracing::debug!("chunk size is {}",chunk_size)
}
chunk = Some(Chunk { index: *chunk_index, chunk_size });
*chunk_index += 1;
if i + 2 >= holder.left_bytes.len() {
holder.left_bytes = &[];
return h1_chunk_detecting_on_stream(
holder,
self.reading_buffer,
chunk_index,
&mut callback,
chunk
).await;
}
holder.left_bytes = &holder.left_bytes[i+2..];
#[cfg(feature = "debugging")]
{
tracing::debug!("data after advanced {}",
String::from_utf8_lossy(holder.left_bytes)
)
}
continue;
}
Err(())
}
}
}
Err(_) => { Err(())}
}
}
Some(chunk_op) => {
if chunk_op.chunk_size == 0 {
#[cfg(feature = "debugging")]{
println!("the last chunk payload {:?}",
String::from_utf8_lossy(holder.left_bytes)
)
}
return match find_new_line(holder.left_bytes, 4) {
Ok(index_option) => {
match index_option {
None => {
h1_chunk_detecting_on_stream(
holder,
self.reading_buffer,
chunk_index,
&mut callback,
chunk
).await
}
Some(i) => {
#[cfg(feature = "debugging")]{
println!("the last chunk was found on {i}"
)
}
if holder.left_bytes.len() < 2 { return Err(()) }
if i == 0 {
holder.left_bytes = &holder.left_bytes[2..];
#[cfg(feature = "accept_transfer_chunked")]
{
if let Some(to_advance_bytes) = &mut self.to_advance_bytes {
*to_advance_bytes = self.original_left_bytes_length - holder.left_bytes.len();
} else {
*self.to_advance_bytes = Some(self.original_left_bytes_length - holder.left_bytes.len());
}
}
}
#[cfg(feature = "debugging")]{
tracing::info!("after chunked payload proceed {:?}",
String::from_utf8_lossy(holder.left_bytes)
)
}
Ok(())
}
}
}
Err(_) => { Err(()) }
}
}
match find_new_line(holder.left_bytes,chunk_op.chunk_size) {
Ok(new_line) => {
match new_line {
None => {
try_call_back!(callback,chunk_op,holder.left_bytes);
holder.left_bytes = &[];
return h1_chunk_detecting_on_stream(
holder,
self.reading_buffer,
chunk_index,
callback,
chunk
).await
}
Some(n) => {
try_call_back!(callback,chunk_op,&holder.left_bytes[..n]);
if holder.left_bytes.len() <= 2 {
chunk = None;
holder.left_bytes = &[];
return h1_chunk_detecting_on_stream(
holder,
self.reading_buffer,
chunk_index,
callback,
chunk
).await;
}
holder.left_bytes = &holder.left_bytes[n+2..];
#[cfg(feature = "debugging")]
{
tracing::debug!("left bytes after advanced {:?}",
String::from_utf8_lossy(holder.left_bytes
)
)
}
chunk = None;
continue;
}
}
}
Err(_) => {
#[cfg(feature = "debugging")]
{
tracing::error!("there is no new line when it should be {:?}",
String::from_utf8_lossy(holder.left_bytes )
)
}
return Err(())}
}
}
}
}
}
MultipartStreamHolder::H2(h2) => {
let mut chunk:Option<Chunk> = None;
let body_reader = h2.batch.body_mut();
loop {
#[cfg(feature = "debugging")]
{
println!("chunk is {:?}",chunk);
}
match &chunk {
None => {
let data = self.reading_buffer.chunk();
return match find_new_line(data,16) {
Ok(index_option) => {
#[cfg(feature = "debugging")]
{
tracing::debug!("trying to find chunk on {:?}",index_option)
}
match index_option {
None => {
if let Some(r) = body_reader.data().await {
if let Ok(r) = r {
self.reading_buffer.extend_from_slice(&r);
continue
} else {
return Err(())
}
}
else {
return Ok(())
}
}
Some(i) => {
let chunk_size = hex_bytes_to_usize(&data[..i]);
if let Some(chunk_size) = chunk_size {
#[cfg(feature = "debugging")]
{
tracing::debug!("chunk size is {}",chunk_size)
}
chunk = Some(Chunk { index: *chunk_index, chunk_size });
*chunk_index += 1;
if i + 2 >= data.len() {
self.reading_buffer.clear();
continue;
}
self.reading_buffer.advance(i+2);
#[cfg(feature = "debugging")]
{
tracing::debug!("data after advanced {}",
String::from_utf8_lossy(self.reading_buffer.chunk())
)
}
continue;
}
Err(())
}
}
}
Err(_) => { Err(())}
}
}
Some(chunk_op) => {
let data = self.reading_buffer.chunk();
if chunk_op.chunk_size == 0 {
#[cfg(feature = "debugging")]{
println!("the last chunk payload {:?}",
String::from_utf8_lossy(data)
)
}
return match find_new_line(data, 4) {
Ok(index_option) => {
match index_option {
None => {
if let Some(r) = body_reader.data().await {
if let Ok(r) = r {
self.reading_buffer.extend_from_slice(&r);
continue
} else {
return Err(());
}
} else {
return Ok(())
}
}
Some(i) => {
#[cfg(feature = "debugging")]{
println!("the last chunk was found on {i}"
)
}
if data.len() < 2 { return Err(()) }
if i == 0 {
self.reading_buffer.advance(2);
}
#[cfg(feature = "debugging")]{
tracing::info!("after chunked payload proceed {:?}",
String::from_utf8_lossy(self.reading_buffer.chunk())
)
}
Ok(())
}
}
}
Err(_) => { Err(()) }
}
}
let data = self.reading_buffer.chunk();
match find_new_line(data,chunk_op.chunk_size) {
Ok(new_line) => {
match new_line {
None => {
try_call_back!(callback,chunk_op,data);
self.reading_buffer.clear();
if let Some(r) = body_reader.data().await {
if let Ok(r) = r {
self.reading_buffer.extend_from_slice(&r);
continue
}
return Err(())
} else {
return Ok(())
}
}
Some(n) => {
let data = self.reading_buffer.chunk();
try_call_back!(callback,chunk_op,&data[..n]);
if data.len() <= 2 {
chunk = None;
self.reading_buffer.clear();
if let Some(r) = body_reader.data().await {
if let Ok(r) = r {
self.reading_buffer.extend_from_slice(&r);
continue
}
return Err(())
} else {
return Ok(())
}
}
self.reading_buffer.advance(n+2);
#[cfg(feature = "debugging")]
{
tracing::debug!("left bytes after advanced {:?}",
String::from_utf8_lossy(self.reading_buffer.chunk()
)
)
}
chunk = None;
continue;
}
}
}
Err(_) => {
#[cfg(feature = "debugging")]
{
tracing::error!("there is no new line when it should be {:?}",
String::from_utf8_lossy(data)
)
}
return Err(())}
}
}
}
}
}
}
}
}
#[cfg(feature = "accept_transfer_chunked")]
async fn h1_chunk_detecting_on_stream(
holder:& mut H1StreamHolder<'_>,
reader:&mut BodyReadingBuffer,
chunk_index:&mut usize,
mut callback:impl FnMut(&Chunk,&[u8])->FieldCallBackResult,
mut chunk: Option<Chunk>,
)->Result<(),()>{
loop {
match &mut chunk {
None => {
if reader.is_empty() {
if reader.read_buf(holder.stream).await.is_err() {return Err(())}
}
let data = reader.chunk();
if data.is_empty() {return Err(())}
match find_new_line(data,16) {
Ok(index_option)=>{
match index_option {
None => { continue}
Some(index) => {
let c = &data[..index];
if index + 2 >= data.len() { continue }
let chunk_size = match hex_bytes_to_usize(c) {
None => { return Err(())}
Some(r) => {r}
};
chunk = Some(Chunk { index:*chunk_index,chunk_size});
*chunk_index+=1;
reader.advance(index+2);
if chunk_size == 0 {
if reader.len() < 2{return Err(()) }
reader.advance(2);
return Ok(())
}
#[cfg(feature = "debugging")]
{
tracing::debug!("bytes after advanced {}",String::from_utf8_lossy(reader.chunk()))
}
}
}
}
Err(_)=>{ return Err(())}
}
}
Some(chunk_oop) => {
if reader.is_empty() {
if reader.read_buf(holder.stream).await.is_err() {return Err(())}
}
let data = reader.chunk();
if data.is_empty() {return Err(())}
match find_new_line(data,chunk_oop.chunk_size + 2 ) {
Ok(op) => {
match op {
None => {
match callback(chunk_oop,data) {
Ok(f)=>{
if let Some(f) = f {
if f.await.is_err() {return Err(())}
}
reader.clear();
}
Err(_)=> { return Err(())}
}
}
Some(i) => {
match callback(chunk_oop,&data[..i]) {
Ok(future) => {
if let Some(future
) = future {
if future.await.is_err() { return Err(())}
}
if data.len() < i + 2 { return Err(()) }
else {reader.advance(i+2);}
chunk = None;
}
Err(_) => { return Err(())}
}
}
}
}
Err(_) => {return Err(())}
}
}
}
}
}
#[cfg(feature = "accept_transfer_chunked")]
#[inline]
fn find_new_line(data:&[u8],cap:usize)->Result<Option<usize>,()>{
let mut co = 0_u8 ;
for (index,byte) in data.iter().enumerate() {
match byte {
b'\r'=>{ co+=1;}
b'\n'=>{ if co == 1 { return Ok(Some(index - 1))}}
_ => {
if index >= cap { return Err(())}
co = 0;
}
}
}
Ok(None)
}