The R Project SVN R

Rev

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

/*
 *  R : A Computer Language for Statistical Data Analysis
 *  Copyright (C) 2001-2014   The 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
 *  http://www.r-project.org/Licenses/
 */

#ifdef HAVE_CONFIG_H
# include <config.h>
#endif

#define R_USE_SIGNALS 1
#include <Defn.h>
#include <Internal.h>
#include <Rconnections.h>

#include <tre/tre.h>

static SEXP allocMatrixNA(SEXPTYPE, int, int);
static void transferVector(SEXP s, SEXP t);

static void con_cleanup(void *data)
{
    Rconnection con = data;
    if(con->isopen) con->close(con);
}

static Rboolean field_is_foldable_p(const char *, SEXP);

/* Use R_alloc as this might get interrupted */
static char *Rconn_getline2(Rconnection con)
{
    int c, bufsize = MAXELTSIZE, nbuf = -1;
    char *buf;

    buf = R_alloc(bufsize, sizeof(char));
    while((c = Rconn_fgetc(con)) != R_EOF) {
    if(nbuf+2 >= bufsize) { // allow for terminator below
        bufsize *= 2;
        char *buf2 = R_alloc(bufsize, sizeof(char));
        memcpy(buf2, buf, nbuf);
        buf = buf2;
    }
    if(c != '\n'){
        buf[++nbuf] = (char) c;
    } else {
        buf[++nbuf] = '\0';
        break;
    }
    }
    /* Make sure it is null-terminated even if file did not end with
     *  newline.
     */
    if(nbuf >= 0 && buf[nbuf]) buf[++nbuf] = '\0';
    return (nbuf == -1) ? NULL: buf;
}

SEXP attribute_hidden do_readDCF(SEXP call, SEXP op, SEXP args, SEXP env)
{
    int nwhat, nret, nc, nr, m, k, lastm, need;
    Rboolean blank_skip, field_skip = FALSE;
    int whatlen, dynwhat, buflen = 8096; // was 100, but that re-alloced often
    char *line, *buf;
    regex_t blankline, contline, trailblank, regline, eblankline;
    regmatch_t regmatch[1];
    SEXP file, what, what2, retval, retval2, dims, dimnames;
    Rconnection con = NULL;
    Rboolean wasopen, is_eblankline;
    RCNTXT cntxt;

    SEXP fold_excludes;
    Rboolean field_fold = TRUE, has_fold_excludes;
    const char *field_name;
    int offset = 0; /* -Wall */

    checkArity(op, args);

    file = CAR(args);
    con = getConnection(asInteger(file));
    wasopen = con->isopen;
    if(!wasopen) {
    if(!con->open(con)) error(_("cannot open the connection"));
    /* Set up a context which will close the connection on error */
    begincontext(&cntxt, CTXT_CCODE, R_NilValue, R_BaseEnv, R_BaseEnv,
             R_NilValue, R_NilValue);
    cntxt.cend = &con_cleanup;
    cntxt.cenddata = con;
    }
    if(!con->canread) error(_("cannot read from this connection"));

    args = CDR(args);
    PROTECT(what = coerceVector(CAR(args), STRSXP)); /* argument fields */
    nwhat = LENGTH(what);
    dynwhat = (nwhat == 0);

    args = CDR(args);
    PROTECT(fold_excludes = coerceVector(CAR(args), STRSXP));
    has_fold_excludes = (LENGTH(fold_excludes) > 0);

    buf = (char *) malloc(buflen);
    if(!buf) error(_("could not allocate memory for 'read.dcf'"));
    nret = 20;
    /* it is easier if we first have a record per column */
    PROTECT(retval = allocMatrixNA(STRSXP, LENGTH(what), nret));

    /* These used to use [:blank:] but that can match \xa0 as part of
       a UTF-8 character (and is nbspace on Windows). */ 
    tre_regcomp(&blankline, "^[[:blank:]]*$", REG_NOSUB & REG_EXTENDED);
    tre_regcomp(&trailblank, "[ \t]+$", REG_EXTENDED);
    tre_regcomp(&contline, "^[[:blank:]]+", REG_EXTENDED);
    tre_regcomp(&regline, "^[^:]+:[[:blank:]]*", REG_EXTENDED);
    tre_regcomp(&eblankline, "^[[:space:]]+\\.[[:space:]]*$", REG_EXTENDED);

    k = 0;
    lastm = -1; /* index of the field currently being recorded */
    blank_skip = TRUE;
    void *vmax = vmaxget();
    while((line = Rconn_getline2(con))) {
    if(strlen(line) == 0 ||
       tre_regexecb(&blankline, line, 0, 0, 0) == 0) {
        /* A blank line.  The first one after a record ends a new
         * record, subsequent ones are skipped */
        if(!blank_skip) {
        k++;
        if(k > nret - 1){
            nret *= 2;
            PROTECT(retval2 = allocMatrixNA(STRSXP, LENGTH(what), nret));
            transferVector(retval2, retval);
            UNPROTECT_PTR(retval);
            retval = retval2;
        }
        blank_skip = TRUE;
        lastm = -1;
        field_skip = FALSE;
        field_fold = TRUE;
        }
    } else {
        blank_skip = FALSE;
        if(tre_regexecb(&contline, line, 1, regmatch, 0) == 0) {
        /* A continuation line: wrong if at the beginning of a
           record. */
        if((lastm == -1) && !field_skip) {
            line[20] = '\0';
            error(_("Found continuation line starting '%s ...' at begin of record."),
              line);
        }
        if(lastm >= 0) {
            need = (int) strlen(CHAR(STRING_ELT(retval,
                            lastm + nwhat * k))) + 2;
            if(tre_regexecb(&eblankline, line, 0, NULL, 0) == 0) {
            is_eblankline = TRUE;
            } else {
            is_eblankline = FALSE;
            if(field_fold) {
                offset = regmatch[0].rm_eo;
                /* Also remove trailing whitespace. */
                if((tre_regexecb(&trailblank, line, 1,
                         regmatch, 0) == 0))
                line[regmatch[0].rm_so] = '\0';
            } else {
                offset = 0;
            }
            need += (int) strlen(line + offset);
            }
            if(buflen < need) {
            char *tmp = (char *) realloc(buf, need);
            if(!tmp) {
                free(buf);
                error(_("could not allocate memory for 'read.dcf'"));
            } else buf = tmp;
            buflen = need;
            }
            strcpy(buf,CHAR(STRING_ELT(retval, lastm + nwhat * k)));
            strcat(buf, "\n");
            if(!is_eblankline) strcat(buf, line + offset);
            SET_STRING_ELT(retval, lastm + nwhat * k, mkChar(buf));
        }
        } else {
        if(tre_regexecb(&regline, line, 1, regmatch, 0) == 0) {
            for(m = 0; m < nwhat; m++){
            whatlen = (int) strlen(CHAR(STRING_ELT(what, m)));
            if(strlen(line) > whatlen &&
               line[whatlen] == ':' &&
               strncmp(CHAR(STRING_ELT(what, m)),
                   line, whatlen) == 0) {
                /* An already known field we are recording. */
                lastm = m;
                field_skip = FALSE;
                field_name = CHAR(STRING_ELT(what, lastm));
                if(has_fold_excludes) {
                field_fold =
                    field_is_foldable_p(field_name,
                            fold_excludes);
                }
                if(field_fold) {
                offset = regmatch[0].rm_eo;
                /* Also remove trailing whitespace. */
                if((tre_regexecb(&trailblank, line, 1,
                         regmatch, 0) == 0))
                    line[regmatch[0].rm_so] = '\0';
                } else {
                offset = 0;
                }
                SET_STRING_ELT(retval, m + nwhat * k,
                       mkChar(line + offset));
                break;
            } else {
                /* This is a field, but not one prespecified */
                lastm = -1;
                field_skip = TRUE;
            }
            }
            if(dynwhat && (lastm == -1)) {
            /* A previously unseen field and we are
             * recording all fields */
            field_skip = FALSE;
            PROTECT(what2 = allocVector(STRSXP, nwhat+1));
            PROTECT(retval2 = allocMatrixNA(STRSXP,
                            nrows(retval)+1,
                            ncols(retval)));
            if(nwhat > 0) {
                copyVector(what2, what);
                for(nr = 0; nr < nrows(retval); nr++){
                for(nc = 0; nc < ncols(retval); nc++){
                    SET_STRING_ELT(retval2, nr+nc*nrows(retval2),
                           STRING_ELT(retval,
                                  nr+nc*nrows(retval)));
                }
                }
            }
            UNPROTECT_PTR(retval);
            UNPROTECT_PTR(what);
            retval = retval2;
            what = what2;
            /* Make sure enough space was used */
            need = (int) (Rf_strchr(line, ':') - line + 1);
            if(buflen < need){
                char *tmp = (char *) realloc(buf, need);
                if(!tmp) {
                free(buf);
                error(_("could not allocate memory for 'read.dcf'"));
                } else buf = tmp;
                buflen = need;
            }
            strncpy(buf, line, Rf_strchr(line, ':') - line);
            buf[Rf_strchr(line, ':') - line] = '\0';
            SET_STRING_ELT(what, nwhat, mkChar(buf));
            nwhat++;
            /* lastm uses C indexing, hence nwhat - 1 */
            lastm = nwhat - 1;
            field_name = CHAR(STRING_ELT(what, lastm));
            if(has_fold_excludes) {
                field_fold =
                field_is_foldable_p(field_name,
                            fold_excludes);
            }
            offset = regmatch[0].rm_eo;
            if(field_fold) {
                /* Also remove trailing whitespace. */
                if((tre_regexecb(&trailblank, line, 1,
                         regmatch, 0) == 0))
                line[regmatch[0].rm_so] = '\0';
            }
            SET_STRING_ELT(retval, lastm + nwhat * k,
                       mkChar(line + offset));
            }
        } else {
            /* Must be a regular line with no tag ... */
            line[20] = '\0';
            error(_("Line starting '%s ...' is malformed!"), line);
        }
        }
    }
    }
    vmaxset(vmax);
    if(!wasopen) {endcontext(&cntxt); con->close(con);}
    free(buf);
    tre_regfree(&blankline);
    tre_regfree(&contline);
    tre_regfree(&trailblank);
    tre_regfree(&regline);
    tre_regfree(&eblankline);

    if(!blank_skip) k++;

    /* and now transpose the whole matrix */
    PROTECT(retval2 = allocMatrixNA(STRSXP, k, LENGTH(what)));
    copyMatrix(retval2, retval, 1);

    PROTECT(dimnames = allocVector(VECSXP, 2));
    PROTECT(dims = allocVector(INTSXP, 2));
    INTEGER(dims)[0] = k;
    INTEGER(dims)[1] = LENGTH(what);
    SET_VECTOR_ELT(dimnames, 1, what);
    setAttrib(retval2, R_DimSymbol, dims);
    setAttrib(retval2, R_DimNamesSymbol, dimnames);
    UNPROTECT(6);
    return(retval2);
}


static SEXP allocMatrixNA(SEXPTYPE mode, int nrow, int ncol)
{
    int k;
    SEXP retval;

    PROTECT(retval = allocMatrix(mode, nrow, ncol));
    for(k = 0; k < LENGTH(retval); k++)
    SET_STRING_ELT(retval, k, NA_STRING);
    UNPROTECT(1);
    return(retval);
}

/* This one is needed because the normal copy operations will do
   recycling */

static void transferVector(SEXP s, SEXP t)
{
    for (int i = 0; i < LENGTH(t); i++)
    SET_STRING_ELT(s, i, STRING_ELT(t, i));
}

static Rboolean field_is_foldable_p(const char *field, SEXP excludes)
{
    int i, n = LENGTH(excludes);
    for(i = 0; i < n; i++) {
    if(strcmp(field, CHAR(STRING_ELT(excludes, i))) == 0)
        return FALSE;
    }
    return TRUE;
}