com.github.DNAProject.core.transaction.Attribute Maven / Gradle / Ivy
The newest version!
/*
* Copyright (C) 2018 The DNA Authors
* This file is part of The DNA library.
*
* The DNA is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* The DNA 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with The DNA. If not, see .
*
*/
package com.github.DNAProject.core.transaction;
import java.io.IOException;
import java.util.Arrays;
import java.util.HashMap;
import java.util.Map;
import com.github.DNAProject.common.Helper;
import com.github.DNAProject.io.BinaryReader;
import com.github.DNAProject.io.BinaryWriter;
import com.github.DNAProject.io.Serializable;
public class Attribute implements Serializable {
public AttributeUsage usage;
public byte[] data;
public int size;
@Override
public void serialize(BinaryWriter writer) throws IOException {
writer.writeByte(usage.value());
if (usage == AttributeUsage.Script
|| usage == AttributeUsage.DescriptionUrl
|| usage == AttributeUsage.Description
|| usage == AttributeUsage.Nonce) {
writer.writeVarBytes(data);
} else {
throw new IOException();
}
}
@Override
public void deserialize(BinaryReader reader) throws IOException {
usage = AttributeUsage.valueOf(reader.readByte());
if (usage == AttributeUsage.Script
|| usage == AttributeUsage.DescriptionUrl
|| usage == AttributeUsage.Description
|| usage == AttributeUsage.Nonce) {
data = reader.readVarBytes(255);
} else {
throw new IOException();
}
}
public Object json() {
Map json = new HashMap<>();
json.put("usage", usage.value());
json.put("data", Helper.toHexString(data));
return json;
}
@Override
public String toString() {
return "TransactionAttribute [usage=" + usage + ", data="
+ Arrays.toString(data) + "]";
}
// @Override
// public void fromJson(JsonReader reader) {
// JObject json = reader.json();
// usage = TransactionAttributeUsage.valueOf((byte)json.get("Usage").asNumber());
// data = Helper.hexToBytes(json.get("Data").asString());
// }
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy