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
|
#
# buffer_c.py
#
# Copyright (C) 2017-2022 Franco Masotti (see /README.md)
#
# This file is part of md-toc.
#
# md-toc is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# md-toc is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with md-toc. If not, see <http://www.gnu.org/licenses/>.
#
r"""A cmark implementation file."""
import sys
from ..constants import parser as md_parser
from .buffer_h import _cmark_CMARK_BUF_INIT, _cmarkCmarkStrbuf
from .cmark_ctype_c import _cmark_cmark_ispunct, _cmark_cmark_isspace
from .cmark_h import _cmarkCmarkMem
# License E applies to this file except for non derivative code:
# in that case the license header at the top of the file applies.
# See docs/copyright_license.rst
cmark_strbuf__initbuf: str = ''
# 0.30
def _cmark_cmark_strbuf_len(buf: _cmarkCmarkStrbuf) -> int:
return buf.size
# 0.30
def _cmark_strbuf_free(buf: _cmarkCmarkStrbuf):
if not buf:
return
if buf.ptr != cmark_strbuf__initbuf:
# buf.mem.free(buf.ptr)
del buf.ptr
_cmark_cmark_strbuf_init(buf.mem, buf, 0)
# 0.29, 0.30
def _cmark_cmark_strbuf_init(mem: _cmarkCmarkMem, buf: _cmarkCmarkStrbuf,
initial_size: int):
buf.mem = mem
buf.asize = 0
buf.size = 0
buf.ptr = ''
if initial_size > 0:
_cmark_cmark_strbuf_grow(buf, initial_size)
# 0.30
def _cmark_S_strbuf_grow_by(buf: _cmarkCmarkStrbuf, add: int):
_cmark_cmark_strbuf_grow(buf, buf.size + add)
# 0.29, 0.30
def _cmark_cmark_strbuf_grow(buf: _cmarkCmarkStrbuf, target_size: int):
# Instead of using assert just raise a ValueError
if target_size <= 0:
raise ValueError
if target_size < buf.asize:
return
# Usually it is this value and it is defined in stdint.h.
INT32_MAX = (2 << 30) - 1
# Truncate number to a length of 30 bits.
target_size &= INT32_MAX
if target_size > int(INT32_MAX / 2):
print('[cmark] _cmark_cmark_strbuf_grow requests buffer with size > ' +
str(INT32_MAX / 2) + ', aborting')
sys.exit(1)
# Oversize the buffer by 50% to guarantee amortized linear time
# complexity on append operations.
# See also
# https://codeyarns.com/tech/2019-03-06-integer-division-in-c.html
# for the integer division.
new_size: int = target_size + int(target_size / 2)
new_size += 1
new_size = (new_size + 7) & ~7
# No need to malloc.
# if buf.asize:
# buf->ptr = buf->mem->realloc(buf->ptr, new_size);
# else:
# buf->ptr = buf->mem->malloc(newsize)
buf.asize = new_size
# 0.29, 0.30
def _cmark_cmark_strbuf_clear(buf: _cmarkCmarkStrbuf):
buf.size = 0
if buf.asize > 0:
del buf.ptr
buf.ptr = ''
# 0.29, 0.30
def _cmark_cmark_strbuf_set(buf: _cmarkCmarkStrbuf, data: str, length: int):
if length <= 0 or data is None:
_cmark_cmark_strbuf_clear(buf)
else:
if data != buf.ptr:
if length >= buf.asize:
_cmark_cmark_strbuf_grow(buf, length)
# alternative to
# memmove(buf->ptr, data, len)
buf.ptr = ''.join([data[:length], buf.ptr[length:]])
buf.size = length
# No need to set termination character
# buf.ptr[buf.size] = '\0'
# 0.30
# Add a single character to a buffer.
def _cmark_cmark_strbuf_putc(buf: _cmarkCmarkStrbuf, c: int):
_cmark_S_strbuf_grow_by(buf, 1)
# buf->ptr[buf->size++] = (unsigned char)(c & 0xFF);
buf.ptr = ''.join([buf.ptr, chr(c & 0xFF)])
buf.size += 1
# No need for the terminator character.
# buf->ptr[buf->size] = '\0';
# 0.30
def _cmark_cmark_strbuf_put(
buf: _cmarkCmarkStrbuf,
data: str,
length: int,
):
dt: str
if length <= 0:
return
_cmark_S_strbuf_grow_by(buf, length)
# Alternative to
# memmove(buf->ptr + buf->size, data, len)
if isinstance(data, list):
# See
# https://stackoverflow.com/a/5661889
dt = bytearray(data).decode('UTF-8')
else:
dt = data
# buf.ptr =
# buf.ptr[0] -> buf.ptr[buf.size - 1]
# +
# dt[0] -> dt[length - 1]
# +
# buf.ptr[buf.size + 1 + length] -> buf.ptr[-1]
buf.ptr = ''.join(
[buf.ptr[:buf.size], dt[:length], buf.ptr[buf.size + 1 + length:]])
buf.size += length
# No need for line terminator.
# buf.ptr[buf.size] = '\0';
# 0.30
def _cmark_cmark_strbuf_puts(buf: _cmarkCmarkStrbuf, string: str):
_cmark_cmark_strbuf_put(buf, string, len(string))
# 0.29, 0.30
def _cmark_cmark_strbuf_detach(buf: _cmarkCmarkStrbuf) -> str:
data: str = buf.ptr
if buf.asize == 0:
# return an empty string
# return (unsigned char *)buf->mem->calloc(1, 1);
return ''
_cmark_cmark_strbuf_init(buf.mem, buf, 0)
return data
# 0.30
def _cmark_cmark_strbuf_strchr(buf: _cmarkCmarkStrbuf, c: int,
pos: int) -> int:
if pos >= buf.size:
return -1
if pos < 0:
pos = 0
# `p` is the memory address (so absolute) where the character `c` lies.
# Here we use relative indices.
# const unsigned char *p =
# (unsigned char *)memchr(buf.ptr + pos, c, buf.size - pos);
p: int = buf.ptr[pos:buf.size - pos + 1].find(chr(c))
# `find` returns -1 if nothing is found
if p == -1:
return -1
# Pointer arithmetics: return the index of the buf->ptr string where
# the character `c` lies.
# Add the offset (`pos`) to start counting from the start of the string.
# return (bufsize_t)(p - (const unsigned char *)buf->ptr);
return p + pos
# 0.29, 0.30
def _cmark_cmark_strbuf_truncate(buf: _cmarkCmarkStrbuf, length: int):
if length < 0:
length = 0
if length < buf.size:
buf.size = length
# No need for the terminator character.
# buf.ptr[buf.size] = '\0'
# 0.29, 0.30
def _cmark_cmark_strbuf_drop(buf: _cmarkCmarkStrbuf, n: int):
if n > 0:
if n > buf.size:
n = buf.size
buf.size = buf.size - n
if buf.size:
# Alternative to
# memmove(buf->ptr, buf->ptr + n, buf->size);
buf.ptr = ''.join(
[buf.ptr[:n], buf.ptr[n:buf.size + n], buf.ptr[n + buf.size:]])
# No need for the terminator character.
# buf->ptr[buf->size] = '\0';
def _cmark_cmark_strbuf_rtrim(buf: _cmarkCmarkStrbuf):
if not buf.size:
return
while buf.size > 0:
if not _cmark_cmark_isspace(ord(buf.ptr[buf.size - 1])):
break
buf.size -= 1
# buf->ptr[buf->size] = '\0';
# 0.30
def _cmark_cmark_strbuf_trim(buf: _cmarkCmarkStrbuf):
i: int = 0
if not buf.size:
return
while i < buf.size and _cmark_cmark_isspace(ord(buf.ptr[i])):
i += 1
_cmark_cmark_strbuf_drop(buf, i)
_cmark_cmark_strbuf_rtrim(buf)
# Destructively modify string, collapsing consecutive
# space and newline characters into a single space.
# 0.30
def _cmark_cmark_strbuf_normalize_whitespace(s: _cmarkCmarkStrbuf):
last_char_was_space: bool = False
r: int = 0
w: int = 0
for r in range(0, s.size):
if _cmark_cmark_isspace(ord(s.ptr[r])):
if not last_char_was_space:
s.ptr = s.ptr[0:w - 1] + ' ' + s.ptr[w + 1:]
w += 1
last_char_was_space = True
else:
s.ptr = s.ptr[0:w - 1] + s.ptr[r] + s.ptr[w + 1:]
w += 1
last_char_was_space = False
_cmark_cmark_strbuf_truncate(s, w)
# 0.30
# Destructively unescape a string: remove backslashes before punctuation chars.
def _cmark_cmark_strbuf_unescape(buf: _cmarkCmarkStrbuf):
r: int = 0
w: int = 0
# In Python 3 all characters have length 1.
# In C they might be from 1 to 4.
# See the UTF-8 page on Wikipedia
# For example:
#
# len(bytes('㤀', 'utf-8')) == 3
# bptr = ['foo%20', '㤀', '']
# sum([len(bptr[i]) for i in range(0, len(bptr))])
# buf.size == 10
#
# So instead of
#
# while r < buf.size
#
# we have to put
#
# while r < min(buf.size, len(buf.ptr))
#
# or simply
#
# while r < len(buf.ptr)
#
while r < len(buf.ptr):
if buf.ptr[r] == '\\' and _cmark_cmark_ispunct(ord(buf.ptr[r + 1])):
r += 1
# buf->ptr[w+] = buf->ptr[r];
buf.ptr = ''.join([buf.ptr[:w], buf.ptr[r], buf.ptr[w + 1:]])
w += 1
# ++r
r += 1
_cmark_cmark_strbuf_truncate(buf, w)
if __name__ == '__main__':
pass
|