X-Git-Url: http://christophe.rhodes.io/gitweb/?p=swankr.git;a=blobdiff_plain;f=swank.R;h=a826c7a7a250115a88e8dc8ace283bf7da9a035c;hp=1dc95b48800c305489292bc95f4cdb92f381e16e;hb=277c935e6f2d9f32bcd0786a71cf4b02e094f4d6;hpb=c15f7575dad3773f1f56e37f5943d8d277f76ee8 diff --git a/swank.R b/swank.R index 1dc95b4..a826c7a 100644 --- a/swank.R +++ b/swank.R @@ -113,6 +113,7 @@ sldbLoop <- function(slimeConnection, sldbState, id) { } readPacket <- function(io) { + socketSelect(list(io)) header <- readChunk(io, 6) len <- strtoi(header, base=16) payload <- readChunk(io, len) @@ -244,12 +245,19 @@ writeSexpToString <- function(obj) { writeSexpToStringLoop(obj) } -printToString <- function(val) { +withOutputToString <- function(expr) { + call <- substitute(expr) f <- fifo("") - tryCatch({ sink(f); print(val); sink(); readLines(f) }, + sink(f) + tryCatch({ tryCatch(eval.parent(call), finally=sink()) + readLines(f) }, finally=close(f)) } +printToString <- function(val) { + withOutputToString(str(val, indent.str="", list.len=5, max.level=2)) +} + `swank:connection-info` <- function (slimeConnection, sldbState) { list(quote(`:pid`), Sys.getpid(), quote(`:package`), list(quote(`:name`), "R", quote(`:prompt`), "R> "), @@ -407,15 +415,11 @@ computeRestartsForEmacs <- function (sldbState) { `swank:eval-and-grab-output` <- function(slimeConnection, sldbState, string) { retry <- TRUE value <- "" - output <- NULL - f <- fifo("") - tryCatch({ - sink(f) - while(retry) { + output <- + withOutputToString(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)}) + retry=list(description="retry SLIME interactive evaluation request", handler=function() retry <<- TRUE))}) list(output, printToString(value)) } @@ -443,3 +447,13 @@ computeRestartsForEmacs <- function (sldbState) { list() } } + +`swank:value-for-editing` <- function(slimeConnection, sldbState, string) { + paste(deparse(eval(parse(text=string), envir = globalenv()), control="all"), + collapse="\n", sep="") +} + +`swank:commit-edited-value` <- function(slimeConnection, sldbState, string, value) { + eval(parse(text=sprintf("%s <- %s", string, value)), envir = globalenv()) + TRUE +}