48ad0d39bbc333e8f6f84f63c611c3387d84213d
[controller.git] / opendaylight / md-sal / cds-access-api / src / main / java / org / opendaylight / controller / cluster / access / concepts / AbstractMessageProxy.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.access.concepts;
9
10 import com.google.common.base.Verify;
11 import java.io.DataInput;
12 import java.io.Externalizable;
13 import java.io.IOException;
14 import java.io.ObjectInput;
15 import java.io.ObjectOutput;
16 import javax.annotation.Nonnull;
17 import org.opendaylight.yangtools.concepts.WritableIdentifier;
18 import org.opendaylight.yangtools.concepts.WritableObjects;
19
20 /**
21  * Abstract Externalizable proxy for use with {@link Message} subclasses.
22  *
23  * @author Robert Varga
24  *
25  * @param <T> Target identifier type
26  * @param <C> Message class
27  */
28 abstract class AbstractMessageProxy<T extends WritableIdentifier, C extends Message<T, C>> implements Externalizable {
29     private static final long serialVersionUID = 1L;
30     private T target;
31     private long sequence;
32
33     protected AbstractMessageProxy() {
34         // For Externalizable
35     }
36
37     AbstractMessageProxy(final @Nonnull C message) {
38         this.target = message.getTarget();
39         this.sequence = message.getSequence();
40     }
41
42     @Override
43     public void writeExternal(final ObjectOutput out) throws IOException {
44         target.writeTo(out);
45         WritableObjects.writeLong(out, sequence);
46     }
47
48     @Override
49     public void readExternal(final ObjectInput in) throws IOException, ClassNotFoundException {
50         target = Verify.verifyNotNull(readTarget(in));
51         sequence = WritableObjects.readLong(in);
52     }
53
54     protected final Object readResolve() {
55         return Verify.verifyNotNull(createMessage(target, sequence));
56     }
57
58     protected abstract @Nonnull T readTarget(@Nonnull DataInput in) throws IOException;
59     abstract @Nonnull C createMessage(@Nonnull T target, long sequence);
60 }