BUG-5280: persist metadata in snaphots
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / persisted / ShardDataTreeSnapshotMetadata.java
1 /*
2  * Copyright (c) 2016 Cisco Systems, Inc. and others.  All rights reserved.
3  *
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
7  */
8 package org.opendaylight.controller.cluster.datastore.persisted;
9
10 import com.google.common.base.Verify;
11 import java.io.Externalizable;
12 import java.io.Serializable;
13 import javax.annotation.Nonnull;
14
15 /**
16  * Base class for various bits of metadata attached to a {@link MetadataShardDataTreeSnapshot}. This class is not
17  * an interface because we want to make sure all subclasses implement the externalizable proxy pattern, for which
18  * we need to force {@link #readResolve()} to be abstract.
19  *
20  * All concrete subclasses of this class should be final so as to form a distinct set of possible metadata. Since
21  * metadata is serialized along with {@link MetadataShardDataTreeSnapshot}, this set is part of the serialization format
22  * guarded by {@link PayloadVersion}.
23  *
24  * If a new metadata type is introduced or a type is removed, {@link PayloadVersion} needs to be bumped to ensure
25  * compatibility.
26  *
27  * @author Robert Varga
28  */
29 public abstract class ShardDataTreeSnapshotMetadata<T extends ShardDataTreeSnapshotMetadata<T>> implements Serializable {
30     private static final long serialVersionUID = 1L;
31
32     ShardDataTreeSnapshotMetadata() {
33         // Prevent subclassing from outside of this package
34     }
35
36     final Object writeReplace() {
37         return Verify.verifyNotNull(externalizableProxy(), "Null externalizable proxy from %s", getClass());
38     }
39
40     /**
41      * Return an Externalizable proxy
42      *
43      * @return Externalizable proxy, may not be null
44      */
45     protected abstract @Nonnull Externalizable externalizableProxy();
46
47     public abstract Class<T> getType();
48 }