Notepad3/src/Encoding.c
2026-03-30 12:12:10 +02:00

1148 lines
39 KiB
C

// encoding: UTF-8
/******************************************************************************
* *
* *
* Notepad3 *
* *
* Encoding.c *
* Handling and Helpers for File Encoding *
* Based on code from Notepad2, (c) Florian Balmer 1996-2011 *
* *
* *
* *
* (c) Rizonesoft 2008-2026 *
* https://rizonesoft.com *
* *
* *
*******************************************************************************/
#include "Helpers.h"
#include <shellapi.h>
#include <commctrl.h>
#include <stdlib.h>
#include <assert.h>
#include "uthash/utarray.h"
#include "Encoding.h"
#include "MuiLanguage.h"
#include "Scintilla.h"
// ============================================================================
// Supported Encodings
WCHAR wchANSI[16] = { L'\0' };
WCHAR wchOEM[16] = { L'\0' };
// special WideCharToMultiByte() encodings (set dwFlags=0 to avoid ERROR_INVALID_FLAGS)
const UINT uCodePageMBCS[] = {
42, // (Symbol)
50220, 50221, 50222, 50225, 50227, 50229, // (Chinese, Japanese, Korean)
52936, // (GB2312)
54936, // (GB18030)
57002, 57003, 57004, 57005, 57006, 57007, 57008, 57009, 57010, 57011, // (ISCII)
65000, // (UTF-7)
65001 // (UTF-8)
};
// ============================================================================
DWORD Encoding_GetWCMBFlagsByCodePage(const UINT codePage)
{
DWORD flags = WC_NO_BEST_FIT_CHARS;
for (int k = 0; k < COUNTOF(uCodePageMBCS); k++) {
if (codePage == uCodePageMBCS[k]) {
flags = 0UL;
break;
}
}
return flags;
}
// ============================================================================
cpi_enc_t Encoding_Current(cpi_enc_t iEncoding)
{
static cpi_enc_t CurrentEncoding = CPI_NONE;
if (iEncoding >= CPI_NONE) {
if (Encoding_IsValid(iEncoding)) {
CurrentEncoding = iEncoding;
} else {
CurrentEncoding = CPI_ANSI_DEFAULT;
}
}
return CurrentEncoding;
}
// ============================================================================
cpi_enc_t Encoding_Forced(cpi_enc_t iEncoding)
{
static cpi_enc_t SourceEncoding = CPI_NONE;
if (iEncoding >= 0) {
if (Encoding_IsValid(iEncoding)) {
SourceEncoding = iEncoding;
} else {
SourceEncoding = Settings.DefaultEncoding;
}
} else if (iEncoding == CPI_NONE) {
SourceEncoding = CPI_NONE;
}
return SourceEncoding;
}
// ============================================================================
cpi_enc_t Encoding_SrcWeak(cpi_enc_t iSrcWeakEnc)
{
static cpi_enc_t SourceWeakEncoding = CPI_NONE;
if (iSrcWeakEnc >= 0) {
if (Encoding_IsValid(iSrcWeakEnc)) {
SourceWeakEncoding = iSrcWeakEnc;
} else {
SourceWeakEncoding = Settings.DefaultEncoding;
}
} else if (iSrcWeakEnc == CPI_NONE) {
SourceWeakEncoding = CPI_NONE;
}
return SourceWeakEncoding;
}
// ============================================================================
void Encoding_InitDefaults()
{
UINT const ansiCP = CodePageFromCharSet(ANSI_CHARSET);
ChangeEncodingCodePage(CPI_ANSI_DEFAULT, ansiCP); // set ANSI system CP ()
assert(g_Encodings[CPI_ANSI_DEFAULT].uCodePage == ansiCP);
StringCchPrintf(wchANSI, COUNTOF(wchANSI), L" (CP-%u)", ansiCP);
Globals.bIsCJKInputCodePage = IsDBCSCodePage(Scintilla_InputCodePage());
for (cpi_enc_t i = CPI_UTF7 + 1; i < Encoding_CountOf(); ++i) {
if (Encoding_IsValid(i) && (g_Encodings[i].uCodePage == g_Encodings[CPI_ANSI_DEFAULT].uCodePage)) {
g_Encodings[i].uFlags |= NCP_ANSI;
if (g_Encodings[i].uFlags & NCP_EXTERNAL_8BIT) {
g_Encodings[CPI_ANSI_DEFAULT].uFlags |= NCP_EXTERNAL_8BIT;
}
break;
}
}
ChangeEncodingCodePage(CPI_OEM, GetOEMCP()); // set OEM system CP
StringCchPrintf(wchOEM, COUNTOF(wchOEM), L" (CP-%u)", g_Encodings[CPI_OEM].uCodePage);
for (cpi_enc_t i = CPI_UTF7 + 1; i < Encoding_CountOf(); ++i) {
if (Encoding_IsValid(i) && (g_Encodings[i].uCodePage == g_Encodings[CPI_OEM].uCodePage)) {
g_Encodings[i].uFlags |= NCP_OEM;
if (g_Encodings[i].uFlags & NCP_EXTERNAL_8BIT) {
g_Encodings[CPI_OEM].uFlags |= NCP_EXTERNAL_8BIT;
}
break;
}
}
// multi byte character sets
for (cpi_enc_t i = 0; i < Encoding_CountOf(); ++i) {
for (int k = 0; k < COUNTOF(uCodePageMBCS); k++) {
if (g_Encodings[i].uCodePage == uCodePageMBCS[k]) {
g_Encodings[i].uFlags |= NCP_MBCS;
}
}
}
Globals.DOSEncoding = CPI_OEM;
// Try to set the DOS encoding to DOS-437 if the default OEMCP is not DOS-437
if (g_Encodings[Globals.DOSEncoding].uCodePage != 437) {
for (cpi_enc_t cpi = CPI_UTF7 + 1; cpi < Encoding_CountOf(); ++cpi) {
if (Encoding_IsValid(cpi) && (g_Encodings[cpi].uCodePage == 437)) {
Globals.DOSEncoding = cpi;
break;
}
}
}
}
// ============================================================================
int Encoding_MapIniSetting(bool bLoad, int iSetting)
{
if (bLoad) {
switch (iSetting) {
case -1:
return CPI_NONE;
case 0:
return CPI_ANSI_DEFAULT;
case 1:
return CPI_UNICODEBOM;
case 2:
return CPI_UNICODEBEBOM;
case 3:
return CPI_UTF8;
case 4:
return CPI_UTF8SIGN;
case 5:
return CPI_OEM;
case 6:
return CPI_UNICODE;
case 7:
return CPI_UNICODEBE;
case 8:
return CPI_UTF7;
default: {
for (cpi_enc_t i = CPI_UTF7 + 1; i < Encoding_CountOf(); i++) {
if ((g_Encodings[i].uCodePage == (UINT)iSetting) && Encoding_IsValid(i)) {
return (int)i;
}
}
return Settings.DefaultEncoding;
}
}
} else { // save
switch (iSetting) {
case CPI_NONE:
return -1;
case CPI_ANSI_DEFAULT:
return 0;
case CPI_UNICODEBOM:
return 1;
case CPI_UNICODEBEBOM:
return 2;
case CPI_UTF8:
return 3;
case CPI_UTF8SIGN:
return 4;
case CPI_OEM:
return 5;
case CPI_UNICODE:
return 6;
case CPI_UNICODEBE:
return 7;
case CPI_UTF7:
return 8;
default:
if (Encoding_IsValid((cpi_enc_t)iSetting)) {
return (int)g_Encodings[iSetting].uCodePage;
}
return Settings.DefaultEncoding;
}
}
}
// ============================================================================
cpi_enc_t Encoding_MapSignature(cpi_enc_t iUni)
{
if (iUni == CPI_UTF8SIGN) {
return CPI_UTF8;
}
if (iUni == CPI_UNICODEBOM) {
return CPI_UNICODE;
}
if (iUni == CPI_UNICODEBEBOM) {
return CPI_UNICODEBE;
}
return iUni;
}
// ============================================================================
void Encoding_SetLabel(cpi_enc_t iEncoding)
{
WCHAR wch1[128] = { L'\0' };
GetLngString(g_Encodings[iEncoding].idsName, wch1, COUNTOF(wch1));
// point to correct label in list
WCHAR* pwsz = StrChr(wch1, L';');
if (pwsz) {
pwsz = StrChr(CharNext(pwsz), L';');
if (pwsz) {
pwsz = CharNext(pwsz);
}
}
if (!pwsz) {
pwsz = wch1;
}
WCHAR wch2[128] = { L'\0' };
StringCchCopyN(wch2, COUNTOF(wch2), pwsz, COUNTOF(wch1));
if (Encoding_IsSystemANSI_CP(iEncoding)) {
StringCchCatN(wch2, COUNTOF(wch2), wchANSI, COUNTOF(wchANSI));
} else if (Encoding_IsSystemOEM(iEncoding)) {
StringCchCatN(wch2, COUNTOF(wch2), wchOEM, COUNTOF(wchOEM));
}
StringCchCopyN(g_Encodings[iEncoding].wchLabel, COUNTOF(g_Encodings[iEncoding].wchLabel), wch2, COUNTOF(wch2));
}
// ============================================================================
cpi_enc_t Encoding_MatchW(LPCWSTR pwszTest)
{
char tchTest[256] = { '\0' };
WideCharToMultiByteEx(CP_ACP, 0, pwszTest, -1, tchTest, COUNTOF(tchTest), NULL, NULL);
return Encoding_MatchA(tchTest);
}
// ============================================================================
cpi_enc_t Encoding_MatchA(const char *pchTest)
{
char chTestLC[256];
chTestLC[0] = ',';
chTestLC[1] = '\0';
StringCchCatA(chTestLC, 256, pchTest);
CharLowerA(chTestLC);
StringCchCatA(chTestLC, 256, ","); // parsing incl. comma
for (cpi_enc_t cpiEncId = 0; cpiEncId < Encoding_CountOf(); cpiEncId++) {
if (StrStrIA(g_Encodings[cpiEncId].pszParseNames, chTestLC)) {
CPINFO cpi;
if ((g_Encodings[cpiEncId].uFlags & NCP_INTERNAL) ||
(IsValidCodePage(g_Encodings[cpiEncId].uCodePage) &&
GetCPInfo(g_Encodings[cpiEncId].uCodePage, &cpi))) {
return cpiEncId;
}
return CPI_NONE;
}
}
return CPI_NONE;
}
// ============================================================================
cpi_enc_t Encoding_GetByCodePage(const UINT codepage)
{
for (cpi_enc_t cpi = 0; cpi < Encoding_CountOf(); cpi++) {
if (codepage == g_Encodings[cpi].uCodePage) {
return cpi;
}
}
return CPI_ANSI_DEFAULT;
}
// ============================================================================
bool Encoding_IsValid(cpi_enc_t iTestEncoding)
{
CPINFO cpi;
if (Encoding_IsValidIdx(iTestEncoding)) {
if ((g_Encodings[iTestEncoding].uFlags & NCP_INTERNAL) ||
(IsValidCodePage(g_Encodings[iTestEncoding].uCodePage) &&
GetCPInfo(g_Encodings[iTestEncoding].uCodePage, &cpi))) {
return true;
}
}
return false;
}
// ============================================================================
typedef struct _ee {
cpi_enc_t id;
WCHAR wch[256];
}
ENCODINGENTRY, *PENCODINGENTRY;
int CmpEncoding(const void *s1, const void *s2)
{
return wcscmp_s(((const PENCODINGENTRY)s1)->wch, ((const PENCODINGENTRY)s2)->wch);
}
// ============================================================================
void Encoding_AddToListView(HWND hwnd, cpi_enc_t idSel, bool bRecodeOnly)
{
int iSelItem = -1;
WCHAR wchBuf[256] = { L'\0' };
PENCODINGENTRY const pEE = AllocMem(Encoding_CountOf() * sizeof(ENCODINGENTRY), HEAP_ZERO_MEMORY);
if (pEE) {
for (cpi_enc_t i = 0; i < Encoding_CountOf(); i++) {
pEE[i].id = i;
GetLngString(g_Encodings[i].idsName, pEE[i].wch, COUNTOF(pEE[i].wch));
}
NP3_SORT(pEE, Encoding_CountOf(), sizeof(ENCODINGENTRY), CmpEncoding);
LVITEM lvi = { 0 };
lvi.mask = LVIF_PARAM | LVIF_TEXT | LVIF_IMAGE;
lvi.pszText = wchBuf;
for (int i = 0; i < Encoding_CountOf(); i++) {
cpi_enc_t id = pEE[i].id;
if (!bRecodeOnly || (g_Encodings[id].uFlags & NCP_RECODE)) {
lvi.iItem = ListView_GetItemCount(hwnd);
WCHAR *pwsz = StrChr(pEE[i].wch, L';');
if (pwsz) {
StringCchCopyN(wchBuf, COUNTOF(wchBuf), CharNext(pwsz), COUNTOF(wchBuf));
pwsz = StrChr(wchBuf, L';');
if (pwsz) {
*pwsz = 0;
}
} else {
StringCchCopyN(wchBuf, COUNTOF(wchBuf), pEE[i].wch, COUNTOF(wchBuf));
}
if (Encoding_IsSystemANSI_CP(id)) {
StringCchCatN(wchBuf, COUNTOF(wchBuf), wchANSI, COUNTOF(wchANSI));
} else if (Encoding_IsSystemOEM(id)) {
StringCchCatN(wchBuf, COUNTOF(wchBuf), wchOEM, COUNTOF(wchOEM));
}
if (Encoding_IsValid(id)) {
lvi.iImage = 0;
} else {
lvi.iImage = 1;
}
lvi.lParam = (LPARAM)id;
ListView_InsertItem(hwnd, &lvi);
if (idSel == id) {
iSelItem = lvi.iItem;
}
}
}
FreeMem(pEE);
}
if (iSelItem != -1) {
ListView_SetItemState(hwnd, iSelItem, LVIS_SELECTED | LVIS_FOCUSED, LVIS_SELECTED | LVIS_FOCUSED);
ListView_EnsureVisible(hwnd, iSelItem, false);
} else {
ListView_SetItemState(hwnd, 0, LVIS_FOCUSED, LVIS_FOCUSED);
ListView_EnsureVisible(hwnd, 0, false);
}
}
// ============================================================================
bool Encoding_GetFromListView(HWND hwnd, cpi_enc_t* pidEncoding)
{
LVITEM lvi = { 0 };
lvi.iItem = ListView_GetNextItem(hwnd, -1, LVNI_ALL | LVNI_SELECTED);
lvi.iSubItem = 0;
lvi.mask = LVIF_PARAM;
if (ListView_GetItem(hwnd, &lvi)) {
if (Encoding_IsValid((cpi_enc_t)lvi.lParam)) {
*pidEncoding = (cpi_enc_t)lvi.lParam;
} else {
*pidEncoding = CPI_NONE;
}
return true;
}
return false;
}
// ============================================================================
void Encoding_AddToComboboxEx(HWND hwnd, cpi_enc_t idSel, bool bRecodeOnly)
{
int iSelItem = -1;
WCHAR wchBuf[256] = { L'\0' };
PENCODINGENTRY const pEE = AllocMem(Encoding_CountOf() * sizeof(ENCODINGENTRY), HEAP_ZERO_MEMORY);
if (pEE) {
for (cpi_enc_t i = 0; i < Encoding_CountOf(); i++) {
pEE[i].id = i;
GetLngString(g_Encodings[i].idsName, pEE[i].wch, COUNTOF(pEE[i].wch));
}
NP3_SORT(pEE, Encoding_CountOf(), sizeof(ENCODINGENTRY), CmpEncoding);
COMBOBOXEXITEM cbei = { 0 };
cbei.mask = CBEIF_TEXT | CBEIF_IMAGE | CBEIF_SELECTEDIMAGE | CBEIF_LPARAM;
cbei.pszText = wchBuf;
cbei.cchTextMax = COUNTOF(wchBuf);
cbei.iImage = 0;
cbei.iSelectedImage = 0;
for (int i = 0; i < Encoding_CountOf(); i++) {
cpi_enc_t id = pEE[i].id;
if (!bRecodeOnly || (g_Encodings[id].uFlags & NCP_RECODE)) {
cbei.iItem = SendMessage(hwnd, CB_GETCOUNT, 0, 0);
WCHAR *pwsz = StrChr(pEE[i].wch, L';');
if (pwsz) {
StringCchCopyN(wchBuf, COUNTOF(wchBuf), CharNext(pwsz), COUNTOF(wchBuf));
pwsz = StrChr(wchBuf, L';');
if (pwsz) {
*pwsz = 0;
}
} else {
StringCchCopyN(wchBuf, COUNTOF(wchBuf), pEE[i].wch, COUNTOF(wchBuf));
}
if (Encoding_IsSystemANSI_CP(id)) {
StringCchCatN(wchBuf, COUNTOF(wchBuf), wchANSI, COUNTOF(wchANSI));
} else if (id == CPI_OEM) {
StringCchCatN(wchBuf, COUNTOF(wchBuf), wchOEM, COUNTOF(wchOEM));
}
cbei.iImage = (Encoding_IsValid(id) ? 0 : 1);
cbei.lParam = (LPARAM)id;
SendMessage(hwnd, CBEM_INSERTITEM, 0, (LPARAM)&cbei);
if (idSel == id) {
iSelItem = (int)cbei.iItem;
}
}
}
FreeMem(pEE);
}
if (iSelItem != -1) {
SendMessage(hwnd, CB_SETCURSEL, (WPARAM)iSelItem, 0);
}
}
// ============================================================================
bool Encoding_GetFromComboboxEx(HWND hwnd, cpi_enc_t* pidEncoding)
{
COMBOBOXEXITEM cbei = { 0 };
cbei.iItem = SendMessage(hwnd, CB_GETCURSEL, 0, 0);
cbei.mask = CBEIF_LPARAM;
if (SendMessage(hwnd, CBEM_GETITEM, 0, (LPARAM)&cbei)) {
if (Encoding_IsValid((cpi_enc_t)cbei.lParam)) {
*pidEncoding = (cpi_enc_t)cbei.lParam;
} else {
*pidEncoding = -1;
}
return true;
}
return false;
}
// ============================================================================
UINT Encoding_GetCodePage(const cpi_enc_t iEncoding)
{
return (iEncoding >= 0) ? g_Encodings[iEncoding].uCodePage : CP_ACP;
}
// ----------------------------------------------------------------------------
bool Encoding_IsDefault(const cpi_enc_t iEncoding)
{
return (iEncoding >= 0) ? ((g_Encodings[iEncoding].uFlags & NCP_DEFAULT) != 0) : (iEncoding == CPI_ASCII_7BIT);
}
// ----------------------------------------------------------------------------
bool Encoding_HasASCII7Bit(const cpi_enc_t iEncoding)
{
return (iEncoding >= 0) ? ((g_Encodings[iEncoding].uFlags & NCP_ASCII_7BIT) != 0) : (iEncoding == CPI_ASCII_7BIT);
}
// ----------------------------------------------------------------------------
bool Encoding_IsSystemANSI_CP(const cpi_enc_t iEncoding)
{
return (iEncoding >= 0) ? ((g_Encodings[iEncoding].uFlags & NCP_ANSI) != 0) : (iEncoding == CPI_ASCII_7BIT);
}
// ----------------------------------------------------------------------------
bool Encoding_IsSystemOEM(const cpi_enc_t iEncoding)
{
return (iEncoding >= 0) ? ((g_Encodings[iEncoding].uFlags & NCP_OEM) != 0) : (iEncoding == CPI_ASCII_7BIT);
}
// ----------------------------------------------------------------------------
bool Encoding_MaybeUTF8(const cpi_enc_t iEncoding)
{
return (iEncoding >= 0) ? ((g_Encodings[iEncoding].uFlags & NCP_UTF8) != 0) : (iEncoding == CPI_ASCII_7BIT);
}
// ----------------------------------------------------------------------------
bool Encoding_IsUTF8_SIGN(const cpi_enc_t iEncoding)
{
return (iEncoding >= 0) ? ((g_Encodings[iEncoding].uFlags & NCP_UTF8_SIGN) != 0) : false;
}
// ----------------------------------------------------------------------------
bool Encoding_MaybeUTF8_NO_SIGN(const cpi_enc_t iEncoding)
{
return (Encoding_MaybeUTF8(iEncoding) && !Encoding_IsUTF8_SIGN(iEncoding));
}
// ----------------------------------------------------------------------------
bool Encoding_IsMBCS(const cpi_enc_t iEncoding)
{
return (iEncoding >= 0) ? ((g_Encodings[iEncoding].uFlags & NCP_MBCS) != 0) : false;
}
// ----------------------------------------------------------------------------
bool Encoding_IsUNICODE(const cpi_enc_t iEncoding)
{
return (iEncoding >= 0) ? ((g_Encodings[iEncoding].uFlags & NCP_UNICODE) != 0) : false;
}
// ----------------------------------------------------------------------------
bool Encoding_IsUNICODE_BOM(const cpi_enc_t iEncoding)
{
return (iEncoding >= 0) ? ((g_Encodings[iEncoding].uFlags & NCP_UNICODE_BOM) != 0) : false;
}
// ----------------------------------------------------------------------------
bool Encoding_IsUNICODE_REVERSE(const cpi_enc_t iEncoding)
{
return (iEncoding >= 0) ? ((g_Encodings[iEncoding].uFlags & NCP_UNICODE_REVERSE) != 0) : false;
}
// ----------------------------------------------------------------------------
bool Encoding_IsINTERNAL(const cpi_enc_t iEncoding)
{
return (iEncoding >= 0) ? ((g_Encodings[iEncoding].uFlags & NCP_INTERNAL) != 0) : false;
}
// ----------------------------------------------------------------------------
bool Encoding_IsEXTERNAL_8BIT(const cpi_enc_t iEncoding)
{
return (iEncoding >= 0) ? ((g_Encodings[iEncoding].uFlags & NCP_EXTERNAL_8BIT) != 0) : false;
}
// ----------------------------------------------------------------------------
bool Encoding_IsRECODE(const cpi_enc_t iEncoding)
{
return (iEncoding >= 0) ? ((g_Encodings[iEncoding].uFlags & NCP_RECODE) != 0) : false;
}
// ----------------------------------------------------------------------------
bool Encoding_IsCJK(const cpi_enc_t iEncoding)
{
UINT const codePage = Encoding_GetCodePage(iEncoding);
switch (codePage) {
case 932:
case 936:
case 949:
case 950:
case 951:
case 1361:
case 10001:
case 10002:
case 10003:
case 10008:
case 20000:
case 20932:
case 20936:
case 50220:
case 50225:
case 51949:
case 52936:
case 54936:
return true;
default:
break;
}
return false;
}
// ============================================================================
// ============================================================================
void Encoding_SetDefaultFlag(const cpi_enc_t iEncoding)
{
if (iEncoding >= 0) {
g_Encodings[iEncoding].uFlags |= NCP_DEFAULT;
}
}
// ----------------------------------------------------------------------------
const WCHAR* Encoding_GetLabel(const cpi_enc_t iEncoding)
{
return (iEncoding >= 0) ? g_Encodings[iEncoding].wchLabel : NULL;
}
// ----------------------------------------------------------------------------
const char* Encoding_GetParseNames(const cpi_enc_t iEncoding)
{
return (iEncoding >= 0) ? g_Encodings[iEncoding].pszParseNames : NULL;
}
// ----------------------------------------------------------------------------
int Encoding_GetNameA(const cpi_enc_t iEncoding, char* buffer, size_t cch)
{
if (iEncoding >= 0) {
const char* p = Encoding_GetParseNames(iEncoding);
if (p && *p) {
++p;
const char* q = StrChrA(p, ',');
if (q && *q) {
StringCchCopyNA(buffer, cch, p, (q - p));
return (int)min_s((q - p), cch);
}
}
}
return 0;
}
// ----------------------------------------------------------------------------
int Encoding_GetNameW(const cpi_enc_t iEncoding, LPWSTR buffer, size_t cwch)
{
char tmpbuffer[256] = { '\0' };
Encoding_GetNameA(iEncoding, tmpbuffer, 256);
return (int)MultiByteToWideCharEx(Encoding_SciCP, 0, tmpbuffer, -1, buffer, cwch);
}
// ----------------------------------------------------------------------------
bool Has_UTF32_LE_BOM(const char* pBuf, size_t cnt)
{
// UTF-32 LE BOM: FF FE 00 00
return (pBuf && cnt >= 4 &&
(unsigned char)pBuf[0] == 0xFF && (unsigned char)pBuf[1] == 0xFE &&
(unsigned char)pBuf[2] == 0x00 && (unsigned char)pBuf[3] == 0x00);
}
// ----------------------------------------------------------------------------
bool Has_UTF32_BE_BOM(const char* pBuf, size_t cnt)
{
// UTF-32 BE BOM: 00 00 FE FF
return (pBuf && cnt >= 4 &&
(unsigned char)pBuf[0] == 0x00 && (unsigned char)pBuf[1] == 0x00 &&
(unsigned char)pBuf[2] == 0xFE && (unsigned char)pBuf[3] == 0xFF);
}
// ----------------------------------------------------------------------------
bool Has_UTF32_BOM(const char* pBuf, size_t cnt)
{
return (Has_UTF32_LE_BOM(pBuf, cnt) || Has_UTF32_BE_BOM(pBuf, cnt));
}
// ----------------------------------------------------------------------------
bool Has_UTF16_LE_BOM(const char* pBuf, size_t cnt)
{
if (Has_UTF32_LE_BOM(pBuf, cnt)) {
return false; // UTF-32 LE BOM starts with FF FE — must not match as UTF-16 LE
}
int iTest = IS_TEXT_UNICODE_SIGNATURE;
bool const ok = IsTextUnicode(pBuf, clampi((int)cnt, 0, 4), &iTest);
return (ok && ((iTest & IS_TEXT_UNICODE_SIGNATURE) != 0));
}
// ----------------------------------------------------------------------------
bool Has_UTF16_BE_BOM(const char* pBuf, size_t cnt)
{
int iTest = IS_TEXT_UNICODE_REVERSE_SIGNATURE;
bool const ok = IsTextUnicode(pBuf, clampi((int)cnt, 0, 4), &iTest);
return (ok && ((iTest & IS_TEXT_UNICODE_REVERSE_SIGNATURE) != 0));
}
// ----------------------------------------------------------------------------
bool Has_UTF16_BOM(const char* pBuf, size_t cnt)
{
return (Has_UTF16_LE_BOM(pBuf, cnt) || Has_UTF16_BE_BOM(pBuf, cnt));
}
// ----------------------------------------------------------------------------
// ============================================================================
// ============================================================================
#undef _OLD_UTF8_VALIDATOR_
//#define _OLD_UTF8_VALIDATOR_ 1
#ifdef _OLD_UTF8_VALIDATOR_
// ============================================================================
/* byte length of UTF-8 sequence based on value of first byte.
for UTF-16 (21-bit space), max. code length is 4, so we only need to look
at 4 upper bits.
*/
static const size_t utf8_lengths[16] = {
1,1,1,1,1,1,1,1, /* 0000 to 0111 : 1 byte (plain ASCII) */
0,0,0,0, /* 1000 to 1011 : not valid */
2,2, /* 1100, 1101 : 2 bytes */
3, /* 1110 : 3 bytes */
4 /* 1111 : 4 bytes */
};
// ----------------------------------------------------------------------------
/*++
Function :
UTF8_mbslen_bytes [INTERNAL]
Calculates the byte size of a NULL-terminated UTF-8 string.
Parameters :
char *utf8_string : string to examine
Return value :
size (in bytes) of a NULL-terminated UTF-8 string.
-1 if invalid NULL-terminated UTF-8 string
--*/
size_t UTF8_mbslen_bytes(LPCSTR utf8_string)
{
size_t length = 0;
size_t code_size;
BYTE byte;
while (*utf8_string) {
byte = (BYTE)*utf8_string;
if ((byte <= 0xF7) && (0 != (code_size = utf8_lengths[byte >> 4]))) {
length += code_size;
utf8_string += code_size;
} else {
/* we got an invalid byte value but need to count it,
it will be later ignored during the string conversion */
//WARN("invalid first byte value 0x%02X in UTF-8 sequence!\n",byte);
length++;
utf8_string++;
}
}
length++; /* include NULL terminator */
return length;
}
// ----------------------------------------------------------------------------
/*++
Function :
UTF8_mbslen [INTERNAL]
Calculates the character size of a NULL-terminated UTF-8 string.
Parameters :
char *utf8_string : string to examine
int byte_length : byte size of string
Return value :
size (in characters) of a UTF-8 string.
-1 if invalid UTF-8 string
--*/
size_t UTF8_mbslen(LPCSTR utf8_string, size_t byte_length)
{
size_t wchar_length = 0;
size_t code_size;
BYTE byte;
while (byte_length > 0) {
byte = (BYTE)*utf8_string;
/* UTF-16 can't encode 5-byte and 6-byte sequences, so maximum value
for first byte is 11110111. Use lookup table to determine sequence
length based on upper 4 bits of first byte */
if ((byte <= 0xF7) && (0 != (code_size = utf8_lengths[byte >> 4]))) {
/* 1 sequence == 1 character */
wchar_length++;
if (code_size == 4) {
wchar_length++;
}
utf8_string += code_size; /* increment pointer */
byte_length -= code_size; /* decrement counter*/
} else {
/*
unlike UTF8_mbslen_bytes, we ignore the invalid characters.
we only report the number of valid characters we have encountered
to match the Windows behavior.
*/
//WARN("invalid byte 0x%02X in UTF-8 sequence, skipping it!\n", byte);
utf8_string++;
byte_length--;
}
}
return wchar_length;
}
// ----------------------------------------------------------------------------
bool UTF8_ContainsInvalidChars(LPCSTR utf8_string, size_t byte_length)
{
return ((UTF8_mbslen_bytes(UTF8StringStart(utf8_string)) - 1) !=
UTF8_mbslen(UTF8StringStart(utf8_string), IsUTF8Signature(utf8_string) ? (byte_length - 3) : byte_length));
}
// ----------------------------------------------------------------------------
bool IsValidUTF8(const char* pTest, size_t nLength, bool* pbIsASCII, bool* pbHasNullBytes)
{
static int byte_class_table[256] = {
/* 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F */
/* 00 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* 10 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* 20 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* 30 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* 40 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* 50 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* 60 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* 70 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* 80 */ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
/* 90 */ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
/* A0 */ 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
/* B0 */ 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
/* C0 */ 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
/* D0 */ 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
/* E0 */ 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 7, 7,
/* F0 */ 9,10,10,10,11, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4
/* 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F */
};
/* state table */
typedef enum {
kSTART = 0, kA, kB, kC, kD, kE, kF, kG, kERROR, kNumOfStates
} utf8_state;
static utf8_state state_table[] = {
/* kSTART, kA, kB, kC, kD, kE, kF, kG, kERROR */
/* 0x00-0x7F: 0 */ kSTART, kERROR, kERROR, kERROR, kERROR, kERROR, kERROR, kERROR, kERROR,
/* 0x80-0x8F: 1 */ kERROR, kSTART, kA, kERROR, kA, kB, kERROR, kB, kERROR,
/* 0x90-0x9f: 2 */ kERROR, kSTART, kA, kERROR, kA, kB, kB, kERROR, kERROR,
/* 0xa0-0xbf: 3 */ kERROR, kSTART, kA, kA, kERROR, kB, kB, kERROR, kERROR,
/* 0xc0-0xc1, 0xf5-0xff: 4 */ kERROR, kERROR, kERROR, kERROR, kERROR, kERROR, kERROR, kERROR, kERROR,
/* 0xc2-0xdf: 5 */ kA, kERROR, kERROR, kERROR, kERROR, kERROR, kERROR, kERROR, kERROR,
/* 0xe0: 6 */ kC, kERROR, kERROR, kERROR, kERROR, kERROR, kERROR, kERROR, kERROR,
/* 0xe1-0xec, 0xee-0xef: 7 */ kB, kERROR, kERROR, kERROR, kERROR, kERROR, kERROR, kERROR, kERROR,
/* 0xed: 8 */ kD, kERROR, kERROR, kERROR, kERROR, kERROR, kERROR, kERROR, kERROR,
/* 0xf0: 9 */ kF, kERROR, kERROR, kERROR, kERROR, kERROR, kERROR, kERROR, kERROR,
/* 0xf1-0xf3: 10 */ kE, kERROR, kERROR, kERROR, kERROR, kERROR, kERROR, kERROR, kERROR,
/* 0xf4: 11 */ kG, kERROR, kERROR, kERROR, kERROR, kERROR, kERROR, kERROR, kERROR
};
#define BYTE_CLASS(b) (byte_class_table[(unsigned char)b])
#define NEXT_STATE(b,cur) (state_table[(BYTE_CLASS(b) * kNumOfStates) + (cur)])
utf8_state current = kSTART;
bool bIsASCII = true;
bool bFoundNull = false;
const char* pt = pTest;
size_t len = nLength;
for (size_t i = 0; i < len; i++, pt++) {
if (*pt == '\0') {
bFoundNull = true;
break; // null bytes indicate non-text (binary/UTF-16)
}
if (*pt & 0x80) { bIsASCII = false; }
current = NEXT_STATE(*pt, current);
if (kERROR == current) {
break;
}
}
if (bFoundNull) {
if (pbIsASCII) { *pbIsASCII = false; }
if (pbHasNullBytes) { *pbHasNullBytes = true; }
return false;
}
bool const bValid = (current == kSTART) && !UTF8_ContainsInvalidChars(pTest, nLength);
if (pbIsASCII) { *pbIsASCII = bValid ? bIsASCII : false; }
if (pbHasNullBytes) { *pbHasNullBytes = false; }
return bValid;
}
// ============================================================================
#else // new UTF-8 validator
// ============================================================================
// Copyright (c) 2008-2010 Bjoern Hoehrmann <bjoern@hoehrmann.de>
// See http://bjoern.hoehrmann.de/utf-8/decoder/dfa/ for details.
bool IsValidUTF8(const char* pTest, size_t nLength, bool* pbIsASCII, bool* pbHasNullBytes)
{
enum {
UTF8_ACCEPT = 0,
UTF8_REJECT = 12
};
static const unsigned char utf8_dfa[] = {
// The first part of the table maps bytes to character classes that
// to reduce the size of the transition table and create bitmasks.
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
8,8,2,2,2,2,2,2,2,2,2,2,2,2,2,2, 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,
10,3,3,3,3,3,3,3,3,3,3,3,3,4,3,3, 11,6,6,6,5,8,8,8,8,8,8,8,8,8,8,8,
// The second part is a transition table that maps a combination
// of a state of the automaton and a character class to a state.
0,12,24,36,60,96,84,12,12,12,48,72, 12,12,12,12,12,12,12,12,12,12,12,12,
12, 0,12,12,12,12,12, 0,12, 0,12,12, 12,24,12,12,12,12,12,24,12,24,12,12,
12,12,12,12,12,12,12,24,12,12,12,12, 12,24,12,12,12,12,12,12,12,24,12,12,
12,12,12,12,12,12,12,36,12,36,12,12, 12,36,12,12,12,12,12,36,12,36,12,12,
12,36,12,12,12,12,12,12,12,12,12,12,
};
const unsigned char *pt = (const unsigned char *)pTest;
const unsigned char *end = pt + nLength;
UINT state = UTF8_ACCEPT;
bool bIsASCII = true;
// Null bytes (0x00) are rejected as non-text — real UTF-8 text files never contain them.
while (pt < end) {
if (*pt == '\0') {
if (pbIsASCII) { *pbIsASCII = false; }
if (pbHasNullBytes) { *pbHasNullBytes = true; }
return false; // null bytes indicate non-text (binary/UTF-16)
}
if (*pt & 0x80) { bIsASCII = false; } // multi-byte UTF-8 sequence
state = utf8_dfa[256 + state + utf8_dfa[*pt++]];
if (state == UTF8_REJECT) {
if (pbIsASCII) { *pbIsASCII = false; }
if (pbHasNullBytes) { *pbHasNullBytes = false; }
return false;
}
}
if (pbIsASCII) { *pbIsASCII = bIsASCII; }
if (pbHasNullBytes) { *pbHasNullBytes = false; }
return (state == UTF8_ACCEPT);
}
// ----------------------------------------------------------------------------
#endif
// ============================================================================
// ----------------------------------------------------------------------------
// https://stackoverflow.com/questions/342409/how-do-i-base64-encode-decode-in-c
// ----------------------------------------------------------------------------
/**
* Base64 encoding/decoding (RFC1341)
* Copyright (c) 2005, Jouni Malinen <j@w1.fi>
*
* This software may be distributed under the terms of the BSD license.
* base64_encode - Base64 encode
* @src: Data to be encoded
* @len: Length of the data to be encoded
* @out_len: Pointer to output length variable, or %NULL if not used
* Returns: Allocated buffer of out_len bytes of encoded data,
* or %NULL on failure
*
* Caller is responsible for freeing the returned buffer. Returned buffer is
* nul terminated to make it easier to use as a C string. The nul terminator is
* not included in out_len.
*/
static const unsigned char _Base64Table[65] =
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
unsigned char * Encoding_Base64Encode(const unsigned char *src, size_t len, size_t *out_len) {
unsigned char *out, *pos;
const unsigned char *end, *in;
size_t olen;
olen = len * 4 / 3 + 4; /* 3-byte blocks to 4-byte */
olen++; /* nul termination */
if (olen < len) {
return NULL; /* integer overflow */
}
out = AllocMem(olen, HEAP_ZERO_MEMORY);
if (!out) {
return NULL;
}
end = src + len;
in = src;
pos = out;
while (end - in >= 3) {
*pos++ = _Base64Table[in[0] >> 2];
*pos++ = _Base64Table[((in[0] & 0x03) << 4) | (in[1] >> 4)];
*pos++ = _Base64Table[((in[1] & 0x0F) << 2) | (in[2] >> 6)];
*pos++ = _Base64Table[in[2] & 0x3F];
in += 3;
}
if (end - in) {
*pos++ = _Base64Table[in[0] >> 2];
if (end - in == 1) {
*pos++ = _Base64Table[(in[0] & 0x03) << 4];
*pos++ = '=';
} else {
*pos++ = _Base64Table[((in[0] & 0x03) << 4) | (in[1] >> 4)];
*pos++ = _Base64Table[(in[1] & 0x0F) << 2];
}
*pos++ = '=';
}
*pos = '\0';
if (out_len) {
*out_len = pos - out;
}
return out;
}
// ----------------------------------------------------------------------------
// https://stackoverflow.com/questions/180947/base64-decode-snippet-in-c/13935718
// ----------------------------------------------------------------------------
// Decoder by Polfosol
// ----------------------------------------------------------------------------
static const unsigned char _Base64Index[256] = {
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 62, 63, 62, 62, 63,
52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 0, 0, 0, 0, 0, 0,
0, 0, 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, 0, 0, 0, 0, 63,
0, 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 };
unsigned char * Encoding_Base64Decode(const unsigned char *src, const size_t len, size_t *out_len) {
const unsigned char *p = src;
int const pad = len > 0 && (len % 4 || p[len - 1] == '=');
size_t const L = ((len + 3) / 4 - pad) * 4;
size_t const olen = L / 4 * 3 + pad;
unsigned char * out = AllocMem(olen, HEAP_ZERO_MEMORY);
if (!out) {
return NULL;
}
size_t j = 0;
for (size_t i = 0; i < L; i += 4) {
unsigned const n = _Base64Index[p[i]] << 18 |
_Base64Index[p[i + 1]] << 12 |
_Base64Index[p[i + 2]] << 6 |
_Base64Index[p[i + 3]];
out[j++] = (unsigned char)(n >> 16);
out[j++] = (unsigned char)(n >> 8 & 0xFF);
out[j++] = (unsigned char)(n & 0xFF);
}
if (pad) {
unsigned n = _Base64Index[p[L]] << 18 | _Base64Index[p[L + 1]] << 12;
out[j++] = (unsigned char)(n >> 16);
if (len > L + 2 && p[L + 2] != '=') {
n |= _Base64Index[p[L + 2]] << 6;
out[j++] = (unsigned char)(n >> 8 & 0xFF);
}
}
if (out_len) {
*out_len = j;
}
return out;
}
// ============================================================================