A Python parser for MediaWiki wikicode https://mwparserfromhell.readthedocs.io/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

960 lines
36 KiB

  1. # -*- coding: utf-8 -*-
  2. #
  3. # Copyright (C) 2012-2013 Ben Kurtovic <ben.kurtovic@verizon.net>
  4. #
  5. # Permission is hereby granted, free of charge, to any person obtaining a copy
  6. # of this software and associated documentation files (the "Software"), to deal
  7. # in the Software without restriction, including without limitation the rights
  8. # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  9. # copies of the Software, and to permit persons to whom the Software is
  10. # furnished to do so, subject to the following conditions:
  11. #
  12. # The above copyright notice and this permission notice shall be included in
  13. # all copies or substantial portions of the Software.
  14. #
  15. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  16. # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  17. # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  18. # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  19. # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  20. # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  21. # SOFTWARE.
  22. from __future__ import unicode_literals
  23. from math import log
  24. import re
  25. from . import contexts, tokens
  26. from ..compat import htmlentities
  27. from ..tag_defs import get_html_tag, is_parsable, is_single, is_single_only
  28. __all__ = ["Tokenizer"]
  29. class BadRoute(Exception):
  30. """Raised internally when the current tokenization route is invalid."""
  31. def __init__(self, context=0):
  32. self.context = context
  33. class _TagOpenData(object):
  34. """Stores data about an HTML open tag, like ``<ref name="foo">``."""
  35. CX_NAME = 1 << 0
  36. CX_ATTR_READY = 1 << 1
  37. CX_ATTR_NAME = 1 << 2
  38. CX_ATTR_VALUE = 1 << 3
  39. CX_QUOTED = 1 << 4
  40. CX_NOTE_SPACE = 1 << 5
  41. CX_NOTE_EQUALS = 1 << 6
  42. CX_NOTE_QUOTE = 1 << 7
  43. def __init__(self):
  44. self.context = self.CX_NAME
  45. self.padding_buffer = {"first": "", "before_eq": "", "after_eq": ""}
  46. self.reset = 0
  47. class Tokenizer(object):
  48. """Creates a list of tokens from a string of wikicode."""
  49. USES_C = False
  50. START = object()
  51. END = object()
  52. MARKERS = ["{", "}", "[", "]", "<", ">", "|", "=", "&", "'", "#", "*", ";",
  53. ":", "/", "-", "\n", END]
  54. MAX_DEPTH = 40
  55. MAX_CYCLES = 100000
  56. regex = re.compile(r"([{}\[\]<>|=&'#*;:/\\\"\-!\n])", flags=re.IGNORECASE)
  57. tag_splitter = re.compile(r"([\s\"\\]+)")
  58. def __init__(self):
  59. self._text = None
  60. self._head = 0
  61. self._stacks = []
  62. self._global = 0
  63. self._depth = 0
  64. self._cycles = 0
  65. @property
  66. def _stack(self):
  67. """The current token stack."""
  68. return self._stacks[-1][0]
  69. @property
  70. def _context(self):
  71. """The current token context."""
  72. return self._stacks[-1][1]
  73. @_context.setter
  74. def _context(self, value):
  75. self._stacks[-1][1] = value
  76. @property
  77. def _textbuffer(self):
  78. """The current textbuffer."""
  79. return self._stacks[-1][2]
  80. @_textbuffer.setter
  81. def _textbuffer(self, value):
  82. self._stacks[-1][2] = value
  83. def _push(self, context=0):
  84. """Add a new token stack, context, and textbuffer to the list."""
  85. self._stacks.append([[], context, []])
  86. self._depth += 1
  87. self._cycles += 1
  88. def _push_textbuffer(self):
  89. """Push the textbuffer onto the stack as a Text node and clear it."""
  90. if self._textbuffer:
  91. self._stack.append(tokens.Text(text="".join(self._textbuffer)))
  92. self._textbuffer = []
  93. def _pop(self, keep_context=False):
  94. """Pop the current stack/context/textbuffer, returing the stack.
  95. If *keep_context* is ``True``, then we will replace the underlying
  96. stack's context with the current stack's.
  97. """
  98. self._push_textbuffer()
  99. self._depth -= 1
  100. if keep_context:
  101. context = self._context
  102. stack = self._stacks.pop()[0]
  103. self._context = context
  104. return stack
  105. return self._stacks.pop()[0]
  106. def _can_recurse(self):
  107. """Return whether or not our max recursion depth has been exceeded."""
  108. return self._depth < self.MAX_DEPTH and self._cycles < self.MAX_CYCLES
  109. def _fail_route(self):
  110. """Fail the current tokenization route.
  111. Discards the current stack/context/textbuffer and raises
  112. :py:exc:`~.BadRoute`.
  113. """
  114. context = self._context
  115. self._pop()
  116. raise BadRoute(context)
  117. def _emit(self, token):
  118. """Write a token to the end of the current token stack."""
  119. self._push_textbuffer()
  120. self._stack.append(token)
  121. def _emit_first(self, token):
  122. """Write a token to the beginning of the current token stack."""
  123. self._push_textbuffer()
  124. self._stack.insert(0, token)
  125. def _emit_text(self, text):
  126. """Write text to the current textbuffer."""
  127. self._textbuffer.append(text)
  128. def _emit_all(self, tokenlist):
  129. """Write a series of tokens to the current stack at once."""
  130. if tokenlist and isinstance(tokenlist[0], tokens.Text):
  131. self._emit_text(tokenlist.pop(0).text)
  132. self._push_textbuffer()
  133. self._stack.extend(tokenlist)
  134. def _emit_text_then_stack(self, text):
  135. """Pop the current stack, write *text*, and then write the stack."""
  136. stack = self._pop()
  137. self._emit_text(text)
  138. if stack:
  139. self._emit_all(stack)
  140. self._head -= 1
  141. def _read(self, delta=0, wrap=False, strict=False):
  142. """Read the value at a relative point in the wikicode.
  143. The value is read from :py:attr:`self._head <_head>` plus the value of
  144. *delta* (which can be negative). If *wrap* is ``False``, we will not
  145. allow attempts to read from the end of the string if ``self._head +
  146. delta`` is negative. If *strict* is ``True``, the route will be failed
  147. (with :py:meth:`_fail_route`) if we try to read from past the end of
  148. the string; otherwise, :py:attr:`self.END <END>` is returned. If we try
  149. to read from before the start of the string, :py:attr:`self.START
  150. <START>` is returned.
  151. """
  152. index = self._head + delta
  153. if index < 0 and (not wrap or abs(index) > len(self._text)):
  154. return self.START
  155. try:
  156. return self._text[index]
  157. except IndexError:
  158. if strict:
  159. self._fail_route()
  160. return self.END
  161. def _parse_template(self):
  162. """Parse a template at the head of the wikicode string."""
  163. reset = self._head
  164. try:
  165. template = self._parse(contexts.TEMPLATE_NAME)
  166. except BadRoute:
  167. self._head = reset
  168. raise
  169. self._emit_first(tokens.TemplateOpen())
  170. self._emit_all(template)
  171. self._emit(tokens.TemplateClose())
  172. def _parse_argument(self):
  173. """Parse an argument at the head of the wikicode string."""
  174. reset = self._head
  175. try:
  176. argument = self._parse(contexts.ARGUMENT_NAME)
  177. except BadRoute:
  178. self._head = reset
  179. raise
  180. self._emit_first(tokens.ArgumentOpen())
  181. self._emit_all(argument)
  182. self._emit(tokens.ArgumentClose())
  183. def _parse_template_or_argument(self):
  184. """Parse a template or argument at the head of the wikicode string."""
  185. self._head += 2
  186. braces = 2
  187. while self._read() == "{":
  188. self._head += 1
  189. braces += 1
  190. self._push()
  191. while braces:
  192. if braces == 1:
  193. return self._emit_text_then_stack("{")
  194. if braces == 2:
  195. try:
  196. self._parse_template()
  197. except BadRoute:
  198. return self._emit_text_then_stack("{{")
  199. break
  200. try:
  201. self._parse_argument()
  202. braces -= 3
  203. except BadRoute:
  204. try:
  205. self._parse_template()
  206. braces -= 2
  207. except BadRoute:
  208. return self._emit_text_then_stack("{" * braces)
  209. if braces:
  210. self._head += 1
  211. self._emit_all(self._pop())
  212. if self._context & contexts.FAIL_NEXT:
  213. self._context ^= contexts.FAIL_NEXT
  214. def _handle_template_param(self):
  215. """Handle a template parameter at the head of the string."""
  216. if self._context & contexts.TEMPLATE_NAME:
  217. self._context ^= contexts.TEMPLATE_NAME
  218. elif self._context & contexts.TEMPLATE_PARAM_VALUE:
  219. self._context ^= contexts.TEMPLATE_PARAM_VALUE
  220. elif self._context & contexts.TEMPLATE_PARAM_KEY:
  221. self._emit_all(self._pop(keep_context=True))
  222. self._context |= contexts.TEMPLATE_PARAM_KEY
  223. self._emit(tokens.TemplateParamSeparator())
  224. self._push(self._context)
  225. def _handle_template_param_value(self):
  226. """Handle a template parameter's value at the head of the string."""
  227. self._emit_all(self._pop(keep_context=True))
  228. self._context ^= contexts.TEMPLATE_PARAM_KEY
  229. self._context |= contexts.TEMPLATE_PARAM_VALUE
  230. self._emit(tokens.TemplateParamEquals())
  231. def _handle_template_end(self):
  232. """Handle the end of a template at the head of the string."""
  233. if self._context & contexts.TEMPLATE_PARAM_KEY:
  234. self._emit_all(self._pop(keep_context=True))
  235. self._head += 1
  236. return self._pop()
  237. def _handle_argument_separator(self):
  238. """Handle the separator between an argument's name and default."""
  239. self._context ^= contexts.ARGUMENT_NAME
  240. self._context |= contexts.ARGUMENT_DEFAULT
  241. self._emit(tokens.ArgumentSeparator())
  242. def _handle_argument_end(self):
  243. """Handle the end of an argument at the head of the string."""
  244. self._head += 2
  245. return self._pop()
  246. def _parse_wikilink(self):
  247. """Parse an internal wikilink at the head of the wikicode string."""
  248. self._head += 2
  249. reset = self._head - 1
  250. try:
  251. wikilink = self._parse(contexts.WIKILINK_TITLE)
  252. except BadRoute:
  253. self._head = reset
  254. self._emit_text("[[")
  255. else:
  256. if self._context & contexts.FAIL_NEXT:
  257. self._context ^= contexts.FAIL_NEXT
  258. self._emit(tokens.WikilinkOpen())
  259. self._emit_all(wikilink)
  260. self._emit(tokens.WikilinkClose())
  261. def _handle_wikilink_separator(self):
  262. """Handle the separator between a wikilink's title and its text."""
  263. self._context ^= contexts.WIKILINK_TITLE
  264. self._context |= contexts.WIKILINK_TEXT
  265. self._emit(tokens.WikilinkSeparator())
  266. def _handle_wikilink_end(self):
  267. """Handle the end of a wikilink at the head of the string."""
  268. self._head += 1
  269. return self._pop()
  270. def _parse_heading(self):
  271. """Parse a section heading at the head of the wikicode string."""
  272. self._global |= contexts.GL_HEADING
  273. reset = self._head
  274. self._head += 1
  275. best = 1
  276. while self._read() == "=":
  277. best += 1
  278. self._head += 1
  279. context = contexts.HEADING_LEVEL_1 << min(best - 1, 5)
  280. try:
  281. title, level = self._parse(context)
  282. except BadRoute:
  283. self._head = reset + best - 1
  284. self._emit_text("=" * best)
  285. else:
  286. self._emit(tokens.HeadingStart(level=level))
  287. if level < best:
  288. self._emit_text("=" * (best - level))
  289. self._emit_all(title)
  290. self._emit(tokens.HeadingEnd())
  291. finally:
  292. self._global ^= contexts.GL_HEADING
  293. def _handle_heading_end(self):
  294. """Handle the end of a section heading at the head of the string."""
  295. reset = self._head
  296. self._head += 1
  297. best = 1
  298. while self._read() == "=":
  299. best += 1
  300. self._head += 1
  301. current = int(log(self._context / contexts.HEADING_LEVEL_1, 2)) + 1
  302. level = min(current, min(best, 6))
  303. try: # Try to check for a heading closure after this one
  304. after, after_level = self._parse(self._context)
  305. except BadRoute:
  306. if level < best:
  307. self._emit_text("=" * (best - level))
  308. self._head = reset + best - 1
  309. return self._pop(), level
  310. else: # Found another closure
  311. self._emit_text("=" * best)
  312. self._emit_all(after)
  313. return self._pop(), after_level
  314. def _really_parse_entity(self):
  315. """Actually parse an HTML entity and ensure that it is valid."""
  316. self._emit(tokens.HTMLEntityStart())
  317. self._head += 1
  318. this = self._read(strict=True)
  319. if this == "#":
  320. numeric = True
  321. self._emit(tokens.HTMLEntityNumeric())
  322. self._head += 1
  323. this = self._read(strict=True)
  324. if this[0].lower() == "x":
  325. hexadecimal = True
  326. self._emit(tokens.HTMLEntityHex(char=this[0]))
  327. this = this[1:]
  328. if not this:
  329. self._fail_route()
  330. else:
  331. hexadecimal = False
  332. else:
  333. numeric = hexadecimal = False
  334. valid = "0123456789abcdefABCDEF" if hexadecimal else "0123456789"
  335. if not numeric and not hexadecimal:
  336. valid += "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
  337. if not all([char in valid for char in this]):
  338. self._fail_route()
  339. self._head += 1
  340. if self._read() != ";":
  341. self._fail_route()
  342. if numeric:
  343. test = int(this, 16) if hexadecimal else int(this)
  344. if test < 1 or test > 0x10FFFF:
  345. self._fail_route()
  346. else:
  347. if this not in htmlentities.entitydefs:
  348. self._fail_route()
  349. self._emit(tokens.Text(text=this))
  350. self._emit(tokens.HTMLEntityEnd())
  351. def _parse_entity(self):
  352. """Parse an HTML entity at the head of the wikicode string."""
  353. reset = self._head
  354. self._push()
  355. try:
  356. self._really_parse_entity()
  357. except BadRoute:
  358. self._head = reset
  359. self._emit_text(self._read())
  360. else:
  361. self._emit_all(self._pop())
  362. def _parse_comment(self):
  363. """Parse an HTML comment at the head of the wikicode string."""
  364. self._head += 4
  365. reset = self._head - 1
  366. self._push()
  367. while True:
  368. this = self._read()
  369. if this == self.END:
  370. self._pop()
  371. self._head = reset
  372. self._emit_text("<!--")
  373. return
  374. if this == self._read(1) == "-" and self._read(2) == ">":
  375. self._emit_first(tokens.CommentStart())
  376. self._emit(tokens.CommentEnd())
  377. self._emit_all(self._pop())
  378. self._head += 2
  379. return
  380. self._emit_text(this)
  381. self._head += 1
  382. def _push_tag_buffer(self, data):
  383. """Write a pending tag attribute from *data* to the stack."""
  384. if data.context & data.CX_QUOTED:
  385. self._emit_first(tokens.TagAttrQuote())
  386. self._emit_all(self._pop())
  387. buf = data.padding_buffer
  388. self._emit_first(tokens.TagAttrStart(pad_first=buf["first"],
  389. pad_before_eq=buf["before_eq"], pad_after_eq=buf["after_eq"]))
  390. self._emit_all(self._pop())
  391. data.padding_buffer = {key: "" for key in data.padding_buffer}
  392. def _handle_tag_space(self, data, text):
  393. """Handle whitespace (*text*) inside of an HTML open tag."""
  394. ctx = data.context
  395. end_of_value = ctx & data.CX_ATTR_VALUE and not ctx & (data.CX_QUOTED | data.CX_NOTE_QUOTE)
  396. if end_of_value or (ctx & data.CX_QUOTED and ctx & data.CX_NOTE_SPACE):
  397. self._push_tag_buffer(data)
  398. data.context = data.CX_ATTR_READY
  399. elif ctx & data.CX_NOTE_SPACE:
  400. data.context = data.CX_ATTR_READY
  401. elif ctx & data.CX_ATTR_NAME:
  402. data.context |= data.CX_NOTE_EQUALS
  403. data.padding_buffer["before_eq"] += text
  404. if ctx & data.CX_QUOTED and not ctx & data.CX_NOTE_SPACE:
  405. self._emit_text(text)
  406. elif data.context & data.CX_ATTR_READY:
  407. data.padding_buffer["first"] += text
  408. elif data.context & data.CX_ATTR_VALUE:
  409. data.padding_buffer["after_eq"] += text
  410. def _handle_tag_text(self, text):
  411. """Handle regular *text* inside of an HTML open tag."""
  412. next = self._read(1)
  413. if not self._can_recurse() or text not in self.MARKERS:
  414. self._emit_text(text)
  415. elif text == next == "{":
  416. self._parse_template_or_argument()
  417. elif text == next == "[":
  418. self._parse_wikilink()
  419. elif text == "<":
  420. self._parse_tag()
  421. else:
  422. self._emit_text(text)
  423. def _handle_tag_data(self, data, text):
  424. """Handle all sorts of *text* data inside of an HTML open tag."""
  425. for chunk in self.tag_splitter.split(text):
  426. if not chunk:
  427. continue
  428. if data.context & data.CX_NAME:
  429. if chunk in self.MARKERS or chunk.isspace():
  430. self._fail_route() # Tags must start with text, not spaces
  431. data.context = data.CX_NOTE_SPACE
  432. elif chunk.isspace():
  433. self._handle_tag_space(data, chunk)
  434. continue
  435. elif data.context & data.CX_NOTE_SPACE:
  436. if data.context & data.CX_QUOTED:
  437. data.context = data.CX_ATTR_VALUE
  438. self._pop()
  439. self._head = data.reset - 1 # Will be auto-incremented
  440. return # Break early
  441. self._fail_route()
  442. elif data.context & data.CX_ATTR_READY:
  443. data.context = data.CX_ATTR_NAME
  444. self._push(contexts.TAG_ATTR)
  445. elif data.context & data.CX_ATTR_NAME:
  446. if chunk == "=":
  447. data.context = data.CX_ATTR_VALUE | data.CX_NOTE_QUOTE
  448. self._emit(tokens.TagAttrEquals())
  449. continue
  450. if data.context & data.CX_NOTE_EQUALS:
  451. self._push_tag_buffer(data)
  452. data.context = data.CX_ATTR_NAME
  453. self._push(contexts.TAG_ATTR)
  454. elif data.context & data.CX_ATTR_VALUE:
  455. escaped = self._read(-1) == "\\" and self._read(-2) != "\\"
  456. if data.context & data.CX_NOTE_QUOTE:
  457. data.context ^= data.CX_NOTE_QUOTE
  458. if chunk == '"' and not escaped:
  459. data.context |= data.CX_QUOTED
  460. self._push(self._context)
  461. data.reset = self._head
  462. continue
  463. elif data.context & data.CX_QUOTED:
  464. if chunk == '"' and not escaped:
  465. data.context |= data.CX_NOTE_SPACE
  466. continue
  467. self._handle_tag_text(chunk)
  468. def _handle_tag_close_open(self, data, token):
  469. """Handle the closing of a open tag (``<foo>``)."""
  470. if data.context & (data.CX_ATTR_NAME | data.CX_ATTR_VALUE):
  471. self._push_tag_buffer(data)
  472. self._emit(token(padding=data.padding_buffer["first"]))
  473. self._head += 1
  474. def _handle_tag_open_close(self):
  475. """Handle the opening of a closing tag (``</foo>``)."""
  476. self._emit(tokens.TagOpenClose())
  477. self._push(contexts.TAG_CLOSE)
  478. self._head += 1
  479. def _handle_tag_close_close(self):
  480. """Handle the ending of a closing tag (``</foo>``)."""
  481. strip = lambda tok: tok.text.rstrip().lower()
  482. closing = self._pop()
  483. if len(closing) != 1 or (not isinstance(closing[0], tokens.Text) or
  484. strip(closing[0]) != strip(self._stack[1])):
  485. self._fail_route()
  486. self._emit_all(closing)
  487. self._emit(tokens.TagCloseClose())
  488. return self._pop()
  489. def _handle_blacklisted_tag(self):
  490. """Handle the body of an HTML tag that is parser-blacklisted."""
  491. while True:
  492. this, next = self._read(), self._read(1)
  493. if this is self.END:
  494. self._fail_route()
  495. elif this == "<" and next == "/":
  496. self._handle_tag_open_close()
  497. self._head += 1
  498. return self._parse(push=False)
  499. elif this == "&":
  500. self._parse_entity()
  501. else:
  502. self._emit_text(this)
  503. self._head += 1
  504. def _handle_single_only_tag_end(self):
  505. """Handle the end of an implicitly closing single-only HTML tag."""
  506. padding = self._stack.pop().padding
  507. self._emit(tokens.TagCloseSelfclose(padding=padding, implicit=True))
  508. self._head -= 1 # Offset displacement done by _handle_tag_close_open
  509. return self._pop()
  510. def _handle_single_tag_end(self):
  511. """Handle the stream end when inside a single-supporting HTML tag."""
  512. gen = enumerate(self._stack)
  513. index = next(i for i, t in gen if isinstance(t, tokens.TagCloseOpen))
  514. padding = self._stack[index].padding
  515. token = tokens.TagCloseSelfclose(padding=padding, implicit=True)
  516. self._stack[index] = token
  517. return self._pop()
  518. def _really_parse_tag(self):
  519. """Actually parse an HTML tag, starting with the open (``<foo>``)."""
  520. data = _TagOpenData()
  521. self._push(contexts.TAG_OPEN)
  522. self._emit(tokens.TagOpenOpen())
  523. while True:
  524. this, next = self._read(), self._read(1)
  525. can_exit = (not data.context & (data.CX_QUOTED | data.CX_NAME) or
  526. data.context & data.CX_NOTE_SPACE)
  527. if this is self.END:
  528. if self._context & contexts.TAG_ATTR:
  529. if data.context & data.CX_QUOTED:
  530. # Unclosed attribute quote: reset, don't die
  531. data.context = data.CX_ATTR_VALUE
  532. self._pop()
  533. self._head = data.reset
  534. continue
  535. self._pop()
  536. self._fail_route()
  537. elif this == ">" and can_exit:
  538. self._handle_tag_close_open(data, tokens.TagCloseOpen)
  539. self._context = contexts.TAG_BODY
  540. if is_single_only(self._stack[1].text):
  541. return self._handle_single_only_tag_end()
  542. if is_parsable(self._stack[1].text):
  543. return self._parse(push=False)
  544. return self._handle_blacklisted_tag()
  545. elif this == "/" and next == ">" and can_exit:
  546. self._handle_tag_close_open(data, tokens.TagCloseSelfclose)
  547. return self._pop()
  548. else:
  549. self._handle_tag_data(data, this)
  550. self._head += 1
  551. def _handle_invalid_tag_start(self):
  552. """Handle the (possible) start of an implicitly closing single tag."""
  553. reset = self._head + 1
  554. self._head += 2
  555. try:
  556. if not is_single_only(self.tag_splitter.split(self._read())[0]):
  557. raise BadRoute()
  558. tag = self._really_parse_tag()
  559. except BadRoute:
  560. self._head = reset
  561. self._emit_text("</")
  562. else:
  563. tag[0].invalid = True # Set flag of TagOpenOpen
  564. self._emit_all(tag)
  565. def _parse_tag(self):
  566. """Parse an HTML tag at the head of the wikicode string."""
  567. reset = self._head
  568. self._head += 1
  569. try:
  570. tag = self._really_parse_tag()
  571. except BadRoute:
  572. self._head = reset
  573. self._emit_text("<")
  574. else:
  575. self._emit_all(tag)
  576. def _emit_style_tag(self, tag, markup, body):
  577. """Write the body of a tag and the tokens that should surround it."""
  578. self._emit(tokens.TagOpenOpen(wiki_markup=markup))
  579. self._emit_text(tag)
  580. self._emit(tokens.TagCloseOpen())
  581. self._emit_all(body)
  582. self._emit(tokens.TagOpenClose())
  583. self._emit_text(tag)
  584. self._emit(tokens.TagCloseClose())
  585. def _parse_italics(self):
  586. """Parse wiki-style italics."""
  587. reset = self._head
  588. try:
  589. stack = self._parse(contexts.STYLE_ITALICS)
  590. except BadRoute as route:
  591. self._head = reset
  592. if route.context & contexts.STYLE_PASS_AGAIN:
  593. stack = self._parse(route.context | contexts.STYLE_SECOND_PASS)
  594. else:
  595. return self._emit_text("''")
  596. self._emit_style_tag("i", "''", stack)
  597. def _parse_bold(self):
  598. """Parse wiki-style bold."""
  599. reset = self._head
  600. try:
  601. stack = self._parse(contexts.STYLE_BOLD)
  602. except BadRoute:
  603. self._head = reset
  604. if self._context & contexts.STYLE_SECOND_PASS:
  605. self._emit_text("'")
  606. return True
  607. elif self._context & contexts.STYLE_ITALICS:
  608. self._context |= contexts.STYLE_PASS_AGAIN
  609. self._emit_text("'''")
  610. else:
  611. self._emit_text("'")
  612. self._parse_italics()
  613. else:
  614. self._emit_style_tag("b", "'''", stack)
  615. def _parse_italics_and_bold(self):
  616. """Parse wiki-style italics and bold together (i.e., five ticks)."""
  617. reset = self._head
  618. try:
  619. stack = self._parse(contexts.STYLE_BOLD)
  620. except BadRoute:
  621. self._head = reset
  622. try:
  623. stack = self._parse(contexts.STYLE_ITALICS)
  624. except BadRoute:
  625. self._head = reset
  626. self._emit_text("'''''")
  627. else:
  628. reset = self._head
  629. try:
  630. stack2 = self._parse(contexts.STYLE_BOLD)
  631. except BadRoute:
  632. self._head = reset
  633. self._emit_text("'''")
  634. self._emit_style_tag("i", "''", stack)
  635. else:
  636. self._push()
  637. self._emit_style_tag("i", "''", stack)
  638. self._emit_all(stack2)
  639. self._emit_style_tag("b", "'''", self._pop())
  640. else:
  641. reset = self._head
  642. try:
  643. stack2 = self._parse(contexts.STYLE_ITALICS)
  644. except BadRoute:
  645. self._head = reset
  646. self._emit_text("''")
  647. self._emit_style_tag("b", "'''", stack)
  648. else:
  649. self._push()
  650. self._emit_style_tag("b", "'''", stack)
  651. self._emit_all(stack2)
  652. self._emit_style_tag("i", "''", self._pop())
  653. def _parse_style(self):
  654. """Parse wiki-style formatting (``''``/``'''`` for italics/bold)."""
  655. self._head += 2
  656. ticks = 2
  657. while self._read() == "'":
  658. self._head += 1
  659. ticks += 1
  660. italics = self._context & contexts.STYLE_ITALICS
  661. bold = self._context & contexts.STYLE_BOLD
  662. if ticks > 5:
  663. self._emit_text("'" * (ticks - 5))
  664. ticks = 5
  665. elif ticks == 4:
  666. self._emit_text("'")
  667. ticks = 3
  668. if (italics and ticks in (2, 5)) or (bold and ticks in (3, 5)):
  669. if ticks == 5:
  670. self._head -= 3 if italics else 2
  671. return self._pop()
  672. elif not self._can_recurse():
  673. if ticks == 3:
  674. if self._context & contexts.STYLE_SECOND_PASS:
  675. self._emit_text("'")
  676. return self._pop()
  677. self._context |= contexts.STYLE_PASS_AGAIN
  678. self._emit_text("'" * ticks)
  679. elif ticks == 2:
  680. self._parse_italics()
  681. elif ticks == 3:
  682. if self._parse_bold():
  683. return self._pop()
  684. elif ticks == 5:
  685. self._parse_italics_and_bold()
  686. self._head -= 1
  687. def _handle_list_marker(self):
  688. """Handle a list marker at the head (``#``, ``*``, ``;``, ``:``)."""
  689. markup = self._read()
  690. if markup == ";":
  691. self._context |= contexts.DL_TERM
  692. self._emit(tokens.TagOpenOpen(wiki_markup=markup))
  693. self._emit_text(get_html_tag(markup))
  694. self._emit(tokens.TagCloseSelfclose())
  695. def _handle_list(self):
  696. """Handle a wiki-style list (``#``, ``*``, ``;``, ``:``)."""
  697. self._handle_list_marker()
  698. while self._read(1) in ("#", "*", ";", ":"):
  699. self._head += 1
  700. self._handle_list_marker()
  701. def _handle_hr(self):
  702. """Handle a wiki-style horizontal rule (``----``) in the string."""
  703. length = 4
  704. self._head += 3
  705. while self._read(1) == "-":
  706. length += 1
  707. self._head += 1
  708. self._emit(tokens.TagOpenOpen(wiki_markup="-" * length))
  709. self._emit_text("hr")
  710. self._emit(tokens.TagCloseSelfclose())
  711. def _handle_dl_term(self):
  712. """Handle the term in a description list (``foo`` in ``;foo:bar``)."""
  713. self._context ^= contexts.DL_TERM
  714. if self._read() == ":":
  715. self._handle_list_marker()
  716. else:
  717. self._emit_text("\n")
  718. def _handle_end(self):
  719. """Handle the end of the stream of wikitext."""
  720. if self._context & contexts.FAIL:
  721. if self._context & contexts.TAG_BODY:
  722. if is_single(self._stack[1].text):
  723. return self._handle_single_tag_end()
  724. if self._context & contexts.DOUBLE:
  725. self._pop()
  726. self._fail_route()
  727. return self._pop()
  728. def _verify_safe(self, this):
  729. """Make sure we are not trying to write an invalid character."""
  730. context = self._context
  731. if context & contexts.FAIL_NEXT:
  732. return False
  733. if context & contexts.WIKILINK_TITLE:
  734. if this == "]" or this == "{":
  735. self._context |= contexts.FAIL_NEXT
  736. elif this == "\n" or this == "[" or this == "}":
  737. return False
  738. return True
  739. elif context & contexts.TEMPLATE_NAME:
  740. if this == "{" or this == "}" or this == "[":
  741. self._context |= contexts.FAIL_NEXT
  742. return True
  743. if this == "]":
  744. return False
  745. if this == "|":
  746. return True
  747. if context & contexts.HAS_TEXT:
  748. if context & contexts.FAIL_ON_TEXT:
  749. if this is self.END or not this.isspace():
  750. return False
  751. else:
  752. if this == "\n":
  753. self._context |= contexts.FAIL_ON_TEXT
  754. elif this is self.END or not this.isspace():
  755. self._context |= contexts.HAS_TEXT
  756. return True
  757. elif context & contexts.TAG_CLOSE:
  758. return this != "<"
  759. else:
  760. if context & contexts.FAIL_ON_EQUALS:
  761. if this == "=":
  762. return False
  763. elif context & contexts.FAIL_ON_LBRACE:
  764. if this == "{" or (self._read(-1) == self._read(-2) == "{"):
  765. if context & contexts.TEMPLATE:
  766. self._context |= contexts.FAIL_ON_EQUALS
  767. else:
  768. self._context |= contexts.FAIL_NEXT
  769. return True
  770. self._context ^= contexts.FAIL_ON_LBRACE
  771. elif context & contexts.FAIL_ON_RBRACE:
  772. if this == "}":
  773. if context & contexts.TEMPLATE:
  774. self._context |= contexts.FAIL_ON_EQUALS
  775. else:
  776. self._context |= contexts.FAIL_NEXT
  777. return True
  778. self._context ^= contexts.FAIL_ON_RBRACE
  779. elif this == "{":
  780. self._context |= contexts.FAIL_ON_LBRACE
  781. elif this == "}":
  782. self._context |= contexts.FAIL_ON_RBRACE
  783. return True
  784. def _parse(self, context=0, push=True):
  785. """Parse the wikicode string, using *context* for when to stop."""
  786. if push:
  787. self._push(context)
  788. while True:
  789. this = self._read()
  790. if self._context & contexts.UNSAFE:
  791. if not self._verify_safe(this):
  792. if self._context & contexts.DOUBLE:
  793. self._pop()
  794. self._fail_route()
  795. if this not in self.MARKERS:
  796. self._emit_text(this)
  797. self._head += 1
  798. continue
  799. if this is self.END:
  800. return self._handle_end()
  801. next = self._read(1)
  802. if this == next == "{":
  803. if self._can_recurse():
  804. self._parse_template_or_argument()
  805. else:
  806. self._emit_text("{")
  807. elif this == "|" and self._context & contexts.TEMPLATE:
  808. self._handle_template_param()
  809. elif this == "=" and self._context & contexts.TEMPLATE_PARAM_KEY:
  810. self._handle_template_param_value()
  811. elif this == next == "}" and self._context & contexts.TEMPLATE:
  812. return self._handle_template_end()
  813. elif this == "|" and self._context & contexts.ARGUMENT_NAME:
  814. self._handle_argument_separator()
  815. elif this == next == "}" and self._context & contexts.ARGUMENT:
  816. if self._read(2) == "}":
  817. return self._handle_argument_end()
  818. else:
  819. self._emit_text("}")
  820. elif this == next == "[":
  821. if not self._context & contexts.WIKILINK_TITLE and self._can_recurse():
  822. self._parse_wikilink()
  823. else:
  824. self._emit_text("[")
  825. elif this == "|" and self._context & contexts.WIKILINK_TITLE:
  826. self._handle_wikilink_separator()
  827. elif this == next == "]" and self._context & contexts.WIKILINK:
  828. return self._handle_wikilink_end()
  829. elif this == "=" and not self._global & contexts.GL_HEADING:
  830. if self._read(-1) in ("\n", self.START):
  831. self._parse_heading()
  832. else:
  833. self._emit_text("=")
  834. elif this == "=" and self._context & contexts.HEADING:
  835. return self._handle_heading_end()
  836. elif this == "\n" and self._context & contexts.HEADING:
  837. self._fail_route()
  838. elif this == "&":
  839. self._parse_entity()
  840. elif this == "<" and next == "!":
  841. if self._read(2) == self._read(3) == "-":
  842. self._parse_comment()
  843. else:
  844. self._emit_text(this)
  845. elif this == "<" and next == "/" and self._read(2) is not self.END:
  846. if self._context & contexts.TAG_BODY:
  847. self._handle_tag_open_close()
  848. else:
  849. self._handle_invalid_tag_start()
  850. elif this == "<":
  851. if not self._context & contexts.TAG_CLOSE and self._can_recurse():
  852. self._parse_tag()
  853. else:
  854. self._emit_text("<")
  855. elif this == ">" and self._context & contexts.TAG_CLOSE:
  856. return self._handle_tag_close_close()
  857. elif this == next == "'":
  858. result = self._parse_style()
  859. if result is not None:
  860. return result
  861. elif self._read(-1) in ("\n", self.START):
  862. if this in ("#", "*", ";", ":"):
  863. self._handle_list()
  864. elif this == next == self._read(2) == self._read(3) == "-":
  865. self._handle_hr()
  866. else:
  867. self._emit_text(this)
  868. elif this in ("\n", ":") and self._context & contexts.DL_TERM:
  869. self._handle_dl_term()
  870. else:
  871. self._emit_text(this)
  872. self._head += 1
  873. def tokenize(self, text):
  874. """Build a list of tokens from a string of wikicode and return it."""
  875. split = self.regex.split(text)
  876. self._text = [segment for segment in split if segment]
  877. return self._parse()