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
//! A GateVector: this is used to represent a list of gates.

use crate::wasm_flat_vector::WasmFlatVector;
use kimchi::circuits::{
    gate::{Circuit, CircuitGate, GateType},
    wires::Wire,
};
use o1_utils::hasher::CryptoDigest;
use wasm_bindgen::prelude::*;

use paste::paste;

#[wasm_bindgen]
#[derive(Clone, Copy, Debug)]
pub struct WasmGateWires(
    pub Wire,
    pub Wire,
    pub Wire,
    pub Wire,
    pub Wire,
    pub Wire,
    pub Wire,
);

#[wasm_bindgen]
impl WasmGateWires {
    #[wasm_bindgen(constructor)]
    pub fn new(w0: Wire, w1: Wire, w2: Wire, w3: Wire, w4: Wire, w5: Wire, w6: Wire) -> Self {
        WasmGateWires(w0, w1, w2, w3, w4, w5, w6)
    }
}

macro_rules! impl_gate_vector {
    ($name: ident,
     $WasmF: ty,
     $F: ty,
     $field_name: ident) => {
        paste! {
            #[wasm_bindgen]
            pub struct [<Wasm $field_name:camel GateVector>](
                #[wasm_bindgen(skip)] pub Vec<CircuitGate<$F>>);
            pub type WasmGateVector = [<Wasm $field_name:camel GateVector>];

            #[wasm_bindgen]
            pub struct [<Wasm $field_name:camel Gate>] {
                pub typ: GateType, // type of the gate
                pub wires: WasmGateWires,  // gate wires
                #[wasm_bindgen(skip)] pub coeffs: Vec<$WasmF>,  // constraints vector
            }

            #[wasm_bindgen]
            impl [<Wasm $field_name:camel Gate>] {
                #[wasm_bindgen(constructor)]
                pub fn new(
                    typ: GateType,
                    wires: WasmGateWires,
                    coeffs: WasmFlatVector<$WasmF>) -> Self {
                    Self {
                        typ,
                        wires,
                        coeffs: coeffs.into(),
                    }
                }
            }

            impl From<CircuitGate<$F>> for [<Wasm $field_name:camel Gate>]
            {
                fn from(cg: CircuitGate<$F>) -> Self {
                    Self {
                        typ: cg.typ,
                        wires: WasmGateWires(
                            cg.wires[0],
                            cg.wires[1],
                            cg.wires[2],
                            cg.wires[3],
                            cg.wires[4],
                            cg.wires[5],
                            cg.wires[6]),
                        coeffs: cg.coeffs.into_iter().map(Into::into).collect(),
                    }
                }
            }

            impl From<&CircuitGate<$F>> for [<Wasm $field_name:camel Gate>]
            {
                fn from(cg: &CircuitGate<$F>) -> Self {
                    Self {
                        typ: cg.typ,
                        wires: WasmGateWires(
                            cg.wires[0],
                            cg.wires[1],
                            cg.wires[2],
                            cg.wires[3],
                            cg.wires[4],
                            cg.wires[5],
                            cg.wires[6]),
                        coeffs: cg.coeffs.clone().into_iter().map(Into::into).collect(),
                    }
                }
            }

            impl From<[<Wasm $field_name:camel Gate>]> for CircuitGate<$F>
            {
                fn from(ccg: [<Wasm $field_name:camel Gate>]) -> Self {
                    Self {
                        typ: ccg.typ,
                        wires: [
                            ccg.wires.0,
                            ccg.wires.1,
                            ccg.wires.2,
                            ccg.wires.3,
                            ccg.wires.4,
                            ccg.wires.5,
                            ccg.wires.6
                        ],
                        coeffs: ccg.coeffs.into_iter().map(Into::into).collect(),
                    }
                }
            }

            #[wasm_bindgen]
            pub fn [<caml_pasta_ $name:snake _plonk_gate_vector_create>]() -> WasmGateVector {
                [<Wasm $field_name:camel GateVector>](Vec::new())
            }

            #[wasm_bindgen]
            pub fn [<caml_pasta_ $name:snake _plonk_gate_vector_add>](
                v: &mut WasmGateVector,
                gate: [<Wasm $field_name:camel Gate>],
            ) {
                let gate: CircuitGate<$F> = gate.into();
                v.0.push(gate);
            }

            #[wasm_bindgen]
            pub fn [<caml_pasta_ $name:snake _plonk_gate_vector_get>](
                v: &WasmGateVector,
                i: i32,
            ) -> [<Wasm $field_name:camel Gate>] {
                (&(v.0)[i as usize]).into()
            }

            #[wasm_bindgen]
            pub fn [<caml_pasta_ $name:snake _plonk_gate_vector_len>](
                v: &WasmGateVector,
            ) -> usize {
                v.0.len()
            }

            #[wasm_bindgen]
            pub fn [<caml_pasta_ $name:snake _plonk_gate_vector_wrap>](
                v: &mut WasmGateVector,
                t: Wire,
                h: Wire,
            ) {
                (v.0)[t.row as usize].wires[t.col as usize] = h.into();
            }

            #[wasm_bindgen]
            pub fn [<caml_pasta_ $name:snake _plonk_gate_vector_digest>](
                public_input_size: usize,
                v: &WasmGateVector
            ) -> Box<[u8]> {
                Circuit::new(public_input_size, &(v.0)).digest().to_vec().into_boxed_slice()
            }

            #[wasm_bindgen]
            pub fn [<caml_pasta_ $name:snake _plonk_circuit_serialize>](
                public_input_size: usize,
                v: &WasmGateVector
            ) -> String {
                let circuit = Circuit::new(public_input_size, &v.0);
                serde_json::to_string(&circuit).expect("couldn't serialize constraints")
            }
        }
    };
}

pub mod fp {
    use super::*;
    use crate::arkworks::WasmPastaFp as WasmF;
    use mina_curves::pasta::Fp as F;

    impl_gate_vector!(fp, WasmF, F, Fp);
}

//
// Fq
//

pub mod fq {
    use super::*;
    use crate::arkworks::WasmPastaFq as WasmF;
    use mina_curves::pasta::Fq as F;

    impl_gate_vector!(fq, WasmF, F, Fq);
}