All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ninja.scheduler.SchedulerSupport Maven / Gradle / Ivy

There is a newer version: 7.0.0
Show newest version
/**
 * Copyright (C) 2012-2016 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package ninja.scheduler;

import com.google.inject.AbstractModule;
import com.google.inject.Module;
import com.google.inject.TypeLiteral;
import com.google.inject.matcher.Matchers;
import com.google.inject.spi.InjectionListener;
import com.google.inject.spi.TypeEncounter;
import com.google.inject.spi.TypeListener;

/**
 * Support for scheduling using annotations
 *
 * @since 1.0.0
 * @author James Roper
 */
public class SchedulerSupport {

    /**
     * Get the scheduler support module
     */
    public static Module getModule() {
        return new SchedulerSupport().constructModule();
    }

    private SchedulerSupport() {
    }

    private static class SchedulableListener implements TypeListener {
        private final Scheduler scheduler;

        private SchedulableListener(Scheduler scheduler) {
            this.scheduler = scheduler;
        }

        @Override
        public  void hear(TypeLiteral type, TypeEncounter encounter) {
            if (scheduler.hasScheduledMethod(type.getRawType())) {
                // Add the listener
                encounter.register(new ScheduleListener(scheduler));
            }
        }
    }

    private static class ScheduleListener implements InjectionListener {
        private final Scheduler scheduler;

        private ScheduleListener(Scheduler scheduler) {
            this.scheduler = scheduler;
        }

        @Override
        public void afterInjection(final I injectee) {
            scheduler.schedule(injectee);
        }
    }

    private Module constructModule() {
        return new AbstractModule() {
            @Override
            protected void configure() {
                Scheduler scheduler = new Scheduler();
                requestInjection(scheduler);
                bindListener(Matchers.any(), new SchedulableListener(scheduler));
                bind(Scheduler.class).toInstance(scheduler);
            }
        };
    }
}