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

org.anyline.wechat.mp.util.WechatMPConfig Maven / Gradle / Ivy

There is a newer version: 8.7.2-20240916
Show newest version
/*
 * Copyright 2006-2023 www.anyline.org
 *
 * 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 org.anyline.wechat.mp.util;
 
import org.anyline.entity.DataRow;
import org.anyline.entity.DataSet;
import org.anyline.util.AnylineConfig;
import org.anyline.util.BasicUtil;
import org.anyline.util.ConfigTable;
import org.anyline.wechat.util.WechatConfig;

import java.util.Hashtable;
 
 
public class WechatMPConfig extends WechatConfig{
	public static String CONFIG_NAME = "anyline-wechat-mp.xml";
	private static Hashtable instances = new Hashtable<>();

	static{
		init();
		debug();
	}
	/**
	 * 解析配置文件内容
	 * @param content 配置文件内容
	 */
	public static void parse(String content){
		parse(WechatMPConfig.class, content, instances ,compatibles);
	}
	/**
	 * 初始化默认配置文件
	 */
	public static void init() {
		// 加载配置文件
		load();
	}

	public static HashtablegetInstances(){
		return instances;
	}
	public static WechatMPConfig getInstance(){
		return getInstance(DEFAULT_INSTANCE_KEY);
	}
	public static WechatMPConfig getInstance(String key){
		if(BasicUtil.isEmpty(key)){
			key = DEFAULT_INSTANCE_KEY;
		}

		if(ConfigTable.getReload() > 0 && (System.currentTimeMillis() - WechatMPConfig.lastLoadTime)/1000 > ConfigTable.getReload() ){
			// 重新加载
			load();
		}
		return (WechatMPConfig)instances.get(key);
	}

	public static WechatMPConfig parse(String instance, DataRow row){
		WechatMPConfig config = parse(WechatMPConfig.class, instance, row, instances,compatibles);
		WechatMPUtil.getInstance(instance);
		return config;
	}
	public static Hashtable parse(String column, DataSet set){
		for(DataRow row:set){
			String instance = row.getString(column);
			parse(instance, row);
		}
		return instances;
	}
	/**
	 * 加载配置文件
	 * 首先加载anyline-config.xml
	 * 然后加载anyline开头的xml文件并覆盖先加载的配置
	 */
	private synchronized static void load() {
		load(instances, WechatMPConfig.class,CONFIG_NAME ,compatibles);
		WechatMPConfig.lastLoadTime = System.currentTimeMillis();
	}
	private static void debug(){
	}

	public static WechatMPConfig register(String key, DataRow row){
		return parse(WechatMPConfig.class, key, row, instances,compatibles);
	}
	public static WechatMPConfig register(DataRow row){
		return register(DEFAULT_INSTANCE_KEY, row);
	}
} 




© 2015 - 2024 Weber Informatics LLC | Privacy Policy