blob: 441c590ffcb441c63d595e79be81bf28d5934e66 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.apache.geronimo.gshell.application.model;
import org.apache.geronimo.gshell.yarn.Yarn;
import java.io.File;
/**
* Branding configuration element.
*
* @version $Rev$ $Date$
*/
public class Branding
{
//
// FIXME: Merge with Application
//
private transient ApplicationModel parent;
private String name;
private String displayName;
private String programName;
private String userDirectory;
private String sharedDirectory;
// TODO: Need stateDirectory (${gshell.home}/var/<name>
private String profileScriptName;
private String historyFileName;
private String interactiveScriptName;
private String aboutMessage;
private String welcomeMessage;
private String goodbyeMessage;
private String prompt;
public String toString() {
return Yarn.render(this);
}
public ApplicationModel getParent() {
if (parent == null) {
throw new IllegalStateException("Not attached to parent");
}
return parent;
}
public void setParent(final ApplicationModel parent) {
this.parent = parent;
}
public String getName() {
if (name == null) {
return getParent().getArtifactId();
}
return name;
}
public void setName(final String name) {
this.name = name;
}
public String getDisplayName() {
if (displayName == null) {
return capitalise(getName());
}
return displayName;
}
private static String capitalise(final String str) {
if (str == null) {
return null;
}
else if (str.length() == 0) {
return "";
}
else {
return new StringBuilder(str.length())
.append(Character.toTitleCase(str.charAt(0)))
.append(str.substring(1))
.toString();
}
}
public void setDisplayName(final String displayName) {
this.displayName = displayName;
}
public String getProgramName() {
if (programName == null) {
return System.getProperty("program.name", getName());
}
return programName;
}
public void setProgramName(final String programName) {
this.programName = programName;
}
public String getUserDirectory() {
if (userDirectory == null) {
File userHome = new File(System.getProperty("user.home"));
File dir = new File(userHome, "." + getName());
return dir.getAbsolutePath();
}
return userDirectory;
}
public void setUserDirectory(final String userDirectory) {
this.userDirectory = userDirectory;
}
public String getSharedDirectory() {
//
// TODO: Default this to root under the application's directory
//
return sharedDirectory;
}
public void setSharedDirectory(final String sharedDirectory) {
this.sharedDirectory = sharedDirectory;
}
public String getProfileScriptName() {
if (profileScriptName == null) {
return getName() + ".profile";
}
return profileScriptName;
}
public void setProfileScriptName(final String profileScriptName) {
this.profileScriptName = profileScriptName;
}
public String getHistoryFileName() {
if (historyFileName == null) {
return getName() + ".history";
}
return historyFileName;
}
public File getHistoryFile() {
return new File(getUserDirectory(), getHistoryFileName());
}
public void setHistoryFileName(final String historyFileName) {
this.historyFileName = historyFileName;
}
public String getInteractiveScriptName() {
if (interactiveScriptName == null) {
return getName() + ".rc";
}
return interactiveScriptName;
}
public void setInteractiveScriptName(final String interactiveScriptName) {
this.interactiveScriptName = interactiveScriptName;
}
public String getAboutMessage() {
return aboutMessage;
}
public void setAboutMessage(final String aboutMessage) {
this.aboutMessage = aboutMessage;
}
public String getWelcomeMessage() {
return welcomeMessage;
}
public void setWelcomeMessage(final String welcomeMessage) {
this.welcomeMessage = welcomeMessage;
}
public String getGoodbyeMessage() {
return goodbyeMessage;
}
public void setGoodbyeMessage(final String goodbyeMessage) {
this.goodbyeMessage = goodbyeMessage;
}
public String getPrompt() {
return prompt;
}
public void setPrompt(final String prompt) {
this.prompt = prompt;
}
}