/* * 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 purged from the frontend. It contains the transaction identifier. * * @author Robert Varga */ public final class PurgeTransactionPayload extends AbstractIdentifiablePayload { private static final Logger LOG = LoggerFactory.getLogger(PurgeTransactionPayload.class); @java.io.Serial private static final long serialVersionUID = 1L; private static final int PROXY_SIZE = externalizableProxySize(PT::new); PurgeTransactionPayload(final TransactionIdentifier transactionId, final byte[] serialized) { super(transactionId, serialized); } public static PurgeTransactionPayload 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 serialize " + transactionId, e); } return new PurgeTransactionPayload(transactionId, out.toByteArray()); } @Override protected PT externalizableProxy(final byte[] serialized) { return new PT(serialized); } @Override protected int externalizableProxySize() { return PROXY_SIZE; } }