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
|
/*
** Copyright 2003-2025 Double Precision, Inc. See COPYING for
** distribution information.
*/
/*
*/
#include "encode.h"
#include <string.h>
#include <stdlib.h>
#include <courier-unicode.h>
#include <functional>
#include "rfc2045/rfc2045.h"
namespace {
#if 0
}
#endif
struct libmail_encode_autodetect {
bool use7bit{false};
bool binaryflag{false};
size_t l{0};
bool longline{false};
size_t charcnt{0};
size_t bit8cnt{0};
const char *encoding{0};
void operator()(unsigned char ch)
{
++charcnt;
++l;
if (ch < 0x20 || ch >= 0x80)
{
if (ch != '\t' && ch != '\r' && ch != '\n')
{
++bit8cnt;
l += 2;
}
}
if (ch == 0)
{
binaryflag=true;
encoding="base64";
}
if (ch == '\n') l=0;
else if (l > 990)
{
longline=true;
}
}
operator const char *()
{
if (!encoding)
{
if (use7bit || longline)
{
if (bit8cnt > charcnt / 10)
encoding="base64";
else
encoding="quoted-printable";
}
else
{
encoding=bit8cnt ? "8bit":"7bit";
}
}
return encoding;
}
};
#if 0
{
#endif
}
const char *libmail_encode_autodetect_fp(FILE *fp, int use7bit,
int *binaryflag)
{
return libmail_encode_autodetect_fpoff(fp, use7bit, 0, -1,
binaryflag);
}
const char *libmail_encode_autodetect_fpoff(FILE *fp, int use7bit,
off_t start_pos, off_t end_pos,
int *binaryflag)
{
off_t orig_pos = ftell(fp);
off_t pos = orig_pos;
const char *rc;
if (start_pos >= 0)
{
if (fseek(fp, start_pos, SEEK_SET) == (off_t)-1)
return NULL;
else
pos = start_pos;
}
libmail_encode_autodetect detect;
detect.use7bit=use7bit != 0;
while (!detect.encoding)
{
if (end_pos >= 0 && pos > end_pos)
break;
++pos;
auto ch=getc(fp);
if (ch == EOF)
break;
detect(ch);
}
rc=detect;
if (binaryflag)
*binaryflag=detect.binaryflag ? 1:0;
if (fseek(fp, orig_pos, SEEK_SET) == (off_t)-1)
return NULL;
return rc;
}
const char *libmail_encode_autodetect_buf(const char *str, int use7bit)
{
libmail_encode_autodetect detect;
detect.use7bit=use7bit != 0;
while (*str)
{
if (detect.encoding)
break;
detect(*str++);
}
return detect;
}
std::tuple<const char *, bool>
rfc822::libmail_encode_autodetect(std::streambuf &i,
bool use7bit)
{
char buf[BUFSIZ];
::libmail_encode_autodetect detect;
detect.use7bit=use7bit;
for (auto cnt=i.sgetn(buf, BUFSIZ); cnt > 0;
cnt=i.sgetn(buf, BUFSIZ))
{
char *b=buf;
char *e=buf+cnt;
while (b != e)
{
if (detect.encoding)
break;
detect(*b++);
}
if (detect.encoding)
break;
}
const char *encoding=detect;
return std::tuple{encoding, detect.binaryflag};
}
|