IODA
ObsSpace.Example.interface.F90
Go to the documentation of this file.
1 ! (C) Copyright 2018 UCAR
2 !
3 ! This software is licensed under the terms of the Apache Licence Version 2.0
4 ! which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
5 
6 !> Fortran example module for for functions on the interface between C++ and Fortran
7 ! to handle observation space
8 
9 ! TODO: replace example with your_observation_space_name through the file
10 
12 
13 use iso_c_binding
14 use string_f_c_mod
15 use config_mod
16 use datetime_mod
17 use duration_mod
18 use ioda_obs_vectors
20 use fckit_log_module, only : fckit_log
21 use kinds
22 
23 implicit none
24 private
25 
27 
28 ! ------------------------------------------------------------------------------
29 integer, parameter :: max_string=800
30 ! ------------------------------------------------------------------------------
31 
32 #define LISTED_TYPE ioda_obs_example
33 
34 !> Linked list interface - defines registry_t type
35 #include "../../linkedList_i.f"
36 
37 !> Global registry
38 type(registry_t) :: ioda_obs_example_registry
39 
40 ! ------------------------------------------------------------------------------
41 contains
42 ! ------------------------------------------------------------------------------
43 !> Linked list implementation
44 #include "../../linkedList_c.f"
45 
46 ! ------------------------------------------------------------------------------
47 
48 subroutine ioda_obsdb_example_setup_c(c_key_self, c_conf) bind(c,name='ioda_obsdb_example_setup_f90')
49 implicit none
50 integer(c_int), intent(inout) :: c_key_self
51 type(c_ptr), intent(in) :: c_conf !< configuration
52 
53 type(ioda_obs_example), pointer :: self
54 character(len=max_string) :: fin
55 character(len=max_string) :: MyObsType
56 character(len=255) :: record
57 
58 if (config_element_exists(c_conf,"obs space.obsdatain")) then
59  fin = config_get_string(c_conf,max_string,"obs space.obsdatain.obsfile")
60 else
61  fin = ""
62 endif
63 call fckit_log%info(record)
64 
65 call ioda_obs_example_registry%init()
66 call ioda_obs_example_registry%add(c_key_self)
67 call ioda_obs_example_registry%get(c_key_self, self)
68 if (trim(fin) /= "") then
69 ! TODO: replace with the call to your Fortran routine for reading observations
70 ! (defined in ioda_obs_<your_obs_space_name>_mod.F90)
71  call ioda_obs_example_read(fin, self)
72 endif
73 
74 end subroutine ioda_obsdb_example_setup_c
75 
76 ! ------------------------------------------------------------------------------
77 
78 subroutine ioda_obsdb_example_generate_c(c_key_self, c_conf, c_t1, c_t2) bind(c,name='ioda_obsdb_example_generate_f90')
79 implicit none
80 integer(c_int), intent(inout) :: c_key_self
81 type(c_ptr), intent(in) :: c_conf !< configuration
82 type(c_ptr), intent(in) :: c_t1, c_t2
83 
84 type(ioda_obs_example), pointer :: self
85 type(datetime) :: t1, t2
86 integer :: nobs
87 
88 call ioda_obs_example_registry%get(c_key_self, self)
89 call c_f_datetime(c_t1, t1)
90 call c_f_datetime(c_t2, t2)
91 
92 nobs = config_get_int(c_conf, "nobs")
93 
94 ! TODO: replace with the call to your Fortran routine for generating random observations
95 ! (defined in ioda_obs_<your_obs_space_name>_mod.F90)
96 call ioda_obs_example_generate(self, nobs)
97 
98 end subroutine ioda_obsdb_example_generate_c
99 
100 ! ------------------------------------------------------------------------------
101 
102 subroutine ioda_obsdb_example_nobs_c(c_key_self, kobs) bind(c,name='ioda_obsdb_example_nobs_f90')
103 implicit none
104 integer(c_int), intent(in) :: c_key_self
105 integer(c_int), intent(inout) :: kobs
106 type(ioda_obs_example), pointer :: self
107 
108 call ioda_obs_example_registry%get(c_key_self, self)
109 
110 !TODO: call your function to inquire nobs from obsspace
111 
112 end subroutine ioda_obsdb_example_nobs_c
113 
114 ! ------------------------------------------------------------------------------
115 
116 subroutine ioda_obsdb_example_delete_c(c_key_self) bind(c,name='ioda_obsdb_example_delete_f90')
117 implicit none
118 integer(c_int), intent(inout) :: c_key_self
119 type(ioda_obs_example), pointer :: self
120 
121 call ioda_obs_example_registry%get(c_key_self, self)
122 
123 ! TODO: replace with the call to your Fortran routine to destruct the obsspace
124 ! (defined in ioda_obs_<your_obs_space_name>_mod.F90)
125 call ioda_obs_example_delete(self)
126 
127 call ioda_obs_example_registry%remove(c_key_self)
128 
129 end subroutine ioda_obsdb_example_delete_c
130 
131 ! ------------------------------------------------------------------------------
132 
133 end module ioda_obs_example_mod_c
Fortran example module for for functions on the interface between C++ and Fortran.
type(registry_t), public ioda_obs_example_registry
Linked list interface - defines registry_t type.
subroutine ioda_obsdb_example_nobs_c(c_key_self, kobs)
subroutine ioda_obsdb_example_delete_c(c_key_self)
subroutine ioda_obsdb_example_setup_c(c_key_self, c_conf)
Linked list implementation.
subroutine ioda_obsdb_example_generate_c(c_key_self, c_conf, c_t1, c_t2)
Fortran example module for observation space.
subroutine, public ioda_obs_example_delete(self)
integer, parameter max_string
subroutine, public ioda_obs_example_read(filename, self)
subroutine, public ioda_obs_example_generate(self, nobs)
Fortran derived type to hold observation space info.