Lines
75 %
Functions
71.4 %
#pragma once
#include "envoy/stats/stats.h"
#include "source/common/stats/metric_impl.h"
namespace Envoy {
namespace Stats {
/**
* Null counter implementation.
* No-ops on all calls and requires no underlying metric or data.
*/
class NullCounterImpl : public MetricImpl<Counter> {
public:
explicit NullCounterImpl(SymbolTable& symbol_table)
: MetricImpl<Counter>(symbol_table), symbol_table_(symbol_table) {}
~NullCounterImpl() override {
// MetricImpl must be explicitly cleared() before destruction, otherwise it
// will not be able to access the SymbolTable& to free the symbols. An RAII
// alternative would be to store the SymbolTable reference in the
// MetricImpl, costing 8 bytes per stat.
MetricImpl::clear(symbol_table_);
}
void add(uint64_t) override {}
void inc() override {}
uint64_t latch() override { return 0; }
void reset() override {}
uint64_t value() const override { return 0; }
// Metric
bool used() const override { return false; }
void markUnused() override {}
bool hidden() const override { return false; }
SymbolTable& symbolTable() override { return symbol_table_; }
// RefcountInterface
void incRefCount() override { refcount_helper_.incRefCount(); }
bool decRefCount() override { return refcount_helper_.decRefCount(); }
uint32_t use_count() const override { return refcount_helper_.use_count(); }
private:
RefcountHelper refcount_helper_;
SymbolTable& symbol_table_;
};
} // namespace Stats
} // namespace Envoy