X-Git-Url: http://christophe.rhodes.io/gitweb/?p=swankr.git;a=blobdiff_plain;f=swank.R;h=6dca4556d1bb69e787cb4622b8aef2ecd484199c;hp=a9b62c6737994c8184a0961f07d29d3d8f8717c2;hb=b7cfe0a0e9f9456e13c680cce0e302ee4c6c210a;hpb=e64beb72d7b60d390ab8e2c0f6029dfede60877d diff --git a/swank.R b/swank.R index a9b62c6..6dca455 100644 --- a/swank.R +++ b/swank.R @@ -1,3 +1,18 @@ +### This program is free software; you can redistribute it and/or +### modify it under the terms of the GNU General Public Licence as +### published by the Free Software Foundation; either version 2 of the +### Licence, or (at your option) any later version. +### +### This program 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 Licence for more details. +### +### A copy of version 2 of the GNU General Public Licence is available +### at ; the +### latest version of the GNU General Public Licence is available at +### . + swank <- function(port=4005) { acceptConnections(port, FALSE) } @@ -18,8 +33,9 @@ serve <- function(io) { mainLoop <- function(io) { while(TRUE) { - tryCatch(dispatch(io, readPacket(io)), - swankTopLevel=function(c) NULL) + withRestarts(tryCatch(dispatch(io, readPacket(io)), + swankTopLevel=function(c) NULL), + abort="return to SLIME's toplevel") } } @@ -49,37 +65,27 @@ emacsRex <- function(io, sldbState, form, pkg, thread, id, level=0) { ok <- TRUE }, error=function(c) { newSldbState <- makeSldbState(c, if(is.null(sldbState)) 0 else sldbState$level+1, id) - sldbLoop(io, newSldbState, id) })}, + withRestarts(sldbLoop(io, newSldbState, id), abort=paste("return to sldb level", newSldbState$level)) })}, finally=sendToEmacs(io, list(quote(`:return`), if(ok) list(quote(`:ok`), value) else list(quote(`:abort`)), id))) } makeSldbState <- function(condition, level, id) { - ret <- list(condition=condition, level=level, id=id) + calls <- rev(sys.calls())[-1] + frames <- rev(sys.frames())[-1] + restarts <- rev(computeRestarts(condition))[-1] + ret <- list(condition=condition, level=level, id=id, restarts=restarts, calls=calls, frames=frames) class(ret) <- c("sldbState", class(ret)) ret } sldbLoop <- function(io, sldbState, id) { - sendToEmacs(io, c(list(quote(`:debug`), id, sldbState$level), debuggerInfoForEmacs(sldbState))) - sendToEmacs(io, list(quote(`:debug-activate`), id, sldbState$level, FALSE)) - while(TRUE) { - dispatch(io, readPacket(io), sldbState) - } -} - -debuggerInfoForEmacs <- function(sldbState, from=0, to=NULL) { - backtraceForEmacs <- function() { - calls <- sys.calls() - if(is.null(to)) to <- length(calls) - from <- from+1 - calls <- lapply(calls[from:to], { frameNumber <- from-1; - function (x) { ret <- list(frameNumber, paste(format(x), sep="", collapse=" ")); frameNumber <<- 1+frameNumber; ret }}) - } - list(list(as.character(sldbState$condition), sprintf(" [%s]", class(sldbState$condition)[[1]]), FALSE), - lapply(computeRestarts(), function(x) list(x[[1]][[1]], x[[1]][[1]])), - backtraceForEmacs(), - list(sldbState$id)) -# lapply(calls[from:to], function(x) paste(format(x), sep="", collapse=" "))) + tryCatch({ + sendToEmacs(io, c(list(quote(`:debug`), id, sldbState$level), `swank:debugger-info-for-emacs`(io, sldbState))) + sendToEmacs(io, list(quote(`:debug-activate`), id, sldbState$level, FALSE)) + while(TRUE) { + dispatch(io, readPacket(io), sldbState) + } + }, finally=sendToEmacs(io, c(list(quote(`:debug-return`), id, sldbState$level, FALSE)))) } readPacket <- function(io) { @@ -214,6 +220,12 @@ writeSexpToString <- function(obj) { writeSexpToStringLoop(obj) } +printToString <- function(val) { + f <- fifo("") + tryCatch({ sink(f); print(val); sink(); readLines(f) }, + finally=close(f)) +} + `swank:connection-info` <- function (io, sldbState) { list(quote(`:pid`), Sys.getpid(), quote(`:package`), list(quote(`:name`), "R", quote(`:prompt`), "R> "), @@ -231,25 +243,136 @@ writeSexpToString <- function(obj) { } `swank:listener-eval` <- function(io, sldbState, string) { - val <- eval(parse(text=string)) - f <- fifo("") - sink(f) - print(val) - sink() - lines <- readLines(f) - list(quote(`:values`), paste(lines, collapse="\n")) + val <- eval(parse(text=string), envir = globalenv()) + string <- printToString(val) + list(quote(`:values`), paste(string, collapse="\n")) } `swank:autodoc` <- function(io, sldbState, rawForm, ...) { "No Arglist Information" } +`swank:operator-arglist` <- function(io, sldbState, op, package) { + list() +} + `swank:throw-to-toplevel` <- function(io, sldbState) { condition <- simpleCondition("Throw to toplevel") class(condition) <- c("swankTopLevel", class(condition)) signalCondition(condition) } -`swank:debugger-info-for-emacs` <- function(io, sldbState, from, to) { - debuggerInfoForEmacs(sldbState, from=from, to=to) +`swank:backtrace` <- function(io, sldbState, from=0, to=NULL) { + calls <- sldbState$calls + if(is.null(to)) to <- length(calls) + from <- from+1 + calls <- lapply(calls[from:to], + { frameNumber <- from-1; + function (x) { + ret <- list(frameNumber, paste(format(x), sep="", collapse=" ")) + frameNumber <<- 1+frameNumber + ret + } + }) +} + +computeRestartsForEmacs <- function (sldbState) { + lapply(sldbState$restarts, + function(x) { + ## this is all a little bit internalsy + restartName <- x[[1]][[1]] + description <- restartDescription(x) + list(restartName, if(is.null(description)) restartName else description) + }) +} + +`swank:debugger-info-for-emacs` <- function(io, sldbState, from=0, to=NULL) { + list(list(as.character(sldbState$condition), sprintf(" [%s]", class(sldbState$condition)[[1]]), FALSE), + computeRestartsForEmacs(sldbState), + `swank:backtrace`(io, sldbState, from, to), + list(sldbState$id)) +} + +`swank:invoke-nth-restart-for-emacs` <- function(io, sldbState, level, n) { + if(sldbState$level == level) { + invokeRestart(sldbState$restarts[[n+1]]) + } +} + +`swank:frame-source-location` <- function(io, sldbState, n) { + call <- sldbState$calls[[n+1]] + srcref <- attr(call, "srcref") + srcfile <- attr(srcref, "srcfile") + if(is.null(srcfile)) { + list(quote(`:error`), "no srcfile") + } else { + filename <- get("filename", srcfile) + list(quote(`:location`), + list(quote(`:file`), filename), + list(quote(`:line`), srcref[[1]], srcref[[2]]-1), + FALSE) + } +} + +`swank:buffer-first-change` <- function(io, sldbState, filename) { + FALSE +} + +`swank:frame-locals-and-catch-tags` <- function(io, sldbState, index) { + str(sldbState$frames) + frame <- sldbState$frames[[1+index]] + objs <- ls(envir=frame) + list(lapply(objs, function(name) { list(quote(`:name`), name, + quote(`:id`), 0, + quote(`:value`), paste(printToString(eval(parse(text=name), envir=frame)), sep="", collapse="\n")) }), + list()) +} + +`swank:simple-completions` <- function(io, sldbState, prefix, package) { + ## fails multiply if prefix contains regexp metacharacters + matches <- apropos(sprintf("^%s", prefix), ignore.case=FALSE) + nmatches <- length(matches) + if(nmatches == 0) { + list(list(), "") + } else { + longest <- matches[order(nchar(matches))][1] + while(length(grep(sprintf("^%s", longest), matches)) < nmatches) { + longest <- substr(longest, 1, nchar(longest)-1) + } + list(as.list(matches), longest) + } +} + +`swank:compile-string-for-emacs` <- function(io, sldbState, string, buffer, position, filename, policy) { + # FIXME: I think in parse() here we can use srcref to associate + # buffer/filename/position to the objects. Or something. + withRestarts({ times <- system.time(eval(parse(text=string), envir = globalenv())) }, + abort="abort compilation") + list(quote(`:compilation-result`), list(), TRUE, times[3]) +} + +`swank:interactive-eval` <- function(io, sldbState, string) { + retry <- TRUE + value <- "" + while(retry) { + retry <- FALSE + withRestarts(value <- eval(parse(text=string), envir = globalenv()), + retry=list(description="retry SLIME interactive evaluation request", handler=function() retry <<- TRUE)) + } + printToString(value) +} + +`swank:eval-and-grab-output` <- function(io, sldbState, string) { + retry <- TRUE + value <- "" + output <- NULL + f <- fifo("") + tryCatch({ + sink(f) + while(retry) { + retry <- FALSE + withRestarts(value <- eval(parse(text=string), envir = globalenv()), + retry=list(description="retry SLIME interactive evaluation request", handler=function() retry <<- TRUE))}}, + finally={sink(); output <- readLines(f); close(f)}) + list(output, printToString(value)) }