2 * Copyright (c) 2016 Cisco Systems, Inc. and others. All rights reserved.
4 * This program and the accompanying materials are made available under the
5 * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6 * and is available at http://www.eclipse.org/legal/epl-v10.html
8 package org.opendaylight.controller.cluster.datastore.persisted;
10 import com.google.common.io.ByteArrayDataOutput;
11 import com.google.common.io.ByteStreams;
12 import java.io.DataInput;
13 import java.io.IOException;
14 import org.opendaylight.controller.cluster.access.concepts.TransactionIdentifier;
15 import org.slf4j.Logger;
16 import org.slf4j.LoggerFactory;
19 * Payload persisted when a transaction is purged from the frontend. It contains the transaction identifier.
21 * @author Robert Varga
23 public final class PurgeTransactionPayload extends AbstractIdentifiablePayload<TransactionIdentifier> {
24 private static final class Proxy extends AbstractProxy<TransactionIdentifier> {
25 private static final long serialVersionUID = 1L;
27 // checkstyle flags the public modifier as redundant which really doesn't make sense since it clearly isn't
28 // redundant. It is explicitly needed for Java serialization to be able to create instances via reflection.
29 @SuppressWarnings("checkstyle:RedundantModifier")
34 Proxy(final byte[] serialized) {
39 protected TransactionIdentifier readIdentifier(final DataInput in) throws IOException {
40 return TransactionIdentifier.readFrom(in);
44 protected PurgeTransactionPayload createObject(final TransactionIdentifier identifier,
45 final byte[] serialized) {
46 return new PurgeTransactionPayload(identifier, serialized);
50 private static final Logger LOG = LoggerFactory.getLogger(PurgeTransactionPayload.class);
51 private static final long serialVersionUID = 1L;
53 PurgeTransactionPayload(final TransactionIdentifier transactionId, final byte[] serialized) {
54 super(transactionId, serialized);
57 public static PurgeTransactionPayload create(final TransactionIdentifier transactionId,
58 final int initialSerializedBufferCapacity) {
59 final ByteArrayDataOutput out = ByteStreams.newDataOutput(initialSerializedBufferCapacity);
61 transactionId.writeTo(out);
62 } catch (IOException e) {
63 // This should never happen
64 LOG.error("Failed to serialize {}", transactionId, e);
65 throw new IllegalStateException("Failed to serialize " + transactionId, e);
67 return new PurgeTransactionPayload(transactionId, out.toByteArray());
71 protected Proxy externalizableProxy(final byte[] serialized) {
72 return new Proxy(serialized);