X-Git-Url: http://christophe.rhodes.io/gitweb/?p=swankr.git;a=blobdiff_plain;f=swank.R;h=901f1c16a5bc7f1af0015a73b7bd352c4adf36b3;hp=549e3ead76d367bd66fb40c3575569936f7efb88;hb=a1e8d6a615cbc31ffe84b17cc07943310917f8fd;hpb=30b283c2edbb275ea1dcda80bffc46a0d29d8465 diff --git a/swank.R b/swank.R index 549e3ea..901f1c1 100644 --- a/swank.R +++ b/swank.R @@ -141,19 +141,27 @@ readPacket <- function(io) { header <- readChunk(io, 6) len <- strtoi(header, base=16) payload <- readChunk(io, len) - readSexpFromString(payload) + sexp <- readSexpFromString(payload) + sexp } readChunk <- function(io, len) { - buffer <- readChar(io, len) + buffer <- readChar(io, len, useBytes=TRUE) if(length(buffer) == 0) { condition <- simpleCondition("End of file on io") class(condition) <- c("endOfFile", class(condition)) signalCondition(condition) } - if(nchar(buffer) != len) { - stop("short read in readChunk") - } + ## FIXME: with the useBytes argument to readChar, it is normal for + ## the buffer returned to be fewer character than bytes were read, + ## given the possibility of multibyte characters. However, that + ## means we can’t detect at all the case where there is actually a + ## short read (though empirically the readChar call blocks rather + ## than returning early). + ## + ## if(nchar(buffer) != len) { + ## stop("short read in readChunk") + ## } buffer } @@ -293,7 +301,7 @@ printToString <- function(val) { `swank:connection-info` <- function (slimeConnection, sldbState) { list(quote(`:pid`), Sys.getpid(), quote(`:package`), list(quote(`:name`), "R", quote(`:prompt`), "R> "), - quote(`:version`), "2012-04-23", + quote(`:version`), "2014-09-13", quote(`:encoding`), list(quote(`:coding-systems`), list("utf-8-unix")), quote(`:lisp-implementation`), list(quote(`:type`), "R", quote(`:name`), "R",