-
Notifications
You must be signed in to change notification settings - Fork 59
/
types.jl
636 lines (489 loc) · 11.4 KB
/
types.jl
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
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
"""
Sxp
Representation of R symbolic expression record `SEXPREC` in R API.
These are represented by a pointer `Ptr{S<:Sxp}` (which is called `SEXP` in R API).
See also [R internals documentation](https://cran.r-project.org/doc/manuals/r-devel/R-ints.html)
"""
abstract type Sxp end # SEXPREC
"""
SxpPtrInfo
Representation of `sxpinfo_struct`.
"""
const SxpPtrInfo = UInt32 # sxpinfo_struct
"""
SxpHead <: Sxp
R Sxp header (`SEXPREC_HEADER`).
A pointer to this is used for unknown types.
# Fields
- `info::SxpPtrInfo`
- `attrib::Ptr{Cvoid}`
- `gc_next::Ptr{Cvoid}`
- `gc_prev::Ptr{Cvoid}`
"""
struct SxpHead <: Sxp
info::SxpPtrInfo
attrib::Ptr{Cvoid}
gc_next::Ptr{Cvoid}
gc_prev::Ptr{Cvoid}
end
"""$(@doc SxpHead)"""
const UnknownSxp = SxpHead
abstract type VectorSxp <: Sxp end
abstract type VectorAtomicSxp <: VectorSxp end
abstract type VectorNumericSxp <: VectorAtomicSxp end
abstract type VectorListSxp <: VectorSxp end
abstract type PairListSxp <: Sxp end
abstract type FunctionSxp <: Sxp end
"""
NilSxpR <: PairListSxp
Representation of R `NULL` value.
This corresponds to R type tag 0.
# Fields
- `head::SxpHead`
"""
struct NilSxp <: PairListSxp
head::SxpHead
end
"""
ListSxp <: PairListSxp
Representation of R pairs (cons) list cell.
This corresponds to R type tag 2.
# Fields
- `head::SxpHead`
- `car::Ptr{UnknownSxp}`
- `cdr::Ptr{UnknownSxp}`
- `tag::Ptr{UnknownSxp}`
"""
struct ListSxp <: PairListSxp
head::SxpHead
car::Ptr{UnknownSxp}
cdr::Ptr{UnknownSxp}
tag::Ptr{UnknownSxp}
end
"""
ClosSxp <: FunctionSxp
Representation of R function closure.
This corresponds to R type tag 3.
# Fields
- `head::SxpHead`
- `formals::Ptr{ListSxp}`
- `body::Ptr{UnknownSxp}`
- `env::Ptr{UnknownSxp}`
"""
struct ClosSxp <: FunctionSxp
head::SxpHead
formals::Ptr{ListSxp}
body::Ptr{UnknownSxp}
env::Ptr{UnknownSxp}
end
"""
EnvSxp <: Sxp
Representation of R environment.
This corresponds to type tag 4.
# Fields
- `head::SxpHead`
- `frame::Ptr{UnknownSxp}`
- `enclos::Ptr{UnknownSxp}`
- `hashtab::Ptr{UnknownSxp}`
"""
struct EnvSxp <: Sxp
head::SxpHead
frame::Ptr{UnknownSxp}
enclos::Ptr{UnknownSxp}
hashtab::Ptr{UnknownSxp}
end
"""
PromSxp <: Sxp
Representation of R promise.
This corresponds to type tag 5.
# Fields
- `head::SxpHead`
- `value::Ptr{UnknownSxp}`
- `expr::Ptr{UnknownSxp}`
- `env::Ptr{UnknownSxp}`
"""
struct PromSxp <: Sxp
head::SxpHead
value::Ptr{UnknownSxp}
expr::Ptr{UnknownSxp}
env::Ptr{UnknownSxp}
end
"""
LangSxp <: PairListSxp
Representation of R function call.
This corresponds to type tag 6.
# Fields
- `head::SxpHead`
- `car::Ptr{UnknownSxp}`
- `cdr::Ptr{UnknownSxp}`
- `tag::Ptr{UnknownSxp}`
"""
struct LangSxp <: PairListSxp
head::SxpHead
car::Ptr{UnknownSxp}
cdr::Ptr{UnknownSxp}
tag::Ptr{UnknownSxp}
end
"""
SpecialSxp <: FunctionSxp
Representation of R special function.
This corresponds to type tag 7.
# Fields
- `head::SxpHead`
"""
struct SpecialSxp <: FunctionSxp
head::SxpHead
end
"""
BuiltinSxp <: FunctionSxp
Representation of R built-in function.
This corresponds to type tag 8.
# Fields
- `head::SxpHead`
"""
struct BuiltinSxp <: FunctionSxp
head::SxpHead
end
"""
CharSxp <: VectorAtomicSxp
Representation of R character string.
This corresponds to type tag 9.
# Fields
- `head::SxpHead`
- `length::Cint`
- `truelength::Cint`
"""
struct CharSxp <: VectorAtomicSxp
head::SxpHead
length::Cint
truelength::Cint
end
"""
SymSxp <: Sxp
Representation of R symbol.
This corresponds to type tag 1.
# Fields
- `head::SxpHead`
- `name::Ptr{CharSxp}`
- `value::Ptr{UnknownSxp}`
- `internal::Ptr{UnknownSxp}`
"""
struct SymSxp <: Sxp
head::SxpHead
name::Ptr{CharSxp}
value::Ptr{UnknownSxp}
internal::Ptr{UnknownSxp}
end
"""
LglSxp <: VectorNumericSxp
Representation of R logical vector.
This corresponds to type tag 10.
# Fields
- `head::SxpHead`
- `length::Cint`
- `truelength::Cint`
"""
struct LglSxp <: VectorNumericSxp
head::SxpHead
length::Cint
truelength::Cint
end
""""
IntSxp <: VectorNumericSxp
Representation of R integer vector.
This corresponds to type tag 13.
# Fields
- `head::SxpHead`
- `length::Cint`
- `truelength::Cint`
"""
struct IntSxp <: VectorNumericSxp
head::SxpHead
length::Cint
truelength::Cint
end
"""
RealSxp <: VectorNumericSxp
Representation of R real (numeric) vector.
This correponds to type tag 14.
# Fields
- `head::SxpHead`
- `length::Cint`
- `truelength::Cint`
"""
struct RealSxp <: VectorNumericSxp
head::SxpHead
length::Cint
truelength::Cint
end
"""
CplxSxp <: VectorNumericSxp
Representation of R complex vector.
This corresponds to type tag 15.
# Fields
- `head::SxpHead`
- `length::Cint`
- `truelength::Cint`
"""
struct CplxSxp <: VectorNumericSxp
head::SxpHead
length::Cint
truelength::Cint
end
"""
StrSxp <: VectorListSxp
Representation of R vector of character strings.
This correponds to type tag 16.
# Fields
- `head::SxpHead`
- `length::Cint`
- `truelength::Cint`
"""
struct StrSxp <: VectorListSxp
head::SxpHead
length::Cint
truelength::Cint
end
"""
DotSxp <: Sxp
Representation of R dot-dot-dot object.
This corresponds to type tag 17.
# Fields
- `head::SxpHead`
"""
struct DotSxp <: Sxp
head::SxpHead
end
"""
AnySxp <: Sxp
Representation of R "any" object (comparable to `Ref{Any}`).
This corresponds to type tag 18.
# Fields
- `head::SxpHead`
"""
struct AnySxp <: Sxp
head::SxpHead
end
"""
VecSxp <: VectorListSxp
Representation of R list (i.e. `Array{Any,1}`).
This corresponds to type tag 19.
# Fields
- `head::SxpHead`
- `length::Cint`
- `truelength::Cint`
"""
struct VecSxp <: VectorListSxp
head::SxpHead
length::Cint
truelength::Cint
end
"""
ExprSxp <: VectorListSxp
Representation of R expression vector.
This corresponds to type tag 20.
# Fields
- `head::SxpHead`
- `length::Cint`
- `truelength::Cint`
"""
struct ExprSxp <: VectorListSxp
head::SxpHead
length::Cint
truelength::Cint
end
""""
BcodeSxp <: Sxp
Representation of R byte code.
This corresponds to type tag 21.
# Fields
- `head::SxpHead`
"""
struct BcodeSxp <: Sxp
head::SxpHead
end
"""
ExtPtrSxp <: Sxp
Representation of R external pointer.
This corresponds to type tag 22.
# Fields
- `head::SxpHead`
- `ptr::Ptr{Cvoid}`
- `prot::Ptr{Cvoid}`
- `tag::Ptr{UnknownSxp}`
"""
struct ExtPtrSxp <: Sxp
head::SxpHead
ptr::Ptr{Cvoid}
prot::Ptr{Cvoid}
tag::Ptr{UnknownSxp}
end
"""
WeakRefSxp <: Sxp
Representation of R weak reference.
This corresponds to type tag 23.
# Fields
- `head::SxpHead`
- `length::Cint`
- `truelength::Cint`
"""
struct WeakRefSxp <: Sxp
head::SxpHead
end
"""
RawSxp <: VectorAtomicSxp
Representation of R byte vector.
This corresponds to type tag 24.
# Fields
- `head::SxpHead`
- `length::Cint`
- `truelength::Cint`
"""
struct RawSxp <: VectorAtomicSxp
head::SxpHead
length::Cint
truelength::Cint
end
"""
S4Sxp <: Sxp
Representation of R S4 object.
This corresponds to type tag 24.
# Fields
- `head::SxpHead`
"""
struct S4Sxp <: Sxp
head::SxpHead
end
"""
RObject{S<:Sxp}
An `RObject` is a Julia wrapper for an R object (known as an "S-expression", i.e. `SEXP`).
It is stored as a pointer which is protected from the R garbage collector,
until the `RObject` itself is finalized by Julia. The parameter is the type of the S-expression.
When called with a Julia object as an argument, a corresponding R object is constructed.
# Examples
```jldoctest
julia> RObject(1)
RObject{IntSxp}
[1] 1
julia> RObject(1:3)
RObject{IntSxp}
[1] 1 2 3
julia> RObject(1.0:3.0)
RObject{RealSxp}
[1] 1 2 3
```
# Fields
- `p::Ptr{S}` Pointer to the relevant R object.
"""
mutable struct RObject{S<:Sxp}
p::Ptr{S}
# used for pre-defined constants
function RObject{S}() where S
new{S}(C_NULL)
end
function RObject{S}(p::Ptr{S}) where S
preserve(p)
r = new{S}(p)
finalizer(release, r)
r
end
# SymSxps are not garbage collected, so preserve not necessary.
RObject{SymSxp}(p::Ptr{SymSxp}) = new{SymSxp}(p)
end
RObject(p::Ptr{S}) where S<:Sxp = RObject{S}(p)
RObject(x::RObject) = x
"""
RClass{Symbol}
Representation of R Class.
Examples:
- `RCall{:logical}`
- `RCall{:integer}`
- `RCall{:numeric}`
- `RCall{:character}`
"""
struct RClass{Symbol} end
# Element types of R vectors.
eltype(::Type{LglSxp}) = Cint
eltype(::Type{IntSxp}) = Cint
eltype(::Type{RealSxp}) = Float64
eltype(::Type{CplxSxp}) = ComplexF64
eltype(::Type{CharSxp}) = UInt8
eltype(::Type{RawSxp}) = UInt8
eltype(::Type{StrSxp}) = Ptr{CharSxp}
eltype(::Type{VecSxp}) = Ptr{UnknownSxp}
eltype(::Type{ExprSxp}) = Ptr{UnknownSxp}
eltype(::Ptr{S}) where S<:Sxp = eltype(S)
eltype(::RObject{S}) where S<:Sxp = eltype(S)
"""
preserve(p::Ptr{<:Sxp})
Prevent garbage collection of an R object.
Object can be released via [`release`](@ref).
This is slower than [`protect`](@ref), as it requires searching an internal list,
but more flexible.
"""
preserve(p::Ptr{S}) where S<:Sxp = ccall((:R_PreserveObject, libR), Nothing, (Ptr{S},), p)
"""
release(p::Ptr{<:Sxp})
release(p::RObject{<:Sxp})
Release object that has been GC protected by [`preserve`](@ref).
"""
release(p::Ptr{S}) where S<:Sxp = ccall((:R_ReleaseObject,libR), Nothing, (Ptr{S},), p)
release(r::RObject{S}) where S<:Sxp = release(r.p)
"""
protect(p::Ptr{<:Sxp})
Stack-based protection of garbage collection of R objects.
Objects are released via [`unprotect`](@ref).
Returns the same pointer, allowing inline use.
This is faster than [`preserve`](@ref), but more restrictive.
Really only useful inside functions, where you can control the `unprotect` step.
"""
protect(p::Ptr{S}) where S<:Sxp = ccall((:Rf_protect,libR), Ptr{S}, (Ptr{S},), p)
"""
unprotect(n)
Release last `n` objects GC-protected by [`protect`](@ref).
"""
unprotect(n::Integer) = ccall((:Rf_unprotect,libR), Nothing, (Cint,), n)
"""
sexpnum(s::Sxp)
sexpnum(p::Ptr{<:Sxp})
Return the `SEXPTYPE` number, i.e. type tag, of a `Sxp`.
Determined from the trailing 5 bits of the first 32-bit word. Is
a 0-based index into the `info` field of a [`SxpHead`](@ref).
"""
sexpnum(h::SxpHead) = h.info & 0x1f
sexpnum(p::Ptr{S}) where S<:Sxp = sexpnum(unsafe_load(p))
"""
SXP_TYPES
Ordered collection of R `SEXP` types, so that the (index - 1)
matches the type tag.
"""
const SXP_TYPES = (NilSxp, SymSxp, ListSxp, ClosSxp, EnvSxp,
PromSxp, LangSxp, SpecialSxp, BuiltinSxp, CharSxp,
LglSxp, Nothing, Nothing, IntSxp, RealSxp,
CplxSxp, StrSxp, DotSxp, AnySxp, VecSxp,
ExprSxp, BcodeSxp, ExtPtrSxp, WeakRefSxp, RawSxp,
S4Sxp)
for (i, T) in enumerate(SXP_TYPES)
if T != Nothing
@eval sexpnum(::Type{$T}) = $(i-1)
end
end
"""
sexp(p::Ptr{UnknownSxp})
Return a restrictively parameterized `Ptr{<:Sxp}` pointing to the same object as `p`.
"""
function sexp(p::Ptr{UnknownSxp})
typ = sexpnum(p)
0 ≤ typ ≤ 10 || 13 ≤ typ ≤ 25 || error("Unknown SEXPTYPE $typ")
styp = SXP_TYPES[typ+1]
return Ptr{styp}(p)
end
sexp(s::Ptr{S}) where S<:Sxp = s
sexp(r::RObject) = r.p
"""
sexp(::Type{<:Sxp}, s::RObject{<:Sxp})
Return the associated `Sxp` pointer.
"""
sexp(::Type{S}, r::RObject{S}) where S<:Sxp = r.p
# do we need this method?
sexp(::Type{S}, s::Ptr{S}) where S<:Sxp = s