Skip to content

Commit 94d76b6

Browse files
committed
Add previously untracked file
1 parent d1c1adf commit 94d76b6

File tree

3 files changed

+109
-6
lines changed

3 files changed

+109
-6
lines changed

.gitignore

+5-2
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,14 @@
66
# documentation
77
!*.org
88

9-
# files
9+
# directories
1010
!hdf5/
11+
!hdf5/unsafe
12+
!hdf5/hl/
13+
1114
!hdf5/examples/
1215
!hdf5/examples/data/
13-
!hdf5/hl/
16+
1417

1518
# source code
1619
!*.rkt

TODO.org

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
* High-level types
2+
* Add examples with higher abstraction levels
23
* Add to github and to planet
3-
** Add more examples
4-
** Add examples with higher abstraction levels
5-
** Update readme
6-
74
* Automatic type conversion
85
- don't bother with the many types
96
- define "standard" types
@@ -24,3 +21,5 @@
2421
* TODO Pre-make result buffers for each function that needs those
2522
- is not always possible
2623
- breaks the official API
24+
* FINISHED
25+
* DEFERRED

hdf5/unsafe/h5rpublic.rkt

+101
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,101 @@
1+
#|
2+
* This file contains public declarations for the H5S module.
3+
|#
4+
5+
#lang racket
6+
7+
;; Racket Foreign interface
8+
(require ffi/unsafe
9+
ffi/unsafe/define
10+
ffi/winapi
11+
rackunit
12+
"h5-utilities.rkt"
13+
"h5public.rkt"
14+
"h5gpublic.rkt"
15+
"h5ipublic.rkt"
16+
"h5opublic.rkt")
17+
18+
(provide (all-defined-out))
19+
20+
21+
#|
22+
* Reference types allowed.
23+
|#
24+
(define H5R_type_t
25+
(_enum
26+
'(
27+
H5R_BADTYPE = -1 #|invalid Reference Type |#
28+
H5R_OBJECT #|Object reference |#
29+
H5R_DATASET_REGION #|Dataset Region Reference |#
30+
H5R_MAXTYPE #|highest type (Invalid as true type) |#
31+
)))
32+
33+
#| Note! Be careful with the sizes of the references because they should really
34+
* depend on the run-time values in the file. Unfortunately, the arrays need
35+
* to be defined at compile-time, so we have to go with the worst case sizes for
36+
* them. -QAK
37+
|#
38+
(define H5R_OBJ_REF_BUF_SIZE (ctype-sizeof haddr_t))
39+
#| Object reference structure for user's code |#
40+
(define hobj_ref_t haddr_t) #| Needs to be large enough to store largest haddr_t in a worst case machine (ie. 8 bytes currently) |#
41+
42+
(define H5R_DSET_REG_REF_BUF_SIZE (+ (ctype-sizeof haddr_t) 4))
43+
#| 4 is used instead of sizeof(int) to permit portability between
44+
the Crays and other machines (the heap ID is always encoded as an int32 anyway)
45+
|#
46+
#| Dataset Region reference structure for user's code |#
47+
(define hdset_reg_ref_t (_list io _ubyte H5R_DSET_REG_REF_BUF_SIZE)) #| Buffer to store heap ID and index |#
48+
#| Needs to be large enough to store largest haddr_t in a worst case machine (ie. 8 bytes currently) plus an int |#
49+
50+
#| Publicly visible data structures |#
51+
52+
#| Functions in H5R.c |#
53+
54+
(define-hdf5 H5Rcreate
55+
(_fun (loc-id name ref_type space_id) ::
56+
(ref : _pointer = (malloc _pointer 1 'atomic))
57+
(loc-id : hid_t)
58+
(name : _string)
59+
(ref_type : H5R_type_t)
60+
(space_id : hid_t)
61+
-> (status : herr_t)
62+
-> (if (< status 0)
63+
(error 'H5Rcreate "Unable to create reference.")
64+
ref)))
65+
66+
(define-hdf5 H5Rdereference
67+
(_fun (dataset : hid_t)
68+
(ref_type : H5R_type_t)
69+
(ref : _pointer)
70+
-> hid_t))
71+
72+
(define-hdf5 H5Rget_region
73+
(_fun (dataset : hid_t)
74+
(ref_type : H5R_type_t)
75+
(ref : _pointer)
76+
-> hid_t))
77+
78+
(define-hdf5 H5Rget_obj_type2
79+
(_fun (id : hid_t)
80+
(ref_type : H5R_type_t)
81+
(ref : _pointer)
82+
(obj_type : (_ptr io H5O_type_t))
83+
-> herr_t))
84+
85+
(define-hdf5 H5Rget_name
86+
(_fun (loc_id ref_type ref size) ::
87+
(loc_id : hid_t)
88+
(ref_type : H5R_type_t)
89+
(ref : _pointer)
90+
(name : (_bytes o size))
91+
(size : _size)
92+
-> (len-status : _ssize)
93+
-> (list len-status name)))
94+
95+
#| Function prototypes |#
96+
(define-hdf5 H5Rget_obj_type1
97+
(_fun (id : hid_t)
98+
(ref_type : H5R_type_t)
99+
(_ref : _pointer)
100+
-> H5G_obj_t))
101+

0 commit comments

Comments
 (0)