/* * Copyright (c) 2016 Cisco Systems, Inc. and others. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html */ package org.opendaylight.controller.cluster.datastore.persisted; import com.google.common.io.ByteArrayDataOutput; import com.google.common.io.ByteStreams; import java.io.IOException; import org.opendaylight.controller.cluster.access.concepts.TransactionIdentifier; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * Payload persisted when a transaction is aborted. It contains the transaction identifier. * * @author Robert Varga */ public final class AbortTransactionPayload extends AbstractIdentifiablePayload { private static final Logger LOG = LoggerFactory.getLogger(AbortTransactionPayload.class); @java.io.Serial private static final long serialVersionUID = 1L; private static final int PROXY_SIZE = externalizableProxySize(AT::new); AbortTransactionPayload(final TransactionIdentifier transactionId, final byte[] serialized) { super(transactionId, serialized); } public static AbortTransactionPayload create(final TransactionIdentifier transactionId, final int initialSerializedBufferCapacity) { final ByteArrayDataOutput out = ByteStreams.newDataOutput(initialSerializedBufferCapacity); try { transactionId.writeTo(out); } catch (IOException e) { // This should never happen LOG.error("Failed to serialize {}", transactionId, e); throw new IllegalStateException("Failed to serialized " + transactionId, e); } return new AbortTransactionPayload(transactionId, out.toByteArray()); } @Override protected AT externalizableProxy(final byte[] serialized) { return new AT(serialized); } @Override protected int externalizableProxySize() { return PROXY_SIZE; } }