![JAR search and dependency download from the Maven repository](/logo.png)
net.oneandone.stool.util.Processes Maven / Gradle / Ivy
/**
* Copyright 1&1 Internet AG, https://github.com/1and1/
*
* 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 net.oneandone.stool.util;
import net.oneandone.sushi.fs.World;
import net.oneandone.sushi.fs.file.FileNode;
import net.oneandone.sushi.launcher.Failure;
import net.oneandone.sushi.launcher.Launcher;
import net.oneandone.sushi.util.Separator;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class Processes {
// group 1: pid
// group 2: ppid
// group 3: pcpu
// group 4: pmem
// group 5: command
private static final Pattern PS_LINE = Pattern.compile("^(\\d+)\\s+(\\d+)\\s+(\\S+)\\s+(\\S+)\\s+(.*)$");
public static Processes load(World world) throws Failure {
Launcher launcher;
launcher = new Launcher(world.getWorking(), "ps", "ax", "-o", "pid=,ppid=,pcpu=,pmem=,command=");
// make sure we get doubles with ".", not ",":
launcher.env("LC_ALL", "C");
return create(launcher.exec());
}
public static Processes create(String str) throws Failure {
Processes result;
Matcher matcher;
int pid;
int ppid;
double cpu;
double mem;
String command;
result = new Processes();
for (String line : Separator.RAW_LINE.split(str)) {
line = line.trim();
matcher = PS_LINE.matcher(line);
if (!matcher.matches()) {
throw new IllegalArgumentException(line);
}
pid = Integer.parseInt(matcher.group(1));
ppid = Integer.parseInt(matcher.group(2));
cpu = Double.parseDouble(matcher.group(3));
mem = Double.parseDouble(matcher.group(4));
command = matcher.group(5);
result.add(new Data(pid, ppid, cpu, mem, command));
}
return result;
}
public static class Data {
public final int pid;
public final int ppid;
public final double cpu;
public final double mem;
public final String command;
public Data(int pid, int ppid, double cpu, double mem, String command) {
this.pid = pid;
this.ppid = ppid;
this.cpu = cpu;
this.mem = mem;
this.command = command;
}
public String toString() {
return pid + " " + ppid + " " + cpu + " " + mem + " " + command;
}
}
//--
private final Map all;
public Processes() {
all = new HashMap<>();
}
public void add(Data data) {
if (all.put(data.pid, data) != null) {
throw new IllegalArgumentException(data.toString());
}
}
public Data lookup(int pid) {
return all.get(pid);
}
public boolean hasPid(int pid) {
return all.containsKey(pid);
}
public int servicePid(FileNode backstage) {
String key;
int result;
result = 0;
key = "wrapper.statusfile=" + backstage.join("run/tomcat.status").getAbsolute();
for (Data data : all.values()) {
if (data.command.contains(key)) {
if (result != 0) {
throw new IllegalStateException("ambiguous: " + result + " vs " + data.pid);
}
result = data.pid;
}
}
return result;
}
public int oneChild(int pid) {
List lst;
lst = children(pid);
switch (lst.size()) {
case 0:
throw new IllegalArgumentException("no child process for pid " + pid);
case 1:
return lst.get(0);
default:
throw new IllegalArgumentException("too many child processes for pid " + pid);
}
}
public List children(int pid) {
List result;
result = new ArrayList<>();
for (Data data : all.values()) {
if (data.ppid == pid) {
result.add(data.pid);
}
}
return result;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy