]> mj.ucw.cz Git - libucw.git/blob - ucw/fb-multi.c
9acf8b0f5ab596d3c89f496266f6686b72e0e5c9
[libucw.git] / ucw / fb-multi.c
1 /*
2  *      UCW Library -- Fast Buffered I/O on itself
3  *
4  *      (c) 2012 Jan Moskyto Matejka <mq@ucw.cz>
5  *
6  *      This software may be freely distributed and used according to the terms
7  *      of the GNU Lesser General Public License.
8  */
9
10 #include <ucw/lib.h>
11 #include <ucw/clists.h>
12 #include <ucw/fastbuf.h>
13 #include <ucw/mempool.h>
14
15 #include <stdio.h>
16
17 #define FB_MULTI_NAME "<multi>"
18
19 struct fb_multi {
20   struct fastbuf fb;
21   struct mempool *mp;
22   struct subbuf *cur;
23   ucw_off_t len;
24   clist *subbufs;
25 };
26
27 #define FB_MULTI(f) ((struct fb_multi *)(f))
28
29 struct subbuf {
30   cnode n;
31   ucw_off_t begin, end, offset;
32   struct fastbuf *fb;
33 };
34
35 static void
36 fbmulti_subbuf_get_end(struct subbuf *s)
37 {
38   ASSERT(s->fb->seek);
39   bseek(s->fb, 0, SEEK_END);
40   s->end = s->begin + btell(s->fb);
41 }
42
43 static void
44 fbmulti_get_ptrs(struct fastbuf *f)
45 {
46   f->buffer = FB_MULTI(f)->cur->fb->buffer;
47   f->bptr = FB_MULTI(f)->cur->fb->bptr;
48   f->bstop = FB_MULTI(f)->cur->fb->bstop;
49   f->bufend = FB_MULTI(f)->cur->fb->bufend;
50   f->pos = FB_MULTI(f)->cur->begin + FB_MULTI(f)->cur->fb->pos - FB_MULTI(f)->cur->offset;
51 }
52
53 static void
54 fbmulti_set_ptrs(struct fastbuf *f)
55 {
56   FB_MULTI(f)->cur->fb->bptr = f->bptr;
57 }
58
59 static int
60 fbmulti_subbuf_next(struct fastbuf *f)
61 {
62   struct subbuf *next = clist_next(FB_MULTI(f)->subbufs, &FB_MULTI(f)->cur->n);
63   if (next == NULL)
64     return 0;
65
66   // Check the end of current buf
67   if (f->seek)
68     {
69       FB_MULTI(f)->cur->fb->seek(FB_MULTI(f)->cur->fb, FB_MULTI(f)->cur->end - FB_MULTI(f)->cur->begin, SEEK_SET);
70       fbmulti_get_ptrs(f);
71       ASSERT(FB_MULTI(f)->cur->end == f->pos);
72     }
73   else
74     FB_MULTI(f)->cur->end = f->pos;
75
76   // Set the beginning of the next buf
77   if (next->fb->seek)
78     {
79       bsetpos(next->fb, 0);
80       next->offset = 0;
81     }
82   else
83     {
84       ASSERT(!f->seek);
85       next->offset = btell(next->fb);
86     }
87
88   next->begin = FB_MULTI(f)->cur->end;
89
90   // Set the pointers
91   FB_MULTI(f)->cur = next;
92   fbmulti_get_ptrs(f);
93
94   return 1;
95 }
96
97 static int
98 fbmulti_subbuf_prev(struct fastbuf *f)
99 {
100   // Called only when seeking, assuming everything seekable
101   struct subbuf *prev = clist_prev(FB_MULTI(f)->subbufs, &FB_MULTI(f)->cur->n);
102   ASSERT(prev != NULL);
103
104   // Set pos to beginning, flush offset
105   bsetpos(prev->fb, 0);
106   prev->offset = 0;
107
108   // Set the pointers
109   FB_MULTI(f)->cur = prev;
110   fbmulti_get_ptrs(f);
111
112   return 1;
113 }
114
115 static int
116 fbmulti_refill(struct fastbuf *f)
117 {
118   fbmulti_set_ptrs(f);
119   // Refill the subbuf
120   uns len = FB_MULTI(f)->cur->fb->refill(FB_MULTI(f)->cur->fb);
121   if (len)
122     {
123       fbmulti_get_ptrs(f);
124       return len;
125     }
126
127   // Current buf returned EOF
128   // Update the information on end of this buffer
129   fbmulti_subbuf_get_end(FB_MULTI(f)->cur);
130
131   // Take the next one if exists and redo
132   if (fbmulti_subbuf_next(f))
133     return fbmulti_refill(f);
134   else
135     return 0;
136 }
137
138 static void
139 fbmulti_get_len(struct fastbuf *f)
140 {
141   ucw_off_t pos = btell(f);
142   ASSERT(f->seek);
143   FB_MULTI(f)->len = 0;
144
145   CLIST_FOR_EACH(struct subbuf *, n, *(FB_MULTI(f)->subbufs))
146     {
147       n->begin = FB_MULTI(f)->len;
148       fbmulti_subbuf_get_end(n);
149       FB_MULTI(f)->len = n->end;
150     }
151   f->seek(f, pos, SEEK_SET); // XXX: f->seek is needed here instead of bsetpos as the FE assumptions about f's state may be completely wrong.
152 }
153
154 static int
155 fbmulti_seek(struct fastbuf *f, ucw_off_t pos, int whence)
156 {
157   fbmulti_set_ptrs(f);
158   switch(whence)
159     {
160     case SEEK_SET:
161       if (pos > FB_MULTI(f)->len)
162         bthrow(f, "seek", "Seek out of range");
163
164       while (pos > FB_MULTI(f)->cur->end) // Moving forward
165         ASSERT(fbmulti_subbuf_next(f));
166
167       while (pos < FB_MULTI(f)->cur->begin) // Moving backwards
168         ASSERT(fbmulti_subbuf_prev(f));
169
170       // Now cur is the right buffer.
171       FB_MULTI(f)->cur->fb->seek(FB_MULTI(f)->cur->fb, (pos - FB_MULTI(f)->cur->begin), SEEK_SET);
172
173       fbmulti_get_ptrs(f);
174       return 1;
175       break;
176
177     case SEEK_END:
178       return fbmulti_seek(f, FB_MULTI(f)->len+pos, SEEK_SET);
179       break;
180
181     default:
182       ASSERT(0);
183     }
184 }
185
186 static void
187 fbmulti_close(struct fastbuf *f)
188 {
189   CLIST_FOR_EACH(struct subbuf *, n, *(FB_MULTI(f)->subbufs))
190     bclose(n->fb);
191
192   mp_delete(FB_MULTI(f)->mp);
193 }
194
195 struct fastbuf *
196 fbmulti_create(uns bufsize, ...)
197 {
198   struct mempool *mp = mp_new(bufsize);
199   struct fastbuf *fb_out = mp_alloc(mp, sizeof(struct fb_multi));
200   FB_MULTI(fb_out)->mp = mp;
201
202   struct fastbuf *fb_in;
203   clist *subbufs = mp_alloc(mp, sizeof(clist));
204   clist_init(subbufs);
205   FB_MULTI(fb_out)->subbufs = subbufs;
206
207   va_list args;
208   va_start(args, bufsize);
209   while (fb_in = va_arg(args, struct fastbuf *))
210     fbmulti_append(fb_out, fb_in);
211   
212   va_end(args);
213
214   fbmulti_update_capability(fb_out);
215
216   FB_MULTI(fb_out)->cur = clist_head(subbufs);
217   bsetpos(FB_MULTI(fb_out)->cur->fb, 0);
218
219   fbmulti_get_ptrs(fb_out);
220
221   // If seekable, get the length of each subbuf, the total length and boundaries
222   if (fb_out->seek)
223     {
224       fbmulti_get_len(fb_out);
225     }
226
227   fb_out->name = FB_MULTI_NAME;
228   f->refill = fbmulti_refill;
229   f->seek = fbmulti_seek;
230
231   fb_out->close = fbmulti_close;
232
233   return fb_out;
234 }
235
236 void
237 fbmulti_append(struct fastbuf *f, struct fastbuf *fb)
238 {
239   ASSERT(fb->refill);
240   if (!fb->seek)
241     f->seek = NULL;
242
243   struct subbuf *sb = mp_alloc(FB_MULTI(f)->mp, sizeof(struct subbuf));
244   sb->fb = fb;
245   clist_add_tail(FB_MULTI(f)->subbufs, &(sb->n));
246   fbmulti_update_capability(f);
247 }
248
249 void
250 fbmulti_remove(struct fastbuf *f, struct fastbuf *fb)
251 {
252   bflush(f);
253   uns pos = f->pos;
254   if (fb)
255     {
256       CLIST_FOR_EACH(struct subbuf *, n, *(FB_MULTI(f)->subbufs))
257         if (fb == n->fb)
258           {
259             // Move the pointers to another buffer if this one was the active.
260             if (FB_MULTI(f)->cur == n)
261               {
262                 pos = n->begin;
263                 if (!fbmulti_subbuf_next(f))
264                   {
265                     struct subbuf *prev = clist_prev(FB_MULTI(f)->subbufs, &FB_MULTI(f)->cur->n);
266                     if (prev == NULL)
267                       goto cleanup;
268
269                     FB_MULTI(f)->cur = prev;
270                     fbmulti_get_ptrs(f);
271                   }
272               }
273
274             if (n->end < pos)
275               pos -= (n->end - n->begin);
276
277             clist_remove(&(n->n));
278             fbmulti_update_capability(f);
279             fbmulti_get_len(f);
280             fbmulti_get_ptrs(f);
281             return;
282           };
283
284       die("Given fastbuf %p not in given fbmulti %p.", fb, f);
285     }
286   else
287     clist_init(FB_MULTI(f)->subbufs);
288
289 cleanup:
290   // The fbmulti is empty now, do some cleanup
291   fbmulti_update_capability(f);
292   fbmulti_get_len(f);
293   f->buffer = f->bufend = f->bptr = f->bstop = NULL;
294   f->pos = 0;
295 }
296
297 #ifdef TEST
298
299 int main(int argc, char **argv)
300 {
301   if (argc < 2)
302     {
303       fprintf(stderr, "You must specify a test (r, w, o)\n");
304       return 1;
305     }
306   switch (*argv[1])
307     {
308       case 'r':
309         {
310           char *data[] = { "One\nLine", "Two\nLines", "Th\nreeLi\nnes\n" };
311           struct fastbuf fb[ARRAY_SIZE(data)];
312           for (uns i=0;i<ARRAY_SIZE(data);i++)
313             fbbuf_init_read(&fb[i], data[i], strlen(data[i]), 0);
314
315           struct fastbuf *f = fbmulti_create(4, &fb[0], &fb[1], &fb[2], NULL);
316
317           char buffer[9];
318           while (bgets(f, buffer, 9))
319             puts(buffer);
320
321           bclose(f);
322           break;
323         }
324       case 'm':
325         {
326           char *data[] = { "Mnl", "ige" };
327           struct fastbuf fb[ARRAY_SIZE(data)];
328           for (uns i=0;i<ARRAY_SIZE(data);i++)
329             fbbuf_init_read(&fb[i], data[i], strlen(data[i]), 0);
330
331           struct fastbuf *f = fbmulti_create(4, &fb[0], &fb[1], NULL);
332
333           int pos[] = {0, 3, 1, 4, 2, 5};
334
335           for (uns i=0;i<ARRAY_SIZE(pos);i++)
336             {
337               bsetpos(f, pos[i]);
338               putchar(bgetc(f));
339             }
340
341           bclose(f);
342           break;
343         }
344       case 'i':
345         {
346           char *data = "Insae";
347           struct fastbuf fb[4];
348           fbbuf_init_read(&fb[0], data, 1, 0);
349           fbbuf_init_read(&fb[1], data + 1, 1, 0);
350           fbbuf_init_read(&fb[2], data + 2, 2, 0);
351           fbbuf_init_read(&fb[3], data + 4, 1, 0);
352
353           struct fastbuf *f = fbmulti_create(8, &fb[0], &fb[1], &fb[2], &fb[1], &fb[3], NULL);
354
355           char buffer[9];
356           while(bgets(f, buffer, 9))
357             puts(buffer);
358
359           bclose(f);
360           break;
361         }
362       case 'n':
363         {
364           char *data[] = { "Nested", "Data", "As", "In", "Real", "Usage", };
365           struct fastbuf fb[ARRAY_SIZE(data)];
366           for (uns i=0;i<ARRAY_SIZE(data);i++)
367             fbbuf_init_read(&fb[i], data[i], strlen(data[i]), 0);
368
369           struct fastbuf sp;
370           fbbuf_init_read(&sp, " ", 1, 0);
371
372           struct fastbuf nl;
373           fbbuf_init_read(&nl, "\n", 1, 0);
374
375           struct fastbuf *f = fbmulti_create(4,
376               fbmulti_create(5,
377                 &fb[0],
378                 &sp,
379                 &fb[1],
380                 NULL),
381               &nl,
382               fbmulti_create(7,
383                 &fb[2],
384                 &sp,
385                 &fb[3],
386                 NULL),
387               &nl,
388               fbmulti_create(3,
389                 &fb[4],
390                 &sp,
391                 &fb[5],
392                 NULL),
393               &nl,
394               NULL);
395
396           char buffer[20];
397           while (bgets(f, buffer, 20))
398             puts(buffer);
399
400           bclose(f);
401           break;
402         }
403     }
404   return 0;
405 }
406
407 #endif