]> git.ipfire.org Git - thirdparty/squid.git/blame - src/DiskIO/DiskDaemon/DiskdIOStrategy.h
Bug 3189: AIO thread race on pipe() initialization
[thirdparty/squid.git] / src / DiskIO / DiskDaemon / DiskdIOStrategy.h
CommitLineData
b9ae18aa 1/*
b9ae18aa 2 * DEBUG: section 79 Squid-side DISKD I/O functions.
3 * AUTHOR: Duane Wessels
4 *
5 * SQUID Web Proxy Cache http://www.squid-cache.org/
6 * ----------------------------------------------------------
7 *
8 * Squid is the result of efforts by numerous individuals from
9 * the Internet community; see the CONTRIBUTORS file for full
10 * details. Many organizations have provided support for Squid's
11 * development; see the SPONSORS file for full details. Squid is
12 * Copyrighted (C) 2001 by the Regents of the University of
13 * California; see the COPYRIGHT file for full details. Squid
14 * incorporates software developed and/or copyrighted by other
15 * sources; see the CREDITS file for full details.
16 *
17 * This program is free software; you can redistribute it and/or modify
18 * it under the terms of the GNU General Public License as published by
19 * the Free Software Foundation; either version 2 of the License, or
20 * (at your option) any later version.
26ac0430 21 *
b9ae18aa 22 * This program is distributed in the hope that it will be useful,
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 * GNU General Public License for more details.
26ac0430 26 *
b9ae18aa 27 * You should have received a copy of the GNU General Public License
28 * along with this program; if not, write to the Free Software
29 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
30 *
31 * Copyright (c) 2003, Robert Collins <robertc@squid-cache.org>
32 */
33
34#ifndef __STORE_DISKDIOSTRATEGY_H__
35#define __STORE_DISKDIOSTRATEGY_H__
36
b9ae18aa 37struct diomsg;
38
63be0a78 39/// \ingroup diskd
b9ae18aa 40class SharedMemory
41{
42
43public:
ee139403 44 void put(ssize_t);
b9ae18aa 45
ee139403 46 void *get(ssize_t *);
b9ae18aa 47
ee139403 48 void init(int ikey, int magic2);
b9ae18aa 49
50 int nbufs;
51
52 char *buf;
53
54 char *inuse_map;
55
56 int id;
57};
58
59#include "DiskIO/DiskIOStrategy.h"
e877aaac 60#include "StoreIOState.h"
b9ae18aa 61
62class DiskFile;
63
64class DiskdFile;
65
66class ReadRequest;
67
63be0a78 68/// \ingroup diskd
b9ae18aa 69class DiskdIOStrategy : public DiskIOStrategy
70{
71
72public:
73 DiskdIOStrategy();
74 virtual bool shedLoad();
75 virtual int load();
76 virtual RefCount<DiskFile> newFile(char const *path);
c521ad17 77 virtual bool unlinkdUseful() const;
b9ae18aa 78 virtual void unlinkFile (char const *);
79 virtual ConfigOption *getOptionTree() const;
80 virtual void init();
81 virtual void sync();
82 virtual int callback();
83 virtual void statfs(StoreEntry & sentry)const;
63be0a78 84 int send(int mtype, int id, DiskdFile *theFile, size_t size, off_t offset, ssize_t shm_offset, RefCountable_ *requestor);
85
86 /** public for accessing return address's */
b9ae18aa 87 SharedMemory shm;
88
89private:
90 static size_t newInstance();
91 static size_t nextInstanceID;
92 void openFailed();
93 bool optionQ1Parse(char const *option, const char *value, int reconfiguring);
94 void optionQ1Dump(StoreEntry * e) const;
95 bool optionQ2Parse(char const *option, const char *value, int reconfiguring);
96 void optionQ2Dump(StoreEntry * e) const;
ee139403 97 int send(int mtype, int id, RefCount<StoreIOState> sio, size_t size, off_t offset, ssize_t shm_offset);
98 int SEND(diomsg * M, int mtype, int id, size_t size, off_t offset, ssize_t shm_offset);
b9ae18aa 99 void handle(diomsg * M);
100 void unlinkDone(diomsg * M);
63be0a78 101
102 /**
103 * magic1 is the number of messages away which we
104 * stop allowing open/create for.
105 */
b9ae18aa 106 int magic1;
63be0a78 107
108 /**
109 * magic2 is the point at which we start blocking on msgsnd/msgrcv.
110 * If a queue has magic2 (or more) messages away, then we read the
111 * queue until the level falls below magic2. Recommended value
112 * is 75% of SHMBUFS.
113 */
b9ae18aa 114 int magic2;
63be0a78 115
b9ae18aa 116 int away;
117 int smsgid;
118 int rmsgid;
119 int wfd;
120 size_t instanceID;
121};
122
63be0a78 123/// \ingroup diskd
b9ae18aa 124#define SHMBUF_BLKSZ SM_PAGE_SIZE
125
63be0a78 126/// \ingroup diskd
26ac0430 127struct diskd_stats_t {
b9ae18aa 128 int open_fail_queue_len;
129 int block_queue_len;
130 int max_away;
131 int max_shmuse;
132 int shmbuf_count;
133 int sent_count;
134 int recv_count;
135 int sio_id;
136
26ac0430 137 struct {
b9ae18aa 138 int ops;
139 int success;
140 int fail;
141 }
142
143 open, create, close, unlink, read, write;
144};
145
63be0a78 146/// \ingroup diskd
b9ae18aa 147extern diskd_stats_t diskd_stats;
148
149#endif