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
|
/*
* Author: Sven Gothel <sgothel@jausoft.com>
* Copyright (c) 2021 Gothel Software e.K.
*
* ByteInStream, ByteInStream_SecMemory and ByteInStream_istream are derived from Botan under same license:
* - Copyright (c) 1999-2007 Jack Lloyd
* - Copyright (c) 2005 Matthew Gregan
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#include <fstream>
#include <iostream>
#include <chrono>
// #include <botan_all.h>
#include <jau/debug.hpp>
#include <jau/file_util.hpp>
#include <jau/byte_stream.hpp>
#include <jau/io_util.hpp>
#include <curl/curl.h>
#include <thread>
#include <pthread.h>
using namespace jau::io;
using namespace jau::fractions_i64_literals;
const size_t jau::io::BEST_URLSTREAM_RINGBUFFER_SIZE = 2*CURL_MAX_WRITE_SIZE;
inline constexpr void copy_mem(uint8_t* out, const uint8_t* in, size_t n) noexcept {
if(in != nullptr && out != nullptr && n > 0) {
std::memmove(out, in, sizeof(uint8_t)*n);
}
}
inline char* cast_uint8_ptr_to_char(uint8_t* b) noexcept {
return reinterpret_cast<char*>(b);
}
inline const uint8_t* cast_char_ptr_to_uint8(const char* s) noexcept {
return reinterpret_cast<const uint8_t*>(s);
}
#ifndef BOTAN_VERSION_MAJOR
size_t ByteInStream::read_byte(uint8_t& out) noexcept {
return read(&out, 1);
}
size_t ByteInStream::peek_byte(uint8_t& out) const noexcept {
return peek(&out, 1, 0);
}
size_t ByteInStream::discard_next(size_t n) noexcept {
uint8_t buf[64] = { 0 };
size_t discarded = 0;
while(n)
{
const size_t got = this->read(buf, std::min(n, sizeof(buf)));
discarded += got;
n -= got;
if(got == 0)
break;
}
return discarded;
}
#endif /* BOTAN_VERSION_MAJOR */
size_t ByteInStream_SecMemory::read(uint8_t out[], size_t length) NOEXCEPT_BOTAN {
if( 0 == length || end_of_data() ) {
return 0;
}
const size_t got = std::min<size_t>(m_source.size() - m_offset, length);
copy_mem(out, m_source.data() + m_offset, got);
m_offset += got;
return got;
}
bool ByteInStream_SecMemory::check_available(size_t n) NOEXCEPT_BOTAN {
return m_source.size() - m_offset >= n;
}
size_t ByteInStream_SecMemory::peek(uint8_t out[], size_t length, size_t peek_offset) const NOEXCEPT_BOTAN {
const size_t bytes_left = m_source.size() - m_offset;
if(peek_offset >= bytes_left) {
return 0;
}
const size_t got = std::min(bytes_left - peek_offset, length);
copy_mem(out, &m_source[m_offset + peek_offset], got);
return got;
}
bool ByteInStream_SecMemory::end_of_data() const NOEXCEPT_BOTAN {
return m_source.size() == m_offset;
}
ByteInStream_SecMemory::ByteInStream_SecMemory(const std::string& in)
: m_source(cast_char_ptr_to_uint8(in.data()),
cast_char_ptr_to_uint8(in.data()) + in.length()),
m_offset(0)
{ }
void ByteInStream_SecMemory::close() noexcept {
m_source.clear();
m_offset = 0;
}
std::string ByteInStream_SecMemory::to_string() const noexcept {
return "ByteInStream_SecMemory[content size "+jau::to_decstring(m_source.size())+
", consumed "+jau::to_decstring(m_offset)+
", available "+jau::to_decstring(m_source.size()-m_offset)+
", eod "+std::to_string( end_of_data() )+
", error "+std::to_string( error() )+
"]";
}
size_t ByteInStream_istream::read(uint8_t out[], size_t length) NOEXCEPT_BOTAN {
if( 0 == length || end_of_data() ) {
return 0;
}
m_source.read(cast_uint8_ptr_to_char(out), length);
if( error() ) {
DBG_PRINT("ByteInStream_istream::read: Error occurred in %s", to_string().c_str());
return 0;
}
const size_t got = static_cast<size_t>(m_source.gcount());
m_bytes_consumed += got;
return got;
}
bool ByteInStream_istream::check_available(size_t n) NOEXCEPT_BOTAN {
// stream size is dynamic, hence can't store size until end
const std::streampos orig_pos = m_source.tellg();
m_source.seekg(0, std::ios::end);
uint64_t avail = static_cast<uint64_t>(m_source.tellg() - orig_pos);
m_source.seekg(orig_pos);
return avail >= n;
}
size_t ByteInStream_istream::peek(uint8_t out[], size_t length, size_t offset) const NOEXCEPT_BOTAN {
if( 0 == length || end_of_data() ) {
return 0;
}
size_t got = 0;
if( offset ) {
secure_vector<uint8_t> buf(offset);
m_source.read(cast_uint8_ptr_to_char(buf.data()), buf.size());
if( error() ) {
DBG_PRINT("ByteInStream_istream::peek: Error occurred (offset) in %s", to_string().c_str());
return 0;
}
got = static_cast<size_t>(m_source.gcount());
}
if(got == offset) {
m_source.read(cast_uint8_ptr_to_char(out), length);
if( error() ) {
DBG_PRINT("ByteInStream_istream::peek: Error occurred (read) in %s", to_string().c_str());
return 0;
}
got = static_cast<size_t>(m_source.gcount());
}
if( m_source.eof() ) {
m_source.clear();
}
m_source.seekg(m_bytes_consumed, std::ios::beg);
return got;
}
bool ByteInStream_istream::end_of_data() const NOEXCEPT_BOTAN {
return !m_source.good();
}
std::string ByteInStream_istream::id() const NOEXCEPT_BOTAN {
return m_identifier;
}
ByteInStream_istream::ByteInStream_istream(std::istream& in, const std::string& name) noexcept
: m_identifier(name), m_source(in),
m_bytes_consumed(0)
{ }
void ByteInStream_istream::close() noexcept {
// nop
}
std::string ByteInStream_istream::to_string() const noexcept {
return "ByteInStream_Stream["+m_identifier+
", consumed "+jau::to_decstring(m_bytes_consumed)+
", eod "+std::to_string( end_of_data() )+
", error "+std::to_string( error() )+
"]";
}
size_t ByteInStream_File::read(uint8_t out[], size_t length) NOEXCEPT_BOTAN {
if( 0 == length || end_of_data() ) {
return 0;
}
m_source.read(cast_uint8_ptr_to_char(out), length);
if( error() ) {
DBG_PRINT("ByteInStream_File::read: Error occurred in %s", to_string().c_str());
return 0;
}
const size_t got = static_cast<size_t>(m_source.gcount());
m_bytes_consumed += got;
return got;
}
size_t ByteInStream_File::peek(uint8_t out[], size_t length, size_t offset) const NOEXCEPT_BOTAN {
if( 0 == length || end_of_data() ) {
return 0;
}
size_t got = 0;
if(offset) {
secure_vector<uint8_t> buf(offset);
m_source.read(cast_uint8_ptr_to_char(buf.data()), buf.size());
if( error() ) {
DBG_PRINT("ByteInStream_File::peek: Error occurred (offset) in %s", to_string().c_str());
return 0;
}
got = static_cast<size_t>(m_source.gcount());
}
if(got == offset) {
m_source.read(cast_uint8_ptr_to_char(out), length);
if( error() ) {
DBG_PRINT("ByteInStream_File::peek: Error occurred (read) in %s", to_string().c_str());
return 0;
}
got = static_cast<size_t>(m_source.gcount());
}
if(m_source.eof()) {
m_source.clear();
}
m_source.seekg(m_bytes_consumed, std::ios::beg);
return got;
}
bool ByteInStream_File::check_available(size_t n) NOEXCEPT_BOTAN {
return m_content_size - m_bytes_consumed >= (uint64_t)n;
};
bool ByteInStream_File::end_of_data() const NOEXCEPT_BOTAN {
return !m_source.good() || m_bytes_consumed >= m_content_size;
}
std::string ByteInStream_File::id() const NOEXCEPT_BOTAN {
return m_identifier;
}
ByteInStream_File::ByteInStream_File(const std::string& path, bool use_binary) noexcept
: m_identifier(path),
m_source(path, use_binary ? std::ios::binary : std::ios::in),
m_content_size(0), m_bytes_consumed(0)
{
if( error() ) {
DBG_PRINT("ByteInStream_File::ctor: Error occurred in %s", to_string().c_str());
} else {
const jau::fs::file_stats in_stats(path);
if( !in_stats.exists() || !in_stats.has_access() ) {
DBG_PRINT("ByteInStream_File::ctor: Error, not an existing or accessible file in %s", to_string().c_str());
} else if( !in_stats.is_file() ) {
DBG_PRINT("ByteInStream_File::ctor: Error, not a file in %s", to_string().c_str());
} else {
m_content_size = in_stats.size();
}
}
}
void ByteInStream_File::close() noexcept {
m_source.close();
}
std::string ByteInStream_File::to_string() const noexcept {
return "ByteInStream_File["+m_identifier+", content_length "+jau::to_decstring(m_content_size)+
", consumed "+jau::to_decstring(m_bytes_consumed)+
", available "+jau::to_decstring(m_content_size - m_bytes_consumed)+
", eod "+std::to_string( end_of_data() )+
", error "+std::to_string( error() )+
"]";
}
ByteInStream_URL::ByteInStream_URL(const std::string& url, const jau::fraction_i64& timeout) noexcept
: m_url(url), m_timeout(timeout), m_buffer(0x00, BEST_URLSTREAM_RINGBUFFER_SIZE),
m_has_content_length( false ), m_content_size( 0 ), m_total_xfered( 0 ), m_result( io::async_io_result_t::NONE ),
m_bytes_consumed(0)
{
m_url_thread = read_url_stream(m_url, m_buffer, m_has_content_length, m_content_size, m_total_xfered, m_result);
}
void ByteInStream_URL::close() noexcept {
DBG_PRINT("ByteInStream_URL: close.0 %s, %s", id().c_str(), to_string_int().c_str());
if( async_io_result_t::NONE == m_result ) {
m_result = async_io_result_t::SUCCESS; // signal end of streaming
}
m_buffer.drop(m_buffer.size()); // unblock putBlocking(..)
if( m_url_thread.joinable() ) {
DBG_PRINT("ByteInStream_URL: close.1 %s, %s", id().c_str(), m_buffer.toString().c_str());
m_url_thread.join();
}
DBG_PRINT("ByteInStream_URL: close.X %s, %s", id().c_str(), to_string_int().c_str());
}
bool ByteInStream_URL::check_available(size_t n) NOEXCEPT_BOTAN {
if( async_io_result_t::NONE != m_result ) {
// url thread ended, only remaining bytes in buffer available left
return m_buffer.size() >= n;
}
if( m_has_content_length && m_content_size - m_bytes_consumed < n ) {
return false;
}
// I/O still in progress, we have to poll until data is available or timeout
return m_buffer.waitForElements(n, m_timeout) >= n;
}
size_t ByteInStream_URL::read(uint8_t out[], size_t length) NOEXCEPT_BOTAN {
if( 0 == length || end_of_data() ) {
return 0;
}
const size_t consumed_bytes = m_buffer.get(out, length, 1);
m_bytes_consumed += consumed_bytes;
// DBG_PRINT("ByteInStream_Feed::read: size %zu/%zu bytes, %s", consumed_bytes, length, to_string_int().c_str() );
return consumed_bytes;
}
size_t ByteInStream_URL::peek(uint8_t out[], size_t length, size_t peek_offset) const NOEXCEPT_BOTAN {
(void)out;
(void)length;
(void)peek_offset;
ERR_PRINT("ByteInStream_URL::peek not implemented");
return 0;
}
bool ByteInStream_URL::end_of_data() const NOEXCEPT_BOTAN {
return ( async_io_result_t::NONE != m_result && m_buffer.isEmpty() ) ||
( m_has_content_length && m_bytes_consumed >= m_content_size );
}
std::string ByteInStream_URL::to_string_int() const noexcept {
return m_url+", Url[content_length has "+std::to_string(m_has_content_length.load())+
", size "+jau::to_decstring(m_content_size.load())+
", xfered "+jau::to_decstring(m_total_xfered.load())+
", result "+std::to_string((int8_t)m_result.load())+
"], consumed "+jau::to_decstring(m_bytes_consumed)+
", available "+jau::to_decstring(get_available())+
", eod "+std::to_string( end_of_data() )+
", error "+std::to_string( error() )+
", "+m_buffer.toString();
}
std::string ByteInStream_URL::to_string() const noexcept {
return "ByteInStream_URL["+to_string_int()+"]";
}
ByteInStream_Feed::ByteInStream_Feed(const std::string& id_name, const jau::fraction_i64& timeout) noexcept
: m_id(id_name), m_timeout(timeout), m_buffer(0x00, BEST_URLSTREAM_RINGBUFFER_SIZE),
m_has_content_length( false ), m_content_size( 0 ), m_total_xfered( 0 ), m_result( io::async_io_result_t::NONE ),
m_bytes_consumed(0)
{ }
void ByteInStream_Feed::close() noexcept {
DBG_PRINT("ByteInStream_Feed: close.0 %s, %s", id().c_str(), to_string_int().c_str());
if( async_io_result_t::NONE == m_result ) {
m_result = async_io_result_t::SUCCESS; // signal end of streaming
}
m_buffer.drop(m_buffer.size()); // unblock putBlocking(..)
DBG_PRINT("ByteInStream_Feed: close.X %s, %s", id().c_str(), to_string_int().c_str());
}
bool ByteInStream_Feed::check_available(size_t n) NOEXCEPT_BOTAN {
if( async_io_result_t::NONE != m_result ) {
// feeder completed, only remaining bytes in buffer available left
return m_buffer.size() >= n;
}
if( m_has_content_length && m_content_size - m_bytes_consumed < n ) {
return false;
}
// I/O still in progress, we have to poll until data is available or timeout
return m_buffer.waitForElements(n, m_timeout) >= n;
}
size_t ByteInStream_Feed::read(uint8_t out[], size_t length) NOEXCEPT_BOTAN {
if( 0 == length || end_of_data() ) {
return 0;
}
const size_t consumed_bytes = m_buffer.get(out, length, 1);
m_bytes_consumed += consumed_bytes;
// DBG_PRINT("ByteInStream_Feed::read: size %zu/%zu bytes, %s", consumed_bytes, length, to_string_int().c_str() );
return consumed_bytes;
}
size_t ByteInStream_Feed::peek(uint8_t out[], size_t length, size_t peek_offset) const NOEXCEPT_BOTAN {
(void)out;
(void)length;
(void)peek_offset;
ERR_PRINT("ByteInStream_Feed::peek not implemented");
return 0;
}
bool ByteInStream_Feed::end_of_data() const NOEXCEPT_BOTAN {
return ( async_io_result_t::NONE != m_result && m_buffer.isEmpty() ) ||
( m_has_content_length && m_bytes_consumed >= m_content_size );
}
void ByteInStream_Feed::write(uint8_t in[], size_t length) noexcept {
if( 0 < length ) {
m_buffer.putBlocking(in, in+length, m_timeout);
m_total_xfered.fetch_add(length);
}
}
std::string ByteInStream_Feed::to_string_int() const noexcept {
return m_id+", ext[content_length has "+std::to_string(m_has_content_length.load())+
", size "+jau::to_decstring(m_content_size.load())+
", xfered "+jau::to_decstring(m_total_xfered.load())+
", result "+std::to_string((int8_t)m_result.load())+
"], consumed "+std::to_string(m_bytes_consumed)+
", available "+std::to_string(get_available())+
", eod "+std::to_string( end_of_data() )+
", error "+std::to_string( error() )+
", "+m_buffer.toString();
}
std::string ByteInStream_Feed::to_string() const noexcept {
return "ByteInStream_Feed["+to_string_int()+"]";
}
void ByteInStream_Recorder::close() noexcept {
clear_recording();
m_parent.close();
DBG_PRINT("ByteInStream_Recorder: close.X %s", id().c_str());
}
void ByteInStream_Recorder::start_recording() noexcept {
m_buffer.resize(0);
m_rec_offset = m_bytes_consumed;
m_is_recording = true;
}
void ByteInStream_Recorder::stop_recording() noexcept {
m_is_recording = false;
}
void ByteInStream_Recorder::clear_recording() noexcept {
m_is_recording = false;
m_buffer.clear();
m_rec_offset = 0;
}
size_t ByteInStream_Recorder::read(uint8_t out[], size_t length) NOEXCEPT_BOTAN {
const size_t consumed_bytes = m_parent.read(out, length);
m_bytes_consumed += consumed_bytes;
if( is_recording() ) {
m_buffer.insert(m_buffer.end(), out, out+consumed_bytes);
}
return consumed_bytes;
}
std::string ByteInStream_Recorder::to_string() const noexcept {
return "ByteInStream_Recorder[parent "+m_parent.id()+", recording[on "+std::to_string(m_is_recording)+
" offset "+jau::to_decstring(m_rec_offset)+
"], consumed "+jau::to_decstring(m_bytes_consumed)+
", eod "+std::to_string(end_of_data())+
", error "+std::to_string(error())+"]";
}
|