Nothing
# Copyright (C) 2017-2018 Spencer Aiello
#
# This file is part of JuniperKernel.
#
# JuniperKernel is free software: you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
#
# JuniperKernel 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 License for more details.
#
# You should have received a copy of the GNU General Public License
# along with JuniperKernel. If not, see <http://www.gnu.org/licenses/>.
#' Handler for the execute_request Message Type
#'
#' @title Execute Handler
#' @param request_msg
#' A list passed in from \code{doRequest} representing the
#' deserialized \code{execute_request} message JSON.
#'
#' @return
#' A list having names \code{msg_type} and \code{content}. The
#' \code{msg_type} is \code{execute_reply}, which corresponds
#' to the \code{execute_request} message. The \code{content} field
#' complies with the Jupyter wire message protocol specification
#' for \code{execute_reply} messages.
#'
#' @author Spencer Aiello
#' @references \url{http://jupyter-client.readthedocs.io/en/latest/messaging.html#execution-results}
#'
#' @examples
#' \dontrun{
#' request_msg <- list("code"="5+5")
#' execute_request(request_msg)
#' }
#'
#' @export
execute_request <- function(request_msg) {
content <- request_msg$content
rebroadcast_input(.kernel(), content$code, cnt <- .getAndIncCnt()) # increase count no matter what
status <- .tryEval(content$code, cnt)
content <- list(status=status, execution_count=cnt)
if( status=="ok" ) {
content$payload = list()
help_payload <- .JUNIPER$jk_payload
if( !is.null(help_payload) ) {
content$payload <- list(list(source='page', data=help_payload))
}
content$user_expressions=list()
}
.JUNIPER$jk_payload <- NULL
list(msg_type = "execute_reply", content = content)
}
.tryEval <- function(code, cnt) {
tryCatch(
{
res <- .chkDTVisible(withVisible(eval(parse(text=code), envir=.GlobalEnv)))
.setGlobal(".Last.value", res$value, 1L)
if( class(res$value)=='help_files_with_topic' ) {
.JUNIPER$jk_payload <- .mimeBundle(res$value)
return("ok")
}
if( res$visible )
.execute_result(res$value, cnt)
return("ok")
}
, error=function(e) {
if( e$call!="eval(parse(text = code), envir = .GlobalEnv)" )
message(e, "\n")
else
message(e$message, "\n")
.setGlobal('.Last.error', e, 1L)
return("error")
}
, warning=function(w) {
if( w$call!="eval(parse(text = code), envir = .GlobalEnv)" )
message(w, "\n")
else
message(w$message, "\n")
.setGlobal('.Last.warning', w, 1L)
return("ok")
}
, interrupt = function(.) return("abort")
)
}
# build and send the content of an execute_result iopub message.
.execute_result <- function(result, cnt) {
content <- list(data=.mimeBundle(result), execution_count=cnt, metadata=list())
execute_result(.kernel(), content)
}
.chkDTVisible <- function(result) {
if( "data.table" %in% oldClass(result$value) )
result$visible <- result$visible && data.table::shouldPrint(result$value)
result
}
# global env set hack
.setGlobal <- function(key, val, pos) {
assign(key, val, envir=as.environment(pos))
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.