/** The super node object holding the state of the application. * * @file * @author Steffen Vogel * @copyright 2014-2019, Institute for Automation of Complex Power Systems, EONERC * @license GNU General Public License (version 3) * * VILLASnode * * 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 * 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 . *********************************************************************************/ #pragma once #include #include #include #include #include #include #include namespace villas { namespace node { /** Global configuration */ class SuperNode { protected: enum state state; int priority; /**< Process priority (lower is better) */ int affinity; /**< Process affinity of the server and all created threads */ int hugepages; /**< Number of hugepages to reserve. */ double stats; /**< Interval for path statistics. Set to 0 to disable them. */ Logger logger; struct vlist nodes; struct vlist paths; struct vlist interfaces; #ifdef WITH_API Api api; #endif #ifdef WITH_WEB Web web; #endif struct task task; /**< Task for periodic stats output */ std::string name; /**< A name of this super node. Usually the hostname. */ std::string uri; /**< URI of configuration */ json_t *json; /**< JSON representation of the configuration. */ public: /** Inititalize configuration object before parsing the configuration. */ SuperNode(); int init(); /** Wrapper for super_node_parse() */ int parseUri(const std::string &name); /** Parse super-node configuration. * * @param cfg A libjansson object which contains the configuration. * @retval 0 Success. Everything went well. * @retval <0 Error. Something went wrong. */ int parseJson(json_t *cfg); /** Check validity of super node configuration. */ int check(); /** Initialize after parsing the configuration file. */ void start(); void stop(); void run(); void startPaths(); void startNodes(); void startNodeTypes(); void startInterfaces(); void stopPaths(); void stopNodes(); void stopNodeTypes(); void stopInterfaces(); /** Run periodic hooks of this super node. */ int periodic(); struct node * getNode(const std::string &name) { return (struct node *) vlist_lookup(&nodes, name.c_str()); } struct vlist * getNodes() { return &nodes; } struct vlist * getPaths() { return &paths; } struct vlist * getInterfaces() { return &interfaces; } #ifdef WITH_API Api * getApi() { return &api; } #endif #ifdef WITH_WEB Web * getWeb() { return &web; } #endif json_t * getConfig() { return json; } std::string getConfigUri() { return uri; } std::string getName() { return name; } /** Destroy configuration object. */ ~SuperNode(); }; } // node } // villas