Skip to content
Permalink
master
Go to file
 
 
Cannot retrieve contributors at this time
51 lines (45 sloc) 1.63 KB
#pragma once
#include <cstring>
#include <string>
#include <vector>
#ifndef CPP11_PARTIAL
#include "cpp11.hpp"
using namespace cpp11;
namespace writable = cpp11::writable;
#endif
#include <R_ext/Rdynload.h>
namespace cpp11 {
template <class T>
T& unmove(T&& t) {
return t;
}
} // namespace cpp11
#ifdef HAS_UNWIND_PROTECT
#define CPP11_UNWIND R_ContinueUnwind(err);
#else
#define CPP11_UNWIND \
do { \
} while (false);
#endif
#define BEGIN_CPP11 \
SEXP err = R_NilValue; \
const size_t ERROR_SIZE = 8192; \
char buf[ERROR_SIZE] = ""; \
try {
#define END_CPP11 \
} \
catch (cpp11::unwind_exception & e) { \
err = e.token; \
} \
catch (std::exception & e) { \
strncpy(buf, e.what(), ERROR_SIZE - 1); \
} \
catch (...) { \
strncpy(buf, "C++ error (unknown cause)", ERROR_SIZE - 1); \
} \
if (buf[0] != '\0') { \
Rf_error("%s", buf); \
} else if (err != R_NilValue) { \
CPP11_UNWIND \
} \
return R_NilValue;
You can’t perform that action at this time.