NED File src/inet/visualizer/base/StatisticVisualizerBase.ned
Name | Type | Description |
---|---|---|
StatisticVisualizerBase | simple module |
This is a base module for statistic visualizer simple modules. It keeps track of the last value of a statistic for multiple network nodes. The actual visualization of statistic values is done in derived modules. It subscribes for the signal determined by the signalName parameter at the module specified by the subscriptionModule parameter. If the visualizer receives such a signal it checks if the source matches the sourceFilter parameter. If the signal passes the check it determines the last value of the statistic specified by the statisticName parameter. |
Source code
// // Copyright (C) OpenSim Ltd. // // 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 2 // 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, see <http://www.gnu.org/licenses/>. // package inet.visualizer.base; // // This is a base module for statistic visualizer simple modules. It keeps track // of the last value of a statistic for multiple network nodes. The actual // visualization of statistic values is done in derived modules. It subscribes // for the signal determined by the signalName parameter at the module specified // by the subscriptionModule parameter. If the visualizer receives such a signal // it checks if the source matches the sourceFilter parameter. If the signal // passes the check it determines the last value of the statistic specified by // the statisticName parameter. // // The format string can contain the following directives: // - %s signal name // - %n statistic name // - %v statistic value // - %u statistic unit // // @see ~StatisticCanvasVisualizer, ~StatisticOsgVisualizer, ~IStatisticVisualizer, ~VisualizerBase // simple StatisticVisualizerBase extends VisualizerBase { parameters: string networkNodeVisualizerModule = default("^.networkNodeVisualizer"); // the network node visualizer module, refers to a sibling submodule by default string subscriptionModule = default("<root>"); // module where the visualizer subscribes for the signal, root module by default bool displayStatistics = default(true); string signalName = default(""); // signal name to subscribe, no signal name by default string statisticName = default(signalName); // statistic name to get the value, signal name by default string statisticUnit = default(""); // statistic unit, undefined by default string sourceFilter @mutable = default("**"); // pattern that must match the signal source, no source filter by default string format @mutable = default("%n: %v %u"); // determines what is displayed, info by default string unit = default(""); // display the value in this unit, statistic unit by default string font = default("<default>"); // statistic value font, automatic by default string textColor = default("black"); // statistic value font color, black by default string backgroundColor = default("white"); // statistic value background color, white by default double opacity = default(1.0); // opacity of the visualization string placementHint = default("top"); // annotation placement hint, space separated list of any, top, bottom, left, right, topLeft, topCenter, topRight, etc. double placementPriority = default(0); // determines the order of annotation positioning @class(StatisticVisualizerBase); }