catbuffer_rust/
embedded_mosaic_global_restriction_transaction_builder.rs

1/*
2 * // Copyright (c) 2016-2019, Jaguar0625, gimre, BloodyRookie, Tech Bureau, Corp.
3 * // Copyright (c) 2020-present, Jaguar0625, gimre, BloodyRookie.
4 * // All rights reserved.
5 * //
6 * // This file is part of Catapult.
7 * //
8 * // Catapult is free software: you can redistribute it and/or modify
9 * // it under the terms of the GNU Lesser General Public License as published by
10 * // the Free Software Foundation, either version 3 of the License, or
11 * // (at your option) any later version.
12 * //
13 * // Catapult is distributed in the hope that it will be useful,
14 * // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * // GNU Lesser General Public License for more details.
17 * //
18 * // You should have received a copy of the GNU Lesser General Public License
19 * // along with Catapult. If not, see <http://www.gnu.org/licenses/>.
20 */
21
22use super::embedded_transaction_builder::*;
23use super::embedded_transaction_helper::*;
24use super::entity_type_dto::*;
25use super::generator_utils::*;
26use super::key_dto::*;
27use super::mosaic_global_restriction_transaction_body_builder::*;
28use super::mosaic_restriction_type_dto::*;
29use super::network_type_dto::*;
30use super::unresolved_mosaic_id_dto::*;
31
32/// Binary layout for an embedded mosaic global restriction transaction.
33#[derive(Debug, Clone)]
34pub struct EmbeddedMosaicGlobalRestrictionTransactionBuilder {
35    /// Embedded transaction.
36    pub super_object: EmbeddedTransactionBuilder,
37    /// Mosaic global restriction transaction body.
38    pub body: MosaicGlobalRestrictionTransactionBodyBuilder,
39}
40
41impl EmbeddedMosaicGlobalRestrictionTransactionBuilder {
42    const VERSION: u8 = 1;
43    const ENTITY_TYPE: u16 = 0x4151;
44
45
46    /// Creates an instance of EmbeddedMosaicGlobalRestrictionTransactionBuilder from binary payload.
47    /// payload: Byte payload to use to serialize the object.
48    /// # Returns
49    /// A EmbeddedMosaicGlobalRestrictionTransactionBuilder.
50    pub fn from_binary(payload: &[u8]) -> Self {
51        let mut _bytes = payload.to_vec();
52        let super_object = EmbeddedTransactionBuilder::from_binary(&_bytes);
53        assert_eq!(Self::VERSION, super_object.version, "Invalid entity version ({})", super_object.version);
54        assert_eq!(Self::ENTITY_TYPE, super_object._type.get_value(), "Invalid entity type ({:?})", super_object._type);
55        let mut _bytes = _bytes[super_object.get_size()..].to_vec();
56        let mosaic_global_restriction_transaction_body = MosaicGlobalRestrictionTransactionBodyBuilder::from_binary(&_bytes); // kind:CUSTOM1
57        _bytes = _bytes[mosaic_global_restriction_transaction_body.get_size()..].to_vec();
58        // create object and call.
59        EmbeddedMosaicGlobalRestrictionTransactionBuilder { super_object, body: mosaic_global_restriction_transaction_body }  // Transaction
60        // nothing needed to copy into EmbeddedTransaction
61    }
62
63
64    pub fn get_mosaic_id(&self) -> UnresolvedMosaicIdDto {
65        self.body.mosaic_id.clone()
66    }
67    pub fn set_mosaic_id(&mut self, mosaic_id: UnresolvedMosaicIdDto) {
68        self.body.mosaic_id = mosaic_id;   // MARKER1 AttributeKind.CUSTOM
69    }
70
71
72    pub fn get_reference_mosaic_id(&self) -> UnresolvedMosaicIdDto {
73        self.body.reference_mosaic_id.clone()
74    }
75    pub fn set_reference_mosaic_id(&mut self, reference_mosaic_id: UnresolvedMosaicIdDto) {
76        self.body.reference_mosaic_id = reference_mosaic_id;   // MARKER1 AttributeKind.CUSTOM
77    }
78
79
80    pub fn get_restriction_key(&self) -> u64 {
81        self.body.restriction_key.clone()
82    }
83    pub fn set_restriction_key(&mut self, restriction_key: u64) {
84        self.body.restriction_key = restriction_key;   // MARKER1 AttributeKind.SIMPLE
85    }
86
87
88    pub fn get_previous_restriction_value(&self) -> u64 {
89        self.body.previous_restriction_value.clone()
90    }
91    pub fn set_previous_restriction_value(&mut self, previous_restriction_value: u64) {
92        self.body.previous_restriction_value = previous_restriction_value;   // MARKER1 AttributeKind.SIMPLE
93    }
94
95
96    pub fn get_new_restriction_value(&self) -> u64 {
97        self.body.new_restriction_value.clone()
98    }
99    pub fn set_new_restriction_value(&mut self, new_restriction_value: u64) {
100        self.body.new_restriction_value = new_restriction_value;   // MARKER1 AttributeKind.SIMPLE
101    }
102
103
104    pub fn get_previous_restriction_type(&self) -> MosaicRestrictionTypeDto {
105        self.body.previous_restriction_type.clone()
106    }
107    pub fn set_previous_restriction_type(&mut self, previous_restriction_type: MosaicRestrictionTypeDto) {
108        self.body.previous_restriction_type = previous_restriction_type;   // MARKER1 AttributeKind.CUSTOM
109    }
110
111
112    pub fn get_new_restriction_type(&self) -> MosaicRestrictionTypeDto {
113        self.body.new_restriction_type.clone()
114    }
115    pub fn set_new_restriction_type(&mut self, new_restriction_type: MosaicRestrictionTypeDto) {
116        self.body.new_restriction_type = new_restriction_type;   // MARKER1 AttributeKind.CUSTOM
117    }
118
119    /// Gets the size of the type.
120    ///
121    /// Returns:
122    /// A size in bytes.
123    pub fn get_size(&self) -> usize {
124        let mut size = self.super_object.get_size();
125        size += self.body.get_size();
126        size
127    }
128
129    /// Serializes self to bytes.
130    ///
131    /// # Returns
132    /// A Serialized bytes.
133    pub fn serializer(&self) -> Vec<u8> {
134        let mut buf: Vec<u8> = vec![];
135        buf.append(&mut (self.get_size() as u32).to_le_bytes().to_vec());
136        buf.append(&mut self.super_object.serializer());
137        buf.append(&mut self.body.serializer()); // kind:CUSTOM TransactionBody
138        buf
139    }
140}
141
142impl EmbeddedTransactionHelper for EmbeddedMosaicGlobalRestrictionTransactionBuilder {
143    fn box_clone(&self) -> Box<dyn EmbeddedTransactionHelper> {
144        Box::new((*self).clone())
145    }
146
147    fn get_size(&self) -> usize {
148        self.get_size()
149    }
150
151    fn serializer(&self) -> Vec<u8> {
152        self.serializer()
153    }
154}
155