ntopng/include/ViewScoreStats.h
Alfredo Cardigliano 9352d0cdcd Update copyright
2025-01-02 09:09:56 +01:00

50 lines
1.5 KiB
C++

/*
*
* (C) 2020-25 - 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_VIEW_SCORE_STATS_H_
#define _NTOP_VIEW_SCORE_STATS_H_
class ViewScoreStats : public ScoreStats {
private:
Mutex m;
ScoreCounter cli_dec[MAX_NUM_SCORE_CATEGORIES], srv_dec[MAX_NUM_SCORE_CATEGORIES];
public:
ViewScoreStats();
~ViewScoreStats(){};
/* Total Getters */
u_int64_t getClient() { return (sum(cli_score) - sum(cli_dec)); };
u_int64_t getServer() { return (sum(srv_score) - sum(srv_dec)); };
/* Getters by category */
u_int32_t getClient(ScoreCategory sc) {
return (cli_score[sc].get() - cli_dec[sc].get() );
};
u_int32_t getServer(ScoreCategory sc) {
return (srv_score[sc].get() - srv_dec[sc].get() );
};
u_int16_t decValue(u_int16_t score, ScoreCategory score_category,
bool as_client);
};
#endif