1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
use crate::{Api, CrateResult};
use heck::*;
use std::{borrow::Cow, fs::File, io::Write as _, path::Path};

pub(crate) fn generate_rust_crate(out_dir: &Path, api: &Api) -> CrateResult {
    let librs = out_dir.join("methods.rs");
    let mut librs = std::io::BufWriter::new(File::create(librs)?);
    let mut method_names: Vec<&str> = api.methods.keys().map(String::as_str).collect();
    method_names.sort_unstable();

    librs.write_all(b"pub mod json_rpc {\n")?;
    librs.write_all(b"//! The JSON-RPC API definition.\n//!\n//! ## Methods\n//!\n")?;

    for method_name in &method_names {
        let method = &api.methods[*method_name];

        writeln!(librs, "//!\n//! ### 🔌 {method_name}\n")?;
        writeln!(
            librs,
            "//! ➡️  [{request_name}](./types/struct.{request_name}.html)\n//!",
            request_name = method.request_shape.to_camel_case()
        )?;
        writeln!(
            librs,
            "//! ↩️  [{response_name}](./types/struct.{response_name}.html)\n//!",
            response_name = method.response_shape.to_camel_case()
        )?;

        if let Some(description) = &method.description {
            for line in description.lines() {
                writeln!(librs, "//! {line}")?;
            }
        }
    }

    librs.write_all(
        b"/// String constants for method names.\npub mod method_names {\n/// Exhaustive list of the names of all JSON-RPC methods.\npub const METHOD_NAMES: &[&str] = &[",
    )?;

    for method_name in &method_names {
        writeln!(librs, "    \"{method_name}\",")?;
    }

    writeln!(librs, "];")?;

    for method_name in &method_names {
        writeln!(
            librs,
            "/// {method_name}\npub const {}: &str = \"{method_name}\";",
            method_name.to_snake_case().to_shouty_snake_case()
        )?;
    }

    librs.write_all(b"}\n")?; // close method_names

    generate_types_rs(&mut librs, api)?;

    librs.write_all(b"}\n")?;

    Ok(())
}

fn generate_types_rs(mut file: impl std::io::Write, api: &Api) -> CrateResult {
    file.write_all(
        b"/// API type definitions used by the methods.\n#[allow(missing_docs)] pub mod types {\nuse serde::{Serialize, Deserialize};\n\n",
    )?;

    for (type_name, record_type) in &api.record_shapes {
        if let Some(description) = &record_type.description {
            for line in description.lines() {
                writeln!(file, "/// {line}")?;
            }
        }

        if let Some(example) = &record_type.example {
            file.write_all(b"/// ### Example\n///\n/// ```ignore")?;
            for line in example.lines() {
                file.write_all(b"\n/// ")?;
                file.write_all(line.as_bytes())?;
            }
            file.write_all(b"\n/// ```\n")?;
        }

        writeln!(
            file,
            "#[derive(Serialize, Deserialize, Debug)]\npub struct {} {{",
            rustify_type_name(type_name)
        )?;
        for (field_name, field) in &record_type.fields {
            if let Some(description) = &field.description {
                for line in description.lines() {
                    writeln!(file, "    /// {line}")?;
                }
            }
            let type_name = rustify_type_name(&field.shape);
            let type_name: Cow<'static, str> = match (field.is_list, field.is_nullable) {
                (true, true) => format!("Option<Vec<{type_name}>>").into(),
                (false, true) => format!("Option<{type_name}>").into(),
                (true, false) => format!("Vec<{type_name}>").into(),
                (false, false) => type_name,
            };
            let field_name_sc = field_name.to_snake_case();
            if &field_name_sc != field_name {
                writeln!(file, "    ///\n    /// JSON name: {field_name}")?;
                writeln!(file, "    #[serde(rename = \"{field_name}\")]")?;
            }

            writeln!(file, "    pub {field_name_sc}: {type_name},")?;
        }
        writeln!(file, "}}\n")?;
    }

    for (type_name, variants) in &api.enum_shapes {
        if let Some(description) = &variants.description {
            for line in description.lines() {
                writeln!(file, "/// {line}")?;
            }
        }

        writeln!(
            file,
            "#[derive(Serialize, Deserialize, Debug)]\n#[serde(tag = \"tag\")]\npub enum {} {{",
            rustify_type_name(type_name)
        )?;

        for (variant_name, variant) in &variants.variants {
            if let Some(description) = &variant.description {
                for line in description.lines() {
                    writeln!(file, "/// {line}")?;
                }
            }

            let cc_variant_name = variant_name.to_camel_case();

            if cc_variant_name.as_str() != variant_name {
                writeln!(file, "///\n/// JSON name: {variant_name}")?;
                writeln!(file, "#[serde(rename = \"{variant_name}\")]")?;
            }

            if let Some(shape) = &variant.shape {
                writeln!(file, "    {cc_variant_name}({}),", rustify_type_name(shape))?;
            } else {
                writeln!(file, "    {cc_variant_name},")?;
            }
        }

        file.write_all(b"}\n")?;
    }

    file.write_all(b"}\n")?;

    Ok(())
}

fn rustify_type_name(name: &str) -> Cow<'static, str> {
    match name {
        "bool" => Cow::Borrowed("bool"),
        "u32" => Cow::Borrowed("u32"),
        "isize" => Cow::Borrowed("isize"),
        "string" => Cow::Borrowed("String"),
        "serde_json::Value" => Cow::Borrowed("serde_json::Value"),
        other => other.to_camel_case().into(),
    }
}