Пример
У меня есть функция Rcpp, где я хотел бы вызвать boost::posix_time::time_from_string()
.
Я взял пример кода из документации по бусту и преобразовал его в функцию c ++, используя Rcpp
library(Rcpp)
cppFunction(
includes = '
#include <boost/date_time/posix_time/posix_time.hpp>
',
code = '
void time_test() {
std::string t = "2002-01-20 23:59:59.000";
boost::posix_time::ptime pt(boost::posix_time::time_from_string(t));
Rcpp::Rcout << "time from string: " << pt << std::endl;
}
',
depends = "BH"
)
Однако это не компилируется.
Я видел несколько комментариев, в которых говорилось о необходимости ссылки на -lboost_date_time
, например эта строка в библиотеке RcppBDT
Дирка
// The next function uses the non-stream-based parsing in Boost Date_Time
// and requires _linking_ with -lboost_date_time which makes the (otherwise
// header-only) build more complicate
// // [ [ Rcpp::export ] ]
// Rcpp::DatetimeVector charToPOSIXctNS(Rcpp::CharacterVector sv) {
// ... code omitted ...
// }
Вопрос
Как предоставить соответствующие ссылки на lboost_date_time
, кроме включения заголовка posix_time.hpp
, чтобы можно было использовать time_from_string()
?
Дополнительная информация
Можно использовать другие функции из библиотеки boost/date_time
, как показывает эта функция, так что же отличает time_from_string()
cppFunction(
includes = '
#include <boost/date_time/posix_time/posix_time.hpp>
',
code = '
void time_test() {
Rcpp::Datetime dt("2002-01-20 23:59:59.000");
boost::posix_time::hours h( dt.getHours() );
boost::posix_time::minutes m( dt.getMinutes() );
boost::posix_time::seconds s( dt.getSeconds() );
Rcpp::Rcout << h << std::endl;
Rcpp::Rcout << m << std::endl;
Rcpp::Rcout << s << std::endl;
}
',
depends = "BH"
)
time_test()
# 12:00:00
# 00:59:00
# 00:00:59