|
| 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