/usr/include/bitcoin/impl/serialize/block.ipp is in libbitcoin-dev 2.0-2.4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /*
* Copyright (c) 2011-2013 libbitcoin developers (see AUTHORS)
*
* This file is part of libbitcoin.
*
* libbitcoin is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License with
* additional permissions to the one published by the Free Software
* Foundation, either version 3 of the License, or (at your option)
* any later version. For more information see LICENSE.
*
* This program 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef LIBBITCOIN_IMPL_SERIALIZE_BLOCK_IPP
#define LIBBITCOIN_IMPL_SERIALIZE_BLOCK_IPP
namespace libbitcoin {
template <typename Deserializer>
data_chunk read_raw_script(Deserializer& deserial)
{
data_chunk raw_script;
uint64_t script_length = deserial.read_variable_uint();
return deserial.read_data(script_length);
}
template <typename Deserializer>
script_type read_script(Deserializer& deserial)
{
data_chunk raw_script = read_raw_script(deserial);
// Output scripts can be empty so we attempt to parse them.
// If unsuccessful then they can't be spent and we just return
// a raw_data script.
script_type result;
try
{
result = parse_script(raw_script);
}
catch (end_of_stream)
{
return raw_data_script(raw_script);
}
#ifndef BITCOIN_DISABLE_ASSERTS
std::string assert_msg = encode_hex(raw_script);
BITCOIN_ASSERT_MSG(
raw_script == save_script(result), assert_msg.c_str());
#endif
return result;
}
template <typename Deserializer>
transaction_type read_transaction(
Deserializer& deserial, transaction_type& packet)
{
packet.version = deserial.read_4_bytes();
uint64_t tx_in_count = deserial.read_variable_uint();
for (size_t tx_in_i = 0; tx_in_i < tx_in_count; ++tx_in_i)
{
transaction_input_type input;
input.previous_output.hash = deserial.read_hash();
input.previous_output.index = deserial.read_4_bytes();
if (previous_output_is_null(input.previous_output))
input.script = raw_data_script(read_raw_script(deserial));
else
input.script = read_script(deserial);
input.sequence = deserial.read_4_bytes();
packet.inputs.push_back(input);
}
uint64_t tx_out_count = deserial.read_variable_uint();
for (size_t tx_out_i = 0; tx_out_i < tx_out_count; ++tx_out_i)
{
transaction_output_type output;
output.value = deserial.read_8_bytes();
output.script = read_script(deserial);
packet.outputs.push_back(output);
}
packet.locktime = deserial.read_4_bytes();
return packet;
}
const std::string satoshi_command(const transaction_type&);
size_t satoshi_raw_size(const transaction_type& packet);
template <typename Iterator>
Iterator satoshi_save(const transaction_type& packet, Iterator result)
{
auto serial = make_serializer(result);
serial.write_4_bytes(packet.version);
serial.write_variable_uint(packet.inputs.size());
for (const transaction_input_type& input: packet.inputs)
{
serial.write_hash(input.previous_output.hash);
serial.write_4_bytes(input.previous_output.index);
data_chunk raw_script = save_script(input.script);
serial.write_variable_uint(raw_script.size());
serial.write_data(raw_script);
serial.write_4_bytes(input.sequence);
}
serial.write_variable_uint(packet.outputs.size());
for (const transaction_output_type& output: packet.outputs)
{
serial.write_8_bytes(output.value);
data_chunk raw_script = save_script(output.script);
serial.write_variable_uint(raw_script.size());
serial.write_data(raw_script);
}
serial.write_4_bytes(packet.locktime);
return serial.iterator();
}
template <typename Iterator>
void satoshi_load(const Iterator first, const Iterator last,
transaction_type& packet)
{
auto deserial = make_deserializer(first, last);
read_transaction(deserial, packet);
// Only true for valid transaction streams.
//BITCOIN_ASSERT(satoshi_raw_size(packet) == std::distance(first, last));
}
size_t satoshi_raw_size(const block_header_type& packet);
template <typename Iterator>
Iterator satoshi_save(const block_header_type& packet, Iterator result)
{
auto serial = make_serializer(result);
serial.write_4_bytes(packet.version);
serial.write_hash(packet.previous_block_hash);
serial.write_hash(packet.merkle);
serial.write_4_bytes(packet.timestamp);
serial.write_4_bytes(packet.bits);
serial.write_4_bytes(packet.nonce);
BITCOIN_ASSERT(std::distance(result, serial.iterator()) == 80);
return serial.iterator();
}
template <typename Iterator>
void satoshi_load(const Iterator first, const Iterator last,
block_header_type& packet)
{
auto deserial = make_deserializer(first, last);
packet.version = deserial.read_4_bytes();
packet.previous_block_hash = deserial.read_hash();
packet.merkle = deserial.read_hash();
packet.timestamp = deserial.read_4_bytes();
packet.bits = deserial.read_4_bytes();
packet.nonce = deserial.read_4_bytes();
BITCOIN_ASSERT(std::distance(first, deserial.iterator()) == 80);
}
const std::string satoshi_command(const block_type&);
size_t satoshi_raw_size(const block_type& packet);
template <typename Iterator>
Iterator satoshi_save(const block_type& packet, Iterator result)
{
satoshi_save(packet.header, result);
auto serial = make_serializer(result + 80);
serial.write_variable_uint(packet.transactions.size());
Iterator write_iter = serial.iterator();
for (const transaction_type& tx: packet.transactions)
write_iter = satoshi_save(tx, write_iter);
return write_iter;
}
template <typename Iterator>
void satoshi_load(const Iterator first, const Iterator last,
block_type& packet)
{
satoshi_load(first, first + 80, packet.header);
auto deserial = make_deserializer(first + 80, last);
uint64_t tx_count = deserial.read_variable_uint();
for (size_t tx_i = 0; tx_i < tx_count; ++tx_i)
{
transaction_type tx;
read_transaction(deserial, tx);
packet.transactions.push_back(std::move(tx));
}
}
} // libbitcoin
#endif
|