2 * UCW Library -- Atomic Buffered Write to Files
4 * (c) 2006 Martin Mares <mj@ucw.cz>
6 * This software may be freely distributed and used according to the terms
7 * of the GNU Lesser General Public License.
11 #include "ucw/fastbuf.h"
14 #include "ucw/trans.h"
24 static struct cf_section fbatomic_config = {
26 CF_UNS("Trace", &trace)
30 static void CONSTRUCTOR fbatomic_init_config(void)
32 cf_declare_section("FBAtomic", &fbatomic_config, 1);
37 #define TRACE(m...) do { if(trace) msg(L_DEBUG, "FB_ATOMIC: " m); } while(0)
39 struct fb_atomic_file {
48 fbatomic_internal_write(struct fastbuf *f)
50 struct fb_atomic_file *af = FB_ATOMIC(f)->af;
51 int size = f->bptr - f->buffer;
54 ASSERT(af->record_len < 0 || !(size % af->record_len));
55 int res = write(af->fd, f->buffer, size);
57 bthrow(f, "write", "Error writing %s: %m", f->name);
59 bthrow(f, "write", "Unexpected partial write to %s: written only %d bytes of %d", f->name, res, size);
65 fbatomic_spout(struct fastbuf *f)
67 if (f->bptr < f->bufend) /* Explicit flushes should be ignored */
70 struct fb_atomic *F = FB_ATOMIC(f);
73 uns written = f->bptr - f->buffer;
74 uns size = f->bufend - f->buffer + F->slack_size;
76 TRACE("Reallocating buffer for atomic file %s with slack %d", f->name, F->slack_size);
77 f->buffer = xrealloc(f->buffer, size);
78 f->bufend = f->buffer + size;
79 f->bptr = f->buffer + written;
80 F->expected_max_bptr = f->bufend - F->slack_size;
83 fbatomic_internal_write(f);
87 fbatomic_close(struct fastbuf *f)
89 struct fb_atomic_file *af = FB_ATOMIC(f)->af;
90 if (!(f->flags & FB_DEAD))
91 fbatomic_internal_write(f); /* Need to flush explicitly, because the file can be locked */
101 fbatomic_open(const char *name, struct fastbuf *master, uns bufsize, int record_len)
103 struct fb_atomic *F = xmalloc_zero(sizeof(*F));
104 struct fastbuf *f = &F->fb;
105 struct fb_atomic_file *af;
108 af = FB_ATOMIC(master)->af;
110 ASSERT(af->record_len == record_len);
114 int fd = ucw_open(name, O_WRONLY | O_CREAT | O_TRUNC | O_APPEND, 0666);
116 trans_throw("ucw.fb.open", NULL, "Cannot create %s: %m", name);
117 af = xmalloc_zero(sizeof(*af) + strlen(name));
120 af->record_len = record_len;
121 af->locked = (record_len < 0);
122 strcpy(af->name, name);
125 if (record_len > 0 && bufsize % record_len)
126 bufsize += record_len - (bufsize % record_len);
127 f->buffer = xmalloc(bufsize);
128 f->bufend = f->buffer + bufsize;
129 F->slack_size = (record_len < 0) ? -record_len : 0;
130 ASSERT(bufsize > F->slack_size);
131 F->expected_max_bptr = f->bufend - F->slack_size;
132 f->bptr = f->bstop = f->buffer;
134 f->spout = fbatomic_spout;
135 f->close = fbatomic_close;
141 int main(int argc UNUSED, char **argv UNUSED)
143 struct fastbuf *f, *g;
145 // Always trace in the test
148 msg(L_INFO, "Testing block writes");
149 f = fbatomic_open("test", NULL, 16, 4);
150 for (u32 i=0; i<17; i++)
154 msg(L_INFO, "Testing interleaved var-size writes");
155 f = fbatomic_open("test2", NULL, 23, -5);
156 g = fbatomic_open("test2", f, 23, -5);
157 for (int i=0; i<100; i++)
159 struct fastbuf *x = (i%2) ? g : f;
160 bprintf(x, "%c<%d>\n", "fg"[i%2], ((259309*i) % 1000000) >> (i % 8));