2 * Copyright (c) 2014 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.sample.toaster.provider;
10 import java.util.concurrent.Callable;
11 import java.util.concurrent.ExecutionException;
12 import java.util.concurrent.ExecutorService;
13 import java.util.concurrent.Executors;
14 import java.util.concurrent.Future;
15 import java.util.concurrent.atomic.AtomicLong;
16 import java.util.concurrent.atomic.AtomicReference;
18 import org.opendaylight.controller.config.yang.config.toaster_provider.impl.ToasterProviderRuntimeMXBean;
19 import org.opendaylight.controller.md.sal.binding.api.DataBroker;
20 import org.opendaylight.controller.md.sal.binding.api.DataChangeListener;
21 import org.opendaylight.controller.md.sal.binding.api.ReadWriteTransaction;
22 import org.opendaylight.controller.md.sal.binding.api.WriteTransaction;
23 import org.opendaylight.controller.md.sal.common.api.TransactionStatus;
24 import org.opendaylight.controller.md.sal.common.api.data.AsyncDataChangeEvent;
25 import org.opendaylight.controller.md.sal.common.api.data.LogicalDatastoreType;
26 import org.opendaylight.controller.md.sal.common.api.data.OptimisticLockFailedException;
27 import org.opendaylight.controller.sal.binding.api.NotificationProviderService;
28 import org.opendaylight.yang.gen.v1.http.netconfcentral.org.ns.toaster.rev091120.DisplayString;
29 import org.opendaylight.yang.gen.v1.http.netconfcentral.org.ns.toaster.rev091120.MakeToastInput;
30 import org.opendaylight.yang.gen.v1.http.netconfcentral.org.ns.toaster.rev091120.RestockToasterInput;
31 import org.opendaylight.yang.gen.v1.http.netconfcentral.org.ns.toaster.rev091120.Toaster;
32 import org.opendaylight.yang.gen.v1.http.netconfcentral.org.ns.toaster.rev091120.Toaster.ToasterStatus;
33 import org.opendaylight.yang.gen.v1.http.netconfcentral.org.ns.toaster.rev091120.ToasterBuilder;
34 import org.opendaylight.yang.gen.v1.http.netconfcentral.org.ns.toaster.rev091120.ToasterOutOfBreadBuilder;
35 import org.opendaylight.yang.gen.v1.http.netconfcentral.org.ns.toaster.rev091120.ToasterRestocked;
36 import org.opendaylight.yang.gen.v1.http.netconfcentral.org.ns.toaster.rev091120.ToasterRestockedBuilder;
37 import org.opendaylight.yang.gen.v1.http.netconfcentral.org.ns.toaster.rev091120.ToasterService;
38 import org.opendaylight.yangtools.yang.binding.DataObject;
39 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
40 import org.opendaylight.yangtools.yang.common.RpcError;
41 import org.opendaylight.yangtools.yang.common.RpcResultBuilder;
42 import org.opendaylight.yangtools.yang.common.RpcError.ErrorType;
43 import org.opendaylight.yangtools.yang.common.RpcResult;
44 import org.slf4j.Logger;
45 import org.slf4j.LoggerFactory;
47 import com.google.common.base.Function;
48 import com.google.common.base.Optional;
49 import com.google.common.util.concurrent.AsyncFunction;
50 import com.google.common.util.concurrent.FutureCallback;
51 import com.google.common.util.concurrent.Futures;
52 import com.google.common.util.concurrent.ListenableFuture;
53 import com.google.common.util.concurrent.SettableFuture;
55 public class OpendaylightToaster implements ToasterService, ToasterProviderRuntimeMXBean,
56 DataChangeListener, AutoCloseable {
58 private static final Logger LOG = LoggerFactory.getLogger(OpendaylightToaster.class);
60 public static final InstanceIdentifier<Toaster> TOASTER_IID = InstanceIdentifier.builder(Toaster.class).build();
62 private static final DisplayString TOASTER_MANUFACTURER = new DisplayString("Opendaylight");
63 private static final DisplayString TOASTER_MODEL_NUMBER = new DisplayString("Model 1 - Binding Aware");
65 private NotificationProviderService notificationProvider;
66 private DataBroker dataProvider;
68 private final ExecutorService executor;
70 // The following holds the Future for the current make toast task.
71 // This is used to cancel the current toast.
72 private final AtomicReference<Future<?>> currentMakeToastTask = new AtomicReference<>();
74 private final AtomicLong amountOfBreadInStock = new AtomicLong( 100 );
76 private final AtomicLong toastsMade = new AtomicLong(0);
78 // Thread safe holder for our darkness multiplier.
79 private final AtomicLong darknessFactor = new AtomicLong( 1000 );
81 public OpendaylightToaster() {
82 executor = Executors.newFixedThreadPool(1);
85 public void setNotificationProvider(final NotificationProviderService salService) {
86 this.notificationProvider = salService;
89 public void setDataProvider(final DataBroker salDataProvider) {
90 this.dataProvider = salDataProvider;
91 setToasterStatusUp( null );
95 * Implemented from the AutoCloseable interface.
98 public void close() throws ExecutionException, InterruptedException {
99 // When we close this service we need to shutdown our executor!
102 if (dataProvider != null) {
103 WriteTransaction t = dataProvider.newWriteOnlyTransaction();
104 t.delete(LogicalDatastoreType.OPERATIONAL,TOASTER_IID);
105 ListenableFuture<RpcResult<TransactionStatus>> future = t.commit();
106 Futures.addCallback( future, new FutureCallback<RpcResult<TransactionStatus>>() {
108 public void onSuccess( RpcResult<TransactionStatus> result ) {
109 LOG.debug( "Delete Toaster commit result: " + result );
113 public void onFailure( Throwable t ) {
114 LOG.error( "Delete of Toaster failed", t );
120 private Toaster buildToaster( ToasterStatus status ) {
122 // note - we are simulating a device whose manufacture and model are
123 // fixed (embedded) into the hardware.
124 // This is why the manufacture and model number are hardcoded.
125 return new ToasterBuilder().setToasterManufacturer( TOASTER_MANUFACTURER )
126 .setToasterModelNumber( TOASTER_MODEL_NUMBER )
127 .setToasterStatus( status )
132 * Implemented from the DataChangeListener interface.
135 public void onDataChanged( final AsyncDataChangeEvent<InstanceIdentifier<?>, DataObject> change ) {
136 DataObject dataObject = change.getUpdatedSubtree();
137 if( dataObject instanceof Toaster )
139 Toaster toaster = (Toaster) dataObject;
140 Long darkness = toaster.getDarknessFactor();
141 if( darkness != null )
143 darknessFactor.set( darkness );
149 * RPC call implemented from the ToasterService interface that cancels the current
153 public Future<RpcResult<Void>> cancelToast() {
155 Future<?> current = currentMakeToastTask.getAndSet( null );
156 if( current != null ) {
157 current.cancel( true );
160 // Always return success from the cancel toast call.
161 return Futures.immediateFuture( RpcResultBuilder.<Void> success().build() );
165 * RPC call implemented from the ToasterService interface that attempts to make toast.
168 public Future<RpcResult<Void>> makeToast(final MakeToastInput input) {
169 LOG.info("makeToast: " + input);
171 final SettableFuture<RpcResult<Void>> futureResult = SettableFuture.create();
173 checkStatusAndMakeToast( input, futureResult );
178 private RpcError makeToasterOutOfBreadError() {
179 return RpcResultBuilder.newError( ErrorType.APPLICATION, "resource-denied",
180 "Toaster is out of bread", "out-of-stock", null, null );
183 private RpcError makeToasterInUseError() {
184 return RpcResultBuilder.newWarning( ErrorType.APPLICATION, "in-use",
185 "Toaster is busy", null, null, null );
188 private void checkStatusAndMakeToast( final MakeToastInput input,
189 final SettableFuture<RpcResult<Void>> futureResult ) {
191 // Read the ToasterStatus and, if currently Up, try to write the status to Down.
192 // If that succeeds, then we essentially have an exclusive lock and can proceed
195 final ReadWriteTransaction tx = dataProvider.newReadWriteTransaction();
196 ListenableFuture<Optional<DataObject>> readFuture =
197 tx.read( LogicalDatastoreType.OPERATIONAL, TOASTER_IID );
199 final ListenableFuture<RpcResult<TransactionStatus>> commitFuture =
200 Futures.transform( readFuture, new AsyncFunction<Optional<DataObject>,
201 RpcResult<TransactionStatus>>() {
204 public ListenableFuture<RpcResult<TransactionStatus>> apply(
205 Optional<DataObject> toasterData ) throws Exception {
207 ToasterStatus toasterStatus = ToasterStatus.Up;
208 if( toasterData.isPresent() ) {
209 toasterStatus = ((Toaster)toasterData.get()).getToasterStatus();
212 LOG.debug( "Read toaster status: {}", toasterStatus );
214 if( toasterStatus == ToasterStatus.Up ) {
217 LOG.debug( "Toaster is out of bread" );
219 return Futures.immediateFuture( RpcResultBuilder.<TransactionStatus>failed()
220 .withRpcError( makeToasterOutOfBreadError() ).build() );
223 LOG.debug( "Setting Toaster status to Down" );
225 // We're not currently making toast - try to update the status to Down
226 // to indicate we're going to make toast. This acts as a lock to prevent
227 // concurrent toasting.
228 tx.put( LogicalDatastoreType.OPERATIONAL, TOASTER_IID,
229 buildToaster( ToasterStatus.Down ) );
233 LOG.debug( "Oops - already making toast!" );
235 // Return an error since we are already making toast. This will get
236 // propagated to the commitFuture below which will interpret the null
237 // TransactionStatus in the RpcResult as an error condition.
238 return Futures.immediateFuture( RpcResultBuilder.<TransactionStatus>failed()
239 .withRpcError( makeToasterInUseError() ).build() );
243 Futures.addCallback( commitFuture, new FutureCallback<RpcResult<TransactionStatus>>() {
245 public void onSuccess( RpcResult<TransactionStatus> result ) {
246 if( result.getResult() == TransactionStatus.COMMITED ) {
249 currentMakeToastTask.set( executor.submit(
250 new MakeToastTask( input, futureResult ) ) );
253 LOG.debug( "Setting error result" );
255 // Either the transaction failed to commit for some reason or, more likely,
256 // the read above returned ToasterStatus.Down. Either way, fail the
257 // futureResult and copy the errors.
259 futureResult.set( RpcResultBuilder.<Void>failed().withRpcErrors(
260 result.getErrors() ).build() );
265 public void onFailure( Throwable ex ) {
266 if( ex instanceof OptimisticLockFailedException ) {
268 // Another thread is likely trying to make toast simultaneously and updated the
269 // status before us. Try reading the status again - if another make toast is
270 // now in progress, we should get ToasterStatus.Down and fail.
272 LOG.debug( "Got OptimisticLockFailedException - trying again" );
274 checkStatusAndMakeToast( input, futureResult );
278 LOG.error( "Failed to commit Toaster status", ex );
280 // Got some unexpected error so fail.
281 futureResult.set( RpcResultBuilder.<Void> failed()
282 .withError( ErrorType.APPLICATION, ex.getMessage() ).build() );
289 * RestConf RPC call implemented from the ToasterService interface.
290 * Restocks the bread for the toaster, resets the toastsMade counter to 0, and sends a
291 * ToasterRestocked notification.
294 public Future<RpcResult<java.lang.Void>> restockToaster(final RestockToasterInput input) {
295 LOG.info( "restockToaster: " + input );
297 amountOfBreadInStock.set( input.getAmountOfBreadToStock() );
299 if( amountOfBreadInStock.get() > 0 ) {
300 ToasterRestocked reStockedNotification = new ToasterRestockedBuilder()
301 .setAmountOfBread( input.getAmountOfBreadToStock() ).build();
302 notificationProvider.publish( reStockedNotification );
305 return Futures.immediateFuture( RpcResultBuilder.<Void> success().build() );
309 * JMX RPC call implemented from the ToasterProviderRuntimeMXBean interface.
312 public void clearToastsMade() {
313 LOG.info( "clearToastsMade" );
318 * Accesssor method implemented from the ToasterProviderRuntimeMXBean interface.
321 public Long getToastsMade() {
322 return toastsMade.get();
325 private void setToasterStatusUp( final Function<Boolean,Void> resultCallback ) {
327 WriteTransaction tx = dataProvider.newWriteOnlyTransaction();
328 tx.put( LogicalDatastoreType.OPERATIONAL,TOASTER_IID, buildToaster( ToasterStatus.Up ) );
330 ListenableFuture<RpcResult<TransactionStatus>> commitFuture = tx.commit();
332 Futures.addCallback( commitFuture, new FutureCallback<RpcResult<TransactionStatus>>() {
334 public void onSuccess( RpcResult<TransactionStatus> result ) {
335 if( result.getResult() != TransactionStatus.COMMITED ) {
336 LOG.error( "Failed to update toaster status: " + result.getErrors() );
339 notifyCallback( result.getResult() == TransactionStatus.COMMITED );
343 public void onFailure( Throwable t ) {
344 // We shouldn't get an OptimisticLockFailedException (or any ex) as no
345 // other component should be updating the operational state.
346 LOG.error( "Failed to update toaster status", t );
348 notifyCallback( false );
351 void notifyCallback( boolean result ) {
352 if( resultCallback != null ) {
353 resultCallback.apply( result );
359 private boolean outOfBread()
361 return amountOfBreadInStock.get() == 0;
364 private class MakeToastTask implements Callable<Void> {
366 final MakeToastInput toastRequest;
367 final SettableFuture<RpcResult<Void>> futureResult;
369 public MakeToastTask( final MakeToastInput toastRequest,
370 final SettableFuture<RpcResult<Void>> futureResult ) {
371 this.toastRequest = toastRequest;
372 this.futureResult = futureResult;
379 // make toast just sleeps for n seconds per doneness level.
380 long darknessFactor = OpendaylightToaster.this.darknessFactor.get();
381 Thread.sleep(darknessFactor * toastRequest.getToasterDoneness());
384 catch( InterruptedException e ) {
385 LOG.info( "Interrupted while making the toast" );
388 toastsMade.incrementAndGet();
390 amountOfBreadInStock.getAndDecrement();
392 LOG.info( "Toaster is out of bread!" );
394 notificationProvider.publish( new ToasterOutOfBreadBuilder().build() );
397 // Set the Toaster status back to up - this essentially releases the toasting lock.
398 // We can't clear the current toast task nor set the Future result until the
399 // update has been committed so we pass a callback to be notified on completion.
401 setToasterStatusUp( new Function<Boolean,Void>() {
403 public Void apply( Boolean result ) {
405 currentMakeToastTask.set( null );
407 LOG.debug("Toast done");
409 futureResult.set( RpcResultBuilder.<Void>success().build() );