/* * Copyright (C) 1996-2018 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 17 Request Forwarding */ #ifndef SQUID_COLLAPSED_FORWARDING_H #define SQUID_COLLAPSED_FORWARDING_H #include "ipc/forward.h" #include "ipc/Queue.h" #include "typedefs.h" #include class StoreEntry; /// Sends and handles collapsed forwarding notifications. class CollapsedForwarding { public: /// open shared memory segment static void Init(); /// notify other workers about changes in entry state (e.g., new data) static void Broadcast(const StoreEntry &e); /// kick worker with empty IPC queue static void Notify(const int workerId); /// handle new data messages in IPC queue static void HandleNewData(const char *const when); /// handle queue push notifications from worker or disker static void HandleNotification(const Ipc::TypedMsgHdr &msg); private: typedef Ipc::MultiQueue Queue; static std::unique_ptr queue; ///< IPC queue }; #endif /* SQUID_COLLAPSED_FORWARDING_H */