Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

timeout for command execution #705

Merged
merged 1 commit into from
Dec 10, 2013
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions src/org/opensolaris/opengrok/configuration/Configuration.java
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ public final class Configuration {
private boolean chattyStatusPage;
private final Map<String, String> cmds;
private int tabSize;
private int command_timeout;
private static final Logger logger = Logger.getLogger(Configuration.class.getName());

/**
Expand Down Expand Up @@ -161,6 +162,14 @@ public void setScanningDepth(int scanningDepth) {
this.scanningDepth = scanningDepth;
}

public int getCommandTimeout() {
return command_timeout;
}

public void setCommandTimeout(int timeout) {
this.command_timeout = timeout;
}

/**
* Creates a new instance of Configuration
*/
Expand Down Expand Up @@ -202,6 +211,7 @@ public Configuration() {
cmds = new HashMap<String, String>();
setSourceRoot(null);
setDataRoot(null);
setCommandTimeout(600); // 10 minutes
}

public String getRepoCmd(String clazzName) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,14 @@ public void setScanningDepth(int scanningDepth) {
threadConfig.get().setScanningDepth(scanningDepth);
}

public int getCommandTimeout() {
return threadConfig.get().getCommandTimeout();
}

public void setCommandTimeout(int timeout) {
threadConfig.get().setCommandTimeout(timeout);
}

/**
* Get the path to the where the index database is stored
*
Expand Down Expand Up @@ -894,7 +902,8 @@ public void run() {

if (obj instanceof Configuration) {
setConfiguration((Configuration) obj);
log.log(Level.INFO, "Configuration updated: {0}", configuration.getSourceRoot());
log.log(Level.INFO, "Configuration updated: {0}",
configuration.getSourceRoot());
}
} catch (IOException e) {
log.log(Level.SEVERE, "Error reading config file: ", e);
Expand Down
45 changes: 34 additions & 11 deletions src/org/opensolaris/opengrok/util/Executor.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,12 @@
import java.lang.Thread.UncaughtExceptionHandler;
import java.util.Arrays;
import java.util.List;
import java.util.Timer;
import java.util.TimerTask;
import java.util.logging.Level;
import java.util.logging.Logger;

import org.opensolaris.opengrok.configuration.RuntimeEnvironment;
import org.opensolaris.opengrok.OpenGrokLogger;

/**
Expand Down Expand Up @@ -110,12 +113,21 @@ public int exec(boolean reportExceptions) {
*/
public int exec(final boolean reportExceptions, StreamHandler handler) {
int ret = -1;

ProcessBuilder processBuilder = new ProcessBuilder(cmdList);
final String cmd_str = processBuilder.command().toString();
final String dir_str;
File cwd = processBuilder.directory();
if (cwd == null) {
dir_str = System.getProperty("user.dir");
} else {
dir_str = cwd.toString();
}

if (workingDirectory != null) {
processBuilder.directory(workingDirectory);
if (processBuilder.environment().containsKey("PWD")) {
processBuilder.environment().put("PWD", workingDirectory.getAbsolutePath());
processBuilder.environment().put("PWD",
workingDirectory.getAbsolutePath());
}
}

Expand All @@ -129,6 +141,7 @@ public int exec(final boolean reportExceptions, StreamHandler handler) {
Process process = null;
try {
process = processBuilder.start();
final Process proc = process;

final InputStream errorStream = process.getErrorStream();
final SpoolHandler err = new SpoolHandler();
Expand All @@ -148,9 +161,24 @@ public void run() {
});
thread.start();

/*
* Setup timer so if the process get stuck we can terminate it and
* make progress instead of hanging the whole indexer.
*/
Timer t = new Timer();
t.schedule(new TimerTask() {
@Override public void run() {
OpenGrokLogger.getLogger().log(Level.INFO,
"Terminating process of command {0} in directory {1} " +
"due to timeout", new Object[]{cmd_str, dir_str});
proc.destroy();
}
}, RuntimeEnvironment.getInstance().getCommandTimeout() * 1000);

handler.processStream(process.getInputStream());

ret = process.waitFor();
t.cancel();
process = null;
thread.join();
stderr = err.getBytes();
Expand All @@ -175,17 +203,12 @@ public void run() {
}

if (ret != 0 && reportExceptions) {
int MAX_MSG_SZ = 512; /* limit to avoid floodding the logs */
int MAX_MSG_SZ = 512; /* limit to avoid flooding the logs */
StringBuilder msg = new StringBuilder("Non-zero exit status ")
.append(ret).append(" from command ")
.append(processBuilder.command().toString())
.append(" in directory ");
File cwd = processBuilder.directory();
if (cwd == null) {
msg.append(System.getProperty("user.dir"));
} else {
msg.append(cwd.toString());
}
.append(cmd_str)
.append(" in directory ")
.append(dir_str);
if (stderr != null && stderr.length > 0) {
msg.append(": ");
if (stderr.length > MAX_MSG_SZ) {
Expand Down