X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fconfig%2Fnetty-timer-config%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fconfig%2Fyang%2Fnetty%2Ftimer%2FHashedWheelTimerModule.java;h=d1d55405a96a825ff23c44a00f4b9b10e80eec17;hb=refs%2Fchanges%2F82%2F38282%2F6;hp=cc78124680990d61474eaa9523e85c7aae0e23da;hpb=ac98a714cab7bb4bca57b3a059dc618aabd4fbcc;p=controller.git diff --git a/opendaylight/config/netty-timer-config/src/main/java/org/opendaylight/controller/config/yang/netty/timer/HashedWheelTimerModule.java b/opendaylight/config/netty-timer-config/src/main/java/org/opendaylight/controller/config/yang/netty/timer/HashedWheelTimerModule.java index cc78124680..d1d55405a9 100644 --- a/opendaylight/config/netty-timer-config/src/main/java/org/opendaylight/controller/config/yang/netty/timer/HashedWheelTimerModule.java +++ b/opendaylight/config/netty-timer-config/src/main/java/org/opendaylight/controller/config/yang/netty/timer/HashedWheelTimerModule.java @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2013 Cisco Systems, Inc. and others. All rights reserved. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v1.0 which accompanies this distribution, + * and is available at http://www.eclipse.org/legal/epl-v10.html + */ + /** * Generated file @@ -9,21 +17,21 @@ */ package org.opendaylight.controller.config.yang.netty.timer; -import io.netty.util.HashedWheelTimer; -import io.netty.util.Timeout; +import com.google.common.reflect.AbstractInvocationHandler; +import com.google.common.reflect.Reflection; import io.netty.util.Timer; -import io.netty.util.TimerTask; - -import java.util.Set; -import java.util.concurrent.TimeUnit; - +import java.lang.reflect.Method; import org.opendaylight.controller.config.api.JmxAttributeValidationException; +import org.opendaylight.controller.config.api.osgi.WaitingServiceTracker; +import org.osgi.framework.BundleContext; /** -* -*/ + * @deprecated Replaced by blueprint wiring + */ +@Deprecated public final class HashedWheelTimerModule extends org.opendaylight.controller.config.yang.netty.timer.AbstractHashedWheelTimerModule { + private BundleContext bundleContext; public HashedWheelTimerModule(org.opendaylight.controller.config.api.ModuleIdentifier identifier, org.opendaylight.controller.config.api.DependencyResolver dependencyResolver) { @@ -50,50 +58,29 @@ public final class HashedWheelTimerModule extends } @Override - public java.lang.AutoCloseable createInstance() { - TimeUnit unit = TimeUnit.MILLISECONDS; - if (getTickDuration() != null && getThreadFactoryDependency() == null && getTicksPerWheel() == null) { - return new HashedWheelTimerCloseable(new HashedWheelTimer(getTickDuration(), unit)); - } - if (getTickDuration() != null && getThreadFactoryDependency() == null && getTicksPerWheel() != null) { - return new HashedWheelTimerCloseable(new HashedWheelTimer(getTickDuration(), unit, getTicksPerWheel())); - } - if (getTickDuration() == null && getThreadFactoryDependency() != null && getTicksPerWheel() == null) { - return new HashedWheelTimerCloseable(new HashedWheelTimer(getThreadFactoryDependency())); - } - if (getTickDuration() != null && getThreadFactoryDependency() != null && getTicksPerWheel() == null) { - return new HashedWheelTimerCloseable(new HashedWheelTimer(getThreadFactoryDependency(), getTickDuration(), - unit)); - } - if (getTickDuration() != null && getThreadFactoryDependency() != null && getTicksPerWheel() != null) { - return new HashedWheelTimerCloseable(new HashedWheelTimer(getThreadFactoryDependency(), getTickDuration(), - unit, getTicksPerWheel())); - } - return new HashedWheelTimerCloseable(new HashedWheelTimer()); + public AutoCloseable createInstance() { + // The service is provided via blueprint so wait for and return it here for backwards compatibility. + final WaitingServiceTracker tracker = WaitingServiceTracker.create( + Timer.class, bundleContext, "(type=global-timer)"); + final Timer timer = tracker.waitForService(WaitingServiceTracker.FIVE_MINUTES); + + return Reflection.newProxy(AutoCloseableTimerInterface.class, new AbstractInvocationHandler() { + @Override + protected Object handleInvocation(Object proxy, Method method, Object[] args) throws Throwable { + if (method.getName().equals("close")) { + tracker.close(); + return null; + } else { + return method.invoke(timer, args); + } + } + }); } - static final private class HashedWheelTimerCloseable implements AutoCloseable, Timer { - - private final Timer timer; - - public HashedWheelTimerCloseable(Timer timer) { - this.timer = timer; - } - - @Override - public void close() throws Exception { - stop(); - } - - @Override - public Timeout newTimeout(TimerTask task, long delay, TimeUnit unit) { - return this.timer.newTimeout(task, delay, unit); - } - - @Override - public Set stop() { - return this.timer.stop(); - } + public void setBundleContext(BundleContext bundleContext) { + this.bundleContext = bundleContext; + } + private static interface AutoCloseableTimerInterface extends Timer, AutoCloseable { } }