blob: 62fd25e8c140dae6c7dcdc0afaccb06977acd3b1 [file] [log] [blame]
package net.onrc.onos.core.topology.web.serializers;
import java.io.IOException;
import java.util.Map.Entry;
import net.onrc.onos.core.topology.Link;
import net.onrc.onos.core.topology.TopologyElement;
import org.codehaus.jackson.JsonGenerator;
import org.codehaus.jackson.map.SerializerProvider;
import org.codehaus.jackson.map.ser.std.SerializerBase;
/**
* JSON serializer for Link objects.
*/
public class LinkSerializer extends SerializerBase<Link> {
/**
* Default constructor.
*/
public LinkSerializer() {
super(Link.class);
}
/**
* Serializes a Link object in JSON.
*
* @param link the Link that is being converted to JSON
* @param jsonGenerator generator to place the serialized JSON into
* @param serializerProvider unused but required for method override
* @throws IOException if the JSON serialization process fails
*/
@Override
public void serialize(Link link, JsonGenerator jsonGenerator,
SerializerProvider serializerProvider)
throws IOException {
//
// TODO: For now, the JSON format of the serialized output should
// be same as the JSON format of the corresponding class LinkData.
// In the future, we will use a single serializer.
//
jsonGenerator.writeStartObject();
jsonGenerator.writeStringField(TopologyElement.TYPE, link.getType());
jsonGenerator.writeStringField(TopologyElement.ELEMENT_TYPE, link.getLinkType().toString());
jsonGenerator.writeObjectField("src", link.getSrcPort().getSwitchPort());
jsonGenerator.writeObjectField("dst", link.getDstPort().getSwitchPort());
jsonGenerator.writeObjectFieldStart("stringAttributes");
for (Entry<String, String> entry : link.getAllStringAttributes().entrySet()) {
jsonGenerator.writeStringField(entry.getKey(), entry.getValue());
}
jsonGenerator.writeEndObject(); // stringAttributes
jsonGenerator.writeEndObject();
}
}