|
Squid Web Cache master
|
#include "squid.h"#include "cbdata.h"#include "Generic.h"#include "mem/Allocator.h"#include "mem/Pool.h"#include "mgr/Registration.h"#include "Store.h"#include <climits>#include <cstddef>#include <map>Go to the source code of this file.
Classes | |
| class | cbdata |
| struct | CBDataIndex |
Functions | |
| static auto & | CbdataTable () |
| cbdata_type | cbdataInternalAddType (cbdata_type type, const char *name, int size) |
| void * | cbdataInternalAlloc (cbdata_type type) |
| static void | cbdataRealFree (cbdata *c) |
| void * | cbdataInternalFree (void *p) |
| void | cbdataInternalLock (const void *p) |
| void | cbdataInternalUnlock (const void *p) |
| int | cbdataReferenceValid (const void *p) |
| int | cbdataInternalReferenceDoneValid (void **pp, void **tp) |
Variables | |
| static int | cbdataCount = 0 |
| struct CBDataIndex * | cbdata_index = nullptr |
| int | cbdata_types = 0 |
| cbdata_type cbdataInternalAddType | ( | cbdata_type | type, |
| const char * | label, | ||
| int | size | ||
| ) |
Create a run-time registration for the class type with cbdata memory allocator.
Definition at line 122 of file cbdata.cc.
References assert, cbdata_index, cbdata_types, memPoolCreate, CBDataIndex::pool, size, xmalloc, and xrealloc().
| void * cbdataInternalAlloc | ( | cbdata_type | type | ) |
Allocates a new entry of a registered CBDATA type.
Definition at line 150 of file cbdata.cc.
References Mem::Allocator::alloc(), assert, cbdata_index, cbdata_types, cbdataCount, CbdataTable(), cbdata::cookie, cbdata::Cookie, cbdata::data, debugs, cbdata::locks, CBDataIndex::pool, cbdata::type, and cbdata::valid.
| void * cbdataInternalFree | ( | void * | p | ) |
Frees a entry allocated by cbdataInternalAlloc().
Once this has been called cbdataReferenceValid() and cbdataReferenceValidDone() will return false regardless of whether there are remaining cbdata references.
cbdataReferenceDone() must still be called for any active references to the cbdata entry. The cbdata entry will be freed only when the last reference is removed.
Definition at line 208 of file cbdata.cc.
References assert, cbdataRealFree(), debugs, and cbdata::FromUserData().
| void cbdataInternalLock | ( | const void * | p | ) |
Definition at line 226 of file cbdata.cc.
References assert, debugs, cbdata::FromUserData(), and INT_MAX.
Referenced by logfile_mod_daemon_open().
| int cbdataInternalReferenceDoneValid | ( | void ** | p, |
| void ** | tp | ||
| ) |
Removes a reference created by cbdataReference() and checks it for validity. Meant to be used on the last dereference, usually to make a callback.
| var | The reference variable. Will be automatically cleared to nullptr |
| ptr | A temporary pointer to the referenced data (if valid). |
Definition at line 287 of file cbdata.cc.
References cbdataInternalUnlock(), and cbdataReferenceValid().
| void cbdataInternalUnlock | ( | const void * | p | ) |
Definition at line 243 of file cbdata.cc.
References assert, cbdataRealFree(), debugs, and cbdata::FromUserData().
Referenced by cbdataInternalReferenceDoneValid(), and logfile_mod_daemon_close().
|
static |
Definition at line 178 of file cbdata.cc.
References cbdataCount, CbdataTable(), cbdata::data, and debugs.
Referenced by cbdataInternalFree(), and cbdataInternalUnlock().
| int cbdataReferenceValid | ( | const void * | p | ) |
| p | A cbdata entry reference pointer. |
| 0 | A reference is stale. The pointer refers to a entry already freed. |
| true | The reference is valid and active. |
Definition at line 270 of file cbdata.cc.
References assert, debugs, and cbdata::FromUserData().
Referenced by CbcPointer< Cbc >::CbcPointer(), ACLExternal::aclMatchExternal(), HttpStateData::buildRequestPrefix(), ACLChecklist::callerGone(), AsyncJob::callException(), AsyncJob::callStart(), StoreIOStateCb::canDial(), EventDialer::canDial(), CommCbFunPtrCallT< Dialer >::canFire(), cbdataInternalReferenceDoneValid(), EventScheduler::checkEvents(), Helper::Session::checkForTimedOutRequests(), clientGetMoreData(), clientSocketDetach(), clientSocketRecipient(), clientStreamDetach(), ACLFilledChecklist::conn(), diskHandleRead(), downloaderRecipient(), EventScheduler::dump(), externalAclHandleReply(), ftpSendReply(), CbcPointer< Cbc >::get(), ClientHttpRequest::getConn(), Comm::Connection::getPeer(), DiskdIOStrategy::handle(), helperDispatch(), helperHandleRead(), helperReturnBuffer(), helperStatefulDispatch(), helperStatefulHandleRead(), idnsCallbackOneWithAnswer(), ConnStateData::isOpen(), TunnelStateData::keepGoingAfterRead(), CbcPointer< Cbc >::operator=(), peerCountMcastPeersAbort(), peerDigestHandleReply(), TunnelStateData::ReadClient(), TunnelStateData::ReadServer(), clientReplyContext::sendMoreData(), Comm::Connection::toGoneCachePeer(), tunnelStartShoveling(), CallbackData::valid(), PeerPoolMgr::validPeer(), TunnelStateData::writeClientDone(), TunnelStateData::WriteClientDone(), TunnelStateData::writeServerDone(), and TunnelStateData::WriteServerDone().
|
static |
Definition at line 94 of file cbdata.cc.
Referenced by cbdataInternalAlloc(), cbdataRealFree(), and cbdata::FromUserData().
| struct CBDataIndex * cbdata_index = nullptr |
Referenced by cbdata::~cbdata(), cbdataInternalAddType(), and cbdataInternalAlloc().
| int cbdata_types = 0 |
Definition at line 90 of file cbdata.cc.
Referenced by cbdataInternalAddType(), and cbdataInternalAlloc().
|
static |
Definition at line 26 of file cbdata.cc.
Referenced by cbdataInternalAlloc(), and cbdataRealFree().