2015-01-20 18:16:35 +01:00
|
|
|
// Part of dump1090, a Mode S message decoder for RTLSDR devices.
|
|
|
|
//
|
|
|
|
// stats.c: statistics structures and prototypes.
|
|
|
|
//
|
|
|
|
// Copyright (c) 2015 Oliver Jowett <oliver@mutability.co.uk>
|
|
|
|
//
|
|
|
|
// This file is free software: you may copy, redistribute 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.
|
|
|
|
//
|
|
|
|
// This file 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 <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
// This file incorporates work covered by the following copyright and
|
|
|
|
// permission notice:
|
|
|
|
//
|
|
|
|
// Copyright (C) 2012 by Salvatore Sanfilippo <antirez@gmail.com>
|
|
|
|
//
|
|
|
|
// All rights reserved.
|
|
|
|
//
|
|
|
|
// Redistribution and use in source and binary forms, with or without
|
|
|
|
// modification, are permitted provided that the following conditions are
|
|
|
|
// met:
|
|
|
|
//
|
|
|
|
// * Redistributions of source code must retain the above copyright
|
|
|
|
// notice, this list of conditions and the following disclaimer.
|
|
|
|
//
|
|
|
|
// * Redistributions in binary form must reproduce the above copyright
|
|
|
|
// notice, this list of conditions and the following disclaimer in the
|
|
|
|
// documentation and/or other materials provided with the distribution.
|
|
|
|
//
|
|
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
// HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
#ifndef DUMP1090_STATS_H
|
|
|
|
#define DUMP1090_STATS_H
|
|
|
|
|
|
|
|
struct stats {
|
2015-02-10 23:24:22 +01:00
|
|
|
uint64_t start;
|
|
|
|
uint64_t end;
|
2015-01-20 18:16:35 +01:00
|
|
|
|
2015-01-22 20:49:19 +01:00
|
|
|
// Mode S demodulator counts:
|
|
|
|
uint32_t demod_preambles;
|
|
|
|
uint32_t demod_rejected_bad;
|
|
|
|
uint32_t demod_rejected_unknown_icao;
|
|
|
|
uint32_t demod_accepted[MODES_MAX_BITERRORS+1];
|
2015-01-20 18:16:35 +01:00
|
|
|
|
2015-01-22 20:49:19 +01:00
|
|
|
// Mode A/C demodulator counts:
|
|
|
|
uint32_t demod_modeac;
|
2015-01-20 18:16:35 +01:00
|
|
|
|
2015-01-22 20:49:19 +01:00
|
|
|
uint32_t blocks_processed;
|
|
|
|
uint32_t blocks_dropped;
|
2015-01-23 02:22:22 +01:00
|
|
|
|
|
|
|
// timing:
|
|
|
|
struct timespec demod_cpu;
|
|
|
|
struct timespec reader_cpu;
|
|
|
|
struct timespec background_cpu;
|
2015-01-20 18:16:35 +01:00
|
|
|
|
2015-01-22 02:01:39 +01:00
|
|
|
// noise floor:
|
|
|
|
double noise_power_sum;
|
|
|
|
uint32_t noise_power_count;
|
|
|
|
|
|
|
|
// mean signal power:
|
|
|
|
double signal_power_sum;
|
|
|
|
uint32_t signal_power_count;
|
|
|
|
|
|
|
|
// peak signal power seen
|
|
|
|
double peak_signal_power;
|
|
|
|
|
|
|
|
// number of signals with power > -3dBFS
|
|
|
|
uint32_t strong_signal_count;
|
|
|
|
|
2015-01-20 18:16:35 +01:00
|
|
|
// remote messages:
|
2015-01-22 20:49:19 +01:00
|
|
|
uint32_t remote_received_modeac;
|
|
|
|
uint32_t remote_received_modes;
|
|
|
|
uint32_t remote_rejected_bad;
|
|
|
|
uint32_t remote_rejected_unknown_icao;
|
|
|
|
uint32_t remote_accepted[MODES_MAX_BITERRORS+1];
|
2015-01-20 18:16:35 +01:00
|
|
|
|
|
|
|
// total messages:
|
2015-01-22 20:49:19 +01:00
|
|
|
uint32_t messages_total;
|
|
|
|
|
|
|
|
// network:
|
|
|
|
uint32_t http_requests;
|
2015-01-20 19:41:44 +01:00
|
|
|
|
|
|
|
// CPR decoding:
|
2015-02-19 19:53:11 +01:00
|
|
|
unsigned int cpr_surface;
|
|
|
|
unsigned int cpr_airborne;
|
2015-01-20 19:41:44 +01:00
|
|
|
unsigned int cpr_global_ok;
|
|
|
|
unsigned int cpr_global_bad;
|
|
|
|
unsigned int cpr_global_skipped;
|
2015-02-18 01:12:35 +01:00
|
|
|
unsigned int cpr_global_range_checks;
|
|
|
|
unsigned int cpr_global_speed_checks;
|
2015-01-20 19:41:44 +01:00
|
|
|
unsigned int cpr_local_ok;
|
|
|
|
unsigned int cpr_local_skipped;
|
2015-02-18 01:12:35 +01:00
|
|
|
unsigned int cpr_local_range_checks;
|
|
|
|
unsigned int cpr_local_speed_checks;
|
2015-02-19 19:53:11 +01:00
|
|
|
unsigned int cpr_local_aircraft_relative;
|
|
|
|
unsigned int cpr_local_receiver_relative;
|
2015-01-20 19:41:44 +01:00
|
|
|
unsigned int cpr_filtered;
|
2015-02-08 19:47:39 +01:00
|
|
|
|
|
|
|
// aircraft:
|
|
|
|
// total "new" aircraft (i.e. not seen in the last 30 or 300s)
|
|
|
|
unsigned int unique_aircraft;
|
|
|
|
// we saw only a single message
|
|
|
|
unsigned int single_message_aircraft;
|
2015-01-20 18:16:35 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
void add_stats(const struct stats *st1, const struct stats *st2, struct stats *target);
|
|
|
|
void display_stats(struct stats *st);
|
|
|
|
void reset_stats(struct stats *st);
|
|
|
|
|
2015-01-23 02:22:22 +01:00
|
|
|
void add_timespecs(const struct timespec *x, const struct timespec *y, struct timespec *z);
|
|
|
|
|
2015-01-20 18:16:35 +01:00
|
|
|
#endif
|