private subroutine json_get_integer_vec(me, vec)
Arguments
Type |
Intent | Optional |
Attributes | | Name | |
type(json_value), |
intent(inout), |
|
pointer | :: |
me | |
integer(kind=IK), |
intent(out), |
|
dimension(:), allocatable | :: |
vec | |
Description
Get an integer vector from a json_value.
Variables
Type | Visibility |
Attributes | | Name | | Initial | |
logical(kind=LK), |
public |
| :: |
initialized | | | |
Subroutines
subroutine get_int_from_array(element, i, count)
Arguments
Type |
Intent | Optional |
Attributes | | Name | |
type(json_value), |
intent(in), |
|
pointer | :: |
element | |
integer(kind=IK), |
intent(in) |
|
| :: |
i | |
integer(kind=IK), |
intent(in) |
|
| :: |
count | |
Source Code
subroutine json_get_integer_vec(me, vec)
implicit none
type(json_value),pointer :: me
integer(IK),dimension(:),allocatable,intent(out) :: vec
logical(LK) :: initialized
initialized = .false.
if (allocated(vec)) deallocate(vec)
!the callback function is called for each element of the array:
call json_get(me, array_callback=get_int_from_array)
contains
! callback function for integer
subroutine get_int_from_array(element, i, count)
implicit none
type(json_value),pointer,intent(in) :: element
integer(IK),intent(in) :: i !index
integer(IK),intent(in) :: count !size of array
!size the output array:
if (.not. initialized) then
allocate(vec(count))
initialized = .true.
end if
!populate the elements:
call json_get(element, value=vec(i))
end subroutine get_int_from_array
end subroutine json_get_integer_vec