Skip to content
Snippets Groups Projects
Commit f1970097 authored by Mick Jordan's avatar Mick Jordan
Browse files

quit/cleanup related changes

rename BrowserQuitException to JumpToTopLevelException for more general use
refactor quit to separate cleanup action and implement GNU R semantics more closely
parent 53decd07
No related branches found
No related tags found
No related merge requests found
Showing
with 100 additions and 110 deletions
...@@ -58,7 +58,7 @@ import com.oracle.truffle.r.nodes.control.NextException; ...@@ -58,7 +58,7 @@ import com.oracle.truffle.r.nodes.control.NextException;
import com.oracle.truffle.r.nodes.function.PromiseHelperNode; import com.oracle.truffle.r.nodes.function.PromiseHelperNode;
import com.oracle.truffle.r.nodes.instrumentation.RInstrumentation; import com.oracle.truffle.r.nodes.instrumentation.RInstrumentation;
import com.oracle.truffle.r.runtime.ArgumentsSignature; import com.oracle.truffle.r.runtime.ArgumentsSignature;
import com.oracle.truffle.r.runtime.BrowserQuitException; import com.oracle.truffle.r.runtime.JumpToTopLevelException;
import com.oracle.truffle.r.runtime.FastROptions; import com.oracle.truffle.r.runtime.FastROptions;
import com.oracle.truffle.r.runtime.RArguments; import com.oracle.truffle.r.runtime.RArguments;
import com.oracle.truffle.r.runtime.RCaller; import com.oracle.truffle.r.runtime.RCaller;
...@@ -249,7 +249,7 @@ final class REngine implements Engine, Engine.Timings { ...@@ -249,7 +249,7 @@ final class REngine implements Engine, Engine.Timings {
return lastValue; return lastValue;
} catch (ReturnException ex) { } catch (ReturnException ex) {
return ex.getResult(); return ex.getResult();
} catch (DebugExitException | BrowserQuitException e) { } catch (DebugExitException | JumpToTopLevelException e) {
throw e; throw e;
} catch (RError e) { } catch (RError e) {
// RError prints the correct result on the console during construction // RError prints the correct result on the console during construction
...@@ -324,7 +324,7 @@ final class REngine implements Engine, Engine.Timings { ...@@ -324,7 +324,7 @@ final class REngine implements Engine, Engine.Timings {
return lastValue; return lastValue;
} catch (ReturnException ex) { } catch (ReturnException ex) {
return ex.getResult(); return ex.getResult();
} catch (DebugExitException | BrowserQuitException e) { } catch (DebugExitException | JumpToTopLevelException e) {
throw e; throw e;
} catch (RError e) { } catch (RError e) {
// TODO normal error reporting is done by the runtime // TODO normal error reporting is done by the runtime
...@@ -510,7 +510,7 @@ final class REngine implements Engine, Engine.Timings { ...@@ -510,7 +510,7 @@ final class REngine implements Engine, Engine.Timings {
// there can be an outer loop // there can be an outer loop
throw cfe; throw cfe;
} }
} catch (DebugExitException | BrowserQuitException e) { } catch (DebugExitException | JumpToTopLevelException e) {
CompilerDirectives.transferToInterpreter(); CompilerDirectives.transferToInterpreter();
throw e; throw e;
} catch (Throwable e) { } catch (Throwable e) {
......
...@@ -39,7 +39,7 @@ import com.oracle.truffle.api.source.Source; ...@@ -39,7 +39,7 @@ import com.oracle.truffle.api.source.Source;
import com.oracle.truffle.api.vm.PolyglotEngine; import com.oracle.truffle.api.vm.PolyglotEngine;
import com.oracle.truffle.r.engine.TruffleRLanguage; import com.oracle.truffle.r.engine.TruffleRLanguage;
import com.oracle.truffle.r.nodes.builtin.base.Quit; import com.oracle.truffle.r.nodes.builtin.base.Quit;
import com.oracle.truffle.r.runtime.BrowserQuitException; import com.oracle.truffle.r.runtime.JumpToTopLevelException;
import com.oracle.truffle.r.runtime.RCmdOptions; import com.oracle.truffle.r.runtime.RCmdOptions;
import com.oracle.truffle.r.runtime.RInternalError; import com.oracle.truffle.r.runtime.RInternalError;
import com.oracle.truffle.r.runtime.RRuntime; import com.oracle.truffle.r.runtime.RRuntime;
...@@ -228,7 +228,7 @@ public class RCommand { ...@@ -228,7 +228,7 @@ public class RCommand {
* them explicitly * them explicitly
*/ */
Throwable cause = e.getCause(); Throwable cause = e.getCause();
if (cause instanceof BrowserQuitException) { if (cause instanceof JumpToTopLevelException) {
// drop through to continue REPL // drop through to continue REPL
} else if (cause instanceof DebugExitException) { } else if (cause instanceof DebugExitException) {
throw (RuntimeException) cause; throw (RuntimeException) cause;
...@@ -255,7 +255,7 @@ public class RCommand { ...@@ -255,7 +255,7 @@ public class RCommand {
// interrupted by ctrl-c // interrupted by ctrl-c
} }
} }
} catch (BrowserQuitException e) { } catch (JumpToTopLevelException e) {
// can happen if user profile invokes browser (unlikely but possible) // can happen if user profile invokes browser (unlikely but possible)
} catch (EOFException ex) { } catch (EOFException ex) {
try { try {
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
* *
* Copyright (c) 1995-2012, The R Core Team * Copyright (c) 1995-2012, The R Core Team
* Copyright (c) 2003, The R Foundation * Copyright (c) 2003, The R Foundation
* Copyright (c) 2014, 2015, Oracle and/or its affiliates * Copyright (c) 2014, 2016, Oracle and/or its affiliates
* *
* All rights reserved. * All rights reserved.
*/ */
......
...@@ -155,7 +155,7 @@ char *R_HomeDir(void) { ...@@ -155,7 +155,7 @@ char *R_HomeDir(void) {
jmethodID R_HomeDirMethodID = checkGetMethodID(jniEnv, CallRFFIHelperClass, "R_HomeDir", "()Ljava/lang/String;", 1); jmethodID R_HomeDirMethodID = checkGetMethodID(jniEnv, CallRFFIHelperClass, "R_HomeDir", "()Ljava/lang/String;", 1);
jstring homeDir = (*jniEnv)->CallStaticObjectMethod(jniEnv, CallRFFIHelperClass, R_HomeDirMethodID); jstring homeDir = (*jniEnv)->CallStaticObjectMethod(jniEnv, CallRFFIHelperClass, R_HomeDirMethodID);
const char *homeDirChars = stringToChars(jniEnv, homeDir); const char *homeDirChars = stringToChars(jniEnv, homeDir);
return homeDirChars; return (char *)homeDirChars;
} }
void R_SaveGlobalEnvToFile(const char *f) { void R_SaveGlobalEnvToFile(const char *f) {
...@@ -279,7 +279,9 @@ void uR_Busy(int x) { ...@@ -279,7 +279,9 @@ void uR_Busy(int x) {
} }
void uR_CleanUp(SA_TYPE x, int y, int z) { void uR_CleanUp(SA_TYPE x, int y, int z) {
unimplemented("R_CleanUp"); JNIEnv *jniEnv = getEnv();
jmethodID methodID = checkGetMethodID(jniEnv, CallRFFIHelperClass, "R_CleanUp", "(III)V", 1);
(*jniEnv)->CallStaticVoidMethod(jniEnv, CallRFFIHelperClass, methodID, x, y, z);
} }
int uR_ShowFiles(int a, const char **b, const char **c, int uR_ShowFiles(int a, const char **b, const char **c,
...@@ -404,6 +406,11 @@ JNIEXPORT jstring JNICALL Java_com_oracle_truffle_r_runtime_ffi_jnr_JNI_1REmbed_ ...@@ -404,6 +406,11 @@ JNIEXPORT jstring JNICALL Java_com_oracle_truffle_r_runtime_ffi_jnr_JNI_1REmbed_
return result; return result;
} }
JNIEXPORT void JNICALL Java_com_oracle_truffle_r_runtime_ffi_jnr_JNI_1REmbed_nativeCleanUp(JNIEnv *jniEnv, jclass c, jint x, jint y, jint z) {
(*ptr_R_CleanUp)(x, y, z);
}
void uR_PolledEvents(void) { void uR_PolledEvents(void) {
unimplemented("R_PolledEvents"); unimplemented("R_PolledEvents");
} }
......
/* /*
* Copyright (c) 2013, 2016, Oracle and/or its affiliates. All rights reserved. * This material is distributed under the GNU General Public License
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * Version 2. You may review the terms of this license at
* http://www.gnu.org/licenses/gpl-2.0.html
* *
* This code is free software; you can redistribute it and/or modify it * Copyright (c) 1995, 1996, 1997 Robert Gentleman and Ross Ihaka
* under the terms of the GNU General Public License version 2 only, as * Copyright (c) 1995-2014, The R Core Team
* published by the Free Software Foundation. * Copyright (c) 2002-2008, The R Foundation
* Copyright (c) 2013, 2016, Oracle and/or its affiliates
* *
* This code is distributed in the hope that it will be useful, but WITHOUT * All rights reserved.
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/ */
package com.oracle.truffle.r.nodes.builtin.base; package com.oracle.truffle.r.nodes.builtin.base;
...@@ -31,11 +21,13 @@ import com.oracle.truffle.r.nodes.builtin.CastBuilder; ...@@ -31,11 +21,13 @@ import com.oracle.truffle.r.nodes.builtin.CastBuilder;
import com.oracle.truffle.r.nodes.builtin.RBuiltinNode; import com.oracle.truffle.r.nodes.builtin.RBuiltinNode;
import com.oracle.truffle.r.nodes.builtin.helpers.BrowserInteractNode; import com.oracle.truffle.r.nodes.builtin.helpers.BrowserInteractNode;
import com.oracle.truffle.r.runtime.RBuiltin; import com.oracle.truffle.r.runtime.RBuiltin;
import com.oracle.truffle.r.runtime.RCleanUp;
import com.oracle.truffle.r.runtime.RError; import com.oracle.truffle.r.runtime.RError;
import com.oracle.truffle.r.runtime.RInternalError;
import com.oracle.truffle.r.runtime.RRuntime;
import com.oracle.truffle.r.runtime.RStartParams;
import com.oracle.truffle.r.runtime.RStartParams.SA_TYPE; import com.oracle.truffle.r.runtime.RStartParams.SA_TYPE;
import com.oracle.truffle.r.runtime.RVisibility; import com.oracle.truffle.r.runtime.RVisibility;
import com.oracle.truffle.r.runtime.Utils;
import com.oracle.truffle.r.runtime.context.ConsoleHandler;
import com.oracle.truffle.r.runtime.context.RContext; import com.oracle.truffle.r.runtime.context.RContext;
import com.oracle.truffle.r.runtime.data.RNull; import com.oracle.truffle.r.runtime.data.RNull;
import com.oracle.truffle.r.runtime.data.model.RAbstractStringVector; import com.oracle.truffle.r.runtime.data.model.RAbstractStringVector;
...@@ -43,17 +35,15 @@ import com.oracle.truffle.r.runtime.data.model.RAbstractStringVector; ...@@ -43,17 +35,15 @@ import com.oracle.truffle.r.runtime.data.model.RAbstractStringVector;
@RBuiltin(name = "quit", visibility = RVisibility.OFF, kind = INTERNAL, parameterNames = {"save", "status", "runLast"}) @RBuiltin(name = "quit", visibility = RVisibility.OFF, kind = INTERNAL, parameterNames = {"save", "status", "runLast"})
public abstract class Quit extends RBuiltinNode { public abstract class Quit extends RBuiltinNode {
private static final String[] SAVE_VALUES = new String[]{"yes", "no", "ask", "default"};
@Override @Override
protected void createCasts(CastBuilder casts) { protected void createCasts(CastBuilder casts) {
casts.toInteger(1); casts.toInteger(1);
} }
private void checkSaveValue(String save) throws RError { private SA_TYPE checkSaveValue(String save) throws RError {
for (String saveValue : SAVE_VALUES) { for (String saveValue : SA_TYPE.SAVE_VALUES) {
if (saveValue.equals(save)) { if (saveValue.equals(save)) {
return; return SA_TYPE.fromString(save);
} }
} }
throw RError.error(this, RError.Message.QUIT_SAVE); throw RError.error(this, RError.Message.QUIT_SAVE);
...@@ -61,75 +51,34 @@ public abstract class Quit extends RBuiltinNode { ...@@ -61,75 +51,34 @@ public abstract class Quit extends RBuiltinNode {
@Specialization @Specialization
@TruffleBoundary @TruffleBoundary
protected Object doQuit(RAbstractStringVector saveArg, int status, byte runLast) { protected Object doQuit(RAbstractStringVector saveArg, final int status, final byte runLastIn) {
if (BrowserInteractNode.inBrowser()) { if (BrowserInteractNode.inBrowser()) {
RError.warning(this, RError.Message.BROWSER_QUIT); RError.warning(this, RError.Message.BROWSER_QUIT);
return null; return RNull.instance;
} }
String save = saveArg.getDataAt(0); String save = saveArg.getDataAt(0);
checkSaveValue(save); RStartParams.SA_TYPE ask = checkSaveValue(save);
// Quit does not divert its output to sink if (ask == SA_TYPE.SAVEASK && !RContext.getInstance().getConsoleHandler().isInteractive()) {
ConsoleHandler consoleHandler = RContext.getInstance().getConsoleHandler(); RError.warning(this, RError.Message.QUIT_ASK_INTERACTIVE);
if (save.equals("default")) {
if (RContext.getInstance().getStartParams().getSaveAction() == SA_TYPE.NOSAVE) {
save = "no";
} else {
if (consoleHandler.isInteractive()) {
save = "ask";
} else {
// TODO options must be set, check
}
}
} }
boolean doSave = false; if (status == RRuntime.INT_NA) {
if (save.equals("ask")) { RError.warning(this, RError.Message.QUIT_INVALID_STATUS);
W: while (true) {
consoleHandler.setPrompt("");
consoleHandler.print("Save workspace image? [y/n/c]: ");
String response = consoleHandler.readLine();
if (response == null) {
throw Utils.exit(status);
}
if (response.length() == 0) {
continue;
}
switch (response.charAt(0)) {
case 'c':
consoleHandler.setPrompt("> ");
return RNull.instance;
case 'y':
doSave = true;
break W;
case 'n':
doSave = false;
break W;
default:
continue;
}
}
}
if (doSave) {
/*
* we do not have an efficient way to tell if the global environment is "dirty", so we
* save always
*/
RContext.getEngine().checkAndRunStartupShutdownFunction("sys.save.image", new String[]{"\".RData\""});
RContext.getInstance().getConsoleHandler().flushHistory();
} }
if (runLast != 0) { byte runLast = runLastIn;
RContext.getEngine().checkAndRunStartupShutdownFunction(".Last"); if (runLast == RRuntime.LOGICAL_NA) {
// TODO errors should return to prompt if interactive RError.warning(this, RError.Message.QUIT_INVALID_RUNLAST);
RContext.getEngine().checkAndRunStartupShutdownFunction(".Last.sys"); runLast = RRuntime.LOGICAL_FALSE;
} }
// destroy the context inside exit() method as it still needs to access it RCleanUp.cleanUp(ask, status, RRuntime.fromLogical(runLast));
Utils.exit(status); throw RInternalError.shouldNotReachHere("cleanup returned");
return null;
} }
@SuppressWarnings("unused") @SuppressWarnings("unused")
@Fallback @Fallback
protected Object doQuit(Object saveArg, Object status, Object runLast) { protected Object doQuit(Object saveArg, Object status, Object runLast) {
if (RRuntime.asString(saveArg) == null) {
throw RError.error(this, RError.Message.QUIT_ASK);
}
throw RError.error(this, RError.Message.INVALID_OR_UNIMPLEMENTED_ARGUMENTS); throw RError.error(this, RError.Message.INVALID_OR_UNIMPLEMENTED_ARGUMENTS);
} }
......
...@@ -25,7 +25,7 @@ package com.oracle.truffle.r.nodes.builtin.fastr; ...@@ -25,7 +25,7 @@ package com.oracle.truffle.r.nodes.builtin.fastr;
import com.oracle.truffle.api.CompilerDirectives.TruffleBoundary; import com.oracle.truffle.api.CompilerDirectives.TruffleBoundary;
import com.oracle.truffle.api.dsl.Specialization; import com.oracle.truffle.api.dsl.Specialization;
import com.oracle.truffle.r.nodes.builtin.RBuiltinNode; import com.oracle.truffle.r.nodes.builtin.RBuiltinNode;
import com.oracle.truffle.r.runtime.BrowserQuitException; import com.oracle.truffle.r.runtime.JumpToTopLevelException;
import com.oracle.truffle.r.runtime.RBuiltin; import com.oracle.truffle.r.runtime.RBuiltin;
import com.oracle.truffle.r.runtime.RBuiltinKind; import com.oracle.truffle.r.runtime.RBuiltinKind;
import com.oracle.truffle.r.runtime.RError; import com.oracle.truffle.r.runtime.RError;
...@@ -55,7 +55,7 @@ public abstract class FastRThrowIt extends RBuiltinNode { ...@@ -55,7 +55,7 @@ public abstract class FastRThrowIt extends RBuiltinNode {
throw new Utils.DebugExitException(); throw new Utils.DebugExitException();
case "Q": case "Q":
case "BRQ": case "BRQ":
throw new BrowserQuitException(); throw new JumpToTopLevelException();
default: default:
throw RError.error(this, RError.Message.GENERIC, "unknown case: " + name); throw RError.error(this, RError.Message.GENERIC, "unknown case: " + name);
} }
......
...@@ -28,7 +28,7 @@ import com.oracle.truffle.api.frame.MaterializedFrame; ...@@ -28,7 +28,7 @@ import com.oracle.truffle.api.frame.MaterializedFrame;
import com.oracle.truffle.api.frame.VirtualFrame; import com.oracle.truffle.api.frame.VirtualFrame;
import com.oracle.truffle.api.source.Source; import com.oracle.truffle.api.source.Source;
import com.oracle.truffle.r.nodes.builtin.base.Quit; import com.oracle.truffle.r.nodes.builtin.base.Quit;
import com.oracle.truffle.r.runtime.BrowserQuitException; import com.oracle.truffle.r.runtime.JumpToTopLevelException;
import com.oracle.truffle.r.runtime.RArguments; import com.oracle.truffle.r.runtime.RArguments;
import com.oracle.truffle.r.runtime.RRuntime; import com.oracle.truffle.r.runtime.RRuntime;
import com.oracle.truffle.r.runtime.RSrcref; import com.oracle.truffle.r.runtime.RSrcref;
...@@ -109,7 +109,7 @@ public abstract class BrowserInteractNode extends RNode { ...@@ -109,7 +109,7 @@ public abstract class BrowserInteractNode extends RNode {
exitMode = FINISH; exitMode = FINISH;
break LW; break LW;
case "Q": case "Q":
throw new BrowserQuitException(); throw new JumpToTopLevelException();
case "where": { case "where": {
if (RArguments.getDepth(mFrame) > 1) { if (RArguments.getDepth(mFrame) > 1) {
Object stack = Utils.createTraceback(0); Object stack = Utils.createTraceback(0);
......
...@@ -49,7 +49,7 @@ import com.oracle.truffle.r.nodes.control.BreakException; ...@@ -49,7 +49,7 @@ import com.oracle.truffle.r.nodes.control.BreakException;
import com.oracle.truffle.r.nodes.control.NextException; import com.oracle.truffle.r.nodes.control.NextException;
import com.oracle.truffle.r.nodes.instrumentation.RInstrumentation; import com.oracle.truffle.r.nodes.instrumentation.RInstrumentation;
import com.oracle.truffle.r.runtime.ArgumentsSignature; import com.oracle.truffle.r.runtime.ArgumentsSignature;
import com.oracle.truffle.r.runtime.BrowserQuitException; import com.oracle.truffle.r.runtime.JumpToTopLevelException;
import com.oracle.truffle.r.runtime.FunctionUID; import com.oracle.truffle.r.runtime.FunctionUID;
import com.oracle.truffle.r.runtime.RArguments; import com.oracle.truffle.r.runtime.RArguments;
import com.oracle.truffle.r.runtime.RArguments.DispatchArgs; import com.oracle.truffle.r.runtime.RArguments.DispatchArgs;
...@@ -280,7 +280,7 @@ public final class FunctionDefinitionNode extends RRootNode implements RSyntaxNo ...@@ -280,7 +280,7 @@ public final class FunctionDefinitionNode extends RRootNode implements RSyntaxNo
} catch (RError e) { } catch (RError e) {
CompilerDirectives.transferToInterpreter(); CompilerDirectives.transferToInterpreter();
throw e; throw e;
} catch (DebugExitException | BrowserQuitException e) { } catch (DebugExitException | JumpToTopLevelException e) {
/* /*
* These relate to the debugging support. exitHandlers must be suppressed and the * These relate to the debugging support. exitHandlers must be suppressed and the
* exceptions must pass through unchanged; they are not errors * exceptions must pass through unchanged; they are not errors
......
...@@ -27,12 +27,14 @@ import java.nio.charset.StandardCharsets; ...@@ -27,12 +27,14 @@ import java.nio.charset.StandardCharsets;
import com.oracle.truffle.api.source.Source; import com.oracle.truffle.api.source.Source;
import com.oracle.truffle.r.runtime.RArguments; import com.oracle.truffle.r.runtime.RArguments;
import com.oracle.truffle.r.runtime.RCaller; import com.oracle.truffle.r.runtime.RCaller;
import com.oracle.truffle.r.runtime.RCleanUp;
import com.oracle.truffle.r.runtime.REnvVars; import com.oracle.truffle.r.runtime.REnvVars;
import com.oracle.truffle.r.runtime.RError; import com.oracle.truffle.r.runtime.RError;
import com.oracle.truffle.r.runtime.RErrorHandling; import com.oracle.truffle.r.runtime.RErrorHandling;
import com.oracle.truffle.r.runtime.RInternalError; import com.oracle.truffle.r.runtime.RInternalError;
import com.oracle.truffle.r.runtime.RRuntime; import com.oracle.truffle.r.runtime.RRuntime;
import com.oracle.truffle.r.runtime.RType; import com.oracle.truffle.r.runtime.RType;
import com.oracle.truffle.r.runtime.RStartParams.SA_TYPE;
import com.oracle.truffle.r.runtime.context.Engine.ParseException; import com.oracle.truffle.r.runtime.context.Engine.ParseException;
import com.oracle.truffle.r.runtime.context.RContext; import com.oracle.truffle.r.runtime.context.RContext;
import com.oracle.truffle.r.runtime.data.RAttributable; import com.oracle.truffle.r.runtime.data.RAttributable;
...@@ -733,6 +735,11 @@ public class CallRFFIHelper { ...@@ -733,6 +735,11 @@ public class CallRFFIHelper {
return REnvVars.rHome(); return REnvVars.rHome();
} }
@SuppressWarnings("unused")
private static void R_CleanUp(int sa, int status, int runlast) {
RCleanUp.stdCleanUp(SA_TYPE.values()[sa], status, runlast != 0);
}
// Checkstyle: resume method name check // Checkstyle: resume method name check
public static Object validate(Object x) { public static Object validate(Object x) {
......
/* /*
* Copyright (c) 2013, 2014, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2013, 2016, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
...@@ -23,9 +23,10 @@ ...@@ -23,9 +23,10 @@
package com.oracle.truffle.r.runtime; package com.oracle.truffle.r.runtime;
/** /**
* Thrown in response to the "Q" command in the browser. * Thrown whenever the system wants to return to the top level, e.g. "Q" in browser, "c" in the
* {@code quit} builtin.
*/ */
public class BrowserQuitException extends RuntimeException { public class JumpToTopLevelException extends RuntimeException {
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
......
...@@ -673,6 +673,9 @@ public final class RError extends RuntimeException { ...@@ -673,6 +673,9 @@ public final class RError extends RuntimeException {
BROWSER_QUIT("cannot quit from browser"), BROWSER_QUIT("cannot quit from browser"),
QUIT_ASK("one of \"yes\", \"no\", \"ask\" or \"default\" expected."), QUIT_ASK("one of \"yes\", \"no\", \"ask\" or \"default\" expected."),
QUIT_SAVE("unrecognized value of 'save'"), QUIT_SAVE("unrecognized value of 'save'"),
QUIT_ASK_INTERACTIVE("save=\"ask\" in non-interactive use: command-line default will be used"),
QUIT_INVALID_STATUS("invalid 'status', 0 assumed"),
QUIT_INVALID_RUNLAST("invalid 'runLast', FALSE assumed"),
ENVIRONMENTS_COERCE("environments cannot be coerced to other types"), ENVIRONMENTS_COERCE("environments cannot be coerced to other types"),
CLOSURE_COERCE("cannot coerce type 'closure' to vector of type 'integer'"); CLOSURE_COERCE("cannot coerce type 'closure' to vector of type 'integer'");
......
...@@ -30,13 +30,34 @@ import com.oracle.truffle.r.runtime.context.RContext; ...@@ -30,13 +30,34 @@ import com.oracle.truffle.r.runtime.context.RContext;
public class RStartParams { public class RStartParams {
public enum SA_TYPE { public enum SA_TYPE {
NORESTORE, NORESTORE(null),
RESTORE, RESTORE(null),
DEFAULT, DEFAULT("default"),
NOSAVE, NOSAVE("no"),
SAVE, SAVE("yes"),
SAVEASK, SAVEASK("ask"),
SUICIDE SUICIDE(null);
private String userName;
private SA_TYPE(String userName) {
this.userName = userName;
}
public static final String[] SAVE_VALUES = new String[]{"yes", "no", "ask", "default"};
public String getUserName() {
return userName;
}
public static SA_TYPE fromString(String s) {
for (SA_TYPE t : values()) {
if (t.userName != null && t.userName.equals(s)) {
return t;
}
}
return null;
}
} }
private boolean quiet; private boolean quiet;
......
/* /*
* Copyright (c) 2014, 2015, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
......
...@@ -124,7 +124,7 @@ int main(int argc, char **argv) { ...@@ -124,7 +124,7 @@ int main(int argc, char **argv) {
Rstart Rp = &rp; Rstart Rp = &rp;
R_DefParamsFunc defp = (R_DefParamsFunc) dlsym(handle, "R_DefParams"); R_DefParamsFunc defp = (R_DefParamsFunc) dlsym(handle, "R_DefParams");
(*defp)(Rp); (*defp)(Rp);
Rp->SaveAction = SA_NOSAVE; Rp->SaveAction = SA_SAVEASK;
R_SetParamsFunc setp = (R_SetParamsFunc) dlsym(handle, "R_SetParams"); R_SetParamsFunc setp = (R_SetParamsFunc) dlsym(handle, "R_SetParams");
(*setp)(Rp); (*setp)(Rp);
ptr_stdR_CleanUp = ptr_R_CleanUp; ptr_stdR_CleanUp = ptr_R_CleanUp;
......
...@@ -149,6 +149,7 @@ com.oracle.truffle.r.nodes.builtin/src/com/oracle/truffle/r/nodes/builtin/base/L ...@@ -149,6 +149,7 @@ com.oracle.truffle.r.nodes.builtin/src/com/oracle/truffle/r/nodes/builtin/base/L
com.oracle.truffle.r.nodes.builtin/src/com/oracle/truffle/r/nodes/builtin/base/LoadSaveFunctions.java,gnu_r_gentleman_ihaka.copyright com.oracle.truffle.r.nodes.builtin/src/com/oracle/truffle/r/nodes/builtin/base/LoadSaveFunctions.java,gnu_r_gentleman_ihaka.copyright
com.oracle.truffle.r.nodes.builtin/src/com/oracle/truffle/r/nodes/builtin/base/Merge.java,gnu_r_gentleman_ihaka2.copyright com.oracle.truffle.r.nodes.builtin/src/com/oracle/truffle/r/nodes/builtin/base/Merge.java,gnu_r_gentleman_ihaka2.copyright
com.oracle.truffle.r.nodes.builtin/src/com/oracle/truffle/r/nodes/builtin/base/Order.java,gnu_r_gentleman_ihaka.copyright com.oracle.truffle.r.nodes.builtin/src/com/oracle/truffle/r/nodes/builtin/base/Order.java,gnu_r_gentleman_ihaka.copyright
com.oracle.truffle.r.nodes.builtin/src/com/oracle/truffle/r/nodes/builtin/base/Quit.java,gnu_r_gentleman_ihaka.copyright
com.oracle.truffle.r.nodes.builtin/src/com/oracle/truffle/r/nodes/builtin/base/Rank.java,gnu_r_gentleman_ihaka.copyright com.oracle.truffle.r.nodes.builtin/src/com/oracle/truffle/r/nodes/builtin/base/Rank.java,gnu_r_gentleman_ihaka.copyright
com.oracle.truffle.r.nodes.builtin/src/com/oracle/truffle/r/nodes/builtin/base/Prod.java,purdue.copyright com.oracle.truffle.r.nodes.builtin/src/com/oracle/truffle/r/nodes/builtin/base/Prod.java,purdue.copyright
com.oracle.truffle.r.nodes.builtin/src/com/oracle/truffle/r/nodes/builtin/base/Rank.java,gnu_r_gentleman_ihaka.copyright com.oracle.truffle.r.nodes.builtin/src/com/oracle/truffle/r/nodes/builtin/base/Rank.java,gnu_r_gentleman_ihaka.copyright
...@@ -189,6 +190,7 @@ com.oracle.truffle.r.nodes/src/com/oracle/truffle/r/nodes/unary/IsFactorNode.jav ...@@ -189,6 +190,7 @@ com.oracle.truffle.r.nodes/src/com/oracle/truffle/r/nodes/unary/IsFactorNode.jav
com.oracle.truffle.r.parser/src/com/oracle/truffle/r/parser/R.g,purdue.copyright com.oracle.truffle.r.parser/src/com/oracle/truffle/r/parser/R.g,purdue.copyright
com.oracle.truffle.r.runtime/src/com/oracle/truffle/r/runtime/RSrcref.java,gnu_r.copyright com.oracle.truffle.r.runtime/src/com/oracle/truffle/r/runtime/RSrcref.java,gnu_r.copyright
com.oracle.truffle.r.runtime/src/com/oracle/truffle/r/runtime/RStartParams.java,gnu_r.copyright com.oracle.truffle.r.runtime/src/com/oracle/truffle/r/runtime/RStartParams.java,gnu_r.copyright
com.oracle.truffle.r.runtime/src/com/oracle/truffle/r/runtime/RCleanUp.java,gnu_r_gentleman_ihaka2.copyright
com.oracle.truffle.r.runtime/src/com/oracle/truffle/r/runtime/data/RTypedValue.java,gnu_r_gentleman_ihaka.copyright com.oracle.truffle.r.runtime/src/com/oracle/truffle/r/runtime/data/RTypedValue.java,gnu_r_gentleman_ihaka.copyright
com.oracle.truffle.r.runtime/src/com/oracle/truffle/r/runtime/ffi/DLL.java,gnu_r.copyright com.oracle.truffle.r.runtime/src/com/oracle/truffle/r/runtime/ffi/DLL.java,gnu_r.copyright
com.oracle.truffle.r.runtime/src/com/oracle/truffle/r/runtime/gnur/SEXPTYPE.java,gnu_r.copyright com.oracle.truffle.r.runtime/src/com/oracle/truffle/r/runtime/gnur/SEXPTYPE.java,gnu_r.copyright
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment