Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Some fixes for php-repl.el #2

Open
wants to merge 15 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 38 additions & 5 deletions PHP/Repl.php
Original file line number Diff line number Diff line change
Expand Up @@ -124,13 +124,13 @@ public function run(array $scope = array())
while (true) {
// inner loop is to escape from stacked output buffers
while ($__ob__ = ob_get_clean() ) {
echo $__ob__;
echo $this->ob_cleanup($__ob__);
unset($__ob__);
}

try {
if (((boolean) $__code__ = $this->read()) === false) {
break;
continue;
}
ob_start(array($this, 'ob_cleanup'));
ob_implicit_flush(true);
Expand All @@ -157,6 +157,7 @@ private function read()
$code = '';
$done = false;
$lines = 0;
$stack = array();
static $shifted;
if (!$shifted) {
// throw away argv[0]
Expand All @@ -179,13 +180,45 @@ private function read()
return false;
}

$done = true;
$line = trim($line);
// If the last char is a backslash, remove it and
// accumulate more lines.
if (substr($line, -1) == '\\') {
$line = substr($line, 0, strlen($line) - 1);
} else {
$done = true;
$line = trim(substr($line, 0, strlen($line) - 1));
$done = false;
}

// check for curleys and parens, keep accumulating lines.
$tokens = token_get_all("<?php {$line}");
foreach ($tokens as $t) {
switch ($t) {
case '{':
case '(':
array_push($stack, $t);
break;

case '}':
if ('{' !== array_pop($stack)) {
throw new Exception('Unmatched closing brace.');
}
break;
case ')':
if ('(' !== array_pop($stack)) {
throw new Exception('Unmatched closing paren.');
}
break;
}
}
if (count($stack) > 0) {
$last_t = array_pop($tokens);
if (is_array($last_t) && $last_t[0] == T_OPEN_TAG) {
// if the last token was an open tag, this is nothing.
} else if ($stack[count($stack) - 1] === '{' && !in_array($last_t, array('{', '}', ';'))) {
// allow implied semicolons inside curlies
$line .= ';';
}
$done = false;
}
$code .= $line;
$lines++;
Expand Down
26 changes: 17 additions & 9 deletions data/php-repl.el
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@

(defgroup php-repl nil
"Major mode for interacting with an inferior PHP interpreter."
:prefix "ph-repl-"
:prefix "php-repl-"
:group 'php)

(defcustom php-repl-program
Expand All @@ -70,19 +70,27 @@
(interactive "p")
(let ((buf (cond ((buffer-live-p inferior-php-buffer) inferior-php-buffer)
(t (generate-new-buffer "*inferior-php*")))))
(make-comint-in-buffer
"PHP" buf php-repl-program nil
(mapconcat 'identity php-repl-program-arguments " "))
(apply 'make-comint-in-buffer "PHP" buf php-repl-program nil php-repl-program-arguments)
(setq inferior-php-buffer buf)
(display-buffer buf t)
;; (pop-to-buffer buf t)
(set-process-sentinel
(get-buffer-process inferior-php-buffer) 'run-php-process-sentinel)
(unless (eq (current-buffer) inferior-php-buffer)
(display-buffer buf t)
(pop-to-buffer buf t))
(inferior-php-mode)))

(defun run-php-process-sentinel (process event)
"*Restart PHP process after abnormal exit."
(when (string-match-p "^exited abnormally with code" event)
(message "Restarting PHP process")
(run-php)))

(define-derived-mode inferior-php-mode comint-mode "Inferior PHP")
(defvar inferior-php-mode-abbrev-table
(make-abbrev-table))
(derived-mode-merge-abbrev-tables php-mode-abbrev-table
inferior-php-mode-abbrev-table)
(if (boundp 'php-mode-abbrev-table)
(derived-mode-merge-abbrev-tables php-mode-abbrev-table
inferior-php-mode-abbrev-table))
(derived-mode-set-abbrev-table 'inferior-php-mode)

(defvar eval-php-mode-map
Expand Down Expand Up @@ -112,7 +120,7 @@
(save-excursion
(comint-send-region inferior-php-buffer start end)
(if (not (string-match "\n$" (buffer-substring start end)))
(comint-send-string sql-buffer "\n"))
(comint-send-string inferior-php-buffer "\n"))
(display-buffer inferior-php-buffer))))

(defun php-eval-sexp ())
Expand Down
6 changes: 6 additions & 0 deletions scripts/php-repl
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@
* @filesource
*/

// Add environment variable PHP_INCLUDE_PATH to include_path if it exists.
$includePath = getenv('PHP_INCLUDE_PATH');
if ($includePath !== false) {
set_include_path(get_include_path().':'.getenv('PHP_INCLUDE_PATH'));
}

require_once 'PHP/Repl.php';
$__repl__ = new PHP_Repl();
$__repl__->run();
Expand Down