The R Project SVN R

Rev

Rev 68956 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

/*
 *  R : A Computer Language for Statistical Data Analysis
 *  file shext.c
 *  Copyright (C) 2001  Guido Masarotto and Brian Ripley
 *                2004-2022  R Core Team
 *
 *  This program 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.
 *
 *  This program 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 this program; if not, a copy is available at
 *  https://www.R-project.org/Licenses/
 */

#define WIN32_LEAN_AND_MEAN 1
#include <windows.h>
#include <shlobj.h>

static int ShellGetPersonalDirectory(char *folder)
  /* Folder is assumed to be at least MAX_PATH long */
{
    LPMALLOC g_pMalloc;
    LPITEMIDLIST pidlUser;
    int result;

    result = 0;

    /* Get the shell's allocator. */
    if (SUCCEEDED(SHGetMalloc(&g_pMalloc))) {

    /* Get the PIDL of the user's Directory. */
    if (SUCCEEDED(SHGetSpecialFolderLocation(0, CSIDL_PERSONAL, &pidlUser))) {
        if (SUCCEEDED(SHGetPathFromIDList(pidlUser, folder))) result = 1;
        g_pMalloc->lpVtbl->Free(g_pMalloc, pidlUser);
    }
    }
    return(result);
}


static char RUser[MAX_PATH];
#include <winbase.h>
extern void R_Suicide(char *s);

char *getRUser()
{
    /*
     * try R_USER then HOME then Windows homes then working directory
     */
    char *p, *q;

    if ((p = getenv("R_USER"))) {
    if(strlen(p) >= MAX_PATH) R_Suicide("Invalid R_USER");
    strcpy(RUser, p);
    } else if ((p = getenv("HOME"))) {
    if(strlen(p) >= MAX_PATH) R_Suicide("Invalid HOME");
    strcpy(RUser, p);
    } else if (ShellGetPersonalDirectory(RUser)) {
    /* nothing to do */;
    } else if ((p = getenv("HOMEDRIVE")) && (q = getenv("HOMEPATH"))) {
    if(strlen(p) >= MAX_PATH) R_Suicide("Invalid HOMEDRIVE");
    strcpy(RUser, p);
    if(strlen(RUser) + strlen(q) >= MAX_PATH)
        R_Suicide("Invalid HOMEDRIVE+HOMEPATH");
    strcat(RUser, q);
    } else {
    GetCurrentDirectory(MAX_PATH, RUser);
    }
    p = RUser + (strlen(RUser) - 1);
    /* remove trailing file separator(s), unless root directory on a drive */
    while (p > RUser && (*p == '/' || *p == '\\')
           && (p > RUser+2 || *(p-1) != ':'))  *p-- = '\0';
    return RUser;
}