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
// Copyright (C) 2019-2023 Aleo Systems Inc.
// This file is part of the snarkVM library.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at:
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
use super::*;
impl<N: Network> FromBytes for Program<N> {
fn read_le<R: Read>(mut reader: R) -> IoResult<Self> {
// Read the version.
let version = u8::read_le(&mut reader)?;
// Ensure the version is valid.
if version != 0 {
return Err(error("Invalid program version"));
}
// Read the program ID.
let id = ProgramID::read_le(&mut reader)?;
// Initialize the program.
let mut program = Program::new(id).map_err(|e| error(e.to_string()))?;
// Read the number of program imports.
let imports_len = u8::read_le(&mut reader)?;
// Read the program imports.
for _ in 0..imports_len {
program.add_import(Import::read_le(&mut reader)?).map_err(|e| error(e.to_string()))?;
}
// Read the number of components.
let components_len = u16::read_le(&mut reader)?;
for _ in 0..components_len {
// Read the variant.
let variant = u8::read_le(&mut reader)?;
// Match the variant.
match variant {
// Read the mapping.
0 => program.add_mapping(Mapping::read_le(&mut reader)?).map_err(|e| error(e.to_string()))?,
// Read the struct.
1 => program.add_struct(Struct::read_le(&mut reader)?).map_err(|e| error(e.to_string()))?,
// Read the record.
2 => program.add_record(RecordType::read_le(&mut reader)?).map_err(|e| error(e.to_string()))?,
// Read the closure.
3 => program.add_closure(Closure::read_le(&mut reader)?).map_err(|e| error(e.to_string()))?,
// Read the function.
4 => program.add_function(Function::read_le(&mut reader)?).map_err(|e| error(e.to_string()))?,
// Invalid variant.
_ => return Err(error(format!("Failed to parse program. Invalid component variant '{variant}'"))),
}
}
Ok(program)
}
}
impl<N: Network> ToBytes for Program<N> {
fn write_le<W: Write>(&self, mut writer: W) -> IoResult<()> {
// Write the version.
0u8.write_le(&mut writer)?;
// Write the program ID.
self.id.write_le(&mut writer)?;
// Write the number of program imports.
(self.imports.len() as u8).write_le(&mut writer)?;
// Write the program imports.
for import in self.imports.values() {
import.write_le(&mut writer)?;
}
// Write the number of components.
(self.identifiers.len() as u16).write_le(&mut writer)?;
// Write the components.
for (identifier, definition) in self.identifiers.iter() {
match definition {
ProgramDefinition::Mapping => match self.mappings.get(identifier) {
Some(mapping) => {
// Write the variant.
0u8.write_le(&mut writer)?;
// Write the mapping.
mapping.write_le(&mut writer)?;
}
None => return Err(error(format!("Mapping '{identifier}' is not defined"))),
},
ProgramDefinition::Struct => match self.structs.get(identifier) {
Some(struct_) => {
// Write the variant.
1u8.write_le(&mut writer)?;
// Write the struct.
struct_.write_le(&mut writer)?;
}
None => return Err(error(format!("Struct '{identifier}' is not defined."))),
},
ProgramDefinition::Record => match self.records.get(identifier) {
Some(record) => {
// Write the variant.
2u8.write_le(&mut writer)?;
// Write the record.
record.write_le(&mut writer)?;
}
None => return Err(error(format!("Record '{identifier}' is not defined."))),
},
ProgramDefinition::Closure => match self.closures.get(identifier) {
Some(closure) => {
// Write the variant.
3u8.write_le(&mut writer)?;
// Write the closure.
closure.write_le(&mut writer)?;
}
None => return Err(error(format!("Closure '{identifier}' is not defined."))),
},
ProgramDefinition::Function => match self.functions.get(identifier) {
Some(function) => {
// Write the variant.
4u8.write_le(&mut writer)?;
// Write the function.
function.write_le(&mut writer)?;
}
None => return Err(error(format!("Function '{identifier}' is not defined."))),
},
}
}
Ok(())
}
}
#[cfg(test)]
mod tests {
use super::*;
use console::network::Testnet3;
type CurrentNetwork = Testnet3;
#[test]
fn test_bytes() -> Result<()> {
let program = r"
program token.aleo;
record token:
owner as address.private;
token_amount as u64.private;
function compute:
input r0 as token.record;
add r0.token_amount r0.token_amount into r1;
output r1 as u64.private;";
// Initialize a new program.
let (string, expected) = Program::<CurrentNetwork>::parse(program).unwrap();
assert!(string.is_empty(), "Parser did not consume all of the string: '{string}'");
let expected_bytes = expected.to_bytes_le()?;
let candidate = Program::<CurrentNetwork>::from_bytes_le(&expected_bytes)?;
assert_eq!(expected, candidate);
assert_eq!(expected_bytes, candidate.to_bytes_le()?);
Ok(())
}
}