|
/* |
|
* Copyright (C) 2019-2023 Six Clovers, Inc. - All rights reserved. |
|
* |
|
* Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: |
|
* |
|
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. |
|
* |
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
|
*/ |
|
package com.sixclovers.external; |
|
|
|
import java.io.ByteArrayOutputStream; |
|
import java.io.IOException; |
|
import java.lang.reflect.Field; |
|
import java.util.List; |
|
|
|
import org.bitcoinj.core.Coin; |
|
import org.bitcoinj.core.Message; |
|
import org.bitcoinj.core.MessageSerializer; |
|
import org.bitcoinj.core.NetworkParameters; |
|
import org.bitcoinj.core.ProtocolException; |
|
import org.bitcoinj.core.Transaction; |
|
import org.bitcoinj.core.Transaction.Purpose; |
|
import org.bitcoinj.core.TransactionConfidence.Source; |
|
import org.bitcoinj.core.TransactionOutput; |
|
import org.bitcoinj.core.TransactionWitness; |
|
import org.bitcoinj.core.UnsafeByteArrayOutputStream; |
|
import org.bitcoinj.core.Utils; |
|
import org.bitcoinj.core.VarInt; |
|
import org.web3j.utils.Numeric; |
|
|
|
import com.sixclovers.utility.Log; |
|
|
|
public class CoinSerializer { |
|
|
|
private static class TransactionInput extends org.bitcoinj.core.TransactionInput { |
|
|
|
public TransactionInput( |
|
final NetworkParameters params, |
|
final Transaction parentTransaction, |
|
final byte[] payload, |
|
final int offset, |
|
final MessageSerializer serializer) throws ProtocolException { |
|
super(params, parentTransaction, payload, offset, serializer); |
|
} |
|
|
|
public void setValue(final Coin value) { |
|
try { |
|
final Field valueField = getClass().getSuperclass().getDeclaredField("value"); |
|
valueField.setAccessible(true); |
|
valueField.set(this, value); |
|
} catch (final NoSuchFieldException | IllegalAccessException e) { |
|
Log.error(e); |
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
private static final int MESSAGE_LENGTH = 36; |
|
|
|
public static Transaction decode(final NetworkParameters networkParameters, final String encoded) { |
|
try { |
|
final Transaction transaction = new Transaction(networkParameters); |
|
final byte[] payload = Numeric.hexStringToByteArray(encoded); |
|
int cursor = 0; |
|
|
|
// version |
|
transaction.setVersion((int)Utils.readUint32(payload, cursor)); |
|
cursor += 4; |
|
|
|
final VarInt segwitVarInt = readVarInt(payload, cursor, 0); |
|
final boolean useSegwit = segwitVarInt.intValue() == 0; |
|
if (useSegwit) { |
|
cursor += 2; |
|
} |
|
|
|
// txin_count, txins, txin_values |
|
cursor = parseInputs(transaction, networkParameters, payload, cursor); |
|
|
|
// txout_count, txouts |
|
cursor = parseOutputs(transaction, networkParameters, payload, cursor); |
|
|
|
// script_witnisses |
|
if (useSegwit) { |
|
cursor = parseWitness(transaction, payload, cursor); |
|
} |
|
|
|
// lock_time |
|
transaction.setLockTime((int)Utils.readUint32(payload, cursor)); |
|
cursor += 4; |
|
|
|
// source |
|
transaction.getConfidence().setSource(Source.values()[(int)Utils.readUint32(payload, cursor)]); |
|
cursor += 4; |
|
|
|
// purpose |
|
transaction.setPurpose(Purpose.values()[(int)Utils.readUint32(payload, cursor)]); |
|
cursor += 4; |
|
|
|
return transaction; |
|
} catch (final Exception e) { |
|
Log.error(e); |
|
return null; |
|
} |
|
} |
|
|
|
public static String encode(final Transaction transaction) { |
|
final boolean useSegwit = transaction.hasWitnesses(); |
|
final int length = transaction.getMessageSize(); |
|
final ByteArrayOutputStream stream = new UnsafeByteArrayOutputStream(length < 32 ? 32 : length + 32); |
|
|
|
try { |
|
// version |
|
Utils.uint32ToByteStreamLE(transaction.getVersion(), stream); |
|
if (useSegwit) { |
|
stream.write(0); |
|
stream.write(1); |
|
} |
|
|
|
// txin_count, txins, txin_values |
|
final List<org.bitcoinj.core.TransactionInput> inputs = transaction.getInputs(); |
|
stream.write(new VarInt(inputs.size()).encode()); |
|
for (final org.bitcoinj.core.TransactionInput in : inputs) { |
|
in.bitcoinSerialize(stream); |
|
|
|
Utils.int64ToByteStreamLE(in.getValue().getValue(), stream); |
|
} |
|
|
|
// txout_count, txouts |
|
final List<TransactionOutput> outputs = transaction.getOutputs(); |
|
stream.write(new VarInt(outputs.size()).encode()); |
|
for (final TransactionOutput out : outputs) { |
|
out.bitcoinSerialize(stream); |
|
} |
|
|
|
// script_witnisses |
|
if (useSegwit) { |
|
for (final org.bitcoinj.core.TransactionInput in : inputs) { |
|
final int pushCount = in.getWitness().getPushCount(); |
|
stream.write(new VarInt(pushCount).encode()); |
|
for (int i = 0; i < pushCount; i++) { |
|
final byte[] push = in.getWitness().getPush(i); |
|
stream.write(new VarInt(push.length).encode()); |
|
stream.write(push); |
|
} |
|
} |
|
} |
|
|
|
// lock_time |
|
Utils.uint32ToByteStreamLE(transaction.getLockTime(), stream); |
|
|
|
// source |
|
final int source = transaction.getConfidence().getSource().ordinal(); |
|
Utils.uint32ToByteStreamLE(source, stream); |
|
|
|
// purpose |
|
final int purpose = transaction.getPurpose().ordinal(); |
|
Utils.uint32ToByteStreamLE(purpose, stream); |
|
|
|
return Numeric.toHexStringNoPrefix(stream.toByteArray()); |
|
} catch (final IOException e) { |
|
// Cannot happen, we are serializing to a memory stream. |
|
} |
|
|
|
return null; |
|
} |
|
|
|
private static int parseInputs(final Transaction transaction, final NetworkParameters networkParameters, final byte[] payload, int cursor) { |
|
final VarInt numInputsVarInt = readVarInt(payload, cursor, 0); |
|
cursor += numInputsVarInt.getOriginalSizeInBytes(); |
|
final int numInputs = numInputsVarInt.intValue(); |
|
|
|
for (long i = 0; i < numInputs; i++) { |
|
final TransactionInput input = new TransactionInput(networkParameters, transaction, payload, cursor, networkParameters.getDefaultSerializer()); |
|
|
|
final VarInt scriptLenVarInt = readVarInt(payload, cursor, MESSAGE_LENGTH); |
|
cursor += MESSAGE_LENGTH + numInputsVarInt.getOriginalSizeInBytes(); |
|
final int scriptLen = scriptLenVarInt.intValue(); |
|
cursor += scriptLen + 4; |
|
|
|
final long value = Utils.readInt64(payload, cursor); |
|
input.setValue(Coin.ofSat(value)); |
|
transaction.addInput(input); |
|
cursor += 8; |
|
} |
|
|
|
return cursor; |
|
} |
|
|
|
private static int parseOutputs(final Transaction transaction, final NetworkParameters networkParameters, final byte[] payload, int cursor) { |
|
final VarInt numOutputsVarInt = readVarInt(payload, cursor, 0); |
|
cursor += numOutputsVarInt.getOriginalSizeInBytes(); |
|
|
|
final int numOutputs = numOutputsVarInt.intValue(); |
|
for (long i = 0; i < numOutputs; i++) { |
|
transaction.addOutput(new TransactionOutput(networkParameters, transaction, payload, cursor, networkParameters.getDefaultSerializer())); |
|
final VarInt scriptLenVarInt = readVarInt(payload, cursor, 8); |
|
cursor += 8 + scriptLenVarInt.getOriginalSizeInBytes(); |
|
final int scriptLen = scriptLenVarInt.intValue(); |
|
cursor += scriptLen; |
|
} |
|
|
|
return cursor; |
|
} |
|
|
|
private static int parseWitness(final Transaction transaction, final byte[] payload, int cursor) { |
|
final int numWitnesses = transaction.getInputs().size(); |
|
for (int i = 0; i < numWitnesses; i++) { |
|
final VarInt pushCountVarInt = readVarInt(payload, cursor, 0); |
|
cursor += pushCountVarInt.getOriginalSizeInBytes(); |
|
|
|
final int pushCount = pushCountVarInt.intValue(); |
|
final TransactionWitness witness = new TransactionWitness(pushCount); |
|
transaction.getInput(i).setWitness(witness); |
|
for (int y = 0; y < pushCount; y++) { |
|
final VarInt pushSizeVarInt = readVarInt(payload, cursor, 0); |
|
cursor += pushSizeVarInt.getOriginalSizeInBytes(); |
|
|
|
final int pushSize = pushSizeVarInt.intValue(); |
|
|
|
final byte[] push = readBytes(payload, cursor, pushSize); |
|
cursor += pushSize; |
|
witness.setPush(y, push); |
|
} |
|
} |
|
|
|
return cursor; |
|
} |
|
|
|
private static byte[] readBytes(final byte[] payload, final int cursor, final int length) throws ProtocolException { |
|
if ((length > Message.MAX_SIZE) || (cursor + length > payload.length)) { |
|
throw new ProtocolException("Claimed value length too large: " + length); |
|
} |
|
try { |
|
final byte[] b = new byte[length]; |
|
System.arraycopy(payload, cursor, b, 0, length); |
|
return b; |
|
} catch (final IndexOutOfBoundsException e) { |
|
throw new ProtocolException(e); |
|
} |
|
} |
|
|
|
private static VarInt readVarInt(final byte[] payload, final int cursor, final int offset) throws ProtocolException { |
|
try { |
|
return new VarInt(payload, cursor + offset); |
|
} catch (final ArrayIndexOutOfBoundsException e) { |
|
throw new ProtocolException(e); |
|
} |
|
} |
|
|
|
} |