Skip to content

Commit d4d7a95

Browse files
committed
Add more docs and tests for error types
1 parent de12a95 commit d4d7a95

13 files changed

+269
-53
lines changed

.travis.yml

+5
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,11 @@ matrix:
3333
- stage: "Documentation"
3434
julia: 1.0
3535
os: linux
36+
addons:
37+
apt:
38+
packages:
39+
- pdf2svg
40+
- texlive-pictures
3641
script:
3742
- julia --project=docs/ -e 'using Pkg; Pkg.instantiate(); Pkg.build()'
3843
- julia --project=docs/ docs/make.jl

Project.toml

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ TimeZones = "f269a46b-ccf7-5d73-abea-4c690281aa53"
2121
BinaryProvider = "0.4, 0.5"
2222
DataFrames = "0.14, 0.15, 0.16, 0.17, 0.18"
2323
Decimals = "0.3.1, 0.4"
24+
DocStringExtensions = "0.8.0"
2425
IterTools = "1"
2526
LayerDicts = "1"
2627
Memento = "0.10, 0.11, 0.12"

deps/error_codes.jl

+4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ const ERROR_CODE_APPENDIX = "https://www.postgresql.org/docs/current/errcodes-ap
66
pascalcase(str) = replace(titlecase(str), '_' => "")
77

