Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* SonarQube
* Copyright (C) 2009-2018 SonarSource SA
* mailto:info AT sonarsource DOT com
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
package org.sonar.server.platform.ws;
import java.util.Collection;
import org.sonar.api.utils.text.JsonWriter;
import org.sonar.process.systeminfo.SystemInfoUtils;
import org.sonar.process.systeminfo.protobuf.ProtobufSystemInfo;
import org.sonar.server.health.Health;
import org.sonar.server.telemetry.TelemetryDataLoader;
import static org.sonar.server.telemetry.TelemetryDataJsonWriter.writeTelemetryData;
public abstract class SystemInfoWriter {
private static final String[] ORDERED_SECTION_NAMES = {
// standalone
"System", "Database", "Plugins",
// cluster
"Web JVM State", "Web Database Connection", "Web Logging", "Web JVM Properties",
"Compute Engine Tasks", "Compute Engine JVM State", "Compute Engine Database Connection", "Compute Engine Logging", "Compute Engine JVM Properties",
"Search State", "Search Indexes"};
private final TelemetryDataLoader telemetry;
SystemInfoWriter(TelemetryDataLoader telemetry) {
this.telemetry = telemetry;
}
public abstract void write(JsonWriter json) throws Exception;
protected void writeSections(Collection sections, JsonWriter json) {
SystemInfoUtils
.order(sections, ORDERED_SECTION_NAMES)
.forEach(section -> writeSection(section, json));
}
private void writeSection(ProtobufSystemInfo.Section section, JsonWriter json) {
json.name(section.getName());
json.beginObject();
for (ProtobufSystemInfo.Attribute attribute : section.getAttributesList()) {
writeAttribute(attribute, json);
}
json.endObject();
}
private void writeAttribute(ProtobufSystemInfo.Attribute attribute, JsonWriter json) {
switch (attribute.getValueCase()) {
case BOOLEAN_VALUE:
json.prop(attribute.getKey(), attribute.getBooleanValue());
break;
case LONG_VALUE:
json.prop(attribute.getKey(), attribute.getLongValue());
break;
case DOUBLE_VALUE:
json.prop(attribute.getKey(), attribute.getDoubleValue());
break;
case STRING_VALUE:
json.prop(attribute.getKey(), attribute.getStringValue());
break;
case VALUE_NOT_SET:
json.name(attribute.getKey()).beginArray().values(attribute.getStringValuesList()).endArray();
break;
default:
throw new IllegalArgumentException("Unsupported type: " + attribute.getValueCase());
}
}
protected void writeHealth(Health health, JsonWriter json) {
json.prop("Health", health.getStatus().name());
json.name("Health Causes").beginArray().values(health.getCauses()).endArray();
}
protected void writeTelemetry(JsonWriter json) {
json.name("Statistics");
writeTelemetryData(json, telemetry.load());
}
}