IDZEBRA  2.2.7
stream.c
Go to the documentation of this file.
1 /* This file is part of the Zebra server.
2  Copyright (C) Index Data
3 
4 Zebra is free software; you can redistribute it and/or modify it under
5 the terms of the GNU General Public License as published by the Free
6 Software Foundation; either version 2, or (at your option) any later
7 version.
8 
9 Zebra is distributed in the hope that it will be useful, but WITHOUT ANY
10 WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12 for more details.
13 
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
17 
18 */
19 
20 #if HAVE_CONFIG_H
21 #include <config.h>
22 #endif
23 #include <stdio.h>
24 #include <assert.h>
25 
26 #include <fcntl.h>
27 #ifdef WIN32
28 #include <io.h>
29 #include <process.h>
30 #endif
31 #if HAVE_UNISTD_H
32 #include <unistd.h>
33 #endif
34 
35 #include "index.h"
36 
38  off_t offset_end;
40  const char *record_int_buf;
42 };
43 
45  off_t offset_end;
47  int fd;
48 };
49 
50 static off_t zebra_mem_seek(struct ZebraRecStream *s, off_t offset)
51 {
52  struct zebra_mem_control *fc = (struct zebra_mem_control *) s->fh;
53  return (off_t) (fc->record_int_pos = offset);
54 }
55 
56 static off_t zebra_mem_tell(struct ZebraRecStream *s)
57 {
58  struct zebra_mem_control *fc = (struct zebra_mem_control *) s->fh;
59  return (off_t) fc->record_int_pos;
60 }
61 
62 static int zebra_mem_read(struct ZebraRecStream *s, char *buf, size_t count)
63 {
64  struct zebra_mem_control *fc = (struct zebra_mem_control *) s->fh;
65  int l = fc->record_int_len - fc->record_int_pos;
66  if (l <= 0)
67  return 0;
68  l = (l < (int) count) ? l : (int) count;
69  memcpy (buf, fc->record_int_buf + fc->record_int_pos, l);
70  fc->record_int_pos += l;
71  return l;
72 }
73 
74 static off_t zebra_mem_end(struct ZebraRecStream *s, off_t *offset)
75 {
76  struct zebra_mem_control *fc = (struct zebra_mem_control *) s->fh;
77  if (offset)
78  fc->offset_end = *offset;
79  return fc->offset_end;
80 }
81 
82 static void zebra_mem_destroy(struct ZebraRecStream *s)
83 {
84  struct zebra_mem_control *fc = s->fh;
85  xfree(fc);
86 }
87 
88 static int zebra_ext_read(struct ZebraRecStream *s, char *buf, size_t count)
89 {
90  struct zebra_ext_control *fc = (struct zebra_ext_control *) s->fh;
91  return read(fc->fd, buf, count);
92 }
93 
94 static off_t zebra_ext_seek(struct ZebraRecStream *s, off_t offset)
95 {
96  struct zebra_ext_control *fc = (struct zebra_ext_control *) s->fh;
97  return lseek(fc->fd, offset + fc->record_offset, SEEK_SET);
98 }
99 
100 static off_t zebra_ext_tell(struct ZebraRecStream *s)
101 {
102  struct zebra_ext_control *fc = (struct zebra_ext_control *) s->fh;
103  return lseek(fc->fd, 0, SEEK_CUR) - fc->record_offset;
104 }
105 
106 static void zebra_ext_destroy(struct ZebraRecStream *s)
107 {
108  struct zebra_ext_control *fc = s->fh;
109  if (fc->fd != -1)
110  close(fc->fd);
111  xfree(fc);
112 }
113 
114 static off_t zebra_ext_end(struct ZebraRecStream *s, off_t *offset)
115 {
116  struct zebra_ext_control *fc = (struct zebra_ext_control *) s->fh;
117  if (offset)
118  fc->offset_end = *offset;
119  return fc->offset_end;
120 }
121 
122 
124  const char *buf, size_t sz)
125 {
126  struct zebra_mem_control *fc = xmalloc(sizeof(*fc));
127  fc->record_int_buf = buf;
128  fc->record_int_len = sz;
129  fc->record_int_pos = 0;
130  fc->offset_end = 0;
131 
132  stream->fh = fc;
133  stream->readf = zebra_mem_read;
134  stream->seekf = zebra_mem_seek;
135  stream->tellf = zebra_mem_tell;
136  stream->endf = zebra_mem_end;
137  stream->destroy = zebra_mem_destroy;
138 }
139 
141  int fd, off_t start_offset)
142 {
143  struct zebra_ext_control *fc = xmalloc(sizeof(*fc));
144 
145  fc->fd = fd;
146  fc->record_offset = start_offset;
147  fc->offset_end = 0;
148 
149  stream->fh = fc;
150  stream->readf = zebra_ext_read;
151  stream->seekf = zebra_ext_seek;
152  stream->tellf = zebra_ext_tell;
153  stream->endf = zebra_ext_end;
154  stream->destroy = zebra_ext_destroy;
155  zebra_ext_seek(stream, 0);
156 }
157 
158 /*
159  * Local variables:
160  * c-basic-offset: 4
161  * c-file-style: "Stroustrup"
162  * indent-tabs-mode: nil
163  * End:
164  * vim: shiftwidth=4 tabstop=8 expandtab
165  */
166 
static off_t zebra_mem_tell(struct ZebraRecStream *s)
Definition: stream.c:56
static void zebra_ext_destroy(struct ZebraRecStream *s)
Definition: stream.c:106
static off_t zebra_mem_end(struct ZebraRecStream *s, off_t *offset)
Definition: stream.c:74
static off_t zebra_ext_tell(struct ZebraRecStream *s)
Definition: stream.c:100
void zebra_create_stream_fd(struct ZebraRecStream *stream, int fd, off_t start_offset)
Definition: stream.c:140
void zebra_create_stream_mem(struct ZebraRecStream *stream, const char *buf, size_t sz)
Definition: stream.c:123
static void zebra_mem_destroy(struct ZebraRecStream *s)
Definition: stream.c:82
static off_t zebra_ext_end(struct ZebraRecStream *s, off_t *offset)
Definition: stream.c:114
static off_t zebra_ext_seek(struct ZebraRecStream *s, off_t offset)
Definition: stream.c:94
static off_t zebra_mem_seek(struct ZebraRecStream *s, off_t offset)
Definition: stream.c:50
static int zebra_mem_read(struct ZebraRecStream *s, char *buf, size_t count)
Definition: stream.c:62
static int zebra_ext_read(struct ZebraRecStream *s, char *buf, size_t count)
Definition: stream.c:88
record reader stream
Definition: recctrl.h:71
void(* destroy)(struct ZebraRecStream *s)
close and destroy stream
Definition: recctrl.h:83
off_t(* seekf)(struct ZebraRecStream *s, off_t offset)
seek function
Definition: recctrl.h:77
off_t(* endf)(struct ZebraRecStream *s, off_t *offset)
set and get of record position
Definition: recctrl.h:81
int(* readf)(struct ZebraRecStream *s, char *buf, size_t count)
read function
Definition: recctrl.h:75
void * fh
Definition: recctrl.h:73
off_t(* tellf)(struct ZebraRecStream *s)
tell function
Definition: recctrl.h:79
off_t record_offset
Definition: stream.c:46
off_t offset_end
Definition: stream.c:45
int record_int_len
Definition: stream.c:41
off_t offset_end
Definition: stream.c:38
const char * record_int_buf
Definition: stream.c:40
off_t record_int_pos
Definition: stream.c:39
int fd
Definition: tstlockscope.c:38