1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220
|
// -*- mode: C++; c-indent-level: 4; c-basic-offset: 4; indent-tabs-mode: nil; -*-
//
// trimws.h: Rcpp R/C++ interface class library -- trimws
//
// Copyright (C) 2017 Nathan Russell
//
// This file is part of Rcpp.
//
// Rcpp 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.
//
// Rcpp 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 Rcpp. If not, see <http://www.gnu.org/licenses/>.
#ifndef Rcpp__sugar__trimws_h
#define Rcpp__sugar__trimws_h
#include <string>
#include <cstring>
namespace Rcpp {
namespace sugar {
namespace detail {
/* NB: std::isspace is not used because it also counts
'\f' and '\v' as whitespace, whereas base::trimws only
checks for ' ', '\t', '\r', and '\n' */
inline bool isws(const char c) {
return c == ' ' || c == '\t' || c == '\n' || c == '\r';
}
inline const char* trim_left(const char* str) {
if (!str) {
return "";
}
while (isws(*str)) {
++str;
}
return str;
}
inline const char* trim_right(const char* str, R_len_t sz, std::string* buff) {
if (!str) {
return "";
}
buff->clear();
const char* ptr = str + sz - 1;
for (; ptr > str && isws(*ptr); --sz, --ptr);
buff->append(str, sz - isws(*ptr));
return buff->c_str();
}
inline const char* trim_both(const char* str, R_len_t sz, std::string* buff) {
if (!str) {
return "";
}
buff->clear();
while (isws(*str)) {
++str; --sz;
}
const char* ptr = str + sz - 1;
for (; ptr > str && isws(*ptr); --sz, --ptr);
buff->append(str, sz);
return buff->c_str();
}
} // detail
} // sugar
inline Vector<STRSXP> trimws(const Vector<STRSXP>& x, const char* which = "both") {
R_xlen_t i = 0, sz = x.size();
Vector<STRSXP> res = no_init(sz);
std::string buffer;
if (*which == 'b') {
for (; i < sz; i++) {
if (traits::is_na<STRSXP>(x[i])) {
res[i] = x[i];
} else {
res[i] = sugar::detail::trim_both(
x[i],
LENGTH(x[i]),
&buffer
);
}
}
} else if (*which == 'l') {
for (; i < sz; i++) {
if (traits::is_na<STRSXP>(x[i])) {
res[i] = x[i];
} else {
res[i] = sugar::detail::trim_left(x[i]);
}
}
} else if (*which == 'r') {
for (; i < sz; i++) {
if (traits::is_na<STRSXP>(x[i])) {
res[i] = x[i];
} else {
res[i] = sugar::detail::trim_right(
x[i],
LENGTH(x[i]),
&buffer
);
}
}
} else {
stop("Invalid `which` argument '%s'!", which);
return Vector<STRSXP>::create("Unreachable");
}
return res;
}
inline Matrix<STRSXP> trimws(const Matrix<STRSXP>& x, const char* which = "both") {
R_xlen_t i = 0, sz = x.size();
int nr = x.nrow(), nc = x.ncol();
Matrix<STRSXP> res = no_init(nr, nc);
std::string buffer;
if (*which == 'b') {
for (; i < sz; i++) {
if (traits::is_na<STRSXP>(x[i])) {
res[i] = x[i];
} else {
res[i] = sugar::detail::trim_both(
x[i],
LENGTH(x[i]),
&buffer
);
}
}
} else if (*which == 'l') {
for (; i < sz; i++) {
if (traits::is_na<STRSXP>(x[i])) {
res[i] = x[i];
} else {
res[i] = sugar::detail::trim_left(x[i]);
}
}
} else if (*which == 'r') {
for (; i < sz; i++) {
if (traits::is_na<STRSXP>(x[i])) {
res[i] = x[i];
} else {
res[i] = sugar::detail::trim_right(
x[i],
LENGTH(x[i]),
&buffer
);
}
}
} else {
stop("Invalid `which` argument '%s'!", which);
return Matrix<STRSXP>();
}
return res;
}
inline String trimws(const String& str, const char* which = "both") {
std::string buffer;
if (*which == 'b') {
if (traits::is_na<STRSXP>(str.get_sexp())) {
return String(str.get_sexp());
}
return sugar::detail::trim_both(
str.get_cstring(),
LENGTH(str.get_sexp()),
&buffer
);
}
if (*which == 'l') {
if (traits::is_na<STRSXP>(str.get_sexp())) {
return String(str.get_sexp());
}
return sugar::detail::trim_left(str.get_cstring());
}
if (*which == 'r') {
if (traits::is_na<STRSXP>(str.get_sexp())) {
return String(str.get_sexp());
}
return sugar::detail::trim_right(
str.get_cstring(),
LENGTH(str.get_sexp()),
&buffer
);
}
stop("Invalid `which` argument '%s'!", which);
return String("Unreachable");
}
} // Rcpp
#endif // Rcpp__sugar__trimws_h
|