BUG-5280: add frontend state lifecycle
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / ShardTransaction.java
1 /*
2  * Copyright (c) 2014 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
9 package org.opendaylight.controller.cluster.datastore;
10
11 import akka.actor.ActorRef;
12 import akka.actor.PoisonPill;
13 import akka.actor.Props;
14 import akka.actor.ReceiveTimeout;
15 import akka.japi.Creator;
16 import com.google.common.base.Optional;
17 import com.google.common.base.Preconditions;
18 import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
19 import org.opendaylight.controller.cluster.access.concepts.TransactionIdentifier;
20 import org.opendaylight.controller.cluster.common.actor.AbstractUntypedActorWithMetering;
21 import org.opendaylight.controller.cluster.datastore.jmx.mbeans.shard.ShardStats;
22 import org.opendaylight.controller.cluster.datastore.messages.CloseTransaction;
23 import org.opendaylight.controller.cluster.datastore.messages.CloseTransactionReply;
24 import org.opendaylight.controller.cluster.datastore.messages.DataExists;
25 import org.opendaylight.controller.cluster.datastore.messages.DataExistsReply;
26 import org.opendaylight.controller.cluster.datastore.messages.ReadData;
27 import org.opendaylight.controller.cluster.datastore.messages.ReadDataReply;
28 import org.opendaylight.controller.md.sal.common.api.data.ReadFailedException;
29 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
30 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
31
32 /**
33  * The ShardTransaction Actor represents a remote transaction that delegates all actions to DOMDataReadWriteTransaction.
34  */
35 public abstract class ShardTransaction extends AbstractUntypedActorWithMetering {
36     private final ActorRef shardActor;
37     private final ShardStats shardStats;
38     private final TransactionIdentifier transactionId;
39
40     protected ShardTransaction(final ActorRef shardActor, final ShardStats shardStats,
41             final TransactionIdentifier transactionId) {
42         super("shard-tx"); //actor name override used for metering. This does not change the "real" actor name
43         this.shardActor = shardActor;
44         this.shardStats = shardStats;
45         this.transactionId = Preconditions.checkNotNull(transactionId);
46     }
47
48     public static Props props(final TransactionType type, final AbstractShardDataTreeTransaction<?> transaction,
49             final ActorRef shardActor, final DatastoreContext datastoreContext, final ShardStats shardStats) {
50         return Props.create(new ShardTransactionCreator(type, transaction, shardActor, datastoreContext, shardStats));
51     }
52
53     protected abstract AbstractShardDataTreeTransaction<?> getDOMStoreTransaction();
54
55     protected ActorRef getShardActor() {
56         return shardActor;
57     }
58
59     protected final TransactionIdentifier getTransactionId() {
60         return transactionId;
61     }
62
63     @Override
64     public void handleReceive(final Object message) {
65         if (CloseTransaction.isSerializedType(message)) {
66             closeTransaction(true);
67         } else if (message instanceof ReceiveTimeout) {
68             LOG.debug("Got ReceiveTimeout for inactivity - closing transaction {}", transactionId);
69             closeTransaction(false);
70         } else {
71             unknownMessage(message);
72         }
73     }
74
75     protected boolean returnCloseTransactionReply() {
76         return true;
77     }
78
79     private void closeTransaction(final boolean sendReply) {
80         getDOMStoreTransaction().abort(null);
81
82         if (sendReply && returnCloseTransactionReply()) {
83             getSender().tell(new CloseTransactionReply(), getSelf());
84         }
85
86         getSelf().tell(PoisonPill.getInstance(), getSelf());
87     }
88
89     private boolean checkClosed(final AbstractShardDataTreeTransaction<?> transaction) {
90         final boolean ret = transaction.isClosed();
91         if (ret) {
92             shardStats.incrementFailedReadTransactionsCount();
93             getSender().tell(new akka.actor.Status.Failure(new ReadFailedException("Transaction is closed")),
94                     getSelf());
95         }
96         return ret;
97     }
98
99     protected void readData(final AbstractShardDataTreeTransaction<?> transaction, final ReadData message) {
100         if (checkClosed(transaction)) {
101             return;
102         }
103
104         final YangInstanceIdentifier path = message.getPath();
105         Optional<NormalizedNode<?, ?>> optional = transaction.getSnapshot().readNode(path);
106         ReadDataReply readDataReply = new ReadDataReply(optional.orNull(), message.getVersion());
107         sender().tell(readDataReply.toSerializable(), self());
108     }
109
110     protected void dataExists(final AbstractShardDataTreeTransaction<?> transaction, final DataExists message) {
111         if (checkClosed(transaction)) {
112             return;
113         }
114
115         final YangInstanceIdentifier path = message.getPath();
116         boolean exists = transaction.getSnapshot().readNode(path).isPresent();
117         getSender().tell(new DataExistsReply(exists, message.getVersion()).toSerializable(), getSelf());
118     }
119
120     @SuppressFBWarnings(value = "SE_BAD_FIELD", justification = "Some fields are not Serializable but we don't "
121             + "create remote instances of this actor and thus don't need it to be Serializable.")
122     private static class ShardTransactionCreator implements Creator<ShardTransaction> {
123
124         private static final long serialVersionUID = 1L;
125
126         final AbstractShardDataTreeTransaction<?> transaction;
127         final ActorRef shardActor;
128         final DatastoreContext datastoreContext;
129         final ShardStats shardStats;
130         final TransactionType type;
131
132         ShardTransactionCreator(final TransactionType type, final AbstractShardDataTreeTransaction<?> transaction,
133                 final ActorRef shardActor, final DatastoreContext datastoreContext, final ShardStats shardStats) {
134             this.transaction = Preconditions.checkNotNull(transaction);
135             this.shardActor = shardActor;
136             this.shardStats = shardStats;
137             this.datastoreContext = datastoreContext;
138             this.type = type;
139         }
140
141         @Override
142         public ShardTransaction create() throws Exception {
143             final ShardTransaction tx;
144             switch (type) {
145                 case READ_ONLY:
146                     tx = new ShardReadTransaction(transaction, shardActor, shardStats);
147                     break;
148                 case READ_WRITE:
149                     tx = new ShardReadWriteTransaction((ReadWriteShardDataTreeTransaction)transaction, shardActor,
150                             shardStats);
151                     break;
152                 case WRITE_ONLY:
153                     tx = new ShardWriteTransaction((ReadWriteShardDataTreeTransaction)transaction, shardActor,
154                             shardStats);
155                     break;
156                 default:
157                     throw new IllegalArgumentException("Unhandled transaction type " + type);
158             }
159
160             tx.getContext().setReceiveTimeout(datastoreContext.getShardTransactionIdleTimeout());
161             return tx;
162         }
163     }
164 }