airbrake.NoticeXml Maven / Gradle / Ivy
// Modified or written by Luca Marrocco for inclusion with airbrake.
// Copyright (c) 2009 Luca Marrocco.
// Licensed under the Apache License, Version 2.0 (the "License")
package airbrake;
import java.util.*;
import java.util.Map.Entry;
public class NoticeXml {
private final StringBuilder stringBuilder = new StringBuilder();
public NoticeXml(AirbrakeNotice notice) {
notice("2.2");
{
apikey(notice);
notifier();
{
name("airbrake-java");
version("2.2");
url("https://github.com/airbrake/airbrake-java");
}
end("notifier");
error();
{
tag("class", notice.errorClass());
tag("message", notice.errorMessage());
backtrace();
{
for (final String backtrace : notice.backtrace()) {
line(backtrace);
}
}
end("backtrace");
}
end("error");
if (notice.hasRequest()) {
addRequest(notice);
}
server_environment();
{
tag("project-root", notice.projectRoot());
tag("environment-name", notice.env());
}
end("server-environment");
}
end("notice");
}
private void addRequest(AirbrakeNotice notice) {
request();
{
tag("url", notice.url());
tag("component", notice.component());
vars("params", notice.request());
vars("session", notice.session());
vars("cgi-data", notice.environment());
}
end("request");
}
private void apikey(AirbrakeNotice notice) {
tag("api-key");
{
append(notice.apiKey());
}
end("api-key");
}
private void append(String str) {
stringBuilder.append(str);
}
private void backtrace() {
tag("backtrace");
}
private void end(String string) {
append("" + string + ">");
}
private void error() {
tag("error");
}
private void line(String backtrace) {
append(new BacktraceLine(backtrace).toXml());
}
private void name(String name) {
tag("name", name);
}
private void notice(String string) {
append("");
append("");
}
private void notifier() {
tag("notifier");
}
private void request() {
tag("request");
}
private void server_environment() {
tag("server-environment");
}
private NoticeXml tag(String string) {
append("<" + string + ">");
return this;
}
private void tag(String string, String contents) {
tag(string).text(contents).end(string);
}
private NoticeXml text(String string) {
append("");
return this;
}
public String toString() {
return stringBuilder.toString();
}
private void url(String url) {
tag("url", url);
}
private void vars(String sectionName, Map vars) {
if (vars.isEmpty()) {
return;
}
tag(sectionName);
for (Entry var : vars.entrySet()) {
append("");
text(var.getValue().toString());
append("");
}
end(sectionName);
}
private void version(String version) {
tag("version", version);
}
}