private subroutine json_get_double_with_path(me, path, value, found)
Arguments
Type |
Intent | Optional |
Attributes | | Name | |
type(json_value), |
intent(inout), |
|
pointer | :: |
me | |
character(kind=CK,len=*), |
intent(in) |
|
| :: |
path | |
real(kind=RK), |
intent(out) |
|
| :: |
value | |
logical(kind=LK), |
intent(out), |
optional |
| :: |
found | |
Description
Get a double value from a json_value, given the path.
Variables
Type | Visibility |
Attributes | | Name | | Initial | |
type(json_value), |
public, |
pointer | :: |
p | | | |
Source Code
subroutine json_get_double_with_path(me, path, value, found)
implicit none
type(json_value),pointer :: me
character(kind=CK,len=*),intent(in) :: path
real(RK),intent(out) :: value
logical(LK),intent(out),optional :: found
type(json_value),pointer :: p
value = 0.0_RK
if ( exception_thrown ) then
if ( present(found) ) found = .false.
return
end if
nullify(p)
call json_get_by_path(me=me, path=path, p=p)
if (.not. associated(p)) then
call throw_exception('Error in json_get_double:'//&
' Unable to resolve path: '//trim(path))
else
call json_get_double(p,value)
nullify(p)
end if
if (exception_thrown) then
if (present(found)) then
found = .false.
call json_clear_exceptions()
end if
else
if (present(found)) found = .true.
end if
end subroutine json_get_double_with_path