Navigation Menu

Skip to content

Commit

Permalink
JENKINS-8658 let getHomeDir gather information about where it finds i…
Browse files Browse the repository at this point in the history
…ts location. Useful for troubleshooting.
  • Loading branch information
lacostej committed Feb 3, 2011
1 parent 8e432f8 commit 4f857bc
Showing 1 changed file with 28 additions and 12 deletions.
40 changes: 28 additions & 12 deletions core/src/main/java/hudson/WebAppMain.java
Expand Up @@ -113,9 +113,10 @@ public Locale get() {

installLogger();

final File home = getHomeDir(event).getAbsoluteFile();
final FileAndDescription describedHomeDir = getHomeDir(event);
final File home = describedHomeDir.file.getAbsoluteFile();
home.mkdirs();
System.out.println("hudson home directory: "+home);
System.out.println("hudson home directory: "+home+" found at: "+describedHomeDir.description);

// check that home exists (as mkdirs could have failed silently), otherwise throw a meaningful error
if (! home.exists()) {
Expand Down Expand Up @@ -260,6 +261,16 @@ private void installLogger() {
Logger.getLogger("hudson").addHandler(handler);
}

/** Add some metadata to a File, allowing to trace setup issues */
private class FileAndDescription {
File file;
String description;
public FileAndDescription(File file,String description) {
this.file = file;
this.description = description;
}
}

/**
* Determines the home directory for Jenkins.
*
Expand All @@ -269,20 +280,23 @@ private void installLogger() {
* <p>
* People makes configuration mistakes, so we are trying to be nice
* with those by doing {@link String#trim()}.
*
* <p>
* @return the File alongside with some description to help the user troubleshoot issues
*/
private File getHomeDir(ServletContextEvent event) {
private FileAndDescription getHomeDir(ServletContextEvent event) {
// check JNDI for the home directory first
for (String name : HOME_NAMES) {
try {
InitialContext iniCtxt = new InitialContext();
Context env = (Context) iniCtxt.lookup("java:comp/env");
String value = (String) env.lookup(name);
if(value!=null && value.trim().length()>0)
return new File(value.trim());
return new FileAndDescription(new File(value.trim()),"JNDI/java:comp/env/"+name);
// look at one more place. See issue #1314
value = (String) iniCtxt.lookup(name);
if(value!=null && value.trim().length()>0)
return new File(value.trim());
return new FileAndDescription(new File(value.trim()),"JNDI/"+name);
} catch (NamingException e) {
// ignore
}
Expand All @@ -292,14 +306,14 @@ private File getHomeDir(ServletContextEvent event) {
for (String name : HOME_NAMES) {
String sysProp = System.getProperty(name);
if(sysProp!=null)
return new File(sysProp.trim());
return new FileAndDescription(new File(sysProp.trim()),"System.getProperty(\""+name+"\")");
}

// look at the env var next
for (String name : HOME_NAMES) {
String env = EnvVars.masterEnvVars.get(name);
if(env!=null)
return new File(env.trim()).getAbsoluteFile();
return new FileAndDescription(new File(env.trim()).getAbsoluteFile(),"EnvVars.masterEnvVars.get(\""+name+"\")");
}

// otherwise pick a place by ourselves
Expand All @@ -311,14 +325,16 @@ private File getHomeDir(ServletContextEvent event) {
// Hudson <1.42 used to prefer this before ~/.hudson, so
// check the existence and if it's there, use it.
// otherwise if this is a new installation, prefer ~/.hudson
return ws;
return new FileAndDescription(ws,"getServletContext().getRealPath(\"/WEB-INF/workspace\")");
}

File legacyHome = new File(new File(System.getProperty("user.home")), ".hudson");
if (legacyHome.exists())
return legacyHome; // before rename, this is where it was stored
File legacyHome = new File(new File(System.getProperty("user.home")),".hudson");
if (legacyHome.exists()) {
return new FileAndDescription(legacyHome,"$user.home/.hudson"); // before rename, this is where it was stored
}

return new File(new File(System.getProperty("user.home")), ".jenkins");
File newHome = new File(new File(System.getProperty("user.home")),".jenkins");
return new FileAndDescription(newHome,"$user.home/.jenkins");
}

public void contextDestroyed(ServletContextEvent event) {
Expand Down

0 comments on commit 4f857bc

Please sign in to comment.