Rewrote the comments in the libraries under 'includes' in English (excluding those inside folders)

This commit is contained in:
2026-07-29 23:34:36 +08:00
parent 3633be1995
commit a2cc28a6ab
54 changed files with 7091 additions and 899 deletions

View File

@@ -2,9 +2,9 @@ import t, c
# ==============================================
# Base64 编解码 纯裸实现
# Base64 Encoder & Decoder, pure bare-metal implementation
# ==============================================
# Base64 编码对照表
# Base64 encoding lookup table
b64_tab: t.CArray[t.CChar, None] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"
# Base64 反向解码表,映射字符到索引值
@@ -16,63 +16,65 @@ b64_dec_tab: t.CArray[t.CInt8T, 80] = [
36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51
]
# * @brief Base64 编码
# * @param in: 输入二进制数据
# * @param in_len: 输入长度
# * @param out: 输出Base64字符串缓冲区
# * @retval 编码后字符串长度
# * @brief Base64 encoding
# * @param s: Input binary data
# * @param out: Output buffer for Base64 string
# * @retval Length of encoded string
def b64encode(s: str, out: str) -> t.CSizeT:
_s = t.CUInt8T(s, t.CPtr)
length: t.CSizeT = len(s)
i: t.CSizeT = 0
j: t.CSizeT = 0
val: t.CUInt32T = 0
# 每3字节一组转4字节Base64
# Process input in groups of 3 bytes, produce 4 Base64 characters
for i in range(0, length, 3):
# 拼接24bit分组
# Assemble 24-bit chunk
val = ((t.CUInt32T(_s[i + 0]) << 16 ) |
(t.CUInt32T(_s[i + 1]) << 8 if (i + 1 < length) else 0) |
(t.CUInt32T(_s[i + 2]) << 0 if (i + 2 < length) else 0))
# 拆分4个6bit 查表
# Split into four 6-bit values for table lookup
out[j + 0] = b64_tab[(val >> 18) & 0x3F]
out[j + 1] = b64_tab[(val >> 12) & 0x3F]
out[j + 2] = b64_tab[(val >> 6) & 0x3F] if (i + 1 < length) else '='
out[j + 3] = b64_tab[(val >> 0) & 0x3F] if (i + 2 < length) else '='
j += 4
out[j] = '\0' # 字符串结尾
out[j] = '\0' # Null terminator for C-style string
return j
# * @brief Base64 解码
# * @param in: Base64字符串
# * @param out: 输出二进制缓冲区
# * @retval 解码后二进制长度
# * @brief Base64 decoding
# * @param s: Base64 encoded string
# * @param out: Output binary buffer
# * @retval Length of decoded binary data
def b64decode(s: str, out: t.CUInt8T | t.CPtr) -> t.CSizeT:
length: t.CSizeT = len(s)
i: t.CSizeT = 0
j: t.CSizeT = 0
val: t.CUInt32T = 0
c: t.CInt
# 每4个Base64字符还原3字节
# Restore 3 bytes from every 4 Base64 characters
for i in range(0, length, 4):
if s[i] == '=': break
if s[i] == '=':
break
val = 0
# 逐个解析6bit
# Parse 6-bit values sequentially
c = s[i] - 43
val |= (b64_dec_tab[c] & 0x3F) << 18
c = s[i+1] - 43
val |= (b64_dec_tab[c] & 0x3F) << 12
c = s[i+2] - 43
if s[i+2] != '=': val |= (b64_dec_tab[c] & 0x3F) << 6
if s[i+2] != '=':
val |= (b64_dec_tab[c] & 0x3F) << 6
c = s[i+3] - 43
if s[i+3] != '=': val |= (b64_dec_tab[c] & 0x3F)
# 还原3字节
if s[i+3] != '=':
val |= (b64_dec_tab[c] & 0x3F)
# Write recovered bytes
out[j] = (val >> 16) & 0xFF
j += 1
if s[i+2] != '=':
if s[i+2] != '=':
out[j] = (val >> 8) & 0xFF
j += 1
if s[i+3] != '=':
if s[i+3] != '=':
out[j] = val & 0xFF
j += 1
return j