org.gradle.integtests.fixtures.daemon.DaemonContextParser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-api Show documentation
Show all versions of gradle-api Show documentation
Gradle 6.9.1 API redistribution.
/*
* Copyright 2009 the original author or authors.
*
* 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 org.gradle.integtests.fixtures.daemon;
import com.google.common.base.Splitter;
import com.google.common.collect.Lists;
import org.gradle.launcher.daemon.configuration.DaemonParameters;
import org.gradle.launcher.daemon.context.DaemonContext;
import org.gradle.launcher.daemon.context.DefaultDaemonContext;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileReader;
import java.io.IOException;
import java.util.List;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class DaemonContextParser {
public static DaemonContext parseFromFile(File file) {
try (FileReader in = new FileReader(file);
BufferedReader reader = new BufferedReader(in)) {
for (String line = reader.readLine(); line != null; line = reader.readLine()) {
DaemonContext context = parseFrom(line);
if (context != null) {
return context;
}
}
} catch(IOException e) {
throw new IllegalStateException("unable to parse DefaultDaemonContext from source: [" + file.getAbsolutePath() + "].", e);
}
return null;
}
public static DaemonContext parseFromString(String source) {
DaemonContext context = parseFrom(source);
if (context == null) {
throw new IllegalStateException("unable to parse DefaultDaemonContext from source: [" + source + "].");
}
return context;
}
private static DaemonContext parseFrom(String source) {
Pattern pattern = Pattern.compile("^.*DefaultDaemonContext\\[(uid=[^\\n,]+)?,?javaHome=([^\\n]+),daemonRegistryDir=([^\\n]+),pid=([^\\n]+),idleTimeout=(.+?)(,priority=[^\\n,]+)?(?:,applyInstrumentationAgent=([^\\n,]+))?,daemonOpts=([^\\n]+)].*",
Pattern.MULTILINE + Pattern.DOTALL);
Matcher matcher = pattern.matcher(source);
if (matcher.matches()) {
String uid = matcher.group(1) == null ? null : matcher.group(1).substring("uid=".length());
String javaHome = matcher.group(2);
String daemonRegistryDir = matcher.group(3);
String pidStr = matcher.group(4);
Long pid = pidStr.equals("null") ? null : Long.parseLong(pidStr);
Integer idleTimeout = Integer.decode(matcher.group(5));
DaemonParameters.Priority priority = matcher.group(6) == null ? DaemonParameters.Priority.NORMAL : DaemonParameters.Priority.valueOf(matcher.group(6).substring(",priority=".length()));
boolean applyInstrumentationAgent = Boolean.parseBoolean(matcher.group(7));
List jvmOpts = Lists.newArrayList(Splitter.on(',').split(matcher.group(8)));
return new DefaultDaemonContext(uid, new File(javaHome), new File(daemonRegistryDir), pid, idleTimeout, jvmOpts, applyInstrumentationAgent, priority);
} else {
return null;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy