Christophe Weblog Wiki Code Publications Music
implement `swank:operator-arglist` properly
[swankr.git] / swank.R
1 ### This program is free software; you can redistribute it and/or
2 ### modify it under the terms of the GNU General Public Licence as
3 ### published by the Free Software Foundation; either version 2 of the
4 ### Licence, or (at your option) any later version.
5 ###
6 ### This program is distributed in the hope that it will be useful,
7 ### but WITHOUT ANY WARRANTY; without even the implied warranty of
8 ### MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
9 ### GNU General Public Licence for more details.
10 ###
11 ### A copy of version 2 of the GNU General Public Licence is available
12 ### at <http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt>; the
13 ### latest version of the GNU General Public Licence is available at
14 ### <http://www.gnu.org/licenses/gpl.txt>.
15
16 ### KLUDGE: this assumes that we're being sourced with chdir=TRUE.
17 ### (If not, `swank:swank-require` will work under the circumstances
18 ### that it used to work anyway -- i.e. the working directory is the
19 ### swankr directory)
20 swankrPath <- getwd() 
21
22 swank <- function(port=4005) {
23   acceptConnections(port, FALSE)
24 }
25
26 startSwank <- function(portFile) {
27   acceptConnections(4005, portFile)
28 }
29
30 acceptConnections <- function(port, portFile) {
31   if(portFile != FALSE) {
32     f <- file(portFile, open="w+")
33     cat(port, file=f)
34     close(f)
35   }
36   ## FIXME: maybe we should support dontClose here?
37   s <- socketConnection(host="localhost", server=TRUE, port=port, open="r+b")
38   on.exit(close(s))
39   tryCatch(serve(s), endOfFile=function(c) NULL)
40 }
41
42 serve <- function(io) {
43   mainLoop(io)
44 }
45
46 mainLoop <- function(io) {
47   slimeConnection <- new.env()
48   slimeConnection$io <- io
49   while(TRUE) {
50     withRestarts(tryCatch(dispatch(slimeConnection, readPacket(io)),
51                           swankTopLevel=function(c) NULL),
52                  abort="return to SLIME's toplevel")
53   }
54 }
55
56 dispatch <- function(slimeConnection, event, sldbState=NULL) {
57   kind <- event[[1]]
58   if(kind == quote(`:emacs-rex`)) {
59     do.call("emacsRex", c(list(slimeConnection), list(sldbState), event[-1]))
60   }
61 }
62
63 sendToEmacs <- function(slimeConnection, obj) {
64   io <- slimeConnection$io
65   payload <- writeSexpToString(obj)
66   writeChar(sprintf("%06x", nchar(payload, type="bytes")), io, eos=NULL)
67   writeChar(payload, io, eos=NULL)
68   flush(io)
69 }
70
71 callify <- function(form) {
72   ## we implement here the conversion from Lisp S-expression (or list)
73   ## expressions of code into our own, swankr, calling convention,
74   ## with slimeConnection and sldbState as first and second arguments.
75   ## as.call() gets us part of the way, but we need to walk the list
76   ## recursively to mimic CL:EVAL; we need to avoid converting R
77   ## special operators which we are punning (only `quote`, for now)
78   ## into this calling convention.
79   if(is.list(form)) {
80     if(form[[1]] == quote(quote)) {
81       as.call(form)
82     } else {
83       as.call(c(list(form[[1]], quote(slimeConnection), quote(sldbState)), lapply(form[-1], callify)))
84     }
85   } else {
86     form
87   }
88 }
89
90 emacsRex <- function(slimeConnection, sldbState, form, pkg, thread, id, level=0) {
91   ok <- FALSE
92   value <- NULL
93   conn <- textConnection(NULL, open="w")
94   condition <- NULL
95   tryCatch({
96     withCallingHandlers({
97       call <- callify(form)
98       capture.output(value <- eval(call), file=conn)
99       string <- paste(textConnectionValue(conn), sep="", collapse="\n")
100       if(nchar(string) > 0) {
101         sendToEmacs(slimeConnection, list(quote(`:write-string`), string))
102         sendToEmacs(slimeConnection, list(quote(`:write-string`), "\n"))
103       }
104       close(conn)
105       ok <- TRUE
106     }, error=function(c) {
107       condition <<- c
108       string <- paste(textConnectionValue(conn), sep="", collapse="\n")
109       if(nchar(string) > 0) {
110         sendToEmacs(slimeConnection, list(quote(`:write-string`), string))
111         sendToEmacs(slimeConnection, list(quote(`:write-string`), "\n"))
112       }
113       close(conn)
114       newSldbState <- makeSldbState(c, if(is.null(sldbState)) 0 else sldbState$level+1, id)
115       withRestarts(sldbLoop(slimeConnection, newSldbState, id), abort=paste("return to sldb level", newSldbState$level)) })},
116     finally=sendToEmacs(slimeConnection, list(quote(`:return`), if(ok) list(quote(`:ok`), value) else list(quote(`:abort`), as.character(condition)), id)))
117 }
118
119 makeSldbState <- function(condition, level, id) {
120   calls <- rev(sys.calls())[-1]
121   frames <- rev(sys.frames())[-1]
122   restarts <- rev(computeRestarts(condition))[-1]
123   ret <- list(condition=condition, level=level, id=id, restarts=restarts, calls=calls, frames=frames)
124   class(ret) <- c("sldbState", class(ret))
125   ret
126 }
127
128 sldbLoop <- function(slimeConnection, sldbState, id) {
129   tryCatch({
130     io <- slimeConnection$io
131     sendToEmacs(slimeConnection, c(list(quote(`:debug`), id, sldbState$level), `swank:debugger-info-for-emacs`(slimeConnection, sldbState)))
132     sendToEmacs(slimeConnection, list(quote(`:debug-activate`), id, sldbState$level, FALSE))
133     while(TRUE) {
134       dispatch(slimeConnection, readPacket(io), sldbState)
135     }
136   }, finally=sendToEmacs(slimeConnection, c(list(quote(`:debug-return`), id, sldbState$level, FALSE))))
137 }
138
139 readPacket <- function(io) {
140   socketSelect(list(io))
141   header <- readChunk(io, 6)
142   len <- strtoi(header, base=16)
143   payload <- readChunk(io, len)
144   readSexpFromString(payload)
145 }
146
147 readChunk <- function(io, len) {
148   buffer <- readChar(io, len)
149   if(length(buffer) == 0) {
150     condition <- simpleCondition("End of file on io")
151     class(condition) <- c("endOfFile", class(condition))
152     signalCondition(condition)
153   }
154   if(nchar(buffer) != len) {
155     stop("short read in readChunk")
156   }
157   buffer
158 }
159
160 readSexpFromString <- function(string) {
161   pos <- 1
162   read <- function() {
163     skipWhitespace()
164     char <- substr(string, pos, pos)
165     switch(char,
166            "("=readList(),
167            "\""=readString(),
168            "'"=readQuote(),
169            {
170              if(pos > nchar(string))
171                stop("EOF during read")
172              obj <- readNumberOrSymbol()
173              if(obj == quote(`.`)) {
174                stop("Consing dot not implemented")
175              }
176              obj
177            })
178   }
179   skipWhitespace <- function() {
180     while(substr(string, pos, pos) %in% c(" ", "\t", "\n")) {
181       pos <<- pos + 1
182     }
183   }
184   readList <- function() {
185     ret <- list()
186     pos <<- pos + 1
187     while(TRUE) {
188       skipWhitespace()
189       char <- substr(string, pos, pos)
190       if(char == ")") {
191         pos <<- pos + 1
192         break
193       } else {
194         obj <- read()
195         if(length(obj) == 1 && obj == quote(`.`)) {
196           stop("Consing dot not implemented")
197         }
198         ret <- c(ret, list(obj))
199       }
200     }
201     ret
202   }
203   readString <- function() {
204     ret <- ""
205     addChar <- function(c) { ret <<- paste(ret, c, sep="") }
206     while(TRUE) {
207       pos <<- pos + 1
208       char <- substr(string, pos, pos)
209       switch(char,
210              "\""={ pos <<- pos + 1; break },
211              "\\"={ pos <<- pos + 1
212                     char2 <- substr(string, pos, pos)
213                     switch(char2,
214                            "\""=addChar(char2),
215                            "\\"=addChar(char2),
216                            stop("Unrecognized escape character")) },
217              addChar(char))
218     }
219     ret
220   }
221   readNumberOrSymbol <- function() {
222     token <- readToken()
223     if(nchar(token)==0) {
224       stop("End of file reading token")
225     } else if(grepl("^[0-9]+$", token)) {
226       strtoi(token)
227     } else if(grepl("^[0-9]+\\.[0-9]+$", token)) {
228       as.double(token)
229     } else {
230       name <- as.name(token)
231       if(name == quote(t)) {
232         TRUE
233       } else if(name == quote(nil)) {
234         FALSE
235       } else {
236         name
237       }
238     }
239   }
240   readToken <- function() {
241     token <- ""
242     while(TRUE) {
243       char <- substr(string, pos, pos)
244       if(char == "") {
245         break;
246       } else if(char %in% c(" ", "\n", "\t", "(", ")", "\"", "'")) {
247         break;
248       } else {
249         token <- paste(token, char, sep="")
250         pos <<- pos + 1
251       }
252     }
253     token
254   }
255   read()
256 }
257
258 writeSexpToString <- function(obj) {
259   writeSexpToStringLoop <- function(obj) {
260     switch(typeof(obj),
261            "character"={ string <- paste(string, "\"", gsub("([\"\\])", "\\\\\\1", obj), "\"", sep="") },
262            "list"={ string <- paste(string, "(", sep="")
263                     max <- length(obj)
264                     if(max > 0) {
265                       for(i in 1:max) {
266                         string <- paste(string, writeSexpToString(obj[[i]]), sep="")
267                         if(i != max) {
268                           string <- paste(string, " ", sep="")
269                         }
270                       }
271                     }
272                     string <- paste(string, ")", sep="") },
273            "symbol"={ string <- paste(string, as.character(obj), sep="") },
274            "logical"={ string <- if(obj) { paste(string, "t", sep="") } else { paste(string, "nil", sep="") }},
275            "double"={ string <- paste(string, as.character(obj), sep="") },
276            "integer"={ string <- paste(string, as.character(obj), sep="") },
277            stop(paste("can't write object ", obj, sep="")))
278     string
279   }
280   string <- ""
281   writeSexpToStringLoop(obj)
282 }
283
284 prin1ToString <- function(val) {
285   paste(deparse(val, backtick=TRUE, control=c("delayPromises", "keepNA")),
286         sep="", collapse="\n")
287 }
288
289 printToString <- function(val) {
290   paste(capture.output(print(val)), sep="", collapse="\n")
291 }
292
293 `swank:connection-info` <- function (slimeConnection, sldbState) {
294   list(quote(`:pid`), Sys.getpid(),
295        quote(`:package`), list(quote(`:name`), "R", quote(`:prompt`), "R> "),
296        quote(`:encoding`), list(quote(`:coding-systems`), list("utf-8-unix")),
297        quote(`:lisp-implementation`), list(quote(`:type`), "R",
298                                            quote(`:name`), "R",
299                                            quote(`:version`), paste(R.version$major, R.version$minor, sep=".")))
300 }
301
302 `swank:swank-require` <- function (slimeConnection, sldbState, contribs) {
303   for(contrib in contribs) {
304     filename <- sprintf("%s/%s.R", swankrPath, as.character(contrib))
305     if(file.exists(filename)) {
306       source(filename)
307     }
308   }
309   list()
310 }
311
312 `swank:create-repl` <- function(slimeConnection, sldbState, env, ...) {
313   list("R", "R")
314 }
315
316 makeReplResult <- function(value) {
317   string <- printToString(value)
318   list(quote(`:write-string`), string,
319        quote(`:repl-result`))
320 }
321
322 makeReplResultFunction <- makeReplResult
323
324 sendReplResult <- function(slimeConnection, value) {
325   result <- makeReplResultFunction(value)
326   sendToEmacs(slimeConnection, result)
327 }
328
329 sendReplResultFunction <- sendReplResult
330
331 `swank:listener-eval` <- function(slimeConnection, sldbState, string) {
332   ## O how ugly
333   string <- gsub("#\\.\\(swank:lookup-presented-object-or-lose([^)]*)\\)", ".(`swank:lookup-presented-object-or-lose`(slimeConnection, sldbState,\\1))", string)
334   for(expr in parse(text=string)) {
335     expr <- expr
336     ## O maybe this is even uglier
337     lookedup <- do.call("bquote", list(expr))
338     tmp <- withVisible(eval(lookedup, envir = globalenv()))
339     if(tmp$visible) {
340       sendReplResultFunction(slimeConnection, tmp$value)
341     }
342   }
343   list()
344 }
345
346 `swank:autodoc` <- function(slimeConnection, sldbState, rawForm, ...) {
347   "No Arglist Information"
348 }
349
350 `swank:operator-arglist` <- function(slimeConnection, sldbState, op, package) {
351   if(!exists(op, envir = globalenv())) {
352     return(list())
353   }
354   funoid <- get(op, envir = globalenv())
355   if(is.function(funoid)) {
356     args <- formals(funoid)
357     paste(sprintf("%s=%s", names(args), args), collapse=", ")
358   } else {
359     list()
360   }
361 }
362
363 `swank:throw-to-toplevel` <- function(slimeConnection, sldbState) {
364   condition <- simpleCondition("Throw to toplevel")
365   class(condition) <- c("swankTopLevel", class(condition))
366   signalCondition(condition)
367 }
368
369 `swank:backtrace` <- function(slimeConnection, sldbState, from=0, to=NULL) {
370   calls <- sldbState$calls
371   if(is.null(to)) to <- length(calls)
372   from <- from+1
373   calls <- lapply(calls[from:to],
374                   { frameNumber <- from-1;
375                     function (x) {
376                       ret <- list(frameNumber, paste(format(x), sep="", collapse=" "))
377                       frameNumber <<- 1+frameNumber
378                       ret
379                     }
380                   })
381 }
382
383 computeRestartsForEmacs <- function (sldbState) {
384   lapply(sldbState$restarts,
385          function(x) {
386            ## this is all a little bit internalsy
387            restartName <- x[[1]][[1]]
388            description <- restartDescription(x)
389            list(restartName, if(is.null(description)) restartName else description)
390          })
391 }
392
393 `swank:debugger-info-for-emacs` <- function(slimeConnection, sldbState, from=0, to=NULL) {
394   list(list(as.character(sldbState$condition), sprintf("  [%s]", class(sldbState$condition)[[1]]), FALSE),
395        computeRestartsForEmacs(sldbState),
396        `swank:backtrace`(slimeConnection, sldbState, from, to),
397        list(sldbState$id))
398 }
399
400 `swank:invoke-nth-restart-for-emacs` <- function(slimeConnection, sldbState, level, n) {
401   if(sldbState$level == level) {
402     invokeRestart(sldbState$restarts[[n+1]])
403   }
404 }
405
406 `swank:frame-source-location` <- function(slimeConnection, sldbState, n) {
407   call <- sldbState$calls[[n+1]]
408   srcref <- attr(call, "srcref")
409   srcfile <- attr(srcref, "srcfile")
410   if(is.null(srcfile)) {
411     list(quote(`:error`), "no srcfile")
412   } else {
413     filename <- get("filename", srcfile)
414     ## KLUDGE: what this means is "is the srcfile filename
415     ## absolute?"
416     if(substr(filename, 1, 1) == "/") {
417       file <- filename
418     } else {
419       file <- sprintf("%s/%s", srcfile$wd, filename)
420     }
421     list(quote(`:location`),
422          list(quote(`:file`), file),
423          list(quote(`:line`), srcref[[1]], srcref[[2]]-1),
424          FALSE)
425   }
426 }
427
428 `swank:buffer-first-change` <- function(slimeConnection, sldbState, filename) {
429   FALSE
430 }
431
432 `swank:eval-string-in-frame` <- function(slimeConnection, sldbState, string, index) {
433   frame <- sldbState$frames[[1+index]]
434   withRetryRestart("retry SLIME interactive evaluation request",
435                    value <- eval(parse(text=string), envir=frame))
436   printToString(value)
437 }
438
439 `swank:frame-locals-and-catch-tags` <- function(slimeConnection, sldbState, index) {
440   frame <- sldbState$frames[[1+index]]
441   objs <- ls(envir=frame)
442   if(identical(frame, globalenv())) {
443     objs <- c()
444   }
445   list(lapply(objs, function(name) { list(quote(`:name`), name,
446                                           quote(`:id`), 0,
447                                           quote(`:value`),
448                                           tryCatch({
449                                             printToString(eval(parse(text=name), envir=frame))
450                                           }, error=function(c) {
451                                             sprintf("error printing object")
452                                           }))}),
453        list())
454 }
455
456 `swank:simple-completions` <- function(slimeConnection, sldbState, prefix, package) {
457   literal2rx <- function(string) {
458     ## list of ERE metacharacters from ?regexp
459     gsub("([.\\|()[{^$*+?])", "\\\\\\1", string)
460   }
461   matches <- apropos(sprintf("^%s", literal2rx(prefix)), ignore.case=FALSE)
462   nmatches <- length(matches)
463   if(nmatches == 0) {
464     list(list(), "")
465   } else {
466     longest <- matches[order(nchar(matches))][1]
467     while(length(grep(sprintf("^%s", literal2rx(longest)), matches)) < nmatches) {
468       longest <- substr(longest, 1, nchar(longest)-1)
469     }
470     list(as.list(matches), longest)
471   }
472 }
473
474 `swank:compile-string-for-emacs` <- function(slimeConnection, sldbState, string, buffer, position, filename, policy) {
475   lineOffset <- charOffset <- colOffset <- NULL
476   for(pos in position) {
477     switch(as.character(pos[[1]]),
478            `:position` = {charOffset <- pos[[2]]},
479            `:line` = {lineOffset <- pos[[2]]; colOffset <- pos[[3]]},
480            warning("unknown content in pos", pos))
481   }
482   frob <- function(refs) {
483     lapply(refs,
484            function(x)
485            srcref(attr(x,"srcfile"),
486                   c(x[1]+lineOffset-1, ifelse(x[1]==1, x[2]+colOffset-1, x[2]),
487                     x[3]+lineOffset-1, ifelse(x[3]==1, x[4]+colOffset-1, x[4]),
488                     ifelse(x[1]==1, x[5]+colOffset-1, x[5]),
489                     ifelse(x[3]==1, x[6]+colOffset-1, x[6]))))
490   }
491   transformSrcrefs <- function(s) {
492     srcrefs <- attr(s, "srcref")
493     attribs <- attributes(s)
494     new <- 
495       switch(mode(s),
496              "call"=as.call(lapply(s, transformSrcrefs)),
497              "expression"=as.expression(lapply(s, transformSrcrefs)),
498              s)
499     attributes(new) <- attribs
500     if(!is.null(attr(s, "srcref"))) {
501       attr(new, "srcref") <- frob(srcrefs)
502     }
503     new
504   }
505   withRestarts({
506     times <- system.time({
507       exprs <- parse(text=string, srcfile=srcfile(filename))
508       eval(transformSrcrefs(exprs), envir = globalenv()) })},
509                abort="abort compilation")
510   list(quote(`:compilation-result`), list(), TRUE, times[3], FALSE, FALSE)
511 }
512
513 withRetryRestart <- function(description, expr) {
514   call <- substitute(expr)
515   retry <- TRUE
516   while(retry) {
517     retry <- FALSE
518     withRestarts(eval.parent(call),
519                  retry=list(description=description,
520                    handler=function() retry <<- TRUE))
521   }
522 }
523
524 `swank:interactive-eval` <-  function(slimeConnection, sldbState, string) {
525   withRetryRestart("retry SLIME interactive evaluation request",
526                    tmp <- withVisible(eval(parse(text=string), envir=globalenv())))
527   if(tmp$visible) {
528     prin1ToString(tmp$value)
529   } else {
530     "# invisible value"
531   }
532 }
533
534 `swank:eval-and-grab-output` <- function(slimeConnection, sldbState, string) {
535   withRetryRestart("retry SLIME interactive evaluation request",
536                    { output <-
537                        capture.output(tmp <- withVisible(eval(parse(text=string),
538                                                               envir=globalenv()))) })
539   output <- paste(output, sep="", collapse="\n")
540   if(tmp$visible) {
541     list(output, prin1ToString(tmp$value))
542   } else {
543     list(output, "# invisible value")
544   }
545 }
546
547 `swank:interactive-eval-region` <- function(slimeConnection, sldbState, string) {
548   withRetryRestart("retry SLIME interactive evaluation request",
549                    tmp <- withVisible(eval(parse(text=string), envir=globalenv())))
550   if(tmp$visible) {
551     prin1ToString(tmp$value)
552   } else {
553     "# invisible value"
554   }
555 }
556
557 `swank:find-definitions-for-emacs` <- function(slimeConnection, sldbState, string) {
558   if(exists(string, envir = globalenv())) {
559     thing <- get(string, envir = globalenv())
560     if(inherits(thing, "function")) {
561       body <- body(thing)
562       srcref <- attr(body, "srcref")
563       srcfile <- attr(body, "srcfile")
564       if(is.null(srcfile)) {
565         list()
566       } else {
567         filename <- get("filename", srcfile)
568         ## KLUDGE: what this means is "is the srcfile filename
569         ## absolute?"
570         if(substr(filename, 1, 1) == "/") {
571           file <- filename
572         } else {
573           file <- sprintf("%s/%s", srcfile$wd, filename)
574         }
575         list(list(sprintf("function %s", string),
576                   list(quote(`:location`),
577                        list(quote(`:file`), file),
578                        list(quote(`:line`), srcref[[2]][[1]], srcref[[2]][[2]]-1),
579                        list())))
580       }
581     } else {
582       list()
583     }
584   } else {
585     list()
586   }
587 }
588
589 `swank:value-for-editing` <- function(slimeConnection, sldbState, string) {
590   paste(deparse(eval(parse(text=string), envir = globalenv()), control="all"),
591         collapse="\n", sep="")
592 }
593
594 `swank:commit-edited-value` <- function(slimeConnection, sldbState, string, value) {
595   eval(parse(text=sprintf("%s <- %s", string, value)), envir = globalenv())
596   TRUE
597 }
598
599 resetInspector <- function(slimeConnection) {
600   assign("istate", list(), envir=slimeConnection)
601   assign("inspectorHistory", NULL, envir=slimeConnection)
602 }
603
604 `swank:init-inspector` <- function(slimeConnection, sldbState, string) {
605   withRetryRestart("retry SLIME inspection request",
606                    { resetInspector(slimeConnection)
607                      value <- inspectObject(slimeConnection, eval(parse(text=string), envir=globalenv()))
608                    })
609   value
610 }
611
612 inspectObject <- function(slimeConnection, object) {
613   vectorify <- function(x) {
614     if(is.vector(x)) {
615       x
616     } else {
617       list(x)
618     }
619   }
620   previous <- slimeConnection$istate
621   slimeConnection$istate <- new.env()
622   slimeConnection$istate$object <- object
623   slimeConnection$istate$previous <- previous
624   slimeConnection$istate$content <- emacsInspect(object)
625   if(!(vectorify(object) %in% slimeConnection$inspectorHistory)) {
626     slimeConnection$inspectorHistory <- c(slimeConnection$inspectorHistory, object)
627   }
628   if(!is.null(slimeConnection$istate$previous)) {
629     slimeConnection$istate$previous$`next` <- slimeConnection$istate
630   }
631   istateToElisp(slimeConnection$istate)
632 }
633
634 valuePart <- function(istate, object, string) {
635   list(quote(`:value`),
636        if(is.null(string)) printToString(object) else string,
637        assignIndexInParts(object, istate))
638 }
639
640 preparePart <- function(istate, part) {
641   if(is.character(part)) {
642     list(part)
643   } else {
644     switch(as.character(part[[1]]),
645            `:newline` = list("\n"),
646            `:value` = valuePart(istate, part[[2]], part[[3]]),
647            `:line` = list(printToString(part[[2]]), ": ",
648              valuePart(istate, part[[3]], NULL), "\n"))
649   }
650 }
651
652 prepareRange <- function(istate, start, end) {
653   range <- istate$content[start+1:min(end+1, length(istate$content))]
654   ps <- NULL
655   for(part in range) {
656     ps <- c(ps, preparePart(istate, part))
657   }
658   list(ps, if(length(ps)<end-start) { start+length(ps) } else { end+1000 },
659        start, end)
660 }
661
662 assignIndexInParts <- function(object, istate) {
663   ret <- 1+length(istate$parts)
664   istate$parts <- c(istate$parts, list(object))
665   ret
666 }
667
668 istateToElisp <- function(istate) {
669   list(quote(`:title`), deparse(istate$object, control="all", nlines=1),
670        quote(`:id`), assignIndexInParts(istate$object, istate),
671        quote(`:content`), prepareRange(istate, 0, 500))
672 }
673
674 emacsInspect <- function(object) {
675   UseMethod("emacsInspect")
676 }
677
678 emacsInspect.default <- function(thing) {
679   c(list(paste("a ", class(thing)[[1]], sep=""), list(quote(`:newline`))))
680 }
681
682 emacsInspect.list <- function(list) {
683   c(list("a list", list(quote(`:newline`))),
684     mapply(function(name, value) { list(list(quote(`:line`), name, value)) },
685            names(list), list))
686 }
687
688 emacsInspect.numeric <- function(numeric) {
689   c(list("a numeric", list(quote(`:newline`))),
690     mapply(function(name, value) { list(list(quote(`:line`), name, value)) },
691            (1:length(numeric)), numeric))
692 }
693
694 `swank:quit-inspector` <- function(slimeConnection, sldbState) {
695   resetInspector(slimeConnection)
696   FALSE
697 }
698
699 `swank:inspector-nth-part` <- function(slimeConnection, sldbState, index) {
700   slimeConnection$istate$parts[[index]]
701 }
702
703 `swank:inspect-nth-part` <- function(slimeConnection, sldbState, index) {
704   object <- `swank:inspector-nth-part`(slimeConnection, sldbState, index)
705   inspectObject(slimeConnection, object)
706 }
707
708 `swank:inspector-pop` <- function(slimeConnection, sldbState) {
709   if(!is.null(slimeConnection$istate$previous)) {
710     slimeConnection$istate <- slimeConnection$istate$previous
711     istateToElisp(slimeConnection$istate)
712   } else {
713     FALSE
714   }
715 }
716
717 `swank:inspector-next` <- function(slimeConnection, sldbState) {
718   if(!is.null(slimeConnection$istate$`next`)) {
719     slimeConnection$istate <- slimeConnection$istate$`next`
720     istateToElisp(slimeConnection$istate)
721   } else {
722     FALSE
723   }
724 }
725
726 `swank:inspector-eval` <- function(slimeConnection, sldbState, string) {
727   expr <- parse(text=string)[[1]]
728   object <- slimeConnection$istate$object
729   if(inherits(object, "list")|inherits(object, "environment")) {
730     substituted <- substituteDirect(expr, object)
731     eval(substituted, envir=globalenv())
732   } else {
733     eval(expr, envir=globalenv())
734   }
735 }
736
737 `swank:inspect-current-condition` <- function(slimeConnection, sldbState) {
738   resetInspector(slimeConnection)
739   inspectObject(slimeConnection, sldbState$condition)
740 }
741
742 `swank:inspect-frame-var` <- function(slimeConnection, sldbState, frame, var) {
743   resetInspector(slimeConnection)
744   frame <- sldbState$frames[[1+frame]]
745   name <- ls(envir=frame)[[1+var]]
746   object <- get(name, envir=frame)
747   inspectObject(slimeConnection, object)
748 }
749
750 `swank:default-directory` <- function(slimeConnection, sldbState) {
751   getwd()
752 }
753
754 `swank:set-default-directory` <- function(slimeConnection, sldbState, directory) {
755   setwd(directory)
756   `swank:default-directory`(slimeConnection, sldbState)
757 }
758
759 `swank:load-file` <- function(slimeConnection, sldbState, filename) {
760   source(filename, local=FALSE, keep.source=TRUE)
761   TRUE
762 }
763
764 `swank:compile-file-for-emacs` <- function(slimeConnection, sldbState, filename, loadp, ...) {
765   times <- system.time(parse(filename, srcfile=srcfile(filename)))
766   if(loadp) {
767     ## KLUDGE: inelegant, but works.  It might be more in the spirit
768     ## of things to keep the result of the parse above around to
769     ## evaluate.
770     `swank:load-file`(slimeConnection, sldbState, filename)
771   }
772   list(quote(`:compilation-result`), list(), TRUE, times[3], substitute(loadp), filename)
773 }
774
775 `swank:quit-lisp` <- function(slimeConnection, sldbState) {
776   quit()
777 }