88
const BASE_CODE = """# autogenerated by deps/error_codes.jl using $ERROR_CODE_APPENDIX
9+
10+
# Code and Class are special types for representing fixed-length strings in type parameters
11+
# Note that passing an iterator to an NTuple{N, T} constructor will take the first N items
12+
913
struct Class
1014
chars::NTuple{2, Char}
1115
end

docs/Manifest.toml

+104-34
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,31 @@
11
# This file is machine-generated - editing it directly is not advised
22

3+
[[ArnoldiMethod]]
4+
deps = ["DelimitedFiles", "LinearAlgebra", "Random", "SparseArrays", "StaticArrays", "Test"]
5+
git-tree-sha1 = "2b6845cea546604fb4dca4e31414a6a59d39ddcd"
6+
uuid = "ec485272-7323-5ecc-a04f-4719b315124d"
7+
version = "0.0.4"
8+
39
[[Base64]]
410
uuid = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f"
511

612
[[BinaryProvider]]
7-
deps = ["Libdl", "SHA"]
13+
deps = ["Libdl", "Logging", "SHA"]
814
git-tree-sha1 = "c7361ce8a2129f20b0e05a89f7070820cfed6648"
915
uuid = "b99e7846-7c00-51b0-8f62-c81ae34c0232"
10-
version = "0.5.4"
16+
version = "0.5.6"
17+
18+
[[CSTParser]]
19+
deps = ["Tokenize"]
20+
git-tree-sha1 = "376a39f1862000442011390f1edf5e7f4dcc7142"
21+
uuid = "00ebfdb7-1f24-5e51-bd34-a7502290713f"
22+
version = "0.6.0"
1123

1224
[[CategoricalArrays]]
13-
deps = ["Compat", "Future", "Missings", "Printf", "Reexport", "Requires"]
14-
git-tree-sha1 = "94d16e77dfacc59f6d6c1361866906dbb65b6f6b"
25+
deps = ["Compat", "Future", "JSON", "Missings", "Printf", "Reexport"]
26+
git-tree-sha1 = "26601961df6afacdd16d67c1eec6cfe75e5ae9ab"
1527
uuid = "324d7699-5711-5eae-9e2f-1d82baa6b597"
16-
version = "0.5.2"
28+
version = "0.5.4"
1729

1830
[[Compat]]
1931
deps = ["Base64", "Dates", "DelimitedFiles", "Distributed", "InteractiveUtils", "LibGit2", "Libdl", "LinearAlgebra", "Markdown", "Mmap", "Pkg", "Printf", "REPL", "Random", "Serialization", "SharedArrays", "Sockets", "SparseArrays", "Statistics", "Test", "UUIDs", "Unicode"]
@@ -23,15 +35,20 @@ version = "2.1.0"
2335

2436
[[DataFrames]]
2537
deps = ["CategoricalArrays", "Compat", "IteratorInterfaceExtensions", "Missings", "PooledArrays", "Printf", "REPL", "Reexport", "SortingAlgorithms", "Statistics", "StatsBase", "TableTraits", "Tables", "Unicode"]
26-
git-tree-sha1 = "3891a62fd843662af9f78f25bdd415530b9b9c1e"
38+
git-tree-sha1 = "7c0f86a01be0f77cc7f3f9096ed875f1217487e1"
2739
uuid = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
28-
version = "0.18.2"
40+
version = "0.18.4"
2941

3042
[[DataStructures]]
31-
deps = ["InteractiveUtils", "OrderedCollections", "Random", "Serialization", "Test"]
32-
git-tree-sha1 = "ca971f03e146cf144a9e2f2ce59674f5bf0e8038"
43+
deps = ["InteractiveUtils", "OrderedCollections"]
44+
git-tree-sha1 = "0809951a1774dc724da22d26e4289bbaab77809a"
3345
uuid = "864edb3b-99cc-5e75-8d2d-829cb0a9cfe8"
34-
version = "0.15.0"
46+
version = "0.17.0"
47+
48+
[[DataValueInterfaces]]
49+
git-tree-sha1 = "bfc1187b79289637fa0ef6d4436ebdfe6905cbd6"
50+
uuid = "e2d170a0-9d28-54be-80f0-106bbe20a464"
51+
version = "1.0.0"
3552

3653
[[Dates]]
3754
deps = ["Printf"]
@@ -53,35 +70,43 @@ uuid = "8ba89e20-285c-5b6f-9357-94700520ee1b"
5370

5471
[[DocStringExtensions]]
5572
deps = ["LibGit2", "Markdown", "Pkg", "Test"]
56-
git-tree-sha1 = "4d30e889c9f106a51ffa4791a88ffd4765bf20c3"
73+
git-tree-sha1 = "0513f1a8991e9d83255e0140aace0d0fc4486600"
5774
uuid = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae"
58-
version = "0.7.0"
75+
version = "0.8.0"
5976

6077
[[Documenter]]
61-
deps = ["Base64", "DocStringExtensions", "InteractiveUtils", "JSON", "LibGit2", "Logging", "Markdown", "REPL", "Unicode"]
62-
git-tree-sha1 = "38509269fc99a9bc450fdb9e17e805021f3e5b1b"
78+
deps = ["Base64", "DocStringExtensions", "InteractiveUtils", "JSON", "LibGit2", "Logging", "Markdown", "Pkg", "REPL", "Random", "Test", "Unicode"]
79+
git-tree-sha1 = "13a6d15102410d8e70146533b759fc48d844a1d0"
6380
uuid = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
64-
version = "0.22.4"
81+
version = "0.22.3"
6582

6683
[[EzXML]]
67-
deps = ["BinaryProvider", "Libdl", "Pkg", "Printf", "Test"]
68-
git-tree-sha1 = "ad00b79cca4bb3eabb4209217859c553af4401f5"
84+
deps = ["BinaryProvider", "Libdl", "Printf"]
85+
git-tree-sha1 = "724e13b7522563a18ae4a5cc4a9792ae3b0da3e6"
6986
uuid = "8f5d6c58-4d21-5cfd-889c-e3ad7ee6a615"
70-
version = "0.9.1"
87+
version = "0.9.3"
88+
89+
[[FileWatching]]
90+
uuid = "7b1f6079-737a-58dc-b8bc-7a2ca5c1b5ee"
7191

7292
[[Future]]
7393
deps = ["Random"]
7494
uuid = "9fa8497b-333b-5362-9e8d-4d0656e87820"
7595

96+
[[Inflate]]
97+
deps = ["Pkg", "Printf", "Random", "Test"]
98+
git-tree-sha1 = "b7ec91c153cf8bff9aff58b39497925d133ef7fd"
99+
uuid = "d25df0c9-e2be-5dd7-82c8-3ad0b3e990b9"
100+
version = "0.1.1"
101+
76102
[[InteractiveUtils]]
77103
deps = ["Markdown"]
78104
uuid = "b77e0a4c-d291-57a0-90e8-8db25a27a240"
79105

80106
[[IterTools]]
81-
deps = ["SparseArrays", "Test"]
82-
git-tree-sha1 = "79246285c43602384e6f1943b3554042a3712056"
107+
git-tree-sha1 = "2ebe60d7343962966d1779a74a760f13217a6901"
83108
uuid = "c8e1da08-722c-5040-9ed9-7db0dc04731e"
84-
version = "1.1.1"
109+
version = "1.2.0"
85110

86111
[[IteratorInterfaceExtensions]]
87112
git-tree-sha1 = "a3f24677c21f5bbe9d2a714f95dcd58337fb2856"
@@ -94,6 +119,12 @@ git-tree-sha1 = "1f7a25b53ec67f5e9422f1f551ee216503f4a0fa"
94119
uuid = "682c06a0-de6a-54ab-a142-c8b1cf79cde6"
95120
version = "0.20.0"
96121

122+
[[LaTeXStrings]]
123+
deps = ["Compat"]
124+
git-tree-sha1 = "7ab9b8788cfab2bdde22adf9004bda7ad9954b6c"
125+
uuid = "b964fa9f-0449-5b57-a5c2-d3ea65f4040f"
126+
version = "1.0.3"
127+
97128
[[LayerDicts]]
98129
git-tree-sha1 = "6087ad3521d6278ebe5c27ae55e7bbb15ca312cb"
99130
uuid = "6f188dcb-512c-564b-bc01-e0f76e72f166"
@@ -103,21 +134,33 @@ version = "1.0.0"
103134
uuid = "76f85450-5226-5b5a-8eaa-529ad045b433"
104135

105136
[[LibPQ]]
106-
deps = ["BinaryProvider", "Dates", "Decimals", "DocStringExtensions", "IterTools", "LayerDicts", "Libdl", "Memento", "OffsetArrays", "Tables", "TimeZones"]
137+
deps = ["BinaryProvider", "Dates", "Decimals", "DocStringExtensions", "FileWatching", "IterTools", "LayerDicts", "Libdl", "Memento", "OffsetArrays", "Tables", "TimeZones"]
107138
path = ".."
108139
uuid = "194296ae-ab2e-5f79-8cd4-7183a0a5a0d1"
109-
version = "0.9.1"
140+
version = "0.10.1"
110141

111142
[[Libdl]]
112143
uuid = "8f399da3-3557-5675-b5ff-fb832c97cbdb"
113144

145+
[[LightGraphs]]
146+
deps = ["ArnoldiMethod", "Base64", "DataStructures", "DelimitedFiles", "Distributed", "Inflate", "LinearAlgebra", "Markdown", "Random", "SharedArrays", "SimpleTraits", "SparseArrays", "Statistics", "Test"]
147+
git-tree-sha1 = "c7222c370d5cf6d4e08ae40bddd8c0db6852dfb1"
148+
uuid = "093fc24a-ae57-5d10-9952-331d41423f4d"
149+
version = "1.2.0"
150+
114151
[[LinearAlgebra]]
115152
deps = ["Libdl"]
116153
uuid = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
117154

118155
[[Logging]]
119156
uuid = "56ddb016-857b-54e1-b83d-db4d58db5568"
120157

158+
[[MacroTools]]
159+
deps = ["CSTParser", "Compat", "DataStructures", "Test", "Tokenize"]
160+
git-tree-sha1 = "d6e9dedb8c92c3465575442da456aec15a89ff76"
161+
uuid = "1914dd2f-81c6-5fcd-8719-6d5c9610ff09"
162+
version = "0.5.1"
163+
121164
[[Markdown]]
122165
deps = ["Base64"]
123166
uuid = "d6f4376e-aef5-505a-96c1-9c027394607a"
@@ -144,10 +187,9 @@ uuid = "78c3b35d-d492-501b-9361-3d52fe80e533"
144187
version = "0.5.7"
145188

146189
[[OffsetArrays]]
147-
deps = ["DelimitedFiles"]
148-
git-tree-sha1 = "49a6d9b5b3dedec18035e4d97ce77e2b2a182c05"
190+
git-tree-sha1 = "1af2f79c7eaac3e019a0de41ef63335ff26a0a57"
149191
uuid = "6fe1bfb0-de20-5000-8ca7-80f57d26f881"
150-
version = "0.11.0"
192+
version = "0.11.1"
151193

152194
[[OrderedCollections]]
153195
deps = ["Random", "Serialization", "Test"]
@@ -160,10 +202,9 @@ deps = ["Dates", "LibGit2", "Markdown", "Printf", "REPL", "Random", "SHA", "UUID
160202
uuid = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
161203

162204
[[PooledArrays]]
163-
deps = ["Test"]
164-
git-tree-sha1 = "6ea4cfb9136d3ff2b9d30d6696cd72166a3b837c"
205+
git-tree-sha1 = "6e8c38927cb6e9ae144f7277c753714861b27d14"
165206
uuid = "2dfb63ee-cc39-5dd5-95bd-886bf059d720"
166-
version = "0.5.1"
207+
version = "0.5.2"
167208

168209
[[Printf]]
169210
deps = ["Unicode"]
@@ -199,6 +240,12 @@ uuid = "9e88b42a-f829-5b0c-bbe9-9e923198166b"
199240
deps = ["Distributed", "Mmap", "Random", "Serialization"]
200241
uuid = "1a1011a3-84de-559e-8e89-a11a2f7dc383"
201242

243+
[[SimpleTraits]]
244+
deps = ["InteractiveUtils", "MacroTools", "Test"]
245+
git-tree-sha1 = "c0a542b8d5e369b179ccd296b2ca987f6da5da0a"
246+
uuid = "699a6c99-e7fa-54fc-8d76-47d257e15c1d"
247+
version = "0.8.0"
248+
202249
[[Sockets]]
203250
uuid = "6462fe0b-24de-5631-8697-dd941f90decc"
204251

@@ -212,15 +259,21 @@ version = "0.3.1"
212259
deps = ["LinearAlgebra", "Random"]
213260
uuid = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
214261

262+
[[StaticArrays]]
263+
deps = ["LinearAlgebra", "Random", "Statistics"]
264+
git-tree-sha1 = "db23bbf50064c582b6f2b9b043c8e7e98ea8c0c6"
265+
uuid = "90137ffa-7385-5640-81b9-e52037218182"
266+
version = "0.11.0"
267+
215268
[[Statistics]]
216269
deps = ["LinearAlgebra", "SparseArrays"]
217270
uuid = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
218271

219272
[[StatsBase]]
220273
deps = ["DataStructures", "LinearAlgebra", "Missings", "Printf", "Random", "SortingAlgorithms", "SparseArrays", "Statistics"]
221-
git-tree-sha1 = "8a0f4b09c7426478ab677245ab2b0b68552143c7"
274+
git-tree-sha1 = "2b6ca97be7ddfad5d9f16a13fe277d29f3d11c23"
222275
uuid = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"
223-
version = "0.30.0"
276+
version = "0.31.0"
224277

225278
[[Syslogs]]
226279
deps = ["Printf", "Sockets"]
@@ -235,21 +288,38 @@ uuid = "3783bdb8-4a98-5b6b-af9a-565f29a5fe9c"
235288
version = "1.0.0"
236289

237290
[[Tables]]
238-
deps = ["IteratorInterfaceExtensions", "LinearAlgebra", "Requires", "TableTraits", "Test"]
239-
git-tree-sha1 = "c5d784c61e9d243a5a6a8458d19f535b70bdedeb"
291+
deps = ["DataValueInterfaces", "IteratorInterfaceExtensions", "LinearAlgebra", "Requires", "TableTraits", "Test"]
292+
git-tree-sha1 = "2e5d1a0d9b574ee2ed0c1a2fe32807de022376dd"
240293
uuid = "bd369af6-aec1-5ad0-b16a-f7cc5008161c"
241-
version = "0.2.4"
294+
version = "0.2.9"
242295

243296
[[Test]]
244297
deps = ["Distributed", "InteractiveUtils", "Logging", "Random"]
245298
uuid = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
246299

300+
[[TikzGraphs]]
301+
deps = ["LightGraphs", "Test", "TikzPictures"]
302+
git-tree-sha1 = "244e76babc8c358c8eb93617bcb6789f5cd8cb8b"
303+
uuid = "b4f28e30-c73f-5eaf-a395-8a9db949a742"
304+
version = "1.0.1"
305+
306+
[[TikzPictures]]
307+
deps = ["LaTeXStrings", "Test"]
308+
git-tree-sha1 = "01a44f70c9b1d592968538e5de528e079f2418b6"
309+
uuid = "37f6aa50-8035-52d0-81c2-5a1d08754b2d"
310+
version = "3.0.5"
311+
247312
[[TimeZones]]
248313
deps = ["Dates", "EzXML", "Mocking", "Printf", "Serialization", "Unicode"]
249314
git-tree-sha1 = "859bfc1832ea52e413c96fa5c92130516db62bdb"
250315
uuid = "f269a46b-ccf7-5d73-abea-4c690281aa53"
251316
version = "0.9.1"
252317

318+
[[Tokenize]]
319+
git-tree-sha1 = "0de343efc07da00cd449d5b04e959ebaeeb3305d"
320+
uuid = "0796e94c-ce3b-5d07-9a54-7f471281c624"
321+
version = "0.5.4"
322+
253323
[[UUIDs]]
254324
deps = ["Random", "SHA"]
255325
uuid = "cf7118a7-6976-5b1a-9a39-7adc72f591a4"

docs/Project.toml

+5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
11
[deps]
22
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
33
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
4+
InteractiveUtils = "b77e0a4c-d291-57a0-90e8-8db25a27a240"
45
LibPQ = "194296ae-ab2e-5f79-8cd4-7183a0a5a0d1"
6+
LightGraphs = "093fc24a-ae57-5d10-9952-331d41423f4d"
7+
Memento = "f28f55f0-a522-5efc-85c2-fe41dfb9b2d9"
58
Tables = "bd369af6-aec1-5ad0-b16a-f7cc5008161c"
9+
TikzGraphs = "b4f28e30-c73f-5eaf-a395-8a9db949a742"
10+
TikzPictures = "37f6aa50-8035-52d0-81c2-5a1d08754b2d"
611

712
[compat]
813
DataFrames = "0.18"

docs/make.jl

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
using Documenter, LibPQ
1+
using Documenter, LibPQ, Memento
2+
3+
setlevel!(getlogger(LibPQ), "critical")
24

35
makedocs(;
46
modules=[LibPQ],

docs/src/pages/api.md

+60
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,66 @@ LibPQ.num_params(::LibPQ.Result)
9999
LibPQ.error_message(::LibPQ.Result)
100100
```
101101

102+
### Errors
103+
104+
```@eval
105+
using InteractiveUtils
106+
using TikzGraphs
107+
using TikzPictures
108+
using LightGraphs
109+
using LibPQ
110+
111+
function dograph()
112+
g = SimpleDiGraph()
113+
types = Any[LibPQ.LibPQException]
114+
115+
i = 1
116+
add_vertex!(g)
117+
while i <= length(types)
118+
curr_length = length(types)
119+
typ = types[i]
120+
subtyps = subtypes(typ)
121+
for (j, subtyp) in enumerate(subtyps)
122+
push!(types, subtyp)
123+
add_vertex!(g)
124+
add_edge!(g, i, curr_length + j)
125+
end
126+
i += 1
127+
end
128+
129+
TikzGraphs.plot(
130+
g,
131+
map(String∘nameof, types),
132+
node_style="draw, rounded corners",
133+
node_styles=Dict(enumerate((isabstracttype(t) ? "fill=blue!10" : "fill=green!10") for t in types)),
134+
)
135+
end
136+
137+
TikzPictures.save(SVG("error_types"), dograph())
138+
139+
nothing
140+
```
141+
142+
```@raw html
143+
<div style="text-align:center">
144+
<figure>
145+
<img src="error_types.svg" alt="Exception Type Hierarchy">
146+
<figcaption>LibPQ Exception Type Hierarchy<figcaption>
147+
</figure>
148+
</div>
149+
```
150+
151+
```@docs
152+
LibPQ.LibPQException
153+
LibPQ.JLClientException
154+
LibPQ.PostgreSQLException
155+
LibPQ.JLConnectionError
156+
LibPQ.JLResultError
157+
LibPQ.ConninfoParseError
158+
LibPQ.PQConnectionError
159+
LibPQ.PQResultError
160+
```
161+
102162
### Type Conversions
103163

104164
```@docs

0 commit comments

Comments
 (0)