Transients.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 #ifndef SQUID_SRC_TRANSIENTS_H
10 #define SQUID_SRC_TRANSIENTS_H
11 
12 #include "ipc/mem/Page.h"
13 #include "ipc/mem/PageStack.h"
14 #include "ipc/StoreMap.h"
15 #include "Store.h"
16 #include "store/Controlled.h"
17 #include "store/forward.h"
18 #include <vector>
19 
21 
28 {
29 public:
32  {
33  public:
34  bool hasWriter = false;
35  bool waitingToBeFreed = false;
36  };
37 
38  Transients();
39  ~Transients() override;
40 
42  StoreEntry *findCollapsed(const sfileno xitIndex);
43 
46  void monitorIo(StoreEntry*, const cache_key*, const Store::IoStatus);
47 
49  void completeWriting(const StoreEntry &e);
50 
52  void status(const StoreEntry &e, EntryStatus &entryStatus) const;
53 
55  int readers(const StoreEntry &e) const;
56 
58  void disconnect(StoreEntry &);
59 
60  /* Store API */
61  StoreEntry *get(const cache_key *) override;
62  void create() override {}
63  void init() override;
64  uint64_t maxSize() const override;
65  uint64_t minSize() const override;
66  uint64_t currentSize() const override;
67  uint64_t currentCount() const override;
68  int64_t maxObjectSize() const override;
69  void getStats(StoreInfoStats &stats) const override;
70  void stat(StoreEntry &e) const override;
71  void reference(StoreEntry &e) override;
72  bool dereference(StoreEntry &e) override;
73  void evictCached(StoreEntry &) override;
74  void evictIfFound(const cache_key *) override;
75  void maintain() override;
76 
79  bool markedForDeletion(const cache_key *) const;
80 
82  bool isReader(const StoreEntry &) const;
84  bool isWriter(const StoreEntry &) const;
86  bool hasWriter(const StoreEntry &);
87 
88  static int64_t EntryLimit();
89 
91  static bool Enabled() { return EntryLimit(); }
92 
93 protected:
94  void addEntry(StoreEntry*, const cache_key *, const Store::IoStatus);
95  void addWriterEntry(StoreEntry &, const cache_key *);
96  void addReaderEntry(StoreEntry &, const cache_key *);
97 
98  // Ipc::StoreMapCleaner API
99  void noteFreeMapSlice(const Ipc::StoreMapSliceId sliceId) override;
100 
101 private:
104 
105  typedef std::vector<StoreEntry*> Locals;
109 };
110 
111 // TODO: Why use Store as a base? We are not really a cache.
112 
113 #endif /* SQUID_SRC_TRANSIENTS_H */
114 
void monitorIo(StoreEntry *, const cache_key *, const Store::IoStatus)
Definition: Transients.cc:197
IoStatus
cache "I/O" direction and status
Definition: forward.h:40
void getStats(StoreInfoStats &stats) const override
collect statistics
Definition: Transients.cc:61
TransientsMap * map
shared packed info indexed by Store keys, for creating new StoreEntries
Definition: Transients.h:103
unsigned char cache_key
Store key.
Definition: forward.h:29
Locals * locals
Definition: Transients.h:108
bool waitingToBeFreed
whether the entry was marked for deletion
Definition: Transients.h:35
uint64_t currentSize() const override
current size
Definition: Transients.cc:117
void disconnect(StoreEntry &)
the caller is done writing or reading the given entry
Definition: Transients.cc:337
uint64_t maxSize() const override
Definition: Transients.cc:110
uint64_t currentCount() const override
the total number of objects stored right now
Definition: Transients.cc:125
shared entry metadata, used for synchronization
Definition: Transients.h:31
void create() override
create system resources needed for this store to operate in the future
Definition: Transients.h:62
void init() override
Definition: Transients.cc:46
void status(const StoreEntry &e, EntryStatus &entryStatus) const
copies current shared entry metadata into entryStatus
Definition: Transients.cc:279
static bool Enabled()
Can we create and initialize Transients?
Definition: Transients.h:91
int32_t StoreMapSliceId
Definition: StoreMap.h:24
bool isWriter(const StoreEntry &) const
whether the entry is in "writing to Transients" I/O state
Definition: Transients.cc:381
void addWriterEntry(StoreEntry &, const cache_key *)
addEntry() helper used for cache entry creators/writers
Definition: Transients.cc:233
std::vector< StoreEntry * > Locals
Definition: Transients.h:105
void noteFreeMapSlice(const Ipc::StoreMapSliceId sliceId) override
adjust slice-linked state before a locked Readable slice is erased
Definition: Transients.cc:273
API for adjusting external state when dirty map slice is being freed.
Definition: StoreMap.h:397
StoreEntry * get(const cache_key *) override
Definition: Transients.cc:151
bool hasWriter(const StoreEntry &)
whether we or somebody else is in the "writing to Transients" I/O state
Definition: Transients.cc:265
void addEntry(StoreEntry *, const cache_key *, const Store::IoStatus)
creates a new Transients entry
Definition: Transients.cc:216
StoreEntry * findCollapsed(const sfileno xitIndex)
return a local, previously collapsed entry
Definition: Transients.cc:181
void reference(StoreEntry &e) override
somebody needs this entry (many cache replacement policies need to know)
Definition: Transients.cc:138
signed_int32_t sfileno
Definition: forward.h:22
~Transients() override
Definition: Transients.cc:39
uint64_t minSize() const override
the minimum size the store will shrink to via normal housekeeping
Definition: Transients.cc:104
bool markedForDeletion(const cache_key *) const
Definition: Transients.cc:368
void completeWriting(const StoreEntry &e)
called when the in-transit entry has been successfully cached
Definition: Transients.cc:291
bool isReader(const StoreEntry &) const
whether the entry is in "reading from Transients" I/O state
Definition: Transients.cc:375
bool dereference(StoreEntry &e) override
Definition: Transients.cc:144
void addReaderEntry(StoreEntry &, const cache_key *)
Definition: Transients.cc:253
void maintain() override
perform regular periodic maintenance; TODO: move to UFSSwapDir::Maintain
Definition: Transients.cc:98
static int64_t EntryLimit()
calculates maximum number of entries we need to store and map
Definition: Transients.cc:361
Ipc::StoreMap TransientsMap
Definition: Transients.h:20
void evictCached(StoreEntry &) override
Definition: Transients.cc:312
int64_t maxObjectSize() const override
the maximum size of a storable object; -1 if unlimited
Definition: Transients.cc:131
void stat(StoreEntry &e) const override
Definition: Transients.cc:78
bool hasWriter
whether some worker is storing the entry
Definition: Transients.h:34
High-level store statistics used by mgr:info action. Used inside PODs!
Definition: StoreStats.h:13
void evictIfFound(const cache_key *) override
Definition: Transients.cc:326
int readers(const StoreEntry &e) const
number of entry readers some time ago
Definition: Transients.cc:302

 

Introduction

Documentation

Support

Miscellaneous