summaryrefslogtreecommitdiff
path: root/test/HTML5/Parser/EventStack.php
blob: 36e2f29207fe095cbaac4d84a9ce37da8657e886 (plain)
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
<?php
namespace HTML5\Parser;

/**
 * This testing class gathers events from a parser and builds a stack of events.
 * It is useful for checking the output of a tokenizer.
 */
class EventStack implements EventHandler {
  protected $stack;

  public function __construct() {
    $this->stack = array();
  }

  /**
   * Get the event stack.
   */
  public function events() {
    return $this->stack;
  }

  public function depth() {
    return count($this->stack);
  }

  public function get($index) {
    return $this->stack[$index];
  }

  protected function store($event, $data = NULL) {
    $this->stack[] = array(
      'name' => $event,
      'data' => $data,
    );
  }

  public function doctype($name, $publicId, $systemID, $quirks = FALSE) {
    $args = func_get_args();
    $this->store('doctype', $args);
  }

  public function startTag($name, $attributes = array(), $selfClosing = FALSE) {
    $args = func_get_args();
    $this->store('startTag', $args);
  }

  public function endTag($name) {
    $this->store('endTag', array($name));
  }

  public function comment($cdata) {
    $this->store('comment', array($cdata));
  }

  public function text($cdata) {
    //fprintf(STDOUT, "Received TEXT event with: " . $cdata);
    $this->store('text', array($cdata));
  }

  public function eof() {
    $this->store('eof');
  }

  public function parseError($msg, $line, $col) {
    //throw new EventStackParseError(sprintf("%s (line %d, col %d)", $msg, $line, $col));
    //$this->store(sprintf("%s (line %d, col %d)", $msg, $line, $col));
    $this->store('comment', func_get_args());
  }


}
class EventStackParseError extends \Exception {
}