blob: ea204b87bc025101d6c6509bf776a0f642197a27 [file] [log] [blame]
/*=============================================================================#
# Copyright (c) 2010, 2017 Stephan Wahlbrink and others.
#
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
# https://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
# which is available at https://www.apache.org/licenses/LICENSE-2.0.
#
# SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
#
# Contributors:
# Stephan Wahlbrink <sw@wahlbrink.eu> - initial API and implementation
#=============================================================================*/
package org.eclipse.statet.r.core.renv;
/**
* Reference to an R "runtime" environment (configuration).
* Stays up-to-date even the configuration changed.
*/
public interface IREnv {
/**
* The R environment id for the default configuration in the workbench
*/
String DEFAULT_WORKBENCH_ENV_ID= "default-workbench"; //$NON-NLS-1$
/**
* The prefix of R environment ids for user defined configurations
*/
String USER_ENV_ID_PREFIX= "user-"; //$NON-NLS-1$
/**
* The prefix of R environment ids for user defined configurations of local R installations
*/
String USER_LOCAL_ENV_ID_PREFIX= USER_ENV_ID_PREFIX + "local-"; //$NON-NLS-1$
/**
* The prefix of R environment ids for user defined configurations of remote R installations
*/
String USER_REMOTE_ENV_ID_PREFIX= USER_ENV_ID_PREFIX + "remote-"; //$NON-NLS-1$
/**
* The id of the R environment.
*
* The id of an instance of {@link IREnv} and {@link IREnvConfiguration} never changes.
*
* @return the id
*/
String getId();
/**
* The current name of the R environment.
*
* @return the name
*/
String getName();
/**
* Resolves finally the reference and returns the configuration, if available.
*
* @return the configuration if available, otherwise <code>null</code>.
*/
IREnvConfiguration getConfig();
/**
* Resolves virtual references (like workbench default) to references of a real configuration.
*
* A virtual reference can return <code>null</code>, if it doesn't currently point to a valid
* configuration. A reference of a real configuration always return itself.
*
* @return the final reference, if available, otherwise <code>null</code>.
*/
IREnv resolve();
}