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

prompto.config.ServerConfiguration Maven / Gradle / Ivy

There is a newer version: 0.1.57
Show newest version
package prompto.config;

import java.util.Map;
import java.util.function.Supplier;

import com.esotericsoftware.yamlbeans.YamlException;
import com.esotericsoftware.yamlbeans.document.YamlMapping;

@SuppressWarnings("unchecked")
public class ServerConfiguration extends RuntimeConfiguration implements IServerConfiguration {

	Supplier httpConfiguration;
	Supplier serverAboutToStartMethod;
	Supplier webSiteRoot;
	Supplier useConsole;

	public ServerConfiguration(IConfigurationReader reader, Map arguments) {
		super(reader, arguments);
		this.httpConfiguration = ()->readHttpConfiguration();
		this.serverAboutToStartMethod = ()->reader.getString("serverAboutToStart");
		this.webSiteRoot = ()->reader.getString("webSiteRoot");
		this.useConsole = ()->reader.getBooleanOrDefault("useConsole", false);
	}

	private IHttpConfiguration readHttpConfiguration() {
		IConfigurationReader child = reader.getObject("http");
		return child==null ? null : new HttpConfiguration(child);
	}

	@Override public IHttpConfiguration getHttpConfiguration() { return httpConfiguration.get(); }
	@Override public String getServerAboutToStartMethod() { return serverAboutToStartMethod.get(); }
	@Override public String getWebSiteRoot() { return webSiteRoot.get(); }
	@Override public boolean useConsole() { return useConsole.get(); }
	
	@Override
	public  T withServerAboutToStartMethod(String method) {
		this.serverAboutToStartMethod = ()->method;
		return (T)this;
	}
	
	@Override
	public  T withHttpConfiguration(IHttpConfiguration config) {
		this.httpConfiguration = ()->config;
		return (T)this;
	}
	
	@Override
	public  T withUseConsole(boolean set) {
		this.useConsole = ()->set;
		return (T)this;
	}

	@Override
	public YamlMapping toYaml() throws YamlException {
		YamlMapping yaml = super.toYaml();
		IHttpConfiguration http = httpConfiguration.get();
		if(http!=null)
			yaml.setEntry("http", http.toYaml());
		String value = serverAboutToStartMethod.get();
		if(value!=null)
			yaml.setEntry("serverAboutToStart", value);
		value = webSiteRoot.get();
		if(value!=null)
			yaml.setEntry("webSiteRoot", value);
		boolean flag = useConsole.get();
		if(flag)
			yaml.setEntry("useConsole", flag);
		return yaml;
	}


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy