Alex Dowad
0ce755be26
Implement mb_encode_mimeheader using fast text conversion filters
...
The behavior of the new mb_encode_mimeheader implementation closely
follows the old implementation, except for three points:
• The old implementation was missing a call to the mbfl_convert_filter
flush function. So it would sometimes truncate the input string just
before its end.
• The old implementation would drop zero bytes when QPrint-encoding.
So for example, if you tried to QPrint-encode the UTF-32BE string
"\x00\x00\x12\x34", its QPrint-encoding would be "=12=34", which
does not decode to a valid UTF-32BE string. This is now fixed.
• In some rare corner cases, the new implementation will choose to
Base64-encode or QPrint-encode the input string, where the old
implementation would have just added newlines to it. Specifically,
this can happen when there is a non-space ASCII character, followed
by a large number of ASCII spaces, followed by a non-ASCII character.
The new implementation is around 2.5-8x faster than the old one,
depending on the text encoding and transfer encoding used. Performance
gains are greater with Base64 transfer encoding than with QPrint
transfer encoding; this is not because QPrint-encoding bytes is slow,
but because QPrint-encoded output is much bigger than Base64-encoded
output and takes more lines, so we have to go through the process of
finding the right place to break a line many more times.
2023-03-15 15:53:08 +02:00
..
2022-12-09 15:18:37 +02:00
2021-12-21 08:33:11 +02:00
2022-05-28 21:53:37 +02:00
2021-08-31 13:41:34 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2022-07-18 15:11:47 +02:00
2021-06-14 15:27:28 +02:00
2021-06-14 15:27:28 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-14 15:27:28 +02:00
2021-06-11 12:58:44 +02:00
2021-11-01 11:23:21 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 11:57:42 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2023-01-03 09:10:10 +02:00
2022-01-07 22:46:02 +01:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 14:00:43 +02:00
2022-07-18 23:19:59 +01:00
2022-07-18 23:19:59 +01:00
2021-06-11 12:58:44 +02:00
2021-12-21 08:33:11 +02:00
2021-06-11 14:00:43 +02:00
2021-06-11 11:57:42 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 14:00:43 +02:00
2021-06-11 14:00:43 +02:00
2021-11-01 11:23:21 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 14:00:43 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 11:57:42 +02:00
2021-06-11 11:57:42 +02:00
2021-06-11 11:57:42 +02:00
2021-06-11 11:57:42 +02:00
2021-06-11 14:00:43 +02:00
2021-06-11 14:00:43 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 11:57:42 +02:00
2021-06-11 14:00:43 +02:00
2021-06-11 11:57:42 +02:00
2021-06-11 11:57:42 +02:00
2021-06-11 11:57:42 +02:00
2021-06-11 11:57:42 +02:00
2021-06-11 14:00:43 +02:00
2021-06-11 11:57:42 +02:00
2021-06-11 11:57:42 +02:00
2021-06-11 11:57:42 +02:00
2021-06-11 11:57:42 +02:00
2021-06-11 11:57:42 +02:00
2021-06-11 11:57:42 +02:00
2021-06-11 14:00:43 +02:00
2021-06-11 11:57:42 +02:00
2021-06-11 11:57:42 +02:00
2021-06-11 11:57:42 +02:00
2021-06-11 11:57:42 +02:00
2021-06-14 14:52:44 +02:00
2021-06-11 11:57:42 +02:00
2021-06-11 11:57:42 +02:00
2021-06-11 11:57:42 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 11:57:42 +02:00
2021-10-19 18:05:52 +02:00
2021-08-11 14:03:18 +02:00
2021-12-03 22:49:47 +01:00
2021-06-14 15:27:28 +02:00
2021-06-11 14:00:43 +02:00
2023-01-12 17:41:11 +02:00
2020-02-03 22:52:20 +01:00
2021-12-21 08:33:11 +02:00
2021-12-21 08:33:11 +02:00
2022-08-16 20:18:54 +02:00
2021-08-31 13:41:34 +02:00
2021-08-31 13:41:34 +02:00
2021-08-31 13:41:34 +02:00
2022-12-09 15:37:56 +02:00
2021-12-21 08:33:11 +02:00
2022-07-18 15:11:31 +02:00
2021-08-31 13:41:34 +02:00
2021-06-11 12:58:44 +02:00
2022-12-19 16:29:17 +02:00
2021-08-31 13:41:34 +02:00
2021-08-31 13:41:34 +02:00
2021-08-31 13:41:34 +02:00
2021-08-31 13:41:34 +02:00
2021-08-31 13:41:34 +02:00
2021-08-31 13:41:34 +02:00
2022-07-18 15:11:31 +02:00
2023-02-25 14:02:06 +00:00
2023-01-19 19:05:39 +00:00
2022-03-17 17:34:31 +01:00
2022-07-20 16:58:55 +02:00
2022-08-08 18:35:37 +02:00
2022-11-14 11:46:12 +02:00
2022-11-13 14:37:55 +02:00
2022-10-10 20:46:12 +09:00
2023-02-22 23:06:47 +02:00
2022-07-18 15:11:31 +02:00
2021-06-11 12:58:44 +02:00
2022-07-18 15:11:31 +02:00
2022-04-16 20:32:12 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 14:00:43 +02:00
2022-05-28 21:53:38 +02:00
2022-11-22 15:49:19 +02:00
2022-05-28 21:53:38 +02:00
2021-08-31 13:41:34 +02:00
2022-08-16 16:43:27 +02:00
2021-12-21 08:33:11 +02:00
2021-12-21 08:33:11 +02:00
2021-12-21 08:33:11 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-07-08 15:34:49 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2023-01-12 17:41:11 +02:00
2021-06-14 15:27:28 +02:00
2022-07-15 17:34:35 +02:00
2021-06-14 15:27:28 +02:00
2021-06-14 15:27:28 +02:00
2021-06-14 15:27:28 +02:00
2021-06-14 14:52:44 +02:00
2021-06-11 14:00:43 +02:00
2021-06-11 12:58:44 +02:00
2021-12-20 22:47:18 +02:00
2022-12-29 20:38:01 +02:00
2021-06-11 12:58:44 +02:00
2022-11-18 10:19:07 +02:00
2021-06-14 15:27:28 +02:00
2021-06-14 15:27:28 +02:00
2021-06-14 15:27:28 +02:00
2023-02-22 23:08:03 +02:00
2023-02-22 23:19:57 +02:00
2022-07-18 15:11:47 +02:00
2021-06-11 12:58:44 +02:00
2021-08-27 14:48:32 +02:00
2023-01-19 08:40:39 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-14 15:27:28 +02:00
2021-06-14 15:27:28 +02:00
2023-03-15 15:53:08 +02:00
2021-06-14 15:27:28 +02:00
2023-03-07 11:30:21 +02:00
2021-06-14 15:27:28 +02:00
2021-06-14 15:27:28 +02:00
2022-07-18 15:11:30 +02:00
2021-06-11 12:58:44 +02:00
2021-06-14 14:52:44 +02:00
2021-06-11 11:57:42 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 11:57:42 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 11:57:42 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-14 14:52:44 +02:00
2021-06-11 11:57:42 +02:00
2021-06-11 11:57:42 +02:00
2021-06-11 11:57:42 +02:00
2021-06-11 11:57:42 +02:00
2021-06-11 11:57:42 +02:00
2022-05-06 15:41:10 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 11:57:42 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 11:57:42 +02:00
2021-06-11 11:57:42 +02:00
2021-06-11 12:58:44 +02:00
2022-07-15 14:22:39 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-14 15:27:28 +02:00
2021-06-14 15:27:28 +02:00
2021-06-14 15:27:28 +02:00
2021-06-14 15:27:28 +02:00
2021-06-14 15:27:28 +02:00
2022-08-16 20:18:54 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2022-08-16 16:43:26 +02:00
2022-08-16 16:43:38 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2023-01-22 13:53:04 +02:00
2022-01-07 22:46:02 +01:00
2022-01-07 22:46:02 +01:00
2022-01-07 22:46:02 +01:00
2022-01-07 22:46:02 +01:00
2022-01-07 22:46:02 +01:00
2022-01-07 22:46:02 +01:00
2022-07-20 07:44:20 +02:00
2021-06-14 14:52:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2023-01-03 09:02:21 +02:00
2023-01-08 17:23:47 +02:00
2023-01-03 09:02:21 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-14 15:27:28 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2022-08-02 11:07:06 +02:00
2021-06-14 15:27:28 +02:00
2021-06-14 15:27:28 +02:00
2021-06-14 15:27:28 +02:00
2021-06-14 15:27:28 +02:00
2021-06-11 12:58:44 +02:00
2021-06-14 15:27:28 +02:00
2022-12-18 15:31:20 +02:00
2021-06-14 15:27:28 +02:00
2021-06-14 15:27:28 +02:00
2021-06-14 15:27:28 +02:00
2021-06-14 15:27:28 +02:00
2021-06-14 15:27:28 +02:00
2021-06-14 15:27:28 +02:00
2021-11-01 11:23:21 +02:00
2023-01-09 07:50:40 +02:00
2021-06-14 15:27:28 +02:00
2021-06-14 15:27:28 +02:00
2021-06-14 15:27:28 +02:00
2021-06-11 12:58:44 +02:00
2021-06-14 14:52:44 +02:00
2021-06-14 15:27:28 +02:00
2022-12-18 15:31:20 +02:00
2022-12-12 16:28:49 +02:00
2021-06-14 15:27:28 +02:00
2021-06-14 15:27:28 +02:00
2021-06-14 15:27:28 +02:00
2021-06-14 15:27:28 +02:00
2021-06-14 15:27:28 +02:00
2021-06-14 15:27:28 +02:00
2021-06-14 15:27:28 +02:00
2021-06-14 15:27:28 +02:00
2021-06-14 15:27:28 +02:00
2021-06-14 15:27:28 +02:00
2021-06-14 15:27:28 +02:00
2021-06-14 15:27:28 +02:00
2021-06-14 15:27:28 +02:00
2021-06-14 15:27:28 +02:00
2021-06-14 15:27:28 +02:00
2021-06-14 15:27:28 +02:00
2021-06-14 15:27:28 +02:00
2021-06-14 15:27:28 +02:00
2021-06-14 15:27:28 +02:00
2021-06-14 15:27:28 +02:00
2023-01-06 14:34:10 +02:00
2023-01-12 17:41:11 +02:00
2021-06-14 15:27:28 +02:00
2021-06-14 15:27:28 +02:00
2021-06-14 15:27:28 +02:00
2021-06-14 15:27:28 +02:00
2021-06-14 15:27:28 +02:00
2021-06-14 15:27:28 +02:00
2021-06-14 15:27:28 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-12-21 08:33:11 +02:00
2023-01-23 10:52:14 +01:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-14 15:27:28 +02:00
2021-06-14 15:27:28 +02:00
2021-06-14 15:27:28 +02:00
2021-06-14 15:27:28 +02:00
2022-12-15 07:54:26 +02:00
2021-06-14 15:27:28 +02:00
2021-06-14 15:27:28 +02:00
2021-06-14 15:27:28 +02:00
2021-06-14 15:27:28 +02:00
2021-06-14 15:27:28 +02:00
2023-01-08 17:23:47 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2022-08-16 16:43:27 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2022-07-18 15:11:32 +02:00
2021-06-11 12:58:44 +02:00
2021-06-11 12:58:44 +02:00
2022-10-05 12:18:38 +09:00
2022-06-11 16:31:47 +02:00
2022-08-16 16:43:27 +02:00
2022-05-28 21:53:35 +02:00
2021-09-06 13:16:23 +02:00
2022-05-28 21:53:38 +02:00
2021-12-26 22:19:51 +02:00
2022-11-21 14:49:01 +02:00
2022-04-16 15:04:38 +02:00
2022-08-16 16:43:27 +02:00
2023-03-04 20:42:41 +02:00
2022-07-18 15:11:32 +02:00
2021-06-11 14:00:43 +02:00
2021-06-11 14:00:43 +02:00
2021-06-11 14:00:43 +02:00
2021-06-11 14:00:43 +02:00
2021-06-11 14:00:43 +02:00
2021-06-11 14:00:43 +02:00
2021-06-11 14:00:43 +02:00
2021-06-11 14:00:43 +02:00
2021-06-11 14:00:43 +02:00
2021-06-11 14:00:43 +02:00
2021-06-11 14:00:43 +02:00
2021-06-11 14:00:43 +02:00
2021-06-11 14:00:43 +02:00
2021-06-11 14:00:43 +02:00
2021-06-11 14:00:43 +02:00
2021-06-11 14:00:43 +02:00