StoreIoAction.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 1996-2023 The Squid Software Foundation and contributors
3  *
4  * Squid software is distributed under GPLv2+ license and includes
5  * contributions from numerous individuals and organizations.
6  * Please see the COPYING and CONTRIBUTORS files for details.
7  */
8 
9 /* DEBUG: section 16 Cache Manager API */
10 
11 #ifndef SQUID_SRC_MGR_STOREIOACTION_H
12 #define SQUID_SRC_MGR_STOREIOACTION_H
13 
14 #include "mgr/Action.h"
15 
16 namespace Mgr
17 {
18 
21 {
22 public:
25 
26 public:
27  double create_calls;
31 };
32 
34 class StoreIoAction: public Action
35 {
36 protected:
38 
39 public:
40  static Pointer Create(const CommandPointer &cmd);
41  /* Action API */
42  void add(const Action& action) override;
43  void pack(Ipc::TypedMsgHdr& msg) const override;
44  void unpack(const Ipc::TypedMsgHdr& msg) override;
45 
46 protected:
47  /* Action API */
48  void collect() override;
49  void dump(StoreEntry* entry) override;
50 
51 private:
53 };
54 
55 } // namespace Mgr
56 
57 #endif /* SQUID_SRC_MGR_STOREIOACTION_H */
58 
const CommandPointer cmd
the command that caused this action
Definition: Action.h:90
void pack(Ipc::TypedMsgHdr &msg) const override
pack collected action info into a message to be sent to Coordinator
StoreIoAction(const CommandPointer &cmd)
Store IO interface data.
Definition: StoreIoAction.h:20
StoreIoActionData & operator+=(const StoreIoActionData &stats)
void dump(StoreEntry *entry) override
struct msghdr with a known type, fixed-size I/O and control buffers
Definition: TypedMsgHdr.h:34
StoreIoActionData data
Definition: StoreIoAction.h:52
static Pointer Create(const CommandPointer &cmd)
void unpack(const Ipc::TypedMsgHdr &msg) override
unpack action info from the message received by Coordinator
void collect() override
calculate and keep local action-specific information
void add(const Action &action) override
incrementally merge in remote information (of the same action type)
implement aggregated 'store_io' action
Definition: StoreIoAction.h:34
Cache Manager API.
Definition: Action.h:20

 

Introduction

Documentation

Support

Miscellaneous