statistics.hh

来自「分布式仿真 开放源码」· HH 代码 · 共 73 行

HH
73
字号
// ----------------------------------------------------------------------------// CERTI - HLA RunTime Infrastructure// Copyright (C) 2003  ONERA//// This file is part of CERTI//// CERTI 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 2 of the License, or// (at your option) any later version.//// CERTI 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, write to the Free Software// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA//// ----------------------------------------------------------------------------#ifndef CERTI_STATISTICS#define CERTI_STATISTICS// Project#include "Message.hh"#include "NetworkMessage.hh"// Standard libraries#include <map>namespace certi {namespace rtia {/** Display statistics on sent/received messages by RTIA. This class  collects information type exchanged by federate/RTIA and  RTIA/RTIG. Statistics are displayed on exit only if  CERTI_NO_STATISTICS environment variable has not been set.*/class Statistics{public:    Statistics();    void rtiService(NetworkMessage::Type);    void federateService(Message::Type);    bool display() { return myDisplay ; };    bool displayZero() { return myDisplayZero ; };        friend std::ostream &operator<<(std::ostream &, Statistics &);protected:    //! Collects number of messages exchanged between federate and RTIA.    std::vector<int> federateServiceSet ;    //! Collects number of messages exchanged between RTIG and RTIA.    std::vector<int> rtiServiceSet ;    //! Names of Message messages    static std::vector<std::string> fedMessageName ;    //! Names of NetworkMessage-class messages    static std::vector<std::string> rtiMessageName ;    //! Display number of sent messages, for each message type    bool myDisplay ;    //! Display messages information including messages not sent    bool myDisplayZero ;     //! names initialized ?    static bool initialized ;};}} // namespaces#endif // CERTI_STATISTICS

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?