IODA
obsspace_interface.f
Go to the documentation of this file.
1 !
2 ! (C) Copyright 2017-2019 UCAR
3 !
4 ! This software is licensed under the terms of the Apache Licence Version 2.0
5 ! which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
6 
7 !> Define interface for C++ ObsSpace code called from Fortran
8 
9 !-------------------------------------------------------------------------------
10 interface
11 !-------------------------------------------------------------------------------
12 
13 type(c_ptr) function c_obsspace_construct(conf, tbegin, tend) bind(c, name='obsspace_construct_f')
14  use, intrinsic :: iso_c_binding
15  implicit none
16 
17  type(c_ptr), value :: conf, tbegin, tend
18 end function c_obsspace_construct
19 
20 subroutine c_obsspace_destruct(obss) bind(C, name='obsspace_destruct_f')
21  use, intrinsic :: iso_c_binding
22  implicit none
23  type(c_ptr), value :: obss
24 end subroutine c_obsspace_destruct
25 
26 type(c_ptr) function c_obsspace_obsvariables(obss) bind(c, name='obsspace_obsvariables_f')
27  use, intrinsic :: iso_c_binding, only : c_ptr
28  implicit none
29  type(c_ptr), value :: obss
30 end function c_obsspace_obsvariables
31 
32 integer(kind=c_size_t) function c_obsspace_get_gnlocs(obss) bind(C,name='obsspace_get_gnlocs_f')
33  use, intrinsic :: iso_c_binding
34  implicit none
35 
36  type(c_ptr), value :: obss
37 end function c_obsspace_get_gnlocs
38 
39 integer(kind=c_size_t) function c_obsspace_get_nlocs(obss) bind(C,name='obsspace_get_nlocs_f')
40  use, intrinsic :: iso_c_binding
41  implicit none
42 
43  type(c_ptr), value :: obss
44 end function c_obsspace_get_nlocs
45 
46 integer(kind=c_size_t) function c_obsspace_get_nchans(obss) bind(C,name='obsspace_get_nchans_f')
47  use, intrinsic :: iso_c_binding
48  implicit none
49 
50  type(c_ptr), value :: obss
51 end function c_obsspace_get_nchans
52 
53 integer(kind=c_size_t) function c_obsspace_get_nrecs(obss) bind(C,name='obsspace_get_nrecs_f')
54  use, intrinsic :: iso_c_binding
55  implicit none
56 
57  type(c_ptr), value :: obss
58 end function c_obsspace_get_nrecs
59 
60 integer(kind=c_size_t) function c_obsspace_get_nvars(obss) bind(C,name='obsspace_get_nvars_f')
61  use, intrinsic :: iso_c_binding
62  implicit none
63 
64  type(c_ptr), value :: obss
65 end function c_obsspace_get_nvars
66 
67 subroutine c_obsspace_get_dim_name(obss, dim_id, len_dim_name, dim_name ) bind(C,name='obsspace_get_dim_name_f')
68  use, intrinsic :: iso_c_binding
69  implicit none
70 
71  type(c_ptr), value :: obss
72  integer(c_int), intent(in) :: dim_id
73  integer(c_size_t), intent(inout) :: len_dim_name
74  character(kind=c_char, len=1), intent(inout) :: dim_name(*)
75 end subroutine c_obsspace_get_dim_name
76 
77 integer(kind=c_size_t) function c_obsspace_get_dim_size(obss, dim_id) bind(C,name='obsspace_get_dim_size_f')
78  use, intrinsic :: iso_c_binding
79  implicit none
80 
81  type(c_ptr), value :: obss
82  integer(c_int), intent(in) :: dim_id
83 end function c_obsspace_get_dim_size
84 
85 integer(kind=c_int) function c_obsspace_get_dim_id(obss, dim_name) bind(C,name='obsspace_get_dim_id_f')
86  use, intrinsic :: iso_c_binding
87  implicit none
88 
89  type(c_ptr), value :: obss
90  character(kind=c_char, len=1), intent(in) :: dim_name(*)
91 end function c_obsspace_get_dim_id
92 
93 subroutine c_obsspace_obsname(obss, lcname, cname) bind (C,name='obsspace_obsname_f')
94  use, intrinsic :: iso_c_binding, only : c_ptr, c_char, c_size_t
95  implicit none
96  type(c_ptr), value :: obss
97  integer(c_size_t),intent(inout) :: lcname
98  character(kind=c_char,len=1), intent(inout) :: cname(*)
99 end subroutine c_obsspace_obsname
100 
101 subroutine c_obsspace_get_comm(obss, lcname, cname) bind(C,name='obsspace_get_comm_f')
102  use, intrinsic :: iso_c_binding
103  implicit none
104 
105  type(c_ptr), value :: obss
106  integer(c_int),intent(inout) :: lcname !< Communicator name length
107  character(kind=c_char,len=1), intent(inout) :: cname(*) !< Communicator name
108 end subroutine c_obsspace_get_comm
109 
110 subroutine c_obsspace_get_recnum(obss, length, recnum) &
111  & bind(c,name='obsspace_get_recnum_f')
112  use, intrinsic :: iso_c_binding, only : c_ptr, c_size_t
113  implicit none
114  type(c_ptr), value :: obss
115  integer(c_size_t), intent(in) :: length
116  integer(c_size_t), intent(inout) :: recnum(length)
117 end subroutine c_obsspace_get_recnum
118 
119 subroutine c_obsspace_get_index(obss, length, indx) &
120  & bind(c,name='obsspace_get_index_f')
121  use, intrinsic :: iso_c_binding, only : c_ptr, c_size_t
122  implicit none
123  type(c_ptr), value :: obss
124  integer(c_size_t), intent(in) :: length
125  integer(c_size_t), intent(inout) :: indx(length)
126 end subroutine c_obsspace_get_index
127 
128 logical(kind=c_bool) function c_obsspace_has(obss, group, vname) bind(C,name='obsspace_has_f')
129  use, intrinsic :: iso_c_binding
130  implicit none
131 
132  type(c_ptr), value :: obss
133  character(kind=c_char, len=1), intent(in) :: group(*)
134  character(kind=c_char, len=1), intent(in) :: vname(*)
135 end function c_obsspace_has
136 
137 !-------------------------------------------------------------------------------
138 ! get data from ObsSpace
139 
140 subroutine c_obsspace_get_int32(obss, group, vname, length, vect, len_cs, chan_select) &
141  & bind(c,name='obsspace_get_int32_f')
142  use, intrinsic :: iso_c_binding, only : c_ptr,c_char,c_int,c_size_t,c_int32_t
143  implicit none
144  type(c_ptr), value :: obss
145  character(kind=c_char, len=1), intent(in) :: group(*)
146  character(kind=c_char, len=1), intent(in) :: vname(*)
147  integer(c_size_t), intent(in) :: length
148  integer(c_int32_t), intent(inout) :: vect(length)
149  integer(c_size_t), intent(in) :: len_cs
150  integer(c_int), intent(in) :: chan_select(len_cs)
151 end subroutine c_obsspace_get_int32
152 
153 subroutine c_obsspace_get_int64(obss, group, vname, length, vect, len_cs, chan_select) &
154  & bind(c,name='obsspace_get_int64_f')
155  use, intrinsic :: iso_c_binding, only : c_ptr,c_char,c_int,c_size_t,c_int64_t
156  implicit none
157  type(c_ptr), value :: obss
158  character(kind=c_char, len=1), intent(in) :: group(*)
159  character(kind=c_char, len=1), intent(in) :: vname(*)
160  integer(c_size_t), intent(in) :: length
161  integer(c_int64_t), intent(inout) :: vect(length)
162  integer(c_size_t), intent(in) :: len_cs
163  integer(c_int), intent(in) :: chan_select(len_cs)
164 end subroutine c_obsspace_get_int64
165 
166 subroutine c_obsspace_get_real32(obss, group, vname, length, vect, len_cs, chan_select) &
167  & bind(c,name='obsspace_get_real32_f')
168  use, intrinsic :: iso_c_binding, only : c_ptr,c_char,c_int,c_size_t,c_float
169  implicit none
170  type(c_ptr), value :: obss
171  character(kind=c_char, len=1), intent(in) :: group(*)
172  character(kind=c_char, len=1), intent(in) :: vname(*)
173  integer(c_size_t), intent(in) :: length
174  real(c_float), intent(inout) :: vect(length)
175  integer(c_size_t), intent(in) :: len_cs
176  integer(c_int), intent(in) :: chan_select(len_cs)
177 end subroutine c_obsspace_get_real32
178 
179 subroutine c_obsspace_get_real64(obss, group, vname, length, vect, len_cs, chan_select) &
180  & bind(c,name='obsspace_get_real64_f')
181  use, intrinsic :: iso_c_binding, only : c_ptr,c_char,c_int,c_size_t,c_double
182  implicit none
183  type(c_ptr), value :: obss
184  character(kind=c_char, len=1), intent(in) :: group(*)
185  character(kind=c_char, len=1), intent(in) :: vname(*)
186  integer(c_size_t), intent(in) :: length
187  real(c_double), intent(inout) :: vect(length)
188  integer(c_size_t), intent(in) :: len_cs
189  integer(c_int), intent(in) :: chan_select(len_cs)
190 end subroutine c_obsspace_get_real64
191 
192 subroutine c_obsspace_get_datetime(obss, group, vname, length, date, time, len_cs, chan_select) &
193  & bind(c,name='obsspace_get_datetime_f')
194  use, intrinsic :: iso_c_binding, only : c_ptr,c_char,c_int,c_size_t,c_int32_t
195  implicit none
196  type(c_ptr), value :: obss
197  character(kind=c_char, len=1), intent(in) :: group(*)
198  character(kind=c_char, len=1), intent(in) :: vname(*)
199  integer(c_size_t), intent(in) :: length
200  integer(c_int32_t), intent(inout) :: date(length)
201  integer(c_int32_t), intent(inout) :: time(length)
202  integer(c_size_t), intent(in) :: len_cs
203  integer(c_int), intent(in) :: chan_select(len_cs)
204 end subroutine c_obsspace_get_datetime
205 
206 !-------------------------------------------------------------------------------
207 ! store data in ObsSpace
208 
209 subroutine c_obsspace_put_int32(obss, group, vname, length, vect, ndims, dim_ids) &
210  & bind(c,name='obsspace_put_int32_f')
211  use, intrinsic :: iso_c_binding, only : c_ptr,c_char,c_size_t,c_int,c_int32_t
212  implicit none
213  type(c_ptr), value :: obss
214  character(kind=c_char, len=1), intent(in) :: group(*)
215  character(kind=c_char, len=1), intent(in) :: vname(*)
216  integer(c_size_t), intent(in) :: length
217  integer(c_int32_t), intent(in) :: vect(length)
218  integer(c_size_t), intent(in) :: ndims
219  integer(c_int), intent(in) :: dim_ids(ndims)
220 end subroutine c_obsspace_put_int32
221 
222 subroutine c_obsspace_put_int64(obss, group, vname, length, vect, ndims, dim_ids) &
223  & bind(c,name='obsspace_put_int64_f')
224  use, intrinsic :: iso_c_binding, only : c_ptr,c_char,c_size_t,c_int,c_int64_t
225  implicit none
226  type(c_ptr), value :: obss
227  character(kind=c_char, len=1), intent(in) :: group(*)
228  character(kind=c_char, len=1), intent(in) :: vname(*)
229  integer(c_size_t), intent(in) :: length
230  integer(c_int64_t), intent(in) :: vect(length)
231  integer(c_size_t), intent(in) :: ndims
232  integer(c_int), intent(in) :: dim_ids(ndims)
233 end subroutine c_obsspace_put_int64
234 
235 subroutine c_obsspace_put_real32(obss, group, vname, length, vect, ndims, dim_ids) &
236  & bind(c,name='obsspace_put_real32_f')
237  use, intrinsic :: iso_c_binding, only : c_ptr,c_char,c_size_t,c_int,c_float
238  implicit none
239  type(c_ptr), value :: obss
240  character(kind=c_char, len=1), intent(in) :: group(*)
241  character(kind=c_char, len=1), intent(in) :: vname(*)
242  integer(c_size_t), intent(in) :: length
243  real(c_float), intent(in) :: vect(length)
244  integer(c_size_t), intent(in) :: ndims
245  integer(c_int), intent(in) :: dim_ids(ndims)
246 end subroutine c_obsspace_put_real32
247 
248 subroutine c_obsspace_put_real64(obss, group, vname, length, vect, ndims, dim_ids) &
249  & bind(c,name='obsspace_put_real64_f')
250  use, intrinsic :: iso_c_binding, only : c_ptr,c_char,c_size_t,c_int,c_double
251  implicit none
252  type(c_ptr), value :: obss
253  character(kind=c_char, len=1), intent(in) :: group(*)
254  character(kind=c_char, len=1), intent(in) :: vname(*)
255  integer(c_size_t), intent(in) :: length
256  real(c_double), intent(in) :: vect(length)
257  integer(c_size_t), intent(in) :: ndims
258  integer(c_int), intent(in) :: dim_ids(ndims)
259 end subroutine c_obsspace_put_real64
260 
261 !-------------------------------------------------------------------------------
262 
263 integer(kind=c_int) function c_obsspace_get_nlocs_dim_id() bind(C,name='obsspace_get_nlocs_dim_id_f')
264  use, intrinsic :: iso_c_binding, only: c_int
265  implicit none
266 end function c_obsspace_get_nlocs_dim_id
267 
268 integer(kind=c_int) function c_obsspace_get_nchans_dim_id() bind(C,name='obsspace_get_nchans_dim_id_f')
269  use, intrinsic :: iso_c_binding, only: c_int
270  implicit none
271 end function c_obsspace_get_nchans_dim_id
272 
273 !-------------------------------------------------------------------------------
274 end interface
275 !-------------------------------------------------------------------------------
Define interface for C++ ObsSpace code called from Fortran.