/* * Copyright 2012-2017 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 org.springframework.boot.gradle.tasks.bundling; import java.io.File; import java.io.IOException; import java.io.Serializable; import java.util.HashMap; import java.util.Map; import org.springframework.boot.loader.tools.FileUtils; /** * Encapsulates the configuration of the launch script for an executable jar or war. * * @author Andy Wilkinson * @since 2.0.0 */ public class LaunchScriptConfiguration implements Serializable { private boolean included = false; private final Map<String, String> properties = new HashMap<String, String>(); private File script; /** * Returns whether the launch script is included. Defaults to {@code false}. * * @return {@code true} is the script is included, otherwise {@code false}. */ public boolean isIncluded() { return this.included; } /** * Sets whether the launch script is included. Defaults to {@code false}. * * @param included {@code true} is the script is included, otherwise {@code false}. */ public void setIncluded(boolean included) { this.included = included; } /** * Returns the properties that are applied to the launch script when it's being * including in the executable archive. * * @return the properties */ public Map<String, String> getProperties() { return this.properties; } /** * Sets the properties that are applied to the launch script when it's being including * in the executable archive. * * @param properties the properties */ public void properties(Map<String, String> properties) { this.properties.putAll(properties); } /** * Returns the script {@link File} that will be included in the executable archive. * When {@code null}, the default launch script will be used. * * @return the script file */ public File getScript() { return this.script; } /** * Sets the script {@link File} that will be included in the executable archive. When * {@code null}, the default launch script will be used. * * @param script the script file */ public void setScript(File script) { this.script = script; } @Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + (this.included ? 1231 : 1237); result = prime * result + ((this.properties == null) ? 0 : this.properties.hashCode()); result = prime * result + ((this.script == null) ? 0 : this.script.hashCode()); return result; } @Override public boolean equals(Object obj) { if (this == obj) { return true; } if (obj == null) { return false; } if (getClass() != obj.getClass()) { return false; } LaunchScriptConfiguration other = (LaunchScriptConfiguration) obj; if (this.included != other.included) { return false; } if (!this.properties.equals(other.properties)) { return false; } if (this.script == null) { if (other.script != null) { return false; } } else if (!this.script.equals(other.script)) { return false; } else if (!equalContents(this.script, other.script)) { return false; } return true; } private boolean equalContents(File one, File two) { try { return FileUtils.sha1Hash(one).equals(FileUtils.sha1Hash(two)); } catch (IOException ex) { return false; } } }