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

org.yx.common.StartContext Maven / Gradle / Ivy

There is a newer version: 4.0.2
Show newest version
/**
 * Copyright (C) 2016 - 2030 youtongluan.
 *
 * 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.yx.common;

import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;

import org.yx.conf.AppInfo;
import org.yx.util.StringUtil;

public class StartContext {

	public static StartContext inst = new StartContext();

	private Map map = new ConcurrentHashMap<>();

	public void put(String key, Object obj) {
		map.put(key, obj);
	}

	public void put(Class clz, Object obj) {
		map.put(clz.getName(), obj);
	}

	public Object get(String key) {
		return map.get(key);
	}

	public Object get(Class clz) {
		return map.get(clz.getName());
	}

	@SuppressWarnings("unchecked")
	public  T getOrCreate(String key, T t) {
		if (map.containsKey(key)) {
			return (T) map.get(key);
		}
		map.put(key, t);
		return t;
	}

	public  T getOrCreate(Class clz, T t) {
		return this.getOrCreate(clz.getName(), t);
	}

	public static void clear() {
		inst.map = null;
		inst = null;
	}

	public static void startFail() {
		if (AppInfo.getBoolean("sumk.exitIfFail", true)) {
			System.exit(-1);
		}
	}

	public static String soaHostInzk() {
		return get("soa.zk.host", null);
	}

	public static String soaHost() {
		return get("soa.host", AppInfo.getIp());
	}

	public static int soaPort() {
		return getInt("soa.port", -1);
	}

	public static int soaPortInZk() {
		return getInt("soa.zk.port", -1);
	}

	public static String httpHost() {
		return get("http.host", AppInfo.get("http.host"));
	}

	public static int httpPort() {
		return getInt("http.port", -1);
	}

	private static int getInt(String name, int defaultValue) {
		Integer p = Integer.getInteger(name);
		if (p != null) {
			return p.intValue();
		}
		return AppInfo.getInt(name, defaultValue);
	}

	private static String get(String name, String defaultValue) {
		String v = System.getProperty(name);
		if (StringUtil.isNotEmpty(v)) {
			return v;
		}
		return AppInfo.get(name, defaultValue);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy