BUG-731 : more warnings down
[bgpcep.git] / programming / impl / src / main / java / org / opendaylight / bgpcep / programming / impl / ProgrammingServiceImpl.java
1 /*
2  * Copyright (c) 2013 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.bgpcep.programming.impl;
9
10 import com.google.common.base.Preconditions;
11 import com.google.common.util.concurrent.FutureCallback;
12 import com.google.common.util.concurrent.Futures;
13 import com.google.common.util.concurrent.ListenableFuture;
14 import com.google.common.util.concurrent.ListeningExecutorService;
15 import com.google.common.util.concurrent.SettableFuture;
16 import io.netty.util.Timeout;
17 import io.netty.util.Timer;
18 import io.netty.util.TimerTask;
19 import java.math.BigInteger;
20 import java.util.ArrayList;
21 import java.util.Collections;
22 import java.util.HashMap;
23 import java.util.Iterator;
24 import java.util.List;
25 import java.util.Map;
26 import java.util.concurrent.Callable;
27 import java.util.concurrent.ExecutionException;
28 import java.util.concurrent.TimeUnit;
29 import org.opendaylight.bgpcep.programming.NanotimeUtil;
30 import org.opendaylight.bgpcep.programming.spi.ExecutionResult;
31 import org.opendaylight.bgpcep.programming.spi.Instruction;
32 import org.opendaylight.bgpcep.programming.spi.InstructionScheduler;
33 import org.opendaylight.bgpcep.programming.spi.SchedulerException;
34 import org.opendaylight.bgpcep.programming.spi.SuccessfulRpcResult;
35 import org.opendaylight.controller.md.sal.binding.api.DataBroker;
36 import org.opendaylight.controller.md.sal.binding.api.ReadWriteTransaction;
37 import org.opendaylight.controller.md.sal.binding.api.WriteTransaction;
38 import org.opendaylight.controller.md.sal.common.api.data.LogicalDatastoreType;
39 import org.opendaylight.controller.sal.binding.api.NotificationProviderService;
40 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.programming.rev130930.CancelInstructionInput;
41 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.programming.rev130930.CancelInstructionOutput;
42 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.programming.rev130930.CancelInstructionOutputBuilder;
43 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.programming.rev130930.CleanInstructionsInput;
44 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.programming.rev130930.CleanInstructionsOutput;
45 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.programming.rev130930.CleanInstructionsOutputBuilder;
46 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.programming.rev130930.DeadOnArrival;
47 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.programming.rev130930.DuplicateInstructionId;
48 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.programming.rev130930.InstructionId;
49 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.programming.rev130930.InstructionStatus;
50 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.programming.rev130930.InstructionStatusChangedBuilder;
51 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.programming.rev130930.InstructionsQueue;
52 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.programming.rev130930.InstructionsQueueBuilder;
53 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.programming.rev130930.Nanotime;
54 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.programming.rev130930.ProgrammingService;
55 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.programming.rev130930.SubmitInstructionInput;
56 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.programming.rev130930.UnknownInstruction;
57 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.programming.rev130930.UnknownPreconditionId;
58 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.programming.rev130930.instruction.queue.InstructionBuilder;
59 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.programming.rev130930.instruction.queue.InstructionKey;
60 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.programming.rev130930.instruction.status.changed.Details;
61 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.programming.rev130930.submit.instruction.output.result.failure._case.FailureBuilder;
62 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
63 import org.opendaylight.yangtools.yang.common.RpcResult;
64 import org.slf4j.Logger;
65 import org.slf4j.LoggerFactory;
66
67 public final class ProgrammingServiceImpl implements AutoCloseable, InstructionScheduler, ProgrammingService {
68     private static final Logger LOG = LoggerFactory.getLogger(ProgrammingServiceImpl.class);
69
70     private final Map<InstructionId, InstructionImpl> insns = new HashMap<>();
71     private final InstanceIdentifier<InstructionsQueue> qid;
72     private final NotificationProviderService notifs;
73     private final ListeningExecutorService executor;
74     private final DataBroker dataProvider;
75     private final Timer timer;
76
77     private final class InstructionPusher implements QueueInstruction {
78         private final InstructionBuilder builder = new InstructionBuilder();
79
80         InstructionPusher(final InstructionId id, final Nanotime deadline) {
81             this.builder.setDeadline(deadline);
82             this.builder.setId(id);
83             this.builder.setKey(new InstructionKey(id));
84             this.builder.setStatus(InstructionStatus.Queued);
85         }
86
87         @Override
88         public void instructionUpdated(final InstructionStatus status, final Details details) {
89             if (!status.equals(this.builder.getStatus())) {
90                 this.builder.setStatus(status);
91
92                 final WriteTransaction t = ProgrammingServiceImpl.this.dataProvider.newWriteOnlyTransaction();
93                 t.put(LogicalDatastoreType.OPERATIONAL,
94                         ProgrammingServiceImpl.this.qid.child(
95                                 org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.programming.rev130930.instruction.queue.Instruction.class,
96                                 new InstructionKey(this.builder.getId())), this.builder.build());
97                 t.submit();
98             }
99
100             ProgrammingServiceImpl.this.notifs.publish(new InstructionStatusChangedBuilder().setId(this.builder.getId()).setStatus(status).setDetails(details).build());
101         }
102
103         @Override
104         public void instructionRemoved() {
105             final WriteTransaction t = ProgrammingServiceImpl.this.dataProvider.newWriteOnlyTransaction();
106             t.delete(LogicalDatastoreType.OPERATIONAL, ProgrammingServiceImpl.this.qid.child(
107                     org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.programming.rev130930.instruction.queue.Instruction.class,
108                     new InstructionKey(this.builder.getId())));
109             t.submit();
110         }
111     }
112
113     public ProgrammingServiceImpl(final DataBroker dataProvider, final NotificationProviderService notifs,
114             final ListeningExecutorService executor, final Timer timer) {
115         this.dataProvider = Preconditions.checkNotNull(dataProvider);
116         this.notifs = Preconditions.checkNotNull(notifs);
117         this.executor = Preconditions.checkNotNull(executor);
118         this.timer = Preconditions.checkNotNull(timer);
119         this.qid = InstanceIdentifier.builder(InstructionsQueue.class).toInstance();
120
121         final ReadWriteTransaction t = dataProvider.newReadWriteTransaction();
122         try {
123             Preconditions.checkState(!t.read(LogicalDatastoreType.OPERATIONAL, this.qid).get().isPresent(), "Conflicting instruction queue found");
124         } catch (InterruptedException | ExecutionException e) {
125             throw new IllegalStateException("Failed to acquire instruction queue", e);
126         }
127
128         t.put(LogicalDatastoreType.OPERATIONAL, this.qid,
129                 new InstructionsQueueBuilder().setInstruction(
130                         Collections.<org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.programming.rev130930.instruction.queue.Instruction> emptyList()).build());
131         t.submit();
132     }
133
134     @Override
135     public ListenableFuture<RpcResult<CancelInstructionOutput>> cancelInstruction(final CancelInstructionInput input) {
136         return this.executor.submit(new Callable<RpcResult<CancelInstructionOutput>>() {
137             @Override
138             public RpcResult<CancelInstructionOutput> call() {
139                 return realCancelInstruction(input);
140             }
141         });
142     }
143
144     @Override
145     public ListenableFuture<RpcResult<CleanInstructionsOutput>> cleanInstructions(final CleanInstructionsInput input) {
146         return this.executor.submit(new Callable<RpcResult<CleanInstructionsOutput>>() {
147             @Override
148             public RpcResult<CleanInstructionsOutput> call() {
149                 return realCleanInstructions(input);
150             }
151         });
152     }
153
154     private synchronized RpcResult<CancelInstructionOutput> realCancelInstruction(final CancelInstructionInput input) {
155         final InstructionImpl i = this.insns.get(input.getId());
156         if (i == null) {
157             LOG.debug("Instruction {} not present in the graph", input.getId());
158
159             final CancelInstructionOutput out = new CancelInstructionOutputBuilder().setFailure(UnknownInstruction.class).build();
160             return SuccessfulRpcResult.create(out);
161         }
162
163         return SuccessfulRpcResult.create(new CancelInstructionOutputBuilder().setFailure(i.tryCancel(null)).build());
164     }
165
166     private synchronized RpcResult<CleanInstructionsOutput> realCleanInstructions(final CleanInstructionsInput input) {
167         final List<InstructionId> failed = new ArrayList<>();
168
169         for (final InstructionId id : input.getId()) {
170             // Find the instruction
171             final InstructionImpl i = this.insns.get(id);
172             if (i == null) {
173                 LOG.debug("Instruction {} not present in the graph", input.getId());
174                 failed.add(id);
175                 continue;
176             }
177
178             // Check its status
179             switch (i.getStatus()) {
180             case Cancelled:
181             case Failed:
182             case Successful:
183                 break;
184             case Executing:
185             case Queued:
186             case Scheduled:
187             case Unknown:
188                 LOG.debug("Instruction {} cannot be cleaned because of it's in state {}", id, i.getStatus());
189                 failed.add(id);
190                 continue;
191             }
192
193             // The instruction is in a terminal state, we need to just unlink
194             // it from its dependencies and dependents
195             i.clean();
196
197             this.insns.remove(id);
198             LOG.debug("Instruction {} cleaned successfully", id);
199         }
200
201         final CleanInstructionsOutputBuilder ob = new CleanInstructionsOutputBuilder();
202         ob.setUnflushed(failed);
203
204         return SuccessfulRpcResult.create(ob.build());
205     }
206
207     private List<InstructionImpl> checkDependencies(final SubmitInstructionInput input) throws SchedulerException {
208         final List<InstructionImpl> dependencies = new ArrayList<>();
209         for (final InstructionId pid : input.getPreconditions()) {
210             final InstructionImpl i = this.insns.get(pid);
211             if (i == null) {
212                 LOG.info("Instruction {} depends on {}, which is not a known instruction", input.getId(), pid);
213                 throw new SchedulerException("Unknown dependency ID specified", new FailureBuilder().setType(UnknownPreconditionId.class).build());
214             }
215             dependencies.add(i);
216         }
217         // Check if all dependencies are non-failed
218         final List<InstructionId> unmet = new ArrayList<>();
219         for (final InstructionImpl d : dependencies) {
220             switch (d.getStatus()) {
221             case Cancelled:
222             case Failed:
223             case Unknown:
224                 unmet.add(d.getId());
225                 break;
226             case Executing:
227             case Queued:
228             case Scheduled:
229             case Successful:
230                 break;
231             }
232         }
233         /*
234          *  Some dependencies have failed, declare the request dead-on-arrival
235          *  and fail the operation.
236          */
237         if (!unmet.isEmpty()) {
238             throw new SchedulerException("Instruction's dependencies are already unsuccessful", new FailureBuilder().setType(
239                     DeadOnArrival.class).setFailedPreconditions(unmet).build());
240         }
241         return dependencies;
242     }
243
244     @Override
245     public synchronized ListenableFuture<Instruction> scheduleInstruction(final SubmitInstructionInput input) throws SchedulerException {
246         final InstructionId id = input.getId();
247         if (this.insns.get(id) != null) {
248             LOG.info("Instruction ID {} already present", id);
249             throw new SchedulerException("Instruction ID currently in use", new FailureBuilder().setType(DuplicateInstructionId.class).build());
250         }
251
252         // First things first: check the deadline
253         final Nanotime now = NanotimeUtil.currentTime();
254         final BigInteger left = input.getDeadline().getValue().subtract(now.getValue());
255
256         if (left.compareTo(BigInteger.ZERO) <= 0) {
257             LOG.debug("Instruction {} deadline has already passed by {}ns", id, left);
258             throw new SchedulerException("Instruction arrived after specified deadline", new FailureBuilder().setType(DeadOnArrival.class).build());
259         }
260
261         // Resolve dependencies
262         final List<InstructionImpl> dependencies = checkDependencies(input);
263
264         /*
265          * All pre-flight checks done are at this point, the following
266          * steps can only fail in catastrophic scenarios (OOM and the
267          * like).
268          */
269
270         // Schedule a timeout for the instruction
271         final Timeout t = this.timer.newTimeout(new TimerTask() {
272             @Override
273             public void run(final Timeout timeout) {
274                 timeoutInstruction(input.getId());
275             }
276         }, left.longValue(), TimeUnit.NANOSECONDS);
277
278         // Put it into the instruction list
279         final SettableFuture<Instruction> ret = SettableFuture.create();
280         final InstructionImpl i = new InstructionImpl(new InstructionPusher(id, input.getDeadline()), ret, id, dependencies, t);
281         this.insns.put(id, i);
282
283         // Attach it into its dependencies
284         for (final InstructionImpl d : dependencies) {
285             d.addDependant(i);
286         }
287
288         /*
289          * All done. The next part is checking whether the instruction can
290          * run, which we can figure out after sending out the acknowledgement.
291          * This task should be ingress-weighed, so we reinsert it into the
292          * same execution service.
293          */
294         this.executor.submit(new Runnable() {
295             @Override
296             public void run() {
297                 tryScheduleInstruction(i);
298             }
299         });
300
301         return ret;
302     }
303
304     private synchronized void timeoutInstruction(final InstructionId id) {
305         final InstructionImpl i = this.insns.get(id);
306         if (i == null) {
307             LOG.warn("Instruction {} timed out, but not found in the queue", id);
308             return;
309         }
310
311         i.timeout();
312     }
313
314     private synchronized void tryScheduleDependants(final InstructionImpl i) {
315         // Walk all dependants and try to schedule them
316         final Iterator<InstructionImpl> it = i.getDependants();
317         while (it.hasNext()) {
318             tryScheduleInstruction(it.next());
319         }
320     }
321
322     private synchronized void tryScheduleInstruction(final InstructionImpl i) {
323         final ListenableFuture<ExecutionResult<Details>> f = i.ready();
324         if (f != null) {
325             Futures.addCallback(f, new FutureCallback<ExecutionResult<Details>>() {
326                 @Override
327                 public void onSuccess(final ExecutionResult<Details> result) {
328                     tryScheduleDependants(i);
329                 }
330
331                 @Override
332                 public void onFailure(final Throwable t) {
333                     LOG.error("Instruction {} failed to execute", i.getId(), t);
334                 }
335             });
336         }
337
338     }
339
340     @Override
341     public synchronized void close() {
342         try {
343             for (final InstructionImpl i : this.insns.values()) {
344                 i.tryCancel(null);
345             }
346         } finally {
347             final WriteTransaction t = this.dataProvider.newWriteOnlyTransaction();
348             t.delete(LogicalDatastoreType.OPERATIONAL, this.qid);
349             t.submit();
350         }
351     }
352 }