Skip to content

Commit 63ef75c

Browse files
authored
Merge pull request #62 from sourceryinstitute/fix-example
fix(read-from-json): declare instead of associate
2 parents 2091217 + 6368418 commit 63ef75c

File tree

2 files changed

+10
-9
lines changed

2 files changed

+10
-9
lines changed

README.md

+7-5
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ DAG is based on a fork of [daglib by Jacob Williams], refactored to
1313

1414
* Adopt a functional programming pattern based on (mostly) pure functions.
1515
* Add build system and test harness automated by [fpm],
16-
* Add unit testing written with [Vegetables],
16+
* Add unit testing written with [veggies],
1717
* Add continuous-integration testing and documentation deployment via [GitHub Actions],
1818
* Add [documentation] generated by [FORD],
1919
* Add runtime assertion-checking using [Assert], and
20-
* Add [JSON] file input/output using [jsonff].
20+
* Add [JSON] file input/output using [rojff].
2121
* Ensure that dag objects always have a valid state that includes a topological
2222
ordering stored without mutating vertices or vertex arrays.
2323

@@ -85,8 +85,9 @@ fpm run --example print-to-json > dag.json
8585
* [read-from-json.f90] - constructs a DAG by reading from a JSON file.
8686
Run this example as follows:
8787
```
88-
fpm run --example read-from-json > dag.json
88+
fpm run --example read-from-json
8989
```
90+
which will read the file [./example/dag-dependencies.json]
9091
* [dag-to-dot.f90] - constructs a DAG describing the module dependencies in
9192
an early version of the Framework for Extensible Asynchronous
9293
Task Scheduling ([FEATS]) and prints the DAG to a .dot file suitable for
@@ -128,11 +129,11 @@ If you find this software useful, please consider donating code or
128129
[fpm]: https://github.com/fortran-lang/fpm
129130
[3276af]: https://github.com/everythingfunctional/fpm/commit/3276af2e000d1b2c90f151148cd01cce0d3e886d
130131

131-
[Vegetables]: https://gitlab.com/everythingfunctional/Vegetables
132+
[veggies]: https://gitlab.com/everythingfunctional/veggies
132133
[GitHub Actions]: https://github.com/features/actions
133134
[FORD]: https://github.com/Fortran-FOSS-Programmers/ford
134135
[JSON]: https://www.json.org/json-en.html
135-
[jsonff]: https://gitlab.com/everythingfunctional/jsonff
136+
[rojff]: https://gitlab.com/everythingfunctional/rojff
136137
[./src/dag_test.f90]: ./src/dag_test.f90
137138
[example]: ./example/
138139
[FEATS]: https://github.com/sourceryinstitute/feats
@@ -142,3 +143,4 @@ If you find this software useful, please consider donating code or
142143
[dag-to-dot.f90]: ./example/dag-to-dot.f90
143144
[documentation]: https://sourceryinstitute.github.io/dag/
144145
[issue]: https://github.com/sourceryinstitute/dag/issues/new
146+
[./example/dag-dependencies.json]: ./example/dag-dependencies.json

example/read-from-json.f90

+3-4
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,13 @@ program read_from_json
77
!! fpm run --example read-from-json
88
!!
99
use dag_m, only: dag_t
10-
use rojff, only : parse_json_from_file, json_object_t
10+
use rojff, only : parse_json_from_file, json_object_t, fallible_json_value_t
1111
use iso_varying_string, only : char
1212
implicit none
13+
type(fallible_json_value_t) parsed_json
1314

1415

15-
associate(parsed_json => parse_json_from_file('example/dag-dependencies.json'))
16+
parsed_json = parse_json_from_file('example/dag-dependencies.json')
1617

1718
if (parsed_json%failed()) then
1819
error stop char(parsed_json%errors%to_string())
@@ -29,6 +30,4 @@ program read_from_json
2930
end select
3031
end block
3132

32-
end associate
33-
3433
end program

0 commit comments

Comments
 (0)