Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make sure path is in native encoding #477

Merged
merged 8 commits into from
May 11, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,19 @@
# readxl 1.1.0.9000

## Breaking change

* Missing or duplicated column names are now repaired with `tibble::set_tidy_names()` in `read_excel()` and friends. `set_tidy_names()` is intended to encourage name repair that is more principled and consistent, across multiple tidyverse packages. Its design is discussed in [tidyverse/tibble#217](https://github.com/tidyverse/tibble/issues/217). (#357, #453)

- Example of change a user will see: consider a spreadsheet with three columns, one unnamed and two named `x`.
- Column names in readxl > 1.1.0: `..1`, `x..2`, `x..3`
- Column names in readxl <= 1.1.0: `X__1`, `x`, `x__1`

## Other changes

* Path handling (#477):

- `.xls` paths are no longer normalized. (#476 xls)
- All paths are explicitly converted to the native encoding via `enc2native()` (#370)

# readxl 1.1.0

Expand Down
2 changes: 1 addition & 1 deletion R/read_excel.R
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ read_excel_ <- function(path, sheet = NULL, range = NULL,
tibble::set_tidy_names(
tibble::as_tibble(
read_fun(
path = path, sheet_i = sheet,
path = enc2native(path), sheet_i = sheet,
limits = limits, shim = shim,
col_names = col_names, col_types = col_types,
na = na, trim_ws = trim_ws, guess_max = guess_max
Expand Down
8 changes: 1 addition & 7 deletions src/XlsWorkBook.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,6 @@
#include "ColSpec.h"
#include "utils.h"

inline std::string normalizePath(std::string path) {
Rcpp::Environment baseEnv = Rcpp::Environment::base_env();
Rcpp::Function normalizePath = baseEnv["normalizePath"];
return Rcpp::as<std::string>(normalizePath(path, "/", true));
}

class XlsWorkBook {

// common to Xls[x]WorkBook
Expand All @@ -26,7 +20,7 @@ class XlsWorkBook {
public:

XlsWorkBook(const std::string& path) {
path_ = normalizePath(path);
path_ = path;

xls::xlsWorkBook* pWB_ = xls::xls_open(path_.c_str(), "UTF-8");
if (pWB_ == NULL) {
Expand Down
22 changes: 22 additions & 0 deletions tests/testthat/test-read-excel.R
Original file line number Diff line number Diff line change
Expand Up @@ -93,3 +93,25 @@ test_that("trim_ws must be a logical", {
"`trim_ws` must be either TRUE or FALSE"
)
})

## xlsx: https://github.com/tidyverse/readxl/issues/370
## xls: https://github.com/tidyverse/readxl/issues/476
test_that("non-ASCII filenames can be read", {
skip_on_cran()
## chosen to be non-ASCII but
## [1] representable in Windows-1252 and
## [2] not any of the few differences between Windows-1252 and ISO-8859-1
## a-grave + e-diaeresis + Eth + '.xls[x]'
xls_filename <- "\u00C0\u00CB\u00D0\u002E\u0078\u006C\u0073"
xlsx_filename <- "\u00C0\u00CB\u00D0\u002E\u0078\u006C\u0073\u0078"
tricky_xls_file <- file.path(tempdir(), xls_filename)
tricky_xlsx_file <- file.path(tempdir(), xlsx_filename)
file.copy(test_sheet("list_type.xls"), tricky_xls_file)
file.copy(test_sheet("list_type.xlsx"), tricky_xlsx_file)
expect_true(file.exists(tricky_xls_file))
expect_true(file.exists(tricky_xlsx_file))
on.exit(file.remove(tricky_xls_file))
on.exit(file.remove(tricky_xlsx_file))
expect_error_free(read_xls(tricky_xls_file))
expect_error_free(read_xlsx(tricky_xlsx_file))
})