/* * Copyright (C) 1996-2024 The Squid Software Foundation and contributors * * Squid software is distributed under GPLv2+ license and includes * contributions from numerous individuals and organizations. * Please see the COPYING and CONTRIBUTORS files for details. */ /* DEBUG: section 16 Cache Manager API */ #ifndef SQUID_SRC_MGR_IOACTION_H #define SQUID_SRC_MGR_IOACTION_H #include "IoStats.h" #include "mgr/Action.h" namespace Mgr { /// store size histograms of network read() from peer server class IoActionData { public: IoActionData(); IoActionData& operator += (const IoActionData& stats); public: double http_reads; double ftp_reads; double http_read_hist[IoStats::histSize]; double ftp_read_hist[IoStats::histSize]; }; /// implement aggregated 'io' action class IoAction: public Action { protected: IoAction(const CommandPointer &cmd); public: static Pointer Create(const CommandPointer &cmd); /* Action API */ void add(const Action& action) override; void pack(Ipc::TypedMsgHdr& msg) const override; void unpack(const Ipc::TypedMsgHdr& msg) override; protected: /* Action API */ void collect() override; void dump(StoreEntry* entry) override; private: IoActionData data; }; } // namespace Mgr #endif /* SQUID_SRC_MGR_IOACTION_H */