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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
//! CLI tool to generate `ClampedZip` implementations of different arities.

use itertools::{izip, Itertools};

struct Params {
    num_required: usize,
    num_optional: usize,
}

impl Params {
    fn to_num_required(&self) -> String {
        self.num_required.to_string()
    }

    fn to_num_optional(&self) -> String {
        self.num_optional.to_string()
    }

    /// `1x3`, `2x2`…
    fn to_suffix(&self) -> String {
        format!("{}x{}", self.to_num_required(), self.to_num_optional())
    }

    /// `r0, r1, r2…`.
    fn to_required_names(&self) -> Vec<String> {
        (0..self.num_required)
            .map(|n| format!("r{n}"))
            .collect_vec()
    }

    /// `R0, R1, R2…`.
    fn to_required_types(&self) -> Vec<String> {
        self.to_required_names()
            .into_iter()
            .map(|s| s.to_uppercase())
            .collect()
    }

    /// `r0: R0, r1: R1, r2: R2…`.
    fn to_required_params(&self) -> Vec<String> {
        izip!(self.to_required_names(), self.to_required_types())
            .map(|(n, t)| format!("{n}: {t}"))
            .collect()
    }

    /// `R0: (Into)Iterator, R1: (Into)Iterator, R2: (Into)Iterator…`
    fn to_required_clauses(&self, into: bool) -> Vec<String> {
        let trait_name = if into { "IntoIterator" } else { "Iterator" };
        self.to_required_types()
            .into_iter()
            .map(|t| format!("{t}: {trait_name}"))
            .collect()
    }

    /// `o0, o1, o2…`.
    fn to_optional_names(&self) -> Vec<String> {
        (0..self.num_optional)
            .map(|n| format!("o{n}"))
            .collect_vec()
    }

    /// `O0, O1, O2…`.
    fn to_optional_types(&self) -> Vec<String> {
        self.to_optional_names()
            .into_iter()
            .map(|s| s.to_uppercase())
            .collect()
    }

    /// `o0: O0, o1: O1, o2: O2…`.
    fn to_optional_params(&self) -> Vec<String> {
        izip!(self.to_optional_names(), self.to_optional_types())
            .map(|(n, t)| format!("{n}: {t}"))
            .collect()
    }

    /// `O0: IntoIterator, O0::Item: Clone, O1: IntoIterator, O1::Item: Clone…`
    fn to_optional_clauses(&self, into: bool) -> Vec<String> {
        let trait_name = if into { "IntoIterator" } else { "Iterator" };
        self.to_optional_types()
            .into_iter()
            .map(|t| format!("{t}: {trait_name}, {t}::Item: Clone"))
            .collect()
    }

    /// `o0_default_fn, o1_default_fn, o2_default_fn…`.
    fn to_optional_fn_names(&self) -> Vec<String> {
        (0..self.num_optional)
            .map(|n| format!("o{n}_default_fn"))
            .collect_vec()
    }

    /// `D0, D1, D2…`.
    fn to_optional_fn_types(&self) -> Vec<String> {
        (0..self.num_optional)
            .map(|n| format!("D{n}"))
            .collect_vec()
    }

    /// `o0_default_fn: D0, o1_default_fn: D1…`.
    fn to_optional_fn_params(&self) -> Vec<String> {
        izip!(self.to_optional_fn_names(), self.to_optional_fn_types())
            .map(|(n, t)| format!("{n}: {t}"))
            .collect()
    }

    /// `D0: Fn() -> O0::Item, D1: Fn() -> O1::Item…`
    fn to_optional_fn_clauses(&self) -> Vec<String> {
        izip!(self.to_optional_fn_types(), self.to_optional_types())
            .map(|(tl, tr)| format!("{tl}: Fn() -> {tr}::Item"))
            .collect()
    }
}

fn backticked(strs: impl IntoIterator<Item = String>) -> Vec<String> {
    strs.into_iter().map(|s| format!("`{s}`")).collect()
}

fn generate_helper_func(params: &Params) -> String {
    let suffix = params.to_suffix();
    let required_names = backticked(params.to_required_names()).join(", ");
    let optional_names = backticked(params.to_optional_names()).join(", ");
    let optional_fn_names = backticked(params.to_optional_fn_names()).join(", ");
    let required_types = params.to_required_types().join(", ");
    let optional_types = params.to_optional_types().join(", ");
    let optional_fn_types = params.to_optional_fn_types().join(", ");
    let required_clauses = params.to_required_clauses(true /* into */).join(", ");
    let optional_clauses = params.to_optional_clauses(true /* into */).join(", ");
    let optional_fn_clauses = params.to_optional_fn_clauses().join(", ");
    let required_params = params.to_required_params().join(", ");
    let optional_params = izip!(params.to_optional_params(), params.to_optional_fn_params())
        .map(|(o, d)| format!("{o}, {d}"))
        .collect_vec()
        .join(",\n");

    let ret_clause = params
        .to_required_types()
        .into_iter()
        .map(|r| format!("{r}::IntoIter"))
        .chain(
            params
                .to_optional_types()
                .into_iter()
                .map(|o| format!("{o}::IntoIter")),
        )
        .chain(params.to_optional_fn_types())
        .collect_vec()
        .join(", ");

    let ret = params
        .to_required_names()
        .into_iter()
        .map(|r| format!("{r}: {r}.into_iter()"))
        .chain(
            params
                .to_optional_names()
                .into_iter()
                .map(|o| format!("{o}: {o}.into_iter()")),
        )
        .chain(params.to_optional_fn_names())
        .chain(
            params
                .to_optional_names()
                .into_iter()
                .map(|o| format!("{o}_latest_value: None")),
        )
        .collect_vec()
        .join(",\n");

    format!(
        r#"
        /// Returns a new [`ClampedZip{suffix}`] iterator.
        ///
        /// The number of elements in a clamped zip iterator corresponds to the number of elements in the
        /// shortest of its required iterators ({required_names}).
        ///
        /// Optional iterators ({optional_names}) will repeat their latest values if they happen to be too short
        /// to be zipped with the shortest of the required iterators.
        ///
        /// If an optional iterator is not only too short but actually empty, its associated default function
        /// ({optional_fn_names}) will be executed and the resulting value repeated as necessary.
        pub fn clamped_zip_{suffix}<{required_types}, {optional_types}, {optional_fn_types}>(
            {required_params},
            {optional_params},
        ) -> ClampedZip{suffix}<{ret_clause}>
        where
            {required_clauses},
            {optional_clauses},
            {optional_fn_clauses},
        {{
            ClampedZip{suffix} {{
                {ret}
            }}
        }}
    "#
    )
}

fn generate_struct(params: &Params) -> String {
    let suffix = params.to_suffix();
    let required_types = params.to_required_types().join(", ");
    let optional_types = params.to_optional_types().join(", ");
    let optional_fn_types = params.to_optional_fn_types().join(", ");
    let required_clauses = params.to_required_clauses(false /* into */).join(", ");
    let optional_clauses = params.to_optional_clauses(false /* into */).join(", ");
    let optional_fn_clauses = params.to_optional_fn_clauses().join(", ");
    let required_params = params.to_required_params().join(", ");
    let optional_params = params.to_optional_params().join(", ");
    let optional_fn_params = params.to_optional_fn_params().join(", ");

    let latest_values = izip!(params.to_optional_names(), params.to_optional_types())
        .map(|(n, t)| format!("{n}_latest_value: Option<{t}::Item>"))
        .collect_vec()
        .join(",\n");

    format!(
        r#"
        /// Implements a clamped zip iterator combinator with 2 required iterators and 2 optional
        /// iterators.
        ///
        /// See [`clamped_zip_{suffix}`] for more information.
        pub struct ClampedZip{suffix}<{required_types}, {optional_types}, {optional_fn_types}>
        where
            {required_clauses},
            {optional_clauses},
            {optional_fn_clauses},
        {{
            {required_params},
            {optional_params},
            {optional_fn_params},

            {latest_values}
        }}
    "#
    )
}

fn generate_impl(params: &Params) -> String {
    let suffix = params.to_suffix();
    let required_types = params.to_required_types().join(", ");
    let optional_types = params.to_optional_types().join(", ");
    let optional_fn_types = params.to_optional_fn_types().join(", ");
    let required_clauses = params.to_required_clauses(false /* into */).join(", ");
    let optional_clauses = params.to_optional_clauses(false /* into */).join(", ");
    let optional_fn_clauses = params.to_optional_fn_clauses().join(", ");

    let items = params
        .to_required_types()
        .into_iter()
        .map(|r| format!("{r}::Item"))
        .chain(
            params
                .to_optional_types()
                .into_iter()
                .map(|o| format!("{o}::Item")),
        )
        .collect_vec()
        .join(", ");

    let next =
        params
            .to_required_names()
            .into_iter()
            .map(|r| format!("let {r}_next = self.{r}.next()?;"))
            .chain(params.to_optional_names().into_iter().map(|o| {
                format!("let {o}_next = self.{o}.next().or(self.{o}_latest_value.take());")
            }))
            .collect_vec()
            .join("\n");

    let update_latest = params
        .to_optional_names()
        .into_iter()
        .map(|o| format!("self.{o}_latest_value.clone_from(&{o}_next);"))
        .collect_vec()
        .join("\n");

    let ret = params
        .to_required_names()
        .into_iter()
        .map(|r| format!("{r}_next"))
        .chain(
            params
                .to_optional_names()
                .into_iter()
                .map(|o| format!("{o}_next.unwrap_or_else(|| (self.{o}_default_fn)())")),
        )
        .collect_vec()
        .join(",\n");

    format!(
        r#"
        impl<{required_types}, {optional_types}, {optional_fn_types}> Iterator for ClampedZip{suffix}<{required_types}, {optional_types}, {optional_fn_types}>
        where
            {required_clauses},
            {optional_clauses},
            {optional_fn_clauses},
        {{
            type Item = ({items});

            #[inline]
            fn next(&mut self) -> Option<Self::Item> {{
                {next}

                {update_latest}

                Some((
                    {ret}
                ))
            }}
        }}
    "#
    )
}

fn main() {
    let num_required = 1..3;
    let num_optional = 1..10;

    let output = num_required
        .flat_map(|num_required| {
            num_optional
                .clone()
                .map(move |num_optional| (num_required, num_optional))
        })
        .flat_map(|(num_required, num_optional)| {
            let params = Params {
                num_required,
                num_optional,
            };

            [
                generate_helper_func(&params),
                generate_struct(&params),
                generate_impl(&params),
            ]
        })
        .collect_vec()
        .join("\n");

    println!(
        "
        // This file was generated using `cargo r -p re_query --all-features --bin clamped_zip`.
        // DO NOT EDIT.

        // ---

        #![allow(clippy::too_many_arguments)]
        #![allow(clippy::type_complexity)]

        {output}
        "
    );
}