com.yahoo.vespa.hosted.provision.persistence.OsVersionChangeSerializer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of node-repository Show documentation
Show all versions of node-repository Show documentation
Keeps track of node assignment in a multi-application setup.
The newest version!
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.provision.persistence;
import com.yahoo.component.Version;
import com.yahoo.config.provision.NodeType;
import com.yahoo.slime.ArrayTraverser;
import com.yahoo.slime.Slime;
import com.yahoo.slime.SlimeUtils;
import com.yahoo.vespa.hosted.provision.os.OsVersionChange;
import com.yahoo.vespa.hosted.provision.os.OsVersionTarget;
import java.io.IOException;
import java.io.UncheckedIOException;
import java.util.TreeMap;
/**
* Serializer for {@link OsVersionChange}.
*
* @author mpolden
*/
public class OsVersionChangeSerializer {
private static final String TARGETS_FIELD = "targets";
private static final String NODE_TYPE_FIELD = "nodeType";
private static final String VERSION_FIELD = "version";
private OsVersionChangeSerializer() {}
public static byte[] toJson(OsVersionChange change) {
var slime = new Slime();
var object = slime.setObject();
var targetsObject = object.setArray(TARGETS_FIELD);
change.targets().forEach((nodeType, target) -> {
var targetObject = targetsObject.addObject();
targetObject.setString(NODE_TYPE_FIELD, NodeSerializer.toString(nodeType));
targetObject.setString(VERSION_FIELD, target.version().toFullString());
});
try {
return SlimeUtils.toJsonBytes(slime);
} catch (IOException e) {
throw new UncheckedIOException(e);
}
}
public static OsVersionChange fromJson(byte[] data) {
var targets = new TreeMap();
var inspector = SlimeUtils.jsonToSlime(data).get();
inspector.field(TARGETS_FIELD).traverse((ArrayTraverser) (idx, arrayInspector) -> {
var version = Version.fromString(arrayInspector.field(VERSION_FIELD).asString());
var nodeType = NodeSerializer.nodeTypeFromString(arrayInspector.field(NODE_TYPE_FIELD).asString());
targets.put(nodeType, new OsVersionTarget(nodeType, version));
});
return new OsVersionChange(targets);
}
}