com.github.sdnwiselab.sdnwise.configuration.Configurator Maven / Gradle / Ivy
/*
* Copyright (C) 2015 SDN-WISE
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
package com.github.sdnwiselab.sdnwise.configuration;
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import com.google.gson.stream.JsonReader;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.UnsupportedEncodingException;
import java.util.logging.Level;
import java.util.logging.Logger;
/**
* A holder for the different kind of configuration classes. It provides methods
* to parse/write configurations from/to a JSON file.
*
* @author Sebastiano Milardo
* @version 0.1
*/
public class Configurator {
/**
* Parses a file given in input containing a JSON string and returns the
* corresponding configurator object described in the file.
*
* @param fileName the path to the JSON file
* @return a configurator object
*/
public static final Configurator load(InputStream fileName) {
try {
return (new Gson()).fromJson(new JsonReader(new InputStreamReader(fileName, "UTF-8")), Configurator.class);
} catch (UnsupportedEncodingException ex) {
Logger.getLogger(Configurator.class.getName()).log(Level.SEVERE, null, ex);
}
return null;
}
private final ConfigAdaptation Adaptation = new ConfigAdaptation();
private final ConfigController Controller = new ConfigController();
private final ConfigFlowvisor Flowvisor = new ConfigFlowvisor();
/**
* Returns a ConfigController object.
*
* @return a configController object
*/
public ConfigController getController() {
return Controller;
}
/**
* Returns a configAdaptation object.
*
* @return a configAdaptation object
*/
public ConfigAdaptation getAdaptation() {
return Adaptation;
}
/**
* Returns a configFlowvisor object.
*
* @return a configFlowvisor object
*/
public ConfigFlowvisor getFlowvisor() {
return Flowvisor;
}
/**
* Returns a string representation of the object in JSON format.
*
* @return a JSON string representation of this object.
*/
@Override
public final String toString() {
Gson gson = new GsonBuilder().setPrettyPrinting().create();
return gson.toJson(this);
}
}