net.oneandone.stool.util.LogEntry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of main Show documentation
Show all versions of main Show documentation
Stool's main component. Java Library, cli, setup code.
/**
* 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 java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.LocalTime;
import java.time.format.DateTimeFormatter;
public class LogEntry {
public static final DateTimeFormatter TIME_FMT = DateTimeFormatter.ofPattern("HH:mm:ss,SSS");
public static final DateTimeFormatter FULL_FMT = DateTimeFormatter.ofPattern("yy-MM-dd HH:mm:ss");
public static LogEntry parse(String line) {
LocalTime timeObj;
LocalDate dateObj;
int len;
int date;
int id;
String idStr;
int logger;
int user;
int stageId;
int stageName;
len = line.length();
// CAUTION: do not use split, because messages may contain separators
date = line.indexOf('|');
id = line.indexOf('|', date + 1);
logger = line.indexOf('|', id + 1);
user = line.indexOf('|', logger + 1);
stageId = line.indexOf('|', user + 1);
stageName = line.indexOf('|', stageId + 1);
if (stageName == -1) {
throw new IllegalArgumentException(line);
}
if (line.charAt(len - 1) != '\n') {
throw new IllegalArgumentException(line);
}
// TODO: doesn't work for commands running during midnight ...
timeObj = LocalTime.parse(line.substring(0, date), TIME_FMT);
idStr = line.substring(date + 1, id);
dateObj = LocalDate.parse(idStr.substring(0, idStr.indexOf("-")), Logging.DATE_FORMAT);
return new LogEntry(LocalDateTime.of(dateObj, timeObj), idStr,
line.substring(id + 1, logger),
line.substring(logger + 1, user),
line.substring(user + 1, stageId),
line.substring(stageId + 1, stageName),
unescape(line.substring(stageName + 1, len -1)));
}
private static String unescape(String message) {
StringBuilder builder;
char c;
int max;
if (message.indexOf('\\') == -1) {
return message;
} else {
max = message.length();
builder = new StringBuilder(max);
for (int i = 0; i < max; i++) {
c = message.charAt(i);
if (c != '\\') {
builder.append(c);
}
}
return builder.toString();
}
}
//--
public final LocalDateTime dateTime;
public final String id;
public final String logger;
public final String user;
public final String stageId;
public final String stageName;
public final String message;
public LogEntry(LocalDateTime dateTime, String id, String logger, String user, String stageId, String stageName, String message) {
this.dateTime = dateTime;
this.id = id;
this.logger = logger;
this.user = user;
this.stageId = stageId;
this.stageName = stageName;
this.message = message;
}
public String toString() {
return message;
}
}