summaryrefslogtreecommitdiffstats
path: root/fortran/src/H5Eff.f90
blob: f835901a741155905d88295fafda4e9eeca42842 (plain)
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
!
! This file contains FORTRAN90 interfaces for H5E functions
!
      MODULE H5E

        USE H5GLOBAL
      
      CONTAINS

!----------------------------------------------------------------------
! Name:		h5eclear_f
!
! Purpose:	Clears the error stack for the current thread. 
!
! Inputs:  
! Outputs:  
!		hdferr:		- error code		
!				 	Success:  0
!				 	Failure: -1   
! Optional parameters:
!		
!	
!
!
! Programmer:	Elena Pourmal
!		August 12, 1999	
!
! Modifications: 	Explicit Fortran interfaces were added for 
!			called C functions (it is needed for Windows
!			port).  April 6, 2001 
!
! Comment:		
!----------------------------------------------------------------------

          SUBROUTINE h5eclear_f(hdferr) 
!
!This definition is needed for Windows DLLs
!DEC$if defined(BUILD_HDF5_DLL)
!DEC$attributes dllexport :: h5eclear_f
!DEC$endif
!
            IMPLICIT NONE
            INTEGER, INTENT(OUT) :: hdferr  ! Error code

!            INTEGER, EXTERNAL :: h5eclear_c
!  MS FORTRAN needs explicit interface for C functions called here.
!
            INTERFACE
              INTEGER FUNCTION h5eclear_c()
              USE H5GLOBAL
              !DEC$ IF DEFINED(HDF5F90_WINDOWS)
              !MS$ATTRIBUTES C,reference,alias:'_H5ECLEAR_C'::h5eclear_c
              !DEC$ ENDIF
              END FUNCTION h5eclear_c
            END INTERFACE
            hdferr = h5eclear_c()
          END SUBROUTINE h5eclear_f

!----------------------------------------------------------------------
! Name:		h5h5eprint_f
!
! Purpose:	Prints the error stack in a default manner. 
!
! Inputs:  
! Outputs:  
!		hdferr:		- error code		
!				 	Success:  0
!				 	Failure: -1   
! Optional parameters:
!		name		- name of the file that
!				  contains print output		
!
! Programmer:	Elena Pourmal
!		August 12, 1999	
!
! Modifications: 	Explicit Fortran interfaces were added for 
!			called C functions (it is needed for Windows
!			port).  April 6, 2001 
!
! Comment:		
!----------------------------------------------------------------------

          SUBROUTINE h5eprint_f(hdferr, name)
!
!This definition is needed for Windows DLLs
!DEC$if defined(BUILD_HDF5_DLL)
!DEC$attributes dllexport :: h5eprint_f
!DEC$endif
!
            CHARACTER(LEN=*), OPTIONAL, INTENT(IN) :: name ! File name
            INTEGER, INTENT(OUT) :: hdferr          ! Error code
!            INTEGER, EXTERNAL :: h5eprint_c1, h5eprint_c2 
            INTEGER :: namelen

!  MS FORTRAN needs explicit interface for C functions called here.
!
            INTERFACE
              INTEGER FUNCTION h5eprint_c1(name, namelen)
              USE H5GLOBAL
              !DEC$ IF DEFINED(HDF5F90_WINDOWS)
              !MS$ATTRIBUTES C,reference,alias:'_H5EPRINT_C1'::h5eprint_c1
              !DEC$ ENDIF
              !DEC$ATTRIBUTES reference :: name
              INTEGER :: namelen
              CHARACTER(LEN=*),INTENT(IN) :: name
              END FUNCTION h5eprint_c1
            END INTERFACE
!  MS FORTRAN needs explicit interface for C functions called here.
!
            INTERFACE
              INTEGER FUNCTION h5eprint_c2()
              USE H5GLOBAL
              !DEC$ IF DEFINED(HDF5F90_WINDOWS)
              !MS$ATTRIBUTES C,reference,alias:'_H5EPRINT_C2'::h5eprint_c2
              !DEC$ ENDIF
              END FUNCTION h5eprint_c2
            END INTERFACE
            namelen = LEN(NAME)
            if (present(name)) then
               hdferr = h5eprint_c1(name, namelen) 
            else
            hdferr = h5eprint_c2() 
            endif
          END SUBROUTINE h5eprint_f

!----------------------------------------------------------------------
! Name:		h5eget_major_f
!
! Purpose:	Returns a character string describing an error specified 
!		by a major error number. 
!
! Inputs:  
!		error_no	- mojor error number 
! Outputs:  
!		name		- character string describing the error
!		hdferr:		- error code		
!				 	Success:  0
!				 	Failure: -1   
! Optional parameters:
!		
! Programmer:	Elena Pourmal
!		August 12, 1999	
!
! Modifications: 	Explicit Fortran interfaces were added for 
!			called C functions (it is needed for Windows
!			port).  April 6, 2001 
!
! Comment:		
!----------------------------------------------------------------------

          SUBROUTINE h5eget_major_f(error_no, name, hdferr)
!
!This definition is needed for Windows DLLs
!DEC$if defined(BUILD_HDF5_DLL)
!DEC$attributes dllexport :: h5eget_major_f
!DEC$endif
!
            INTEGER, INTENT(IN) :: error_no !Major error number
            CHARACTER(LEN=*), INTENT(OUT) :: name ! Character string describing
                                                  ! the error.
            INTEGER, INTENT(OUT) :: hdferr          ! Error code

!            INTEGER, EXTERNAL :: h5eget_major_c
!  MS FORTRAN needs explicit interface for C functions called here.
!
            INTERFACE
              INTEGER FUNCTION h5eget_major_c(error_no, name)
              USE H5GLOBAL
              !DEC$ IF DEFINED(HDF5F90_WINDOWS)
              !MS$ATTRIBUTES C,reference,alias:'_H5EGET_MAJOR_C'::h5eget_major_c
              !DEC$ ENDIF
              !DEC$ATTRIBUTES reference :: name
              INTEGER :: error_no
               CHARACTER(LEN=*) :: name 
              END FUNCTION h5eget_major_c
            END INTERFACE

            hdferr = h5eget_major_c(error_no, name) 
          END SUBROUTINE h5eget_major_f

!----------------------------------------------------------------------
! Name:		h5eget_minor_f
!
! Purpose:	Returns a character string describing an error specified 
!		by a minor error number. 
!
! Inputs:  
!		error_no	- minor error number 
! Outputs:  
!		name		- character string describing the error
!		hdferr:		- error code		
!				 	Success:  0
!				 	Failure: -1   
! Optional parameters:
!		
!	
!
!
! Programmer:	Elena Pourmal
!		August 12, 1999	
!
! Modifications: 	Explicit Fortran interfaces were added for 
!			called C functions (it is needed for Windows
!			port).  April 6, 2001 
!
! Comment:		
!----------------------------------------------------------------------

          SUBROUTINE h5eget_minor_f(error_no, name, hdferr)
!
!This definition is needed for Windows DLLs
!DEC$if defined(BUILD_HDF5_DLL)
!DEC$attributes dllexport :: h5eget_minor_f
!DEC$endif
!
            INTEGER, INTENT(IN) :: error_no !Major error number
            CHARACTER(LEN=*), INTENT(OUT) :: name ! Character string describing
                                                  ! the error
            INTEGER, INTENT(OUT) :: hdferr        ! Error code

!            INTEGER, EXTERNAL :: h5eget_minor_c
!  MS FORTRAN needs explicit interface for C functions called here.
!
            INTERFACE
              INTEGER FUNCTION h5eget_minor_c(error_no, name)
              USE H5GLOBAL
              !DEC$ IF DEFINED(HDF5F90_WINDOWS)
              !MS$ATTRIBUTES C,reference,alias:'_H5EGET_MINOR_C'::h5eget_minor_c
              !DEC$ ENDIF
              !DEC$ATTRIBUTES reference :: name
              INTEGER :: error_no
               CHARACTER(LEN=*) :: name 
              END FUNCTION h5eget_minor_c
            END INTERFACE

            hdferr = h5eget_minor_c(error_no, name) 
          END SUBROUTINE h5eget_minor_f
!----------------------------------------------------------------------
! Name:		h5eset_auto_f
!
! Purpose:	Turns automatic error printing on or off
!
! Inputs:  
!		printflag	- flag to turn automatic error
!				- Possible values are:
!				- 1 (on), 0 (off)
! Outputs:  
!		hdferr:		- error code		
!				 	Success:  0
!				 	Failure: -1   
! Optional parameters:
!		
!	
!
!
! Programmer:	Elena Pourmal
!		August 12, 1999	
!
! Modifications: 	Explicit Fortran interfaces were added for 
!			called C functions (it is needed for Windows
!			port).  April 6, 2001 
!
! Comment:		
!----------------------------------------------------------------------


          SUBROUTINE h5eset_auto_f(printflag, hdferr)
!
!This definition is needed for Windows DLLs
!DEC$if defined(BUILD_HDF5_DLL)
!DEC$attributes dllexport :: h5eset_auto_f
!DEC$endif
!
            INTEGER, INTENT(IN) :: printflag  !flag to turn automatic error
                                              !printing on or off
                                              !possible values are:
                                              !printon (1)
                                              !printoff(0)
            INTEGER, INTENT(OUT) :: hdferr          ! Error code

!            INTEGER, EXTERNAL :: h5eset_auto_c
!  MS FORTRAN needs explicit interface for C functions called here.
!
            INTERFACE
              INTEGER FUNCTION h5eset_auto_c(printflag)
              USE H5GLOBAL
              !DEC$ IF DEFINED(HDF5F90_WINDOWS)
              !MS$ATTRIBUTES C,reference,alias:'_H5ESET_AUTO_C'::h5eset_auto_c
              !DEC$ ENDIF
              INTEGER :: printflag
              END FUNCTION h5eset_auto_c
            END INTERFACE

            hdferr = h5eset_auto_c(printflag) 
          END SUBROUTINE h5eset_auto_f

      END MODULE H5E