summaryrefslogtreecommitdiffstats
path: root/vendor/wikimedia/less.php/lib/Less/Exception/Parser.php
blob: 22d9d192801362e0afe8981b168246cdf013aac8 (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
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
<?php

/**
 * Parser Exception
 */
class Less_Exception_Parser extends Exception {

	/**
	 * The current file
	 *
	 * @var array
	 */
	public $currentFile;

	/**
	 * The current parser index
	 *
	 * @var int
	 */
	public $index;

	protected $input;

	protected $details = [];

	/**
	 * @param string|null $message
	 * @param Exception|null $previous Previous exception
	 * @param int|null $index The current parser index
	 * @param array|null $currentFile The file
	 * @param int $code The exception code
	 */
	public function __construct( $message = null, Exception $previous = null, $index = null, $currentFile = null, $code = 0 ) {
		parent::__construct( $message, $code, $previous );

		$this->currentFile = $currentFile;
		$this->index = $index;

		$this->genMessage();
	}

	protected function getInput() {
		if ( !$this->input && $this->currentFile && $this->currentFile['filename'] && file_exists( $this->currentFile['filename'] ) ) {
			$this->input = file_get_contents( $this->currentFile['filename'] );
		}
	}

	/**
	 * Set a message based on the exception info
	 */
	public function genMessage() {
		if ( $this->currentFile && $this->currentFile['filename'] ) {
			$this->message .= ' in ' . basename( $this->currentFile['filename'] );
		}

		if ( $this->index !== null ) {
			$this->getInput();
			if ( $this->input ) {
				$line = self::getLineNumber();
				$this->message .= ' on line ' . $line . ', column ' . self::getColumn();

				$lines = explode( "\n", $this->input );

				$count = count( $lines );
				$start_line = max( 0, $line - 3 );
				$last_line = min( $count, $start_line + 6 );
				$num_len = strlen( $last_line );
				for ( $i = $start_line; $i < $last_line; $i++ ) {
					$this->message .= "\n" . str_pad( (string)( $i + 1 ), $num_len, '0', STR_PAD_LEFT ) . '| ' . $lines[$i];
				}
			}
		}
	}

	/**
	 * Returns the line number the error was encountered
	 *
	 * @return int
	 */
	public function getLineNumber() {
		if ( $this->index ) {
			// https://bugs.php.net/bug.php?id=49790
			if ( ini_get( "mbstring.func_overload" ) ) {
				return substr_count( substr( $this->input, 0, $this->index ), "\n" ) + 1;
			} else {
				return substr_count( $this->input, "\n", 0, $this->index ) + 1;
			}
		}
		return 1;
	}

	/**
	 * Returns the column the error was encountered
	 *
	 * @return int
	 */
	public function getColumn() {
		$part = substr( $this->input, 0, $this->index );
		$pos = strrpos( $part, "\n" );
		return $this->index - $pos;
	}

}