All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hedera.hapi.block.stream.output.codec.EthereumOutputJsonCodec Maven / Gradle / Ivy

There is a newer version: 0.54.0
Show newest version
package com.hedera.hapi.block.stream.output.codec;

import com.hedera.pbj.runtime.*;
import com.hedera.pbj.runtime.io.*;
import com.hedera.pbj.runtime.io.buffer.*;
import java.io.IOException;
import java.nio.*;
import java.nio.charset.*;
import java.util.*;
import edu.umd.cs.findbugs.annotations.NonNull;
import edu.umd.cs.findbugs.annotations.Nullable;

import com.hedera.hapi.block.stream.output.EthereumOutput;

import com.hedera.hapi.block.stream.output.*;
import com.hedera.hapi.block.stream.output.schema.*;
import com.hedera.hapi.streams.*;
import com.hedera.hapi.streams.codec.*;
import com.hedera.pbj.runtime.io.buffer.*;
import java.util.*;

import com.hedera.pbj.runtime.jsonparser.*;
import static com.hedera.hapi.block.stream.output.schema.EthereumOutputSchema.*;
import static com.hedera.pbj.runtime.JsonTools.*;

/**
 * JSON Codec for EthereumOutput model object. Generated based on protobuf schema.
 */
public final class EthereumOutputJsonCodec implements JsonCodec {
    

        /**
     * Parses a HashObject object from JSON parse tree for object JSONParser.ObjContext.
     * Throws an UnknownFieldException wrapped in a ParseException if in strict mode ONLY.
     *
     * @param root The JSON parsed object tree to parse data from
     * @return Parsed HashObject model object or null if data input was null or empty
     * @throws ParseException If parsing fails
     */
    public @NonNull EthereumOutput parse(
            @Nullable final JSONParser.ObjContext root,
            final boolean strictMode,
            final int maxDepth) throws ParseException {
        if (maxDepth < 0) {
            throw new ParseException("Reached maximum allowed depth of nested messages");
        }
        try {
            // -- TEMP STATE FIELDS --------------------------------------
                List temp_sidecars = Collections.emptyList();
        Bytes temp_ethereum_hash = Bytes.EMPTY;
    
            // -- EXTRACT VALUES FROM PARSE TREE ---------------------------------------------
    
            for (JSONParser.PairContext kvPair : root.pair()) {
                switch (kvPair.STRING().getText()) {
                    case "sidecars" /* [1] */ : temp_sidecars = parseObjArray(kvPair.value().arr(), TransactionSidecarRecord.JSON, maxDepth - 1); break;
    case "ethereumHash" /* [2] */ : temp_ethereum_hash = Bytes.fromBase64(kvPair.value().STRING().getText()); break;
    
                    default: {
                        if (strictMode) {
                            // Since we are parsing is strict mode, this is an exceptional condition.
                            throw new UnknownFieldException(kvPair.STRING().getText());
                        }
                    }
                }
            }
    
            return new EthereumOutput(temp_sidecars, temp_ethereum_hash);
        } catch (Exception ex) {
            throw new ParseException(ex);
        }
    }

        /**
     * Returns JSON string representing an item.
     *
     * @param data      The item to convert. Must not be null.
     * @param indent    The indent to use for pretty printing
     * @param inline    When true the output will start with indent end with a new line otherwise
     *                        it will just be the object "{...}"
     */
    @Override
    public String toJSON(@NonNull EthereumOutput data, String indent, boolean inline) {
        StringBuilder sb = new StringBuilder();
        // start
        sb.append(inline ? "{\n" : indent + "{\n");
        final String childIndent = indent + INDENT;
        // collect field lines
        final List fieldLines = new ArrayList<>();
            // [1] - sidecars
        if (!data.sidecars().isEmpty()) fieldLines.add(arrayField(childIndent, "sidecars", com.hedera.hapi.streams.TransactionSidecarRecord.JSON, data.sidecars()));
        // [2] - ethereum_hash
        if (data.ethereumHash() != Bytes.EMPTY && data.ethereumHash() != null && data.ethereumHash().length() > 0) fieldLines.add(field("ethereumHash", data.ethereumHash()));
    
        // write field lines
        if (!fieldLines.isEmpty()){
            sb.append(childIndent);
            sb.append(String.join(",\n"+childIndent, fieldLines));
            sb.append("\n");
        }
        // end
        sb.append(indent + "}");
        return sb.toString();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy