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

org.artofsolving.jodconverter.process.LinuxProcessManager Maven / Gradle / Ivy

The newest version!
//
// JODConverter - Java OpenDocument Converter
// Copyright 2004-2012 Mirko Nasato and contributors
//
// JODConverter is Open Source software, you can redistribute it and/or
// modify it under either (at your option) of the following licenses
//
// 1. The GNU Lesser General Public License v3 (or later)
//    -> http://www.gnu.org/licenses/lgpl-3.0.txt
// 2. The Apache License, Version 2.0
//    -> http://www.apache.org/licenses/LICENSE-2.0.txt
//
package org.artofsolving.jodconverter.process;

import java.io.IOException;
import java.util.List;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

import org.apache.commons.io.IOUtils;

/**
 * {@link ProcessManager} implementation for Linux. Uses the ps
 * and kill commands.
 * 

* Should Work on Solaris too, except that the command line string * returned by ps there is limited to 80 characters and this affects * {@link #findPid(String)}. */ public class LinuxProcessManager implements ProcessManager { private static final Pattern PS_OUTPUT_LINE = Pattern.compile("^\\s*(\\d+)\\s+(.*)$"); private String[] runAsArgs; public void setRunAsArgs(String... runAsArgs) { this.runAsArgs = runAsArgs; } protected String[] psCommand() { return new String[] { "/bin/ps", "-e", "-o", "pid,args" }; } public long findPid(ProcessQuery query) throws IOException { String regex = Pattern.quote(query.getCommand()) + ".*" + Pattern.quote(query.getArgument()); Pattern commandPattern = Pattern.compile(regex); for (String line : execute(psCommand())) { Matcher lineMatcher = PS_OUTPUT_LINE.matcher(line); if (lineMatcher.matches()) { String command = lineMatcher.group(2); Matcher commandMatcher = commandPattern.matcher(command); if (commandMatcher.find()) { return Long.parseLong(lineMatcher.group(1)); } } } return PID_NOT_FOUND; } public void kill(Process process, long pid) throws IOException { if (pid <= 0) { throw new IllegalArgumentException("invalid pid: " + pid); } execute("/bin/kill", "-KILL", Long.toString(pid)); } private List execute(String... args) throws IOException { String[] command; if (runAsArgs != null) { command = new String[runAsArgs.length + args.length]; System.arraycopy(runAsArgs, 0, command, 0, runAsArgs.length); System.arraycopy(args, 0, command, runAsArgs.length, args.length); } else { command = args; } Process process = new ProcessBuilder(command).start(); @SuppressWarnings("unchecked") List lines = IOUtils.readLines(process.getInputStream()); return lines; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy