-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathinterfaces.cpp
41 lines (37 loc) · 1012 Bytes
/
interfaces.cpp
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
#include "core.h"
#include "save.h"
#include "load.h"
using namespace Rcpp;
// [[Rcpp:interfaces(cpp)]]
// [[Rcpp::export]]
SEXP filearray_meta(
const std::string& filebase
){
List re = FARR_meta(filebase);
return( re );
}
// [[Rcpp::export]]
SEXP filearray_assign(
const std::string& filebase, SEXP value,
const SEXP position_indices
) {
size_t thread_buffer = get_buffer_size();
FARR_subset_assign2(
filebase, value, position_indices,
thread_buffer, 0);
return(R_NilValue);
}
// [[Rcpp::export]]
SEXP filearray_subset(
const std::string& filebase,
const SEXP position_indices,
const bool drop = true,
const bool use_dimnames = true,
const SEXP reshape = R_NilValue
) {
size_t thread_buffer = get_buffer_size();
SEXP ret = PROTECT(FARR_subset2(filebase, position_indices, reshape, drop,
use_dimnames, thread_buffer, 0, 1));
UNPROTECT(1);
return( ret );
}