codegen: Opt out of documentation (#843)

* codegen: Opt-out for API documentation

Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>

* cli: Add `--no-docs` flag

Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>

* tests: Check no documentation was generated

Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>

* Update cargo.lock

Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>

* tests: Adjust testing for the new codegen API

Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>

* macro: Ensure `subxt` macro does not contain documentation

Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>

* macro: Expose documentation flag

Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>

* expose_documentation => generate_docs

---------

Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
Co-authored-by: James Wilson <james@jsdw.me>
This commit is contained in:
Alexandru Vasile
2023-03-02 21:35:02 +02:00
committed by GitHub
parent 1c5faf3f8f
commit 5320ca9d55
13 changed files with 244 additions and 93 deletions
Generated
+72 -69
View File
@@ -531,9 +531,9 @@ dependencies = [
[[package]] [[package]]
name = "cranelift-entity" name = "cranelift-entity"
version = "0.92.0" version = "0.93.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dab984c94593f876090fae92e984bdcc74d9b1acf740ab5f79036001c65cba13" checksum = "af684f7f7b01427b1942c7102673322a51b9d6f261e9663dc5e5595786775531"
dependencies = [ dependencies = [
"serde", "serde",
] ]
@@ -1302,6 +1302,9 @@ name = "hashbrown"
version = "0.13.2" version = "0.13.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e" checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e"
dependencies = [
"ahash 0.8.3",
]
[[package]] [[package]]
name = "heck" name = "heck"
@@ -2924,9 +2927,9 @@ dependencies = [
[[package]] [[package]]
name = "sp-application-crypto" name = "sp-application-crypto"
version = "17.0.0" version = "19.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2f08604ba4bd856311946722958711a08bded5c929e1227f7a697c58deb09468" checksum = "65e5d5ec374fc23f4e1b87219be18e01080d8a21a2dee3b49df8befeddbf5780"
dependencies = [ dependencies = [
"parity-scale-codec", "parity-scale-codec",
"scale-info", "scale-info",
@@ -2938,9 +2941,9 @@ dependencies = [
[[package]] [[package]]
name = "sp-arithmetic" name = "sp-arithmetic"
version = "12.0.0" version = "13.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7796939f2e3b68a3b9410ea17a2063b78038cd366f57fa772dd3be0798bd3412" checksum = "a3dd56a02ca86de62dc9485d95830a5fed56fd7e4a22b13c01e62e73bc2094d2"
dependencies = [ dependencies = [
"integer-sqrt", "integer-sqrt",
"num-traits", "num-traits",
@@ -2953,9 +2956,9 @@ dependencies = [
[[package]] [[package]]
name = "sp-core" name = "sp-core"
version = "16.0.0" version = "18.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c96dc3debbe5c22ebf18f99e6a53199efe748e6e584a1902adb88cbad66ae7c" checksum = "4ea27a1d8de728306d17502ba13127a1b1149c66e0ef348f67dafad630b50c1d"
dependencies = [ dependencies = [
"array-bytes", "array-bytes",
"base58", "base58",
@@ -2997,9 +3000,9 @@ dependencies = [
[[package]] [[package]]
name = "sp-core-hashing" name = "sp-core-hashing"
version = "6.0.0" version = "7.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cbc2d1947252b7a4e403b0a260f596920443742791765ec111daa2bbf98eff25" checksum = "d607f7209b1b9571177fc3722a03312df03606bb65f89317ba686d5fa59d438f"
dependencies = [ dependencies = [
"blake2", "blake2",
"byteorder", "byteorder",
@@ -3012,9 +3015,9 @@ dependencies = [
[[package]] [[package]]
name = "sp-core-hashing-proc-macro" name = "sp-core-hashing-proc-macro"
version = "6.0.0" version = "7.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5833921310f9883f2093849d3f5e9e57e9890f6b60839498b08d4c72572cc602" checksum = "c86d231d36b86d5d433c3e439e0dcaa9192861eee30158ee12c7bc009e02bdbb"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",
@@ -3024,9 +3027,9 @@ dependencies = [
[[package]] [[package]]
name = "sp-debug-derive" name = "sp-debug-derive"
version = "6.0.0" version = "7.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "66fb9dc63d54de7d7bed62a505b6e0bd66c122525ea1abb348f6564717c3df2d" checksum = "62211eed9ef9dac4b9d837c56ccc9f8ee4fc49d9d9b7e6b9daf098fe173389ab"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",
@@ -3035,9 +3038,9 @@ dependencies = [
[[package]] [[package]]
name = "sp-externalities" name = "sp-externalities"
version = "0.17.0" version = "0.18.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "57052935c9c9b070ea6b339ef0da3bf241b7e065fc37f9c551669ee83ecfc3c1" checksum = "8ae0f275760689aaefe967943331d458cd99f5169d18364365d4cb584b246d1c"
dependencies = [ dependencies = [
"environmental", "environmental",
"parity-scale-codec", "parity-scale-codec",
@@ -3047,9 +3050,9 @@ dependencies = [
[[package]] [[package]]
name = "sp-io" name = "sp-io"
version = "17.0.0" version = "19.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "578959f9a7e44fd2dd96e8b8bc893cea04fcd7c00a4ffbb0b91c5013899dd02b" checksum = "3be5c4b33aa06da7745be99da2380a500d2f5ccf9b2df5b344d5d1c675adedaa"
dependencies = [ dependencies = [
"bytes", "bytes",
"ed25519", "ed25519",
@@ -3073,9 +3076,9 @@ dependencies = [
[[package]] [[package]]
name = "sp-keyring" name = "sp-keyring"
version = "18.0.0" version = "20.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cc13a168cdc15e185db5cbe8644e3eaafa534e229593768b3044b60bea00fc8c" checksum = "1772c353908e9f5333c04b22137430f3b11c9efa50ad4521e05ef5ccf349596c"
dependencies = [ dependencies = [
"lazy_static", "lazy_static",
"sp-core", "sp-core",
@@ -3085,9 +3088,9 @@ dependencies = [
[[package]] [[package]]
name = "sp-keystore" name = "sp-keystore"
version = "0.22.0" version = "0.24.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "480dbd54b281c638209fbcfce69902b82a0a1af0e22219d46825eadced3136b6" checksum = "811b1f0e8fc5b71fa359f5b4b67adedeba5dc313415e2923f8055e72c172a6ce"
dependencies = [ dependencies = [
"async-trait", "async-trait",
"futures", "futures",
@@ -3102,9 +3105,9 @@ dependencies = [
[[package]] [[package]]
name = "sp-panic-handler" name = "sp-panic-handler"
version = "6.0.0" version = "7.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4abed79c3d5b3622f65ab065676addd9923b9b122cd257df23e2757ce487c6d2" checksum = "75986cc917d897e0f6d0c848088064df4c74ccbb8f1c1848700b725f5ca7fe04"
dependencies = [ dependencies = [
"backtrace", "backtrace",
"lazy_static", "lazy_static",
@@ -3113,9 +3116,9 @@ dependencies = [
[[package]] [[package]]
name = "sp-runtime" name = "sp-runtime"
version = "18.0.0" version = "20.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b8ab2fd44668d3e8674e2253a43852857a47d49be7db737e98bf157e4bcebefd" checksum = "f02650b39d4bf5966fcd80a5b11e0cc871620952ab9be901edf1fdf1460b1ea9"
dependencies = [ dependencies = [
"either", "either",
"hash256-std-hasher", "hash256-std-hasher",
@@ -3136,9 +3139,9 @@ dependencies = [
[[package]] [[package]]
name = "sp-runtime-interface" name = "sp-runtime-interface"
version = "13.0.0" version = "15.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cdb7707246cee4967a8cc71e3ef0e82f562e8b1020606447a6a12b99c7c1b443" checksum = "2446ea08a1ae6dac4218b26e01c7aad6dbf47eb506f4f2b1efa821aa418a07d2"
dependencies = [ dependencies = [
"bytes", "bytes",
"impl-trait-for-tuples", "impl-trait-for-tuples",
@@ -3155,9 +3158,9 @@ dependencies = [
[[package]] [[package]]
name = "sp-runtime-interface-proc-macro" name = "sp-runtime-interface-proc-macro"
version = "9.0.0" version = "10.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2773c90e5765847c5e8b4a24b553d38a9ca52ded47c142cfcfb7948f42827af9" checksum = "05ae5b00aef477127ddb6177b3464ad1e2bdcc12ee913fc5dfc9d065c6cea89b"
dependencies = [ dependencies = [
"Inflector", "Inflector",
"proc-macro-crate", "proc-macro-crate",
@@ -3168,9 +3171,9 @@ dependencies = [
[[package]] [[package]]
name = "sp-state-machine" name = "sp-state-machine"
version = "0.22.0" version = "0.24.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4c957b8b4c252507c12674948db427c5e34fd1760ce256922f1ec5f89f781a4f" checksum = "779f737342d849205b97e2aacd729695614d86ccb05604e34f0ffe6391d7a4ce"
dependencies = [ dependencies = [
"hash-db", "hash-db",
"log", "log",
@@ -3189,15 +3192,15 @@ dependencies = [
[[package]] [[package]]
name = "sp-std" name = "sp-std"
version = "6.0.0" version = "7.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "af0ee286f98455272f64ac5bb1384ff21ac029fbb669afbaf48477faff12760e" checksum = "1de8eef39962b5b97478719c493bed2926cf70cb621005bbf68ebe58252ff986"
[[package]] [[package]]
name = "sp-storage" name = "sp-storage"
version = "11.0.0" version = "12.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3c20cb0c562d1a159ecb2c7ca786828c81e432c535474967d2df3a484977cea4" checksum = "9ad1f8c52d4700ac7bc42b3375679a6c6fc1fe876f4b40c6efdf36f933ef0291"
dependencies = [ dependencies = [
"impl-serde", "impl-serde",
"parity-scale-codec", "parity-scale-codec",
@@ -3209,9 +3212,9 @@ dependencies = [
[[package]] [[package]]
name = "sp-tracing" name = "sp-tracing"
version = "8.0.0" version = "9.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e46bd547da89a9cda69b4ce4c91a5b7e1f86915190d83cd407b715d0c6bac042" checksum = "00fab60bf3d42255ce3f678903d3a2564662371c75623de4a1ffc7cac46143df"
dependencies = [ dependencies = [
"parity-scale-codec", "parity-scale-codec",
"sp-std", "sp-std",
@@ -3222,9 +3225,9 @@ dependencies = [
[[package]] [[package]]
name = "sp-trie" name = "sp-trie"
version = "16.0.0" version = "18.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8efbe5b6d29a18fea7c2f52e0098135f2f864b31d335d5105b40a349866ba874" checksum = "31b5f3e730d26923d699766a9ca065ec39161f7af815c19acfb89c73f0402bf9"
dependencies = [ dependencies = [
"ahash 0.8.3", "ahash 0.8.3",
"hash-db", "hash-db",
@@ -3246,9 +3249,9 @@ dependencies = [
[[package]] [[package]]
name = "sp-version" name = "sp-version"
version = "16.0.0" version = "18.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "01f705c5c6c6dad760355df0b870dd8e510f720ae6adde3eeba069c116248024" checksum = "53ebad12a51b507859dc2978f1a6b101b403d1544403a17a1b7c17eeed20cb0c"
dependencies = [ dependencies = [
"impl-serde", "impl-serde",
"parity-scale-codec", "parity-scale-codec",
@@ -3264,9 +3267,9 @@ dependencies = [
[[package]] [[package]]
name = "sp-version-proc-macro" name = "sp-version-proc-macro"
version = "6.0.0" version = "7.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d61fa10e7a0453c9eb2bfd49067585fe54d530f020e3bfa94bf0a9ce547aa5b3" checksum = "a42f1acfd2bbaa92c4d97f7a0840e900a5dfa8e8d57b91c031c64f1df2112e90"
dependencies = [ dependencies = [
"parity-scale-codec", "parity-scale-codec",
"proc-macro2", "proc-macro2",
@@ -3276,9 +3279,9 @@ dependencies = [
[[package]] [[package]]
name = "sp-wasm-interface" name = "sp-wasm-interface"
version = "10.0.0" version = "12.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bbbc05650b6338808892a7b04f0c56bb1f7f928bfa9ac58e0af2c1e5bef33229" checksum = "510bdd9ade55508e5aa05b99ab79aaa4b74a1f7476351b6ce0f3aab3b1cb2524"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"impl-trait-for-tuples", "impl-trait-for-tuples",
@@ -3291,9 +3294,9 @@ dependencies = [
[[package]] [[package]]
name = "sp-weights" name = "sp-weights"
version = "14.0.0" version = "16.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ebab7696f915aa548494aef3ca8d15217baf10458fe6edb87e60587a47de358" checksum = "39c4a96e53621ae435981fb6037d8b0be7cf32fae627780094a94ef89f194715"
dependencies = [ dependencies = [
"parity-scale-codec", "parity-scale-codec",
"scale-info", "scale-info",
@@ -3812,12 +3815,12 @@ dependencies = [
[[package]] [[package]]
name = "trie-db" name = "trie-db"
version = "0.24.0" version = "0.25.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "004e1e8f92535694b4cb1444dc5a8073ecf0815e3357f729638b9f8fc4062908" checksum = "3390c0409daaa6027d6681393316f4ccd3ff82e1590a1e4725014e3ae2bf1920"
dependencies = [ dependencies = [
"hash-db", "hash-db",
"hashbrown 0.12.3", "hashbrown 0.13.2",
"log", "log",
"rustc-hex", "rustc-hex",
"smallvec", "smallvec",
@@ -4119,9 +4122,9 @@ dependencies = [
[[package]] [[package]]
name = "wasmparser" name = "wasmparser"
version = "0.96.0" version = "0.100.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "adde01ade41ab9a5d10ec8ed0bb954238cf8625b5cd5a13093d6de2ad9c2be1a" checksum = "64b20236ab624147dfbb62cf12a19aaf66af0e41b8398838b66e997d07d269d4"
dependencies = [ dependencies = [
"indexmap", "indexmap",
"url", "url",
@@ -4129,9 +4132,9 @@ dependencies = [
[[package]] [[package]]
name = "wasmtime" name = "wasmtime"
version = "5.0.0" version = "6.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4e5b183a159484980138cc05231419c536d395a7b25c1802091310ea2f74276a" checksum = "9010891d0b8e367c3be94ca35d7bc25c1de3240463bb1d61bcfc8c2233c4e0d0"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"bincode", "bincode",
@@ -4154,18 +4157,18 @@ dependencies = [
[[package]] [[package]]
name = "wasmtime-asm-macros" name = "wasmtime-asm-macros"
version = "5.0.0" version = "6.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c0aeb1cb256d76cf07b20264c808351c8b525ece56de1ef4d93f87a0aaf342db" checksum = "65805c663eaa8257b910666f6d4b056b5c7329750da754ba5df54f3af7dbf35c"
dependencies = [ dependencies = [
"cfg-if", "cfg-if",
] ]
[[package]] [[package]]
name = "wasmtime-environ" name = "wasmtime-environ"
version = "5.0.0" version = "6.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e5a2a5f0fb93aa837a727a48dd1076e8a9f882cc2fee20b433c04a18740ff63b" checksum = "4f964bb0b91fa021b8d1b488c62cc77b346c1dae6e3ebd010050b57c1f2ca657"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"cranelift-entity", "cranelift-entity",
@@ -4182,9 +4185,9 @@ dependencies = [
[[package]] [[package]]
name = "wasmtime-jit" name = "wasmtime-jit"
version = "5.0.0" version = "6.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "01c78f9fb2922dbb5a95f009539d4badb44866caeeb53d156bf2cf4d683c3afd" checksum = "b7a1d06f5d109539e0168fc74fa65e3948ac8dac3bb8cdbd08b62b36a0ae27b8"
dependencies = [ dependencies = [
"addr2line 0.17.0", "addr2line 0.17.0",
"anyhow", "anyhow",
@@ -4205,18 +4208,18 @@ dependencies = [
[[package]] [[package]]
name = "wasmtime-jit-debug" name = "wasmtime-jit-debug"
version = "5.0.0" version = "6.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "67cacdb52a77b8c8e744e510beeabf0bd698b1c94c59eed33c52b3fbd19639b0" checksum = "f76ef2e410329aaf8555ac6571d6fe07711be0646dcdf7ff3ab750a42ed2e583"
dependencies = [ dependencies = [
"once_cell", "once_cell",
] ]
[[package]] [[package]]
name = "wasmtime-jit-icache-coherence" name = "wasmtime-jit-icache-coherence"
version = "5.0.0" version = "6.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "08fcba5ebd96da2a9f0747ab6337fe9788adfb3f63fa2c180520d665562d257e" checksum = "ec1fd0f0dd79e7cc0f55b102e320d7c77ab76cd272008a8fd98e25b5777e2636"
dependencies = [ dependencies = [
"cfg-if", "cfg-if",
"libc", "libc",
@@ -4225,9 +4228,9 @@ dependencies = [
[[package]] [[package]]
name = "wasmtime-runtime" name = "wasmtime-runtime"
version = "5.0.0" version = "6.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0793210acf50d4c69182c916abaee1d423dc5d172cdfde6acfea2f9446725940" checksum = "271aef9b4ca2e953a866293683f2db33cda46f6933c5e431e68d8373723d4ab6"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"cc", "cc",
@@ -4249,9 +4252,9 @@ dependencies = [
[[package]] [[package]]
name = "wasmtime-types" name = "wasmtime-types"
version = "5.0.0" version = "6.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "50d015ba8b231248a811e323cf7a525cd3f982d4be0b9e62d27685102e5f12b1" checksum = "b18144b0e45479a830ac9fcebfc71a16d90dc72d8ebd5679700eb3bfe974d7df"
dependencies = [ dependencies = [
"cranelift-entity", "cranelift-entity",
"serde", "serde",
+15 -1
View File
@@ -40,6 +40,11 @@ pub struct Opts {
/// Defaults to `::subxt`. /// Defaults to `::subxt`.
#[clap(long = "crate")] #[clap(long = "crate")]
crate_path: Option<String>, crate_path: Option<String>,
/// Do not generate documentation for the runtime API code.
///
/// Defaults to `false` (documentation is generated).
#[clap(long, action)]
no_docs: bool,
} }
fn derive_for_type_parser(src: &str) -> Result<(String, String), String> { fn derive_for_type_parser(src: &str) -> Result<(String, String), String> {
@@ -69,7 +74,13 @@ pub async fn run(opts: Opts) -> color_eyre::Result<()> {
subxt_codegen::utils::fetch_metadata_bytes(&url).await? subxt_codegen::utils::fetch_metadata_bytes(&url).await?
}; };
codegen(&bytes, opts.derives, opts.derives_for_type, opts.crate_path)?; codegen(
&bytes,
opts.derives,
opts.derives_for_type,
opts.crate_path,
opts.no_docs,
)?;
Ok(()) Ok(())
} }
@@ -78,6 +89,7 @@ fn codegen(
raw_derives: Vec<String>, raw_derives: Vec<String>,
derives_for_type: Vec<(String, String)>, derives_for_type: Vec<(String, String)>,
crate_path: Option<String>, crate_path: Option<String>,
no_docs: bool,
) -> color_eyre::Result<()> { ) -> color_eyre::Result<()> {
let item_mod = syn::parse_quote!( let item_mod = syn::parse_quote!(
pub mod api {} pub mod api {}
@@ -100,12 +112,14 @@ fn codegen(
let type_substitutes = TypeSubstitutes::new(&crate_path); let type_substitutes = TypeSubstitutes::new(&crate_path);
let should_gen_docs = !no_docs;
let runtime_api = subxt_codegen::generate_runtime_api_from_bytes( let runtime_api = subxt_codegen::generate_runtime_api_from_bytes(
item_mod, item_mod,
metadata_bytes, metadata_bytes,
derives, derives,
type_substitutes, type_substitutes,
crate_path, crate_path,
should_gen_docs,
); );
println!("{runtime_api}"); println!("{runtime_api}");
Ok(()) Ok(())
+8 -2
View File
@@ -40,6 +40,7 @@ pub fn generate_calls(
pallet: &PalletMetadata<PortableForm>, pallet: &PalletMetadata<PortableForm>,
types_mod_ident: &syn::Ident, types_mod_ident: &syn::Ident,
crate_path: &CratePath, crate_path: &CratePath,
should_gen_docs: bool,
) -> TokenStream2 { ) -> TokenStream2 {
// Early return if the pallet has no calls. // Early return if the pallet has no calls.
let call = if let Some(ref calls) = pallet.calls { let call = if let Some(ref calls) = pallet.calls {
@@ -54,6 +55,7 @@ pub fn generate_calls(
|name| name.to_upper_camel_case().into(), |name| name.to_upper_camel_case().into(),
"Call", "Call",
crate_path, crate_path,
should_gen_docs,
); );
let (call_structs, call_fns): (Vec<_>, Vec<_>) = struct_defs let (call_structs, call_fns): (Vec<_>, Vec<_>) = struct_defs
.iter_mut() .iter_mut()
@@ -98,7 +100,8 @@ pub fn generate_calls(
let fn_name = format_ident!("{}", variant_name.to_snake_case()); let fn_name = format_ident!("{}", variant_name.to_snake_case());
// Propagate the documentation just to `TransactionApi` methods, while // Propagate the documentation just to `TransactionApi` methods, while
// draining the documentation of inner call structures. // draining the documentation of inner call structures.
let docs = struct_def.docs.take(); let docs = should_gen_docs.then_some(struct_def.docs.take()).flatten();
// The call structure's documentation was stripped above. // The call structure's documentation was stripped above.
let call_struct = quote! { let call_struct = quote! {
#struct_def #struct_def
@@ -124,9 +127,12 @@ pub fn generate_calls(
let call_ty = type_gen.resolve_type(call.ty.id()); let call_ty = type_gen.resolve_type(call.ty.id());
let docs = call_ty.docs(); let docs = call_ty.docs();
let docs = should_gen_docs
.then_some(quote! { #( #[doc = #docs ] )* })
.unwrap_or_default();
quote! { quote! {
#( #[doc = #docs ] )* #docs
pub mod calls { pub mod calls {
use super::root_mod; use super::root_mod;
use super::#types_mod_ident; use super::#types_mod_ident;
+5 -1
View File
@@ -48,6 +48,7 @@ pub fn generate_constants(
pallet: &PalletMetadata<PortableForm>, pallet: &PalletMetadata<PortableForm>,
types_mod_ident: &syn::Ident, types_mod_ident: &syn::Ident,
crate_path: &CratePath, crate_path: &CratePath,
should_gen_docs: bool,
) -> TokenStream2 { ) -> TokenStream2 {
// Early return if the pallet has no constants. // Early return if the pallet has no constants.
if pallet.constants.is_empty() { if pallet.constants.is_empty() {
@@ -64,9 +65,12 @@ pub fn generate_constants(
let return_ty = type_gen.resolve_type_path(constant.ty.id()); let return_ty = type_gen.resolve_type_path(constant.ty.id());
let docs = &constant.docs; let docs = &constant.docs;
let docs = should_gen_docs
.then_some(quote! { #( #[doc = #docs ] )* })
.unwrap_or_default();
quote! { quote! {
#( #[doc = #docs ] )* #docs
pub fn #fn_name(&self) -> #crate_path::constants::StaticConstantAddress<#crate_path::metadata::DecodeStaticType<#return_ty>> { pub fn #fn_name(&self) -> #crate_path::constants::StaticConstantAddress<#crate_path::metadata::DecodeStaticType<#return_ty>> {
#crate_path::constants::StaticConstantAddress::new( #crate_path::constants::StaticConstantAddress::new(
#pallet_name, #pallet_name,
+6 -1
View File
@@ -45,6 +45,7 @@ pub fn generate_events(
pallet: &PalletMetadata<PortableForm>, pallet: &PalletMetadata<PortableForm>,
types_mod_ident: &syn::Ident, types_mod_ident: &syn::Ident,
crate_path: &CratePath, crate_path: &CratePath,
should_gen_docs: bool,
) -> TokenStream2 { ) -> TokenStream2 {
// Early return if the pallet has no events. // Early return if the pallet has no events.
let event = if let Some(ref event) = pallet.event { let event = if let Some(ref event) = pallet.event {
@@ -59,6 +60,7 @@ pub fn generate_events(
|name| name.into(), |name| name.into(),
"Event", "Event",
crate_path, crate_path,
should_gen_docs,
); );
let event_structs = struct_defs.iter().map(|(variant_name, struct_def)| { let event_structs = struct_defs.iter().map(|(variant_name, struct_def)| {
let pallet_name = &pallet.name; let pallet_name = &pallet.name;
@@ -77,9 +79,12 @@ pub fn generate_events(
let event_type = type_gen.resolve_type_path(event.ty.id()); let event_type = type_gen.resolve_type_path(event.ty.id());
let event_ty = type_gen.resolve_type(event.ty.id()); let event_ty = type_gen.resolve_type(event.ty.id());
let docs = event_ty.docs(); let docs = event_ty.docs();
let docs = should_gen_docs
.then_some(quote! { #( #[doc = #docs ] )* })
.unwrap_or_default();
quote! { quote! {
#( #[doc = #docs ] )* #docs
pub type Event = #event_type; pub type Event = #event_type;
pub mod events { pub mod events {
use super::#types_mod_ident; use super::#types_mod_ident;
+30 -4
View File
@@ -56,6 +56,7 @@ use syn::parse_quote;
/// * `derives` - Provide custom derives for the generated types. /// * `derives` - Provide custom derives for the generated types.
/// * `type_substitutes` - Provide custom type substitutes. /// * `type_substitutes` - Provide custom type substitutes.
/// * `crate_path` - Path to the `subxt` crate. /// * `crate_path` - Path to the `subxt` crate.
/// * `should_gen_docs` - True if the generated API contains the documentation from the metadata.
/// ///
/// **Note:** This is a wrapper over [RuntimeGenerator] for static metadata use-cases. /// **Note:** This is a wrapper over [RuntimeGenerator] for static metadata use-cases.
pub fn generate_runtime_api_from_path<P>( pub fn generate_runtime_api_from_path<P>(
@@ -64,6 +65,7 @@ pub fn generate_runtime_api_from_path<P>(
derives: DerivesRegistry, derives: DerivesRegistry,
type_substitutes: TypeSubstitutes, type_substitutes: TypeSubstitutes,
crate_path: CratePath, crate_path: CratePath,
should_gen_docs: bool,
) -> TokenStream2 ) -> TokenStream2
where where
P: AsRef<path::Path>, P: AsRef<path::Path>,
@@ -82,6 +84,7 @@ where
derives, derives,
type_substitutes, type_substitutes,
crate_path, crate_path,
should_gen_docs,
) )
} }
@@ -96,6 +99,7 @@ where
/// * `derives` - Provide custom derives for the generated types. /// * `derives` - Provide custom derives for the generated types.
/// * `type_substitutes` - Provide custom type substitutes. /// * `type_substitutes` - Provide custom type substitutes.
/// * `crate_path` - Path to the `subxt` crate. /// * `crate_path` - Path to the `subxt` crate.
/// * `should_gen_docs` - True if the generated API contains the documentation from the metadata.
/// ///
/// **Note:** This is a wrapper over [RuntimeGenerator] for static metadata use-cases. /// **Note:** This is a wrapper over [RuntimeGenerator] for static metadata use-cases.
pub fn generate_runtime_api_from_url( pub fn generate_runtime_api_from_url(
@@ -104,6 +108,7 @@ pub fn generate_runtime_api_from_url(
derives: DerivesRegistry, derives: DerivesRegistry,
type_substitutes: TypeSubstitutes, type_substitutes: TypeSubstitutes,
crate_path: CratePath, crate_path: CratePath,
should_gen_docs: bool,
) -> TokenStream2 { ) -> TokenStream2 {
let bytes = fetch_metadata_bytes_blocking(url) let bytes = fetch_metadata_bytes_blocking(url)
.unwrap_or_else(|e| abort_call_site!("Failed to obtain metadata: {}", e)); .unwrap_or_else(|e| abort_call_site!("Failed to obtain metadata: {}", e));
@@ -114,6 +119,7 @@ pub fn generate_runtime_api_from_url(
derives, derives,
type_substitutes, type_substitutes,
crate_path, crate_path,
should_gen_docs,
) )
} }
@@ -126,6 +132,7 @@ pub fn generate_runtime_api_from_url(
/// * `derives` - Provide custom derives for the generated types. /// * `derives` - Provide custom derives for the generated types.
/// * `type_substitutes` - Provide custom type substitutes. /// * `type_substitutes` - Provide custom type substitutes.
/// * `crate_path` - Path to the `subxt` crate. /// * `crate_path` - Path to the `subxt` crate.
/// * `should_gen_docs` - True if the generated API contains the documentation from the metadata.
/// ///
/// **Note:** This is a wrapper over [RuntimeGenerator] for static metadata use-cases. /// **Note:** This is a wrapper over [RuntimeGenerator] for static metadata use-cases.
pub fn generate_runtime_api_from_bytes( pub fn generate_runtime_api_from_bytes(
@@ -134,12 +141,19 @@ pub fn generate_runtime_api_from_bytes(
derives: DerivesRegistry, derives: DerivesRegistry,
type_substitutes: TypeSubstitutes, type_substitutes: TypeSubstitutes,
crate_path: CratePath, crate_path: CratePath,
should_gen_docs: bool,
) -> TokenStream2 { ) -> TokenStream2 {
let metadata = frame_metadata::RuntimeMetadataPrefixed::decode(&mut &bytes[..]) let metadata = frame_metadata::RuntimeMetadataPrefixed::decode(&mut &bytes[..])
.unwrap_or_else(|e| abort_call_site!("Failed to decode metadata: {}", e)); .unwrap_or_else(|e| abort_call_site!("Failed to decode metadata: {}", e));
let generator = RuntimeGenerator::new(metadata); let generator = RuntimeGenerator::new(metadata);
generator.generate_runtime(item_mod, derives, type_substitutes, crate_path) generator.generate_runtime(
item_mod,
derives,
type_substitutes,
crate_path,
should_gen_docs,
)
} }
/// Create the API for interacting with a Substrate runtime. /// Create the API for interacting with a Substrate runtime.
@@ -172,6 +186,7 @@ impl RuntimeGenerator {
derives: DerivesRegistry, derives: DerivesRegistry,
type_substitutes: TypeSubstitutes, type_substitutes: TypeSubstitutes,
crate_path: CratePath, crate_path: CratePath,
should_gen_docs: bool,
) -> TokenStream2 { ) -> TokenStream2 {
let item_mod_attrs = item_mod.attrs.clone(); let item_mod_attrs = item_mod.attrs.clone();
let item_mod_ir = ir::ItemMod::from(item_mod); let item_mod_ir = ir::ItemMod::from(item_mod);
@@ -183,6 +198,7 @@ impl RuntimeGenerator {
type_substitutes, type_substitutes,
derives.clone(), derives.clone(),
crate_path.clone(), crate_path.clone(),
should_gen_docs,
); );
let types_mod = type_gen.generate_types_mod(); let types_mod = type_gen.generate_types_mod();
let types_mod_ident = types_mod.ident(); let types_mod_ident = types_mod.ident();
@@ -218,10 +234,16 @@ impl RuntimeGenerator {
pallet, pallet,
types_mod_ident, types_mod_ident,
&crate_path, &crate_path,
should_gen_docs,
); );
let event = let event = events::generate_events(
events::generate_events(&type_gen, pallet, types_mod_ident, &crate_path); &type_gen,
pallet,
types_mod_ident,
&crate_path,
should_gen_docs,
);
let storage_mod = storage::generate_storage( let storage_mod = storage::generate_storage(
&self.metadata, &self.metadata,
@@ -229,6 +251,7 @@ impl RuntimeGenerator {
pallet, pallet,
types_mod_ident, types_mod_ident,
&crate_path, &crate_path,
should_gen_docs,
); );
let constants_mod = constants::generate_constants( let constants_mod = constants::generate_constants(
@@ -237,6 +260,7 @@ impl RuntimeGenerator {
pallet, pallet,
types_mod_ident, types_mod_ident,
&crate_path, &crate_path,
should_gen_docs,
); );
quote! { quote! {
@@ -376,6 +400,7 @@ pub fn generate_structs_from_variants<F>(
variant_to_struct_name: F, variant_to_struct_name: F,
error_message_type_name: &str, error_message_type_name: &str,
crate_path: &CratePath, crate_path: &CratePath,
should_gen_docs: bool,
) -> Vec<(String, CompositeDef)> ) -> Vec<(String, CompositeDef)>
where where
F: Fn(&str) -> std::borrow::Cow<str>, F: Fn(&str) -> std::borrow::Cow<str>,
@@ -393,6 +418,7 @@ where
&[], &[],
type_gen, type_gen,
); );
let docs = should_gen_docs.then_some(var.docs()).unwrap_or_default();
let struct_def = CompositeDef::struct_def( let struct_def = CompositeDef::struct_def(
&ty, &ty,
struct_name.as_ref(), struct_name.as_ref(),
@@ -400,7 +426,7 @@ where
fields, fields,
Some(parse_quote!(pub)), Some(parse_quote!(pub)),
type_gen, type_gen,
var.docs(), docs,
crate_path, crate_path,
); );
(var.name().to_string(), struct_def) (var.name().to_string(), struct_def)
+15 -4
View File
@@ -41,6 +41,7 @@ pub fn generate_storage(
pallet: &PalletMetadata<PortableForm>, pallet: &PalletMetadata<PortableForm>,
types_mod_ident: &syn::Ident, types_mod_ident: &syn::Ident,
crate_path: &CratePath, crate_path: &CratePath,
should_gen_docs: bool,
) -> TokenStream2 { ) -> TokenStream2 {
let storage = if let Some(ref storage) = pallet.storage { let storage = if let Some(ref storage) = pallet.storage {
storage storage
@@ -52,7 +53,14 @@ pub fn generate_storage(
.entries .entries
.iter() .iter()
.map(|entry| { .map(|entry| {
generate_storage_entry_fns(metadata, type_gen, pallet, entry, crate_path) generate_storage_entry_fns(
metadata,
type_gen,
pallet,
entry,
crate_path,
should_gen_docs,
)
}) })
.collect(); .collect();
@@ -75,6 +83,7 @@ fn generate_storage_entry_fns(
pallet: &PalletMetadata<PortableForm>, pallet: &PalletMetadata<PortableForm>,
storage_entry: &StorageEntryMetadata<PortableForm>, storage_entry: &StorageEntryMetadata<PortableForm>,
crate_path: &CratePath, crate_path: &CratePath,
should_gen_docs: bool,
) -> TokenStream2 { ) -> TokenStream2 {
let (fields, key_impl) = match storage_entry.ty { let (fields, key_impl) = match storage_entry.ty {
StorageEntryType::Plain(_) => (vec![], quote!(vec![])), StorageEntryType::Plain(_) => (vec![], quote!(vec![])),
@@ -183,7 +192,9 @@ fn generate_storage_entry_fns(
let storage_entry_value_ty = type_gen.resolve_type_path(storage_entry_ty.id()); let storage_entry_value_ty = type_gen.resolve_type_path(storage_entry_ty.id());
let docs = &storage_entry.docs; let docs = &storage_entry.docs;
let docs_token = quote! { #( #[doc = #docs ] )* }; let docs = should_gen_docs
.then_some(quote! { #( #[doc = #docs ] )* })
.unwrap_or_default();
let key_args = fields.iter().map(|(field_name, field_type)| { let key_args = fields.iter().map(|(field_name, field_type)| {
// The field type is translated from `std::vec::Vec<T>` to `[T]`. We apply // The field type is translated from `std::vec::Vec<T>` to `[T]`. We apply
@@ -224,7 +235,7 @@ fn generate_storage_entry_fns(
let root_entry_fn = if is_map_type { let root_entry_fn = if is_map_type {
let fn_name_root = format_ident!("{}_root", fn_name); let fn_name_root = format_ident!("{}_root", fn_name);
quote! ( quote! (
#docs_token #docs
pub fn #fn_name_root( pub fn #fn_name_root(
&self, &self,
) -> #crate_path::storage::address::StaticStorageAddress::<#crate_path::metadata::DecodeStaticType<#storage_entry_value_ty>, (), #is_defaultable_type, #is_iterable_type> { ) -> #crate_path::storage::address::StaticStorageAddress::<#crate_path::metadata::DecodeStaticType<#storage_entry_value_ty>, (), #is_defaultable_type, #is_iterable_type> {
@@ -242,7 +253,7 @@ fn generate_storage_entry_fns(
quote! { quote! {
// Access a specific value from a storage entry // Access a specific value from a storage entry
#docs_token #docs
pub fn #fn_name( pub fn #fn_name(
&self, &self,
#( #key_args, )* #( #key_args, )*
+3 -1
View File
@@ -37,7 +37,9 @@
//! let substs = TypeSubstitutes::new(&CratePath::default()); //! let substs = TypeSubstitutes::new(&CratePath::default());
//! // Generate the Runtime API. //! // Generate the Runtime API.
//! let generator = subxt_codegen::RuntimeGenerator::new(metadata); //! let generator = subxt_codegen::RuntimeGenerator::new(metadata);
//! let runtime_api = generator.generate_runtime(item_mod, derives, substs, CratePath::default()); //! // Include metadata documentation in the Runtime API.
//! let generate_docs = true;
//! let runtime_api = generator.generate_runtime(item_mod, derives, substs, CratePath::default(), generate_docs);
//! println!("{}", runtime_api); //! println!("{}", runtime_api);
//! ``` //! ```
+10 -1
View File
@@ -65,6 +65,8 @@ pub struct TypeGenerator<'a> {
derives: DerivesRegistry, derives: DerivesRegistry,
/// The `subxt` crate access path in the generated code. /// The `subxt` crate access path in the generated code.
crate_path: CratePath, crate_path: CratePath,
/// True if codegen should generate the documentation for the API.
should_gen_docs: bool,
} }
impl<'a> TypeGenerator<'a> { impl<'a> TypeGenerator<'a> {
@@ -75,6 +77,7 @@ impl<'a> TypeGenerator<'a> {
type_substitutes: TypeSubstitutes, type_substitutes: TypeSubstitutes,
derives: DerivesRegistry, derives: DerivesRegistry,
crate_path: CratePath, crate_path: CratePath,
should_gen_docs: bool,
) -> Self { ) -> Self {
let root_mod_ident = Ident::new(root_mod, Span::call_site()); let root_mod_ident = Ident::new(root_mod, Span::call_site());
Self { Self {
@@ -83,6 +86,7 @@ impl<'a> TypeGenerator<'a> {
type_substitutes, type_substitutes,
derives, derives,
crate_path, crate_path,
should_gen_docs,
} }
} }
@@ -118,7 +122,12 @@ impl<'a> TypeGenerator<'a> {
innermost_module.types.insert( innermost_module.types.insert(
path.clone(), path.clone(),
TypeDefGen::from_type(ty.ty(), self, &self.crate_path), TypeDefGen::from_type(
ty.ty(),
self,
&self.crate_path,
self.should_gen_docs,
),
); );
} }
+20
View File
@@ -46,6 +46,7 @@ fn generate_struct_with_primitives() {
TypeSubstitutes::new(&crate_path), TypeSubstitutes::new(&crate_path),
DerivesRegistry::new(&crate_path), DerivesRegistry::new(&crate_path),
crate_path, crate_path,
true,
); );
let types = type_gen.generate_types_mod(); let types = type_gen.generate_types_mod();
let tests_mod = get_mod(&types, MOD_PATH).unwrap(); let tests_mod = get_mod(&types, MOD_PATH).unwrap();
@@ -94,6 +95,7 @@ fn generate_struct_with_a_struct_field() {
TypeSubstitutes::new(&crate_path), TypeSubstitutes::new(&crate_path),
DerivesRegistry::new(&crate_path), DerivesRegistry::new(&crate_path),
crate_path, crate_path,
true,
); );
let types = type_gen.generate_types_mod(); let types = type_gen.generate_types_mod();
let tests_mod = get_mod(&types, MOD_PATH).unwrap(); let tests_mod = get_mod(&types, MOD_PATH).unwrap();
@@ -141,6 +143,7 @@ fn generate_tuple_struct() {
TypeSubstitutes::new(&crate_path), TypeSubstitutes::new(&crate_path),
DerivesRegistry::new(&crate_path), DerivesRegistry::new(&crate_path),
crate_path, crate_path,
true,
); );
let types = type_gen.generate_types_mod(); let types = type_gen.generate_types_mod();
let tests_mod = get_mod(&types, MOD_PATH).unwrap(); let tests_mod = get_mod(&types, MOD_PATH).unwrap();
@@ -225,6 +228,7 @@ fn derive_compact_as_for_uint_wrapper_structs() {
TypeSubstitutes::new(&crate_path), TypeSubstitutes::new(&crate_path),
DerivesRegistry::new(&crate_path), DerivesRegistry::new(&crate_path),
crate_path, crate_path,
true,
); );
let types = type_gen.generate_types_mod(); let types = type_gen.generate_types_mod();
let tests_mod = get_mod(&types, MOD_PATH).unwrap(); let tests_mod = get_mod(&types, MOD_PATH).unwrap();
@@ -291,6 +295,7 @@ fn generate_enum() {
TypeSubstitutes::new(&crate_path), TypeSubstitutes::new(&crate_path),
DerivesRegistry::new(&crate_path), DerivesRegistry::new(&crate_path),
crate_path, crate_path,
true,
); );
let types = type_gen.generate_types_mod(); let types = type_gen.generate_types_mod();
let tests_mod = get_mod(&types, MOD_PATH).unwrap(); let tests_mod = get_mod(&types, MOD_PATH).unwrap();
@@ -351,6 +356,7 @@ fn compact_fields() {
TypeSubstitutes::new(&crate_path), TypeSubstitutes::new(&crate_path),
DerivesRegistry::new(&crate_path), DerivesRegistry::new(&crate_path),
crate_path, crate_path,
true,
); );
let types = type_gen.generate_types_mod(); let types = type_gen.generate_types_mod();
let tests_mod = get_mod(&types, MOD_PATH).unwrap(); let tests_mod = get_mod(&types, MOD_PATH).unwrap();
@@ -409,6 +415,7 @@ fn compact_generic_parameter() {
TypeSubstitutes::new(&crate_path), TypeSubstitutes::new(&crate_path),
DerivesRegistry::new(&crate_path), DerivesRegistry::new(&crate_path),
crate_path, crate_path,
true,
); );
let types = type_gen.generate_types_mod(); let types = type_gen.generate_types_mod();
let tests_mod = get_mod(&types, MOD_PATH).unwrap(); let tests_mod = get_mod(&types, MOD_PATH).unwrap();
@@ -452,6 +459,7 @@ fn generate_array_field() {
TypeSubstitutes::new(&crate_path), TypeSubstitutes::new(&crate_path),
DerivesRegistry::new(&crate_path), DerivesRegistry::new(&crate_path),
crate_path, crate_path,
true,
); );
let types = type_gen.generate_types_mod(); let types = type_gen.generate_types_mod();
let tests_mod = get_mod(&types, MOD_PATH).unwrap(); let tests_mod = get_mod(&types, MOD_PATH).unwrap();
@@ -491,6 +499,7 @@ fn option_fields() {
TypeSubstitutes::new(&crate_path), TypeSubstitutes::new(&crate_path),
DerivesRegistry::new(&crate_path), DerivesRegistry::new(&crate_path),
crate_path, crate_path,
true,
); );
let types = type_gen.generate_types_mod(); let types = type_gen.generate_types_mod();
let tests_mod = get_mod(&types, MOD_PATH).unwrap(); let tests_mod = get_mod(&types, MOD_PATH).unwrap();
@@ -533,6 +542,7 @@ fn box_fields_struct() {
TypeSubstitutes::new(&crate_path), TypeSubstitutes::new(&crate_path),
DerivesRegistry::new(&crate_path), DerivesRegistry::new(&crate_path),
crate_path, crate_path,
true,
); );
let types = type_gen.generate_types_mod(); let types = type_gen.generate_types_mod();
let tests_mod = get_mod(&types, MOD_PATH).unwrap(); let tests_mod = get_mod(&types, MOD_PATH).unwrap();
@@ -575,6 +585,7 @@ fn box_fields_enum() {
TypeSubstitutes::new(&crate_path), TypeSubstitutes::new(&crate_path),
DerivesRegistry::new(&crate_path), DerivesRegistry::new(&crate_path),
crate_path, crate_path,
true,
); );
let types = type_gen.generate_types_mod(); let types = type_gen.generate_types_mod();
let tests_mod = get_mod(&types, MOD_PATH).unwrap(); let tests_mod = get_mod(&types, MOD_PATH).unwrap();
@@ -617,6 +628,7 @@ fn range_fields() {
TypeSubstitutes::new(&crate_path), TypeSubstitutes::new(&crate_path),
DerivesRegistry::new(&crate_path), DerivesRegistry::new(&crate_path),
crate_path, crate_path,
true,
); );
let types = type_gen.generate_types_mod(); let types = type_gen.generate_types_mod();
let tests_mod = get_mod(&types, MOD_PATH).unwrap(); let tests_mod = get_mod(&types, MOD_PATH).unwrap();
@@ -663,6 +675,7 @@ fn generics() {
TypeSubstitutes::new(&crate_path), TypeSubstitutes::new(&crate_path),
DerivesRegistry::new(&crate_path), DerivesRegistry::new(&crate_path),
crate_path, crate_path,
true,
); );
let types = type_gen.generate_types_mod(); let types = type_gen.generate_types_mod();
let tests_mod = get_mod(&types, MOD_PATH).unwrap(); let tests_mod = get_mod(&types, MOD_PATH).unwrap();
@@ -713,6 +726,7 @@ fn generics_nested() {
TypeSubstitutes::new(&crate_path), TypeSubstitutes::new(&crate_path),
DerivesRegistry::new(&crate_path), DerivesRegistry::new(&crate_path),
crate_path, crate_path,
true,
); );
let types = type_gen.generate_types_mod(); let types = type_gen.generate_types_mod();
let tests_mod = get_mod(&types, MOD_PATH).unwrap(); let tests_mod = get_mod(&types, MOD_PATH).unwrap();
@@ -766,6 +780,7 @@ fn generate_bitvec() {
TypeSubstitutes::new(&crate_path), TypeSubstitutes::new(&crate_path),
DerivesRegistry::new(&crate_path), DerivesRegistry::new(&crate_path),
crate_path, crate_path,
true,
); );
let types = type_gen.generate_types_mod(); let types = type_gen.generate_types_mod();
let tests_mod = get_mod(&types, MOD_PATH).unwrap(); let tests_mod = get_mod(&types, MOD_PATH).unwrap();
@@ -821,6 +836,7 @@ fn generics_with_alias_adds_phantom_data_marker() {
TypeSubstitutes::new(&crate_path), TypeSubstitutes::new(&crate_path),
DerivesRegistry::new(&crate_path), DerivesRegistry::new(&crate_path),
crate_path, crate_path,
true,
); );
let types = type_gen.generate_types_mod(); let types = type_gen.generate_types_mod();
let tests_mod = get_mod(&types, MOD_PATH).unwrap(); let tests_mod = get_mod(&types, MOD_PATH).unwrap();
@@ -883,6 +899,7 @@ fn modules() {
TypeSubstitutes::new(&crate_path), TypeSubstitutes::new(&crate_path),
DerivesRegistry::new(&crate_path), DerivesRegistry::new(&crate_path),
crate_path, crate_path,
true,
); );
let types = type_gen.generate_types_mod(); let types = type_gen.generate_types_mod();
let tests_mod = get_mod(&types, MOD_PATH).unwrap(); let tests_mod = get_mod(&types, MOD_PATH).unwrap();
@@ -942,6 +959,7 @@ fn dont_force_struct_names_camel_case() {
TypeSubstitutes::new(&crate_path), TypeSubstitutes::new(&crate_path),
DerivesRegistry::new(&crate_path), DerivesRegistry::new(&crate_path),
crate_path, crate_path,
true,
); );
let types = type_gen.generate_types_mod(); let types = type_gen.generate_types_mod();
let tests_mod = get_mod(&types, MOD_PATH).unwrap(); let tests_mod = get_mod(&types, MOD_PATH).unwrap();
@@ -985,6 +1003,7 @@ fn apply_user_defined_derives_for_all_types() {
TypeSubstitutes::new(&crate_path), TypeSubstitutes::new(&crate_path),
derives, derives,
crate_path, crate_path,
true,
); );
let types = type_gen.generate_types_mod(); let types = type_gen.generate_types_mod();
let tests_mod = get_mod(&types, MOD_PATH).unwrap(); let tests_mod = get_mod(&types, MOD_PATH).unwrap();
@@ -1052,6 +1071,7 @@ fn apply_user_defined_derives_for_specific_types() {
TypeSubstitutes::new(&crate_path), TypeSubstitutes::new(&crate_path),
derives, derives,
crate_path, crate_path,
true,
); );
let types = type_gen.generate_types_mod(); let types = type_gen.generate_types_mod();
let tests_mod = get_mod(&types, MOD_PATH).unwrap(); let tests_mod = get_mod(&types, MOD_PATH).unwrap();
+9 -3
View File
@@ -45,6 +45,7 @@ impl TypeDefGen {
ty: &Type<PortableForm>, ty: &Type<PortableForm>,
type_gen: &TypeGenerator, type_gen: &TypeGenerator,
crate_path: &CratePath, crate_path: &CratePath,
should_gen_docs: bool,
) -> Self { ) -> Self {
let derives = type_gen.type_derives(ty); let derives = type_gen.type_derives(ty);
@@ -79,6 +80,7 @@ impl TypeDefGen {
type_gen, type_gen,
); );
type_params.update_unused(fields.field_types()); type_params.update_unused(fields.field_types());
let docs = should_gen_docs.then_some(ty.docs()).unwrap_or_default();
let composite_def = CompositeDef::struct_def( let composite_def = CompositeDef::struct_def(
ty, ty,
&type_name, &type_name,
@@ -86,7 +88,7 @@ impl TypeDefGen {
fields, fields,
Some(parse_quote!(pub)), Some(parse_quote!(pub)),
type_gen, type_gen,
ty.docs(), docs,
crate_path, crate_path,
); );
TypeDefGenKind::Struct(composite_def) TypeDefGenKind::Struct(composite_def)
@@ -104,8 +106,10 @@ impl TypeDefGen {
type_gen, type_gen,
); );
type_params.update_unused(fields.field_types()); type_params.update_unused(fields.field_types());
let docs =
should_gen_docs.then_some(v.docs()).unwrap_or_default();
let variant_def = let variant_def =
CompositeDef::enum_variant_def(v.name(), fields, v.docs()); CompositeDef::enum_variant_def(v.name(), fields, docs);
(v.index(), variant_def) (v.index(), variant_def)
}) })
.collect(); .collect();
@@ -116,7 +120,9 @@ impl TypeDefGen {
}; };
let docs = ty.docs(); let docs = ty.docs();
let ty_docs = quote! { #( #[doc = #docs ] )* }; let ty_docs = should_gen_docs
.then_some(quote! { #( #[doc = #docs ] )* })
.unwrap_or_default();
Self { Self {
type_params, type_params,
+18
View File
@@ -79,9 +79,22 @@
//! //!
//! ```ignore //! ```ignore
//! #[subxt::subxt(crate = "crate::path::to::subxt")] //! #[subxt::subxt(crate = "crate::path::to::subxt")]
//! pub mod polkadot {}
//! ``` //! ```
//! //!
//! By default the path `::subxt` is used. //! By default the path `::subxt` is used.
//!
//! ### Expose documentation
//!
//! In order to expose the documentation from the runtime metadata on the generated
//! code, users must specify the `generate_docs` flag:
//!
//! ```ignore
//! #[subxt::subxt(generate_docs)]
//! pub mod polkadot {}
//! ```
//!
//! By default the documentation is not generated.
#![deny(unused_crate_dependencies)] #![deny(unused_crate_dependencies)]
@@ -121,6 +134,8 @@ struct RuntimeMetadataArgs {
substitute_type: Vec<SubstituteType>, substitute_type: Vec<SubstituteType>,
#[darling(default, rename = "crate")] #[darling(default, rename = "crate")]
crate_path: Option<String>, crate_path: Option<String>,
#[darling(default)]
generate_docs: darling::util::Flag,
} }
#[derive(Debug, FromMeta)] #[derive(Debug, FromMeta)]
@@ -177,6 +192,7 @@ pub fn subxt(args: TokenStream, input: TokenStream) -> TokenStream {
}, },
)); ));
let should_gen_docs = args.generate_docs.is_present();
match (args.runtime_metadata_path, args.runtime_metadata_url) { match (args.runtime_metadata_path, args.runtime_metadata_url) {
(Some(rest_of_path), None) => { (Some(rest_of_path), None) => {
let root = std::env::var("CARGO_MANIFEST_DIR").unwrap_or_else(|_| ".".into()); let root = std::env::var("CARGO_MANIFEST_DIR").unwrap_or_else(|_| ".".into());
@@ -188,6 +204,7 @@ pub fn subxt(args: TokenStream, input: TokenStream) -> TokenStream {
derives_registry, derives_registry,
type_substitutes, type_substitutes,
crate_path, crate_path,
should_gen_docs,
) )
.into() .into()
} }
@@ -201,6 +218,7 @@ pub fn subxt(args: TokenStream, input: TokenStream) -> TokenStream {
derives_registry, derives_registry,
type_substitutes, type_substitutes,
crate_path, crate_path,
should_gen_docs,
) )
.into() .into()
} }
@@ -47,7 +47,7 @@ fn metadata_docs() -> Vec<String> {
docs docs
} }
fn generate_runtime_interface(crate_path: CratePath) -> String { fn generate_runtime_interface(crate_path: CratePath, should_gen_docs: bool) -> String {
// Load the runtime metadata downloaded from a node via `test-runtime`. // Load the runtime metadata downloaded from a node via `test-runtime`.
let metadata = load_test_metadata(); let metadata = load_test_metadata();
@@ -59,14 +59,20 @@ fn generate_runtime_interface(crate_path: CratePath) -> String {
let derives = DerivesRegistry::new(&crate_path); let derives = DerivesRegistry::new(&crate_path);
let type_substitutes = TypeSubstitutes::new(&crate_path); let type_substitutes = TypeSubstitutes::new(&crate_path);
generator generator
.generate_runtime(item_mod, derives, type_substitutes, crate_path) .generate_runtime(
item_mod,
derives,
type_substitutes,
crate_path,
should_gen_docs,
)
.to_string() .to_string()
} }
fn interface_docs() -> Vec<String> { fn interface_docs(should_gen_docs: bool) -> Vec<String> {
// Generate the runtime interface from the node's metadata. // Generate the runtime interface from the node's metadata.
// Note: the API is generated on a single line. // Note: the API is generated on a single line.
let runtime_api = generate_runtime_interface(CratePath::default()); let runtime_api = generate_runtime_interface(CratePath::default(), should_gen_docs);
// Documentation lines have the following format: // Documentation lines have the following format:
// # [ doc = "Upward message is invalid XCM."] // # [ doc = "Upward message is invalid XCM."]
@@ -101,7 +107,7 @@ fn check_documentation() {
// Inspect metadata recursively and obtain all associated documentation. // Inspect metadata recursively and obtain all associated documentation.
let raw_docs = metadata_docs(); let raw_docs = metadata_docs();
// Obtain documentation from the generated API. // Obtain documentation from the generated API.
let runtime_docs = interface_docs(); let runtime_docs = interface_docs(true);
for raw in raw_docs.iter() { for raw in raw_docs.iter() {
assert!( assert!(
@@ -111,6 +117,21 @@ fn check_documentation() {
} }
} }
#[test]
fn check_no_documentation() {
// Inspect metadata recursively and obtain all associated documentation.
let raw_docs = metadata_docs();
// Obtain documentation from the generated API.
let runtime_docs = interface_docs(false);
for raw in raw_docs.iter() {
assert!(
!runtime_docs.contains(raw),
"Documentation should not be present in runtime API: {raw}"
);
}
}
#[test] #[test]
fn check_root_attrs_preserved() { fn check_root_attrs_preserved() {
let metadata = load_test_metadata(); let metadata = load_test_metadata();
@@ -127,7 +148,13 @@ fn check_root_attrs_preserved() {
let derives = DerivesRegistry::new(&CratePath::default()); let derives = DerivesRegistry::new(&CratePath::default());
let type_substitutes = TypeSubstitutes::new(&CratePath::default()); let type_substitutes = TypeSubstitutes::new(&CratePath::default());
let generated_code = generator let generated_code = generator
.generate_runtime(item_mod, derives, type_substitutes, CratePath::default()) .generate_runtime(
item_mod,
derives,
type_substitutes,
CratePath::default(),
true,
)
.to_string(); .to_string();
let doc_str_loc = generated_code let doc_str_loc = generated_code