Package net.hasor.plugins.anno.setting

Source Code of net.hasor.plugins.anno.setting.SettingsPlugin

/*
* Copyright 2008-2009 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 net.hasor.plugins.anno.setting;
import static net.hasor.core.EventContext.ContextEvent_Started;
import java.util.List;
import java.util.Set;
import net.hasor.core.ApiBinder;
import net.hasor.core.AppContext;
import net.hasor.core.Environment;
import net.hasor.core.EventListener;
import net.hasor.core.Hasor;
import net.hasor.core.Module;
import net.hasor.core.Provider;
import net.hasor.core.SettingsListener;
import net.hasor.quick.plugin.Plugin;
/**
* 提供 <code>@Settings</code>注解 功能支持。
* @version : 2013-9-13
* @author 赵永春 (zyc@byshell.org)
*/
@Plugin
public class SettingsPlugin implements Module {
    public void loadModule(ApiBinder apiBinder) {
        this.loadAnnoSettings(apiBinder);
        //
        final Environment env = apiBinder.getEnvironment();
        apiBinder.pushListener(ContextEvent_Started, new EventListener() {
            public void onEvent(String event, Object[] params) {
                AppContext appContext = (AppContext) params[0];
                List<Provider<SettingsListener>> settingProvider = appContext.findBindingProvider(SettingsListener.class);
                if (settingProvider == null)
                    return;
                for (Provider<SettingsListener> provider : settingProvider) {
                    SettingsListener target = provider.get();
                    target.reload(appContext.getSettings());
                    env.addSettingsListener(target);
                    Hasor.logInfo("%s SettingsListener created.", target);
                }
            }
        });
    }
    /**装载注解形式的SettingsListener*/
    private void loadAnnoSettings(ApiBinder apiBinder) {
        final Environment env = apiBinder.getEnvironment();
        Set<Class<?>> settingSet = env.findClass(Settings.class);
        if (settingSet == null || settingSet.isEmpty())
            return;
        for (Class<?> settingClass : settingSet) {
            if (SettingsListener.class.isAssignableFrom(settingClass) == false) {
                Hasor.logWarn("not implemented SettingsListener :%s", settingClass);
                continue;
            }
            apiBinder.bindType(SettingsListener.class, (Class<SettingsListener>) settingClass).asEagerSingleton();
            Hasor.logInfo("%s bind SettingsListener.", settingClass);
        }
    }
}
TOP

Related Classes of net.hasor.plugins.anno.setting.SettingsPlugin

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.