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
// Copyright (C) 2019-2023 Aleo Systems Inc.
// This file is part of the Aleo SDK library.
// The Aleo SDK library is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// The Aleo SDK library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with the Aleo SDK library. If not, see <https://www.gnu.org/licenses/>.
use crate::types::native::{
ExecutionNative,
IdentifierNative,
ProcessNative,
ProgramIDNative,
ProgramNative,
ProvingKeyNative,
ResponseNative,
VerifyingKeyNative,
};
use crate::{Execution, KeyPair, Program, ProvingKey, VerifyingKey};
use std::{ops::Deref, str::FromStr};
use wasm_bindgen::{prelude::wasm_bindgen, JsValue};
/// Webassembly Representation of an Aleo function execution response
///
/// This object is returned by the execution of an Aleo function off-chain. It provides methods for
/// retrieving the outputs of the function execution.
#[wasm_bindgen]
pub struct ExecutionResponse {
execution: Option<ExecutionNative>,
function_id: IdentifierNative,
response: ResponseNative,
program: ProgramNative,
proving_key: Option<ProvingKeyNative>,
verifying_key: VerifyingKeyNative,
}
#[wasm_bindgen]
impl ExecutionResponse {
pub(crate) fn new(
execution: Option<ExecutionNative>,
function_id: &str,
response: ResponseNative,
process: &ProcessNative,
program: &str,
) -> Result<Self, String> {
let program = ProgramNative::from_str(program).map_err(|e| e.to_string())?;
let verifying_key = process
.get_verifying_key(program.id(), function_id)
.map_err(|_| format!("Could not find verifying key for {:?}/{:?}", program.id(), function_id))?;
Ok(Self {
execution,
response,
function_id: IdentifierNative::from_str(function_id).map_err(|e| e.to_string())?,
program,
proving_key: None,
verifying_key,
})
}
pub(crate) fn add_proving_key(
&mut self,
process: &ProcessNative,
function_id: &str,
program_id: &ProgramIDNative,
) -> Result<(), String> {
let proving_key = process
.get_proving_key(program_id, function_id)
.map_err(|_| format!("Could not find proving key for {:?}/{:?}", program_id, function_id))?;
self.proving_key = Some(proving_key);
Ok(())
}
/// Get the outputs of the executed function
///
/// @returns {Array} Array of strings representing the outputs of the function
#[wasm_bindgen(js_name = "getOutputs")]
pub fn get_outputs(&self) -> js_sys::Array {
let array = js_sys::Array::new_with_length(0u32);
self.response.outputs().iter().enumerate().for_each(|(i, output)| {
array.set(i as u32, JsValue::from_str(&output.to_string()));
});
array
}
/// Returns the execution object if present, null if otherwise.
///
/// @returns {Execution | undefined} The execution object if present, null if otherwise
#[wasm_bindgen(js_name = "getExecution")]
pub fn get_execution(&self) -> Option<Execution> {
self.execution.clone().map(Execution::from)
}
/// Returns the program keys if present
#[wasm_bindgen(js_name = "getKeys")]
pub fn get_keys(&mut self) -> Result<KeyPair, String> {
if let Some(proving_key) = self.proving_key.take() {
Ok(KeyPair::new(ProvingKey::from(proving_key), VerifyingKey::from(self.verifying_key.clone())))
} else {
Err("No proving key found".to_string())
}
}
/// Returns the proving_key if the proving key was cached in the Execution response.
/// Note the proving key is removed from the response object after the first call to this
/// function. Subsequent calls will return null.
///
/// @returns {ProvingKey | undefined} The proving key
#[wasm_bindgen(js_name = "getProvingKey")]
pub fn get_proving_key(&mut self) -> Option<ProvingKey> {
self.proving_key.take().map(ProvingKey::from)
}
/// Returns the verifying_key associated with the program
///
/// @returns {VerifyingKey} The verifying key
#[wasm_bindgen(js_name = "getVerifyingKey")]
pub fn get_verifying_key(&self) -> VerifyingKey {
VerifyingKey::from(self.verifying_key.clone())
}
/// Returns the function identifier
#[wasm_bindgen(js_name = "getFunctionId")]
pub fn get_function_id(&self) -> String {
format!("{:?}", self.function_id)
}
/// Returns the program
#[wasm_bindgen(js_name = "getProgram")]
pub fn get_program(&self) -> Program {
Program::from(self.program.clone())
}
}
impl Deref for ExecutionResponse {
type Target = ResponseNative;
fn deref(&self) -> &Self::Target {
&self.response
}
}