Rev 26266 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
/*R : A Computer Language for Statistical Data AnalysisCopyright (C) 1995-1996 Robert Gentleman and Ross IhakaCopyright (C) 1997-2003 Robert Gentleman, Ross Ihakaand the R Development Core TeamThis program is free software; you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe Free Software Foundation; either version 2 of the License, or (atyour option) any later version.This program is distributed in the hope that it will be useful, butWITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNUGeneral Public License for more details.You should have received a copy of the GNU General Public Licensealong with this program; if not, write to the Free SoftwareFoundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307,U.S.A.*//*See ../unix/system.txt for a description of functions*/#ifdef HAVE_CONFIG_H#include <config.h>#endif#include "Defn.h"#include "Fileio.h"#include "Startup.h"#include <string.h>extern SA_TYPE SaveAction;extern SA_TYPE RestoreAction;extern Rboolean LoadSiteFile;extern Rboolean LoadInitFile;extern Rboolean DebugInitFile;/* Permanent copy of the command line arguments and the numberof them passed to the application.These are populated via the routine R_set_command_line_arguments()called from R_common_command_line().*/int NumCommandLineArgs = 0;char **CommandLineArgs = NULL;/** 4) INITIALIZATION AND TERMINATION ACTIONS*/void R_InitialData(void){R_RestoreGlobalEnv();}FILE *R_OpenLibraryFile(char *file){char buf[256];FILE *fp;snprintf(buf, 256, "%s/library/base/R/%s", R_Home, file);fp = R_fopen(buf, "r");return fp;}char *R_LibraryFileName(char *file, char *buf, size_t bsize){if (snprintf(buf, bsize, "%s/library/base/R/%s", R_Home, file) < 0)error("R_LibraryFileName: buffer too small");return buf;}FILE *R_OpenSysInitFile(void){char buf[256];FILE *fp;snprintf(buf, 256, "%s/library/base/R/Rprofile", R_Home);fp = R_fopen(buf, "r");return fp;}FILE *R_OpenSiteFile(void){char buf[256];FILE *fp;fp = NULL;if (LoadSiteFile) {if ((fp = R_fopen(getenv("R_PROFILE"), "r")))return fp;if ((fp = R_fopen(getenv("RPROFILE"), "r")))return fp;snprintf(buf, 256, "%s/etc/Rprofile.site", R_Home);if ((fp = R_fopen(buf, "r")))return fp;snprintf(buf, 256, "%s/etc/Rprofile", R_Home);if ((fp = R_fopen(buf, "r")))return fp;}return fp;}/* Saving and Restoring the Global Environment */static char workspace_name[100] = ".RData";void set_workspace_name(char *fn){strcpy(workspace_name, fn);}void R_RestoreGlobalEnv(void){if(RestoreAction == SA_RESTORE) {R_RestoreGlobalEnvFromFile(workspace_name, R_Quiet);}}void R_SaveGlobalEnv(void){R_SaveGlobalEnvToFile(".RData");}/** 5) FILESYSTEM INTERACTION*//** This call provides a simple interface to the "stat" system call.*/#ifdef HAVE_STAT#include <sys/types.h>#ifdef HAVE_SYS_STAT_H# include <sys/stat.h>#endifRboolean R_FileExists(char *path){struct stat sb;return stat(R_ExpandFileName(path), &sb) == 0;}double R_FileMtime(char *path){struct stat sb;if (stat(R_ExpandFileName(path), &sb) != 0)error("cannot determine file modification time of %s", path);return sb.st_mtime;}#elseRboolean R_FileExists(char *path){error("file existence is not available on this system");}double R_FileMtime(char *path){error("file modification time is not available on this system");return 0.0; /* not reached */}#endif/** Unix file names which begin with "." are invisible.*/Rboolean R_HiddenFile(char *name){if (name && name[0] != '.') return 0;else return 1;}FILE *R_fopen(const char *filename, const char *mode){return(filename ? fopen(filename, mode) : NULL );}/** 6) SYSTEM INFORMATION*//* The location of the R system files */char *R_HomeDir(){return getenv("R_HOME");}/** 7) PLATFORM DEPENDENT FUNCTIONS*//* The __APPLE__ code below is for OS X */#ifdef Win32# include <windows.h>#elif defined(__APPLE__)# include <crt_externs.h># define environ (*_NSGetEnviron())#elseextern char ** environ;#endifSEXP do_getenv(SEXP call, SEXP op, SEXP args, SEXP env){int i, j;char *s;SEXP ans;checkArity(op, args);if (!isString(CAR(args)))errorcall(call, "wrong type for argument");i = LENGTH(CAR(args));if (i == 0) {#ifdef Win32char *envir, *e;envir = (char *) GetEnvironmentStrings();for (i = 0, e = envir; strlen(e) > 0; i++, e += strlen(e)+1);PROTECT(ans = allocVector(STRSXP, i));for (i = 0, e = envir; strlen(e) > 0; i++, e += strlen(e)+1)SET_STRING_ELT(ans, i, mkChar(e));FreeEnvironmentStrings(envir);#elsechar **e;for (i = 0, e = environ; *e != NULL; i++, e++);PROTECT(ans = allocVector(STRSXP, i));for (i = 0, e = environ; *e != NULL; i++, e++)SET_STRING_ELT(ans, i, mkChar(*e));#endif} else {PROTECT(ans = allocVector(STRSXP, i));for (j = 0; j < i; j++) {s = getenv(CHAR(STRING_ELT(CAR(args), j)));if (s == NULL)SET_STRING_ELT(ans, j, mkChar(""));elseSET_STRING_ELT(ans, j, mkChar(s));}}UNPROTECT(1);return (ans);}#ifdef HAVE_PUTENVstatic int Rputenv(char *str){char *buf;buf = (char *) malloc((strlen(str) + 1) * sizeof(char));if(!buf) return 1;strcpy(buf, str);putenv(buf);/* no free here: storage remains in use */return 0;}#endifSEXP do_putenv(SEXP call, SEXP op, SEXP args, SEXP env){#ifdef HAVE_PUTENVint i, n;SEXP ans, vars;checkArity(op, args);if (!isString(vars =CAR(args)))errorcall(call, "wrong type for argument");n = LENGTH(vars);PROTECT(ans = allocVector(LGLSXP, n));for (i = 0; i < n; i++) {LOGICAL(ans)[i] = Rputenv(CHAR(STRING_ELT(vars, i))) == 0;}UNPROTECT(1);return ans;#elseerror("`putenv' is not available on this system");return R_NilValue; /* -Wall */#endif}SEXP do_interactive(SEXP call, SEXP op, SEXP args, SEXP rho){SEXP rval;rval=allocVector(LGLSXP, 1);LOGICAL(rval)[0]= (R_Interactive) ? 1 : 0;return rval;}/** INITIALIZATION HELPER CODE*/extern void R_ShowMessage(char *);void R_DefParams(Rstart Rp){Rp->R_Quiet = FALSE;Rp->R_Slave = FALSE;Rp->R_Interactive = TRUE;Rp->R_Verbose = FALSE;Rp->RestoreAction = SA_RESTORE;Rp->SaveAction = SA_SAVEASK;Rp->LoadSiteFile = TRUE;Rp->LoadInitFile = TRUE;Rp->DebugInitFile = FALSE;Rp->vsize = R_VSIZE;Rp->nsize = R_NSIZE;Rp->max_vsize = R_SIZE_T_MAX;Rp->max_nsize = R_SIZE_T_MAX;Rp->NoRenviron = FALSE;}#define Max_Nsize 50000000 /* about 1.4Gb 32-bit, 2.8Gb 64-bit */#define Max_Vsize R_SIZE_T_MAX /* unlimited */#define Min_Nsize 220000#define Min_Vsize (1*Mega)void R_SizeFromEnv(Rstart Rp){int ierr;R_size_t value;char *p;if((p = getenv("R_VSIZE"))) {value = R_Decode2Long(p, &ierr);if(ierr != 0 || value > Max_Vsize || value < Min_Vsize)R_ShowMessage("WARNING: invalid R_VSIZE ignored\n");elseRp->vsize = value;}if((p = getenv("R_NSIZE"))) {value = R_Decode2Long(p, &ierr);if(ierr != 0 || value > Max_Nsize || value < Min_Nsize)R_ShowMessage("WARNING: invalid R_NSIZE ignored\n");elseRp->nsize = value;}}static void SetSize(R_size_t vsize, R_size_t nsize){char msg[1024];/* vsize >0 to catch long->int overflow */if (vsize < 1000 && vsize > 0) {R_ShowMessage("WARNING: vsize ridiculously low, Megabytes assumed\n");vsize *= Mega;}if(vsize < Min_Vsize || vsize > Max_Vsize) {sprintf(msg, "WARNING: invalid v(ector heap)size `%lu' ignored\n""using default = %gM\n", vsize, R_VSIZE / Mega);R_ShowMessage(msg);R_VSize = R_VSIZE;} elseR_VSize = vsize;if(nsize < Min_Nsize || nsize > Max_Nsize) {sprintf(msg, "WARNING: invalid language heap (n)size `%lu' ignored,"" using default = %ld\n", nsize, R_NSIZE);R_ShowMessage(msg);R_NSize = R_NSIZE;} elseR_NSize = nsize;}void R_SetParams(Rstart Rp){R_Quiet = Rp->R_Quiet;R_Slave = Rp->R_Slave;R_Interactive = Rp->R_Interactive;R_Verbose = Rp->R_Verbose;RestoreAction = Rp->RestoreAction;SaveAction = Rp->SaveAction;LoadSiteFile = Rp->LoadSiteFile;LoadInitFile = Rp->LoadInitFile;DebugInitFile = Rp->DebugInitFile;SetSize(Rp->vsize, Rp->nsize);R_SetMaxNSize(Rp->max_nsize);R_SetMaxVSize(Rp->max_vsize);CommandLineArgs = Rp->CommandLineArgs;NumCommandLineArgs = Rp->NumCommandLineArgs;#ifdef Win32R_SetWin32(Rp);#endif}/* Remove and process common command-line arguments *//*This copies the command line arguments to the Rstartstructure. The memory is obtained from calloc, etc.since these are permanent and it is not intended thatthey be modified. This is why they are copied beforebeing processed and removed from the list.We might store these as a SEXP. I have no strong opinionabout this.*/voidR_set_command_line_arguments(int argc, char **argv, Rstart Rp){int i;Rp->NumCommandLineArgs = argc;Rp->CommandLineArgs = (char**) calloc(argc, sizeof(char*));for(i = 0; i < argc; i++) {Rp->CommandLineArgs[i] = strdup(argv[i]);}}/*The .Internal which returns the command line arguments that are storedin global variables.*/SEXPdo_commandArgs(SEXP call, SEXP op, SEXP args, SEXP env){int i;SEXP vals;vals = allocVector(STRSXP, NumCommandLineArgs);for(i = 0; i < NumCommandLineArgs; i++) {SET_STRING_ELT(vals, i, mkChar(CommandLineArgs[i]));}return(vals);}voidR_common_command_line(int *pac, char **argv, Rstart Rp){int ac = *pac, newac = 1; /* argv[0] is process name */int ierr;R_size_t value;char *p, **av = argv, msg[1024];Rboolean processing = TRUE;R_RestoreHistory = 1;while(--ac) {if(processing && **++av == '-') {if (!strcmp(*av, "--version")) {PrintVersion(msg);R_ShowMessage(msg);exit(0);}else if(!strcmp(*av, "--args")) {/* copy this through for further processing */argv[newac++] = *av;processing = FALSE;}#if 0else if(!strcmp(*av, "--print-nsize")) {Rprintf("%d\n", R_NSize);exit(0);}else if(!strcmp(*av, "--print-vsize")) {Rprintf("%d\n", R_VSize);exit(0);}#endifelse if(!strcmp(*av, "--save")) {Rp->SaveAction = SA_SAVE;}else if(!strcmp(*av, "--no-save")) {Rp->SaveAction = SA_NOSAVE;}else if(!strcmp(*av, "--restore")) {Rp->RestoreAction = SA_RESTORE;}else if(!strcmp(*av, "--no-restore")) {Rp->RestoreAction = SA_NORESTORE;R_RestoreHistory = 0;}else if(!strcmp(*av, "--no-restore-data")) {Rp->RestoreAction = SA_NORESTORE;}else if(!strcmp(*av, "--no-restore-history")) {R_RestoreHistory = 0;}else if (!strcmp(*av, "--silent") ||!strcmp(*av, "--quiet") ||!strcmp(*av, "-q")) {Rp->R_Quiet = TRUE;}else if (!strcmp(*av, "--vanilla")) {Rp->SaveAction = SA_NOSAVE; /* --no-save */Rp->RestoreAction = SA_NORESTORE; /* --no-restore */Rp->LoadSiteFile = FALSE; /* --no-site-file */Rp->LoadInitFile = FALSE; /* --no-init-file */R_RestoreHistory = 0; /* --no-restore-history */Rp->NoRenviron = TRUE;}else if (!strcmp(*av, "--no-environ")) {Rp->NoRenviron = TRUE;}else if (!strcmp(*av, "--verbose")) {Rp->R_Verbose = TRUE;}else if (!strcmp(*av, "--slave") ||!strcmp(*av, "-s")) {Rp->R_Quiet = TRUE;Rp->R_Slave = TRUE;Rp->SaveAction = SA_NOSAVE;}else if (!strcmp(*av, "--no-site-file")) {Rp->LoadSiteFile = FALSE;}else if (!strcmp(*av, "--no-init-file")) {Rp->LoadInitFile = FALSE;}else if (!strcmp(*av, "--debug-init")) {Rp->DebugInitFile = TRUE;}else if (!strcmp(*av, "-save") ||!strcmp(*av, "-nosave") ||!strcmp(*av, "-restore") ||!strcmp(*av, "-norestore") ||!strcmp(*av, "-noreadline") ||!strcmp(*av, "-quiet") ||!strcmp(*av, "-V") ||!strcmp(*av, "-n") ||!strcmp(*av, "-v")) {snprintf(msg, 1024,"WARNING: option %s no longer supported\n", *av);R_ShowMessage(msg);}/* mop up --max/min/-n/vsize */else if(strncmp(*av+7, "size", 4) == 0) {if(strlen(*av) < 13) {ac--; av++; p = *av;}else p = &(*av)[12];if (p == NULL) {snprintf(msg, 1024,"WARNING: no value given for %s\n", *av);R_ShowMessage(msg);break;}value = R_Decode2Long(p, &ierr);if(ierr) {if(ierr < 0)snprintf(msg, 1024,"WARNING: %s value is invalid: ignored\n",*av);elsesprintf(msg, "WARNING: %s=%ld`%c': too large and ignored\n",*av, value,(ierr == 1) ? 'M': ((ierr == 2) ? 'K' : 'k'));R_ShowMessage(msg);} else {if(!strncmp(*av, "--min-nsize", 11)) Rp->nsize = value;if(!strncmp(*av, "--max-nsize", 11)) Rp->max_nsize = value;if(!strncmp(*av, "--min-vsize", 11)) Rp->vsize = value;if(!strncmp(*av, "--max-vsize", 11)) Rp->max_vsize = value;}}else if(strncmp(*av, "--vsize", 7) == 0) {if(strlen(*av) < 9) {ac--; av++; p = *av;}elsep = &(*av)[8];if (p == NULL) {R_ShowMessage("WARNING: no vsize given\n");break;}value = R_Decode2Long(p, &ierr);if(ierr) {if(ierr < 0) /* R_common_badargs(); */sprintf(msg, "WARNING: --vsize value is invalid: ignored\n");elsesprintf(msg, "WARNING: --vsize=%ld`%c': too large and ignored\n",value,(ierr == 1) ? 'M': ((ierr == 2) ? 'K' : 'k'));R_ShowMessage(msg);} elseRp->vsize = value;}else if(strncmp(*av, "--nsize", 7) == 0) {if(strlen(*av) < 9) {ac--; av++; p = *av;}elsep = &(*av)[8];if (p == NULL) {R_ShowMessage("WARNING: no nsize given\n");break;}value = R_Decode2Long(p, &ierr);if(ierr) {if(ierr < 0) /* R_common_badargs(); */sprintf(msg, "WARNING: --nsize value is invalid: ignored\n");elsesprintf(msg, "WARNING: --nsize=%lu`%c': too large and ignored\n",value,(ierr == 1) ? 'M': ((ierr == 2) ? 'K':'k'));R_ShowMessage(msg);} elseRp->nsize = value;}else { /* unknown -option */argv[newac++] = *av;}}else {argv[newac++] = *av;}}*pac = newac;return;}/* ------------------- process .Renviron files in C ----------------- *//* remove leading and trailing space */static char *rmspace(char *s){int i;for (i = strlen(s) - 1; i >= 0 && isspace((int)s[i]); i--) s[i] = '\0';for (i = 0; isspace((int)s[i]); i++);return s + i;}/* look for ${FOO:-bar} constructs, recursively */static char *findterm(char *s){char *p, *q;if(!strlen(s)) return "";if(strncmp(s, "${", 2)) return s;/* found one, so remove leading ${ and final } */if(s[strlen(s) - 1] != '}') return "";s[strlen(s) - 1] = '\0';s += 2;p = strchr(s, '-');if(!p) return "";q = p + 1; /* start of value */if(p - s > 1 && *(p-1) == ':') *(p-1) = '\0'; else *p = '\0';s = rmspace(s);if(!strlen(s)) return "";p = getenv(s);if(p && strlen(p)) return p; /* variable was set and non-empty */return findterm(q);}static void Putenv(char *a, char *b){char *buf, *value, *p, *q, quote='\0';int inquote = 0;buf = (char *) malloc((strlen(a) + strlen(b) + 2) * sizeof(char));if(!buf) R_Suicide("allocation failure in reading Renviron");strcpy(buf, a); strcat(buf, "=");value = buf+strlen(buf);/* now process the value */for(p = b, q = value; *p; p++) {/* remove quotes around sections, preserve \ inside quotes */if(!inquote && (*p == '"' || *p == '\'')) {inquote = 1;quote = *p;continue;}if(inquote && *p == quote && *(p-1) != '\\') {inquote = 0;continue;}if(!inquote && *p == '\\') {if(*(p+1) == '\n') p++;else if(*(p+1) == '\\') *q++ = *p;continue;}if(inquote && *p == '\\' && *(p+1) == quote) continue;*q++ = *p;}*q = '\0';putenv(buf);/* no free here: storage remains in use */}#define BUF_SIZE 255#define MSG_SIZE 2000static int process_Renviron(char *filename){FILE *fp;char *s, *p, sm[BUF_SIZE], *lhs, *rhs, msg[MSG_SIZE+50];int errs = 0;if (!filename || !(fp = fopen(filename, "r"))) return 0;snprintf(msg, MSG_SIZE+50,"\n File %s contains invalid line(s)", filename);while(fgets(sm, BUF_SIZE, fp)) {sm[BUF_SIZE-1] = '\0';s = rmspace(sm);if(strlen(s) == 0 || s[0] == '#') continue;if(!(p = strchr(s, '='))) {errs++;if(strlen(msg) < MSG_SIZE) {strcat(msg, "\n "); strcat(msg, s);}continue;}*p = '\0';lhs = rmspace(s);rhs = findterm(rmspace(p+1));/* set lhs = rhs */if(strlen(lhs) && strlen(rhs)) Putenv(lhs, rhs);}fclose(fp);if (errs) {strcat(msg, "\n They were ignored\n");R_ShowMessage(msg);}return 1;}/* try system Renviron: R_HOME/etc/Renviron. Unix only. */void process_system_Renviron(){char buf[PATH_MAX];if(strlen(R_Home) + strlen("/etc/Renviron") > PATH_MAX - 1) {R_ShowMessage("path to system Renviron is too long: skipping");return;}strcpy(buf, R_Home);strcat(buf, "/etc/Renviron");if(!process_Renviron(buf))R_ShowMessage("cannot find system Renviron");}/* try site Renviron: R_ENVIRON, then R_HOME/etc/Renviron.site. */void process_site_Renviron (){char buf[PATH_MAX], *p = getenv("R_ENVIRON");if(p && strlen(p)) {process_Renviron(p);return;}if(strlen(R_Home) + strlen("/etc/Renviron.site") > PATH_MAX - 1) {R_ShowMessage("path to Renviron.site is too long: skipping");return;}snprintf(buf, PATH_MAX, "%s/etc/Renviron.site", R_Home);process_Renviron(buf);}/* try user Renviron: ./.Renviron, then ~/.Renviron */void process_user_Renviron(){char *s;if(process_Renviron(".Renviron")) return;#ifdef Unixs = R_ExpandFileName("~/.Renviron");#endif#ifdef Win32{char buf[1024];/* R_USER is not necessarily set yet, so we have to work harder */s = getenv("R_USER");if(!s) s = getenv("HOME");if(!s) return;snprintf(buf, 1024, "%s/.Renviron", s);s = buf;}#endifprocess_Renviron(s);}SEXP do_tempdir(SEXP call, SEXP op, SEXP args, SEXP env){SEXP ans;PROTECT(ans = allocVector(STRSXP, 1));SET_STRING_ELT(ans, 0, mkChar(R_TempDir));UNPROTECT(1);return (ans);}SEXP do_tempfile(SEXP call, SEXP op, SEXP args, SEXP env){SEXP ans, pattern, tempdir;char *tn, *td, *tm;int i, n1, n2, slen;checkArity(op, args);pattern = CAR(args); n1 = length(pattern);tempdir = CADR(args); n2 = length(tempdir);if (!isString(pattern))errorcall(call, "invalid filename pattern");if (!isString(tempdir))errorcall(call, "invalid tempdir");if (n1 < 1)errorcall(call, "no patterns");if (n2 < 1)errorcall(call, "no tempdir");slen = (n1 > n2) ? n1 : n2;PROTECT(ans = allocVector(STRSXP, slen));for(i = 0; i < slen; i++) {tn = CHAR( STRING_ELT( pattern , i%n1 ) );td = CHAR( STRING_ELT( tempdir , i%n2 ) );/* try to get a new file name */tm = R_tmpnam(tn, td);SET_STRING_ELT(ans, i, mkChar(tm));if(tm) free(tm);}UNPROTECT(1);return (ans);}#ifdef HAVE_POPENFILE *R_popen(char *command, char *type){FILE *fp;#ifdef __APPLE_CC__/* Luke recommends this to fix PR#1140 */sigset_t ss;sigaddset(&ss, SIGPROF);sigprocmask(SIG_BLOCK, &ss, NULL);fp = popen(command, type);sigprocmask(SIG_UNBLOCK, &ss, NULL);#elsefp = popen(command, type);#endifreturn fp;}#endif /* HAVE_POPEN */int R_system(char *command){int val;#ifdef __APPLE_CC__/* Luke recommends this to fix PR#1140 */sigset_t ss;sigaddset(&ss, SIGPROF);sigprocmask(SIG_BLOCK, &ss, NULL);val = system(command);sigprocmask(SIG_UNBLOCK, &ss, NULL);#elseval = system(command);#endifreturn val;}