mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-28 06:59:33 +00:00
65 lines
2.1 KiB
C++
65 lines
2.1 KiB
C++
/*
|
|
*
|
|
* (C) 2020-26 - ntop.org
|
|
*
|
|
*
|
|
* 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, write to the Free Software Foundation,
|
|
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*
|
|
*/
|
|
|
|
#ifndef _NTOP_SCORE_STATS_H_
|
|
#define _NTOP_SCORE_STATS_H_
|
|
|
|
class ScoreStats {
|
|
private:
|
|
protected:
|
|
ScoreCounter cli_score[MAX_NUM_SCORE_CATEGORIES],
|
|
srv_score[MAX_NUM_SCORE_CATEGORIES];
|
|
|
|
static u_int64_t sum(ScoreCounter scores[]);
|
|
static u_int16_t incValue(ScoreCounter scores[], u_int16_t score,
|
|
ScoreCategory score_category);
|
|
static u_int16_t decValue(ScoreCounter scores[], u_int16_t score,
|
|
ScoreCategory score_category);
|
|
|
|
void lua_breakdown(lua_State* vm, bool as_client);
|
|
|
|
public:
|
|
ScoreStats();
|
|
virtual ~ScoreStats() {};
|
|
|
|
/* Total getters */
|
|
u_int64_t get() { return (getClient() + getServer()); };
|
|
virtual u_int64_t getClient() { return (sum(cli_score /* as client */)); };
|
|
virtual u_int64_t getServer() { return (sum(srv_score /* as server */)); };
|
|
|
|
/* Getters by category */
|
|
virtual u_int32_t getClient(ScoreCategory sc) {
|
|
return (cli_score[sc].get());
|
|
};
|
|
virtual u_int32_t getServer(ScoreCategory sc) {
|
|
return (srv_score[sc].get());
|
|
};
|
|
|
|
u_int16_t incValue(u_int16_t score, ScoreCategory score_category,
|
|
bool as_client);
|
|
virtual u_int16_t decValue(u_int16_t score, ScoreCategory score_category,
|
|
bool as_client);
|
|
|
|
void lua_breakdown(lua_State* vm);
|
|
void serialize_breakdown(ndpi_serializer* serializer);
|
|
};
|
|
|
|
#endif
|