/usr/include/ace/Throughput_Stats.h is in libace-dev 6.3.3+dfsg-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 | // -*- C++ -*-
//==========================================================================
/**
* @file Throughput_Stats.h
*
* @author David L. Levine
*/
//==========================================================================
#ifndef ACE_THROUGHPUT_STATS_H
#define ACE_THROUGHPUT_STATS_H
#include /**/ "ace/pre.h"
#include /**/ "ace/ACE_export.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "ace/Basic_Stats.h"
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
/// A simple class to make throughput and latency analysis.
/**
*
* Keep the relevant information to perform throughput and latency
* analysis, including:
* -# Minimum, Average and Maximum latency
* -# Jitter for the latency
* -# Linear regression for throughput
* -# Accumulate results from several samples to obtain aggregated
* results, across several threads or experiments.
*
* @todo The idea behind this class was to use linear regression to
* determine if the throughput was linear or exhibited jitter.
* Unfortunately it never worked quite right, so only average
* throughput is computed.
*/
class ACE_Export ACE_Throughput_Stats : public ACE_Basic_Stats
{
public:
/// Constructor
ACE_Throughput_Stats (void);
/// Store one sample
void sample (ACE_UINT64 throughput, ACE_UINT64 latency);
/// Update the values to reflect the stats in @a throughput
void accumulate (const ACE_Throughput_Stats &throughput);
/// Print down the stats
void dump_results (const ACE_TCHAR* msg, scale_factor_type scale_factor);
/// Dump the average throughput stats.
static void dump_throughput (const ACE_TCHAR *msg,
scale_factor_type scale_factor,
ACE_UINT64 elapsed_time,
ACE_UINT32 samples_count);
private:
/// The last throughput measurement.
ACE_UINT64 throughput_last_;
};
ACE_END_VERSIONED_NAMESPACE_DECL
#include /**/ "ace/post.h"
#endif /* ! ACE_THROUGHPUT_STATS_H */
|