Add a json_value pointer to an object to a JSON file.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(json_file), | intent(inout) | :: | me | |||
character(kind=CK,len=*), | intent(in) | :: | path | the path to the variable |
||
type(json_value), | intent(in), | pointer | :: | p | pointer to the variable to add |
|
logical(kind=LK), | intent(out), | optional | :: | found | if the variable was found |
|
logical(kind=LK), | intent(out), | optional | :: | was_created | if the variable had to be created |
subroutine json_file_add_object(me,path,p,found,was_created)
implicit none
class(json_file),intent(inout) :: me
character(kind=CK,len=*),intent(in) :: path !! the path to the variable
type(json_value),pointer,intent(in) :: p !! pointer to the variable to add
logical(LK),intent(out),optional :: found !! if the variable was found
logical(LK),intent(out),optional :: was_created !! if the variable had to be created
if (.not. associated(me%p)) call me%core%create_object(me%p,ck_'') ! create root
call me%core%add_by_path(me%p,path,p,found,was_created)
end subroutine json_file_add_object