File: stream_wrapper.c

package info (click to toggle)
oskit 0.97.20000202-1
  • links: PTS
  • area: main
  • in suites: potato
  • size: 58,008 kB
  • ctags: 172,612
  • sloc: ansic: 832,827; asm: 7,640; sh: 3,920; yacc: 3,664; perl: 1,457; lex: 427; makefile: 337; csh: 141; awk: 78
file content (282 lines) | stat: -rw-r--r-- 7,642 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
/*
 * Copyright (c) 1997-1998 University of Utah and the Flux Group.
 * All rights reserved.
 * 
 * This file is part of the Flux OSKit.  The OSKit is free software, also known
 * as "open source;" you can redistribute it and/or modify it under the terms
 * of the GNU General Public License (GPL), version 2, as published by the Free
 * Software Foundation (FSF).  To explore alternate licensing terms, contact
 * the University of Utah at csl-dist@cs.utah.edu or +1-801-585-3271.
 * 
 * The OSKit is distributed in the hope that it will be useful, but WITHOUT ANY
 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 * FOR A PARTICULAR PURPOSE.  See the GPL for more details.  You should have
 * received a copy of the GPL along with the OSKit; see the file COPYING.  If
 * not, write to the FSF, 59 Temple Place #330, Boston, MA 02111-1307, USA.
 */

/*
 * Definitions of a simple wrapper that can be used to protect oskit_stream
 * interfaces.
 */

#include <oskit/com/stream.h>
#include <oskit/com/wrapper.h>
#include <oskit/c/stdlib.h>

typedef struct {
	oskit_stream_t	ioi;		/* COM interface being exported */
	int		count;		/* reference count */
	oskit_stream_t	*wrapped;	/* COM interface being wrapped */
	void		(*before)(void *);
	void		(*after)(void *);
	void		*cookie;
} streamwrap_impl_t;

#define WRAPPERCALL(impl, call, args...) ({                      	\
        oskit_error_t __err;                                            \
        impl->before(impl->cookie);                                     \
        __err = oskit_stream_##call(impl->wrapped ,##args);          	\
        impl->after(impl->cookie);                                      \
        __err; })

#define WRAPPERCALL_NOARGS(impl, call) ({                        	\
        oskit_error_t __err;                                            \
        impl->before(impl->cookie);                                     \
        __err = oskit_stream_##call(impl->wrapped);                     \
        impl->after(impl->cookie);                                    	\
        __err; })


static OSKIT_COMDECL
stream_query(oskit_stream_t *f, const struct oskit_guid *iid, 
	void **out_ihandle)
{
        streamwrap_impl_t  *b = (streamwrap_impl_t *)f;

	if (memcmp(iid, &oskit_iunknown_iid, sizeof(*iid)) == 0 ||
            memcmp(iid, &oskit_stream_iid, sizeof(*iid)) == 0) {
                *out_ihandle = &b->ioi;
		b->before(b->cookie);
                ++b->count;
		b->after(b->cookie);
                return 0;
        }
        *out_ihandle = NULL;
        return OSKIT_E_NOINTERFACE;
}

static OSKIT_COMDECL_U
stream_addref(oskit_stream_t *f)
{
        streamwrap_impl_t *b = (streamwrap_impl_t *)f;
        unsigned newcount;

	b->before(b->cookie);
	newcount = ++b->count;
	b->after(b->cookie);
	return newcount;
}

static OSKIT_COMDECL_U
stream_release(oskit_stream_t *f)
{
        streamwrap_impl_t *b = (streamwrap_impl_t *)f;
        unsigned newcount;

	b->before(b->cookie);
        if ((newcount = --b->count) == 0) {
		oskit_stream_release(b->wrapped);
		b->after(b->cookie);
		free(b);
	} else
		b->after(b->cookie);
	return newcount;
}

/*******************************************************/
/******* Implementation of the oskit_stream_t if *******/
/*******************************************************/

static OSKIT_COMDECL
stream_read(oskit_stream_t *f, void *buf, oskit_u32_t len,
                                oskit_u32_t *out_actual)
{
        streamwrap_impl_t *s = (streamwrap_impl_t *)f;
        oskit_error_t    err;

        err = WRAPPERCALL(s, read, buf, len, out_actual);

        return err;
}

static OSKIT_COMDECL
stream_write(oskit_stream_t *f, const void *buf,
                                 oskit_u32_t len, oskit_u32_t *out_actual)
{
        streamwrap_impl_t *s = (streamwrap_impl_t *)f;
        oskit_error_t    err;

        err = WRAPPERCALL(s, write, buf, len, out_actual);

        return err;
}

static OSKIT_COMDECL
stream_seek(oskit_stream_t *f, oskit_s64_t ofs,
        oskit_seek_t whence, oskit_u64_t *out_newpos)
{
        streamwrap_impl_t *s = (streamwrap_impl_t *)f;
        oskit_error_t    err;

        err = WRAPPERCALL(s, seek, ofs, whence, out_newpos);

        return err;
}

static OSKIT_COMDECL
stream_setsize(oskit_stream_t *f, oskit_u64_t new_size)
{
        streamwrap_impl_t *s = (streamwrap_impl_t *)f;
        oskit_error_t    err;

        err = WRAPPERCALL(s, setsize, new_size);

        return err;
}

static OSKIT_COMDECL
stream_copyto(oskit_stream_t *f, oskit_stream_t *dst,
        oskit_u64_t size,
        oskit_u64_t *out_read,
        oskit_u64_t *out_written)
{
        streamwrap_impl_t *s = (streamwrap_impl_t *)f;
        oskit_error_t    err;

        err = WRAPPERCALL(s, copyto,
                          dst, size, out_read, out_written);

        return err;
}

static OSKIT_COMDECL
stream_commit(oskit_stream_t *f, oskit_u32_t commit_flags)
{
        streamwrap_impl_t *s = (streamwrap_impl_t *)f;
        oskit_error_t    err;

        err = WRAPPERCALL(s, commit, commit_flags);

        return err;
}

static OSKIT_COMDECL
stream_revert(oskit_stream_t *f)
{
        streamwrap_impl_t *s = (streamwrap_impl_t *)f;
        oskit_error_t    err;

        err = WRAPPERCALL_NOARGS(s, revert);

        return err;
}

static OSKIT_COMDECL
stream_lock_region(oskit_stream_t *f,
        oskit_u64_t offset, oskit_u64_t size, oskit_u32_t lock_type)
{
        streamwrap_impl_t *s = (streamwrap_impl_t *)f;
        oskit_error_t    err;

        err = WRAPPERCALL(s, lockregion, offset, size, lock_type);

        return err;
}

static OSKIT_COMDECL
stream_unlock_region(oskit_stream_t *f,
        oskit_u64_t offset, oskit_u64_t size, oskit_u32_t lock_type)
{
        streamwrap_impl_t *s = (streamwrap_impl_t *)f;
        oskit_error_t    err;

        err = WRAPPERCALL(s, unlockregion, offset, size, lock_type);

        return err;
}

static OSKIT_COMDECL
stream_stat(oskit_stream_t *f, oskit_stream_stat_t *out_stat,
        oskit_u32_t stat_flags)
{
        streamwrap_impl_t *s = (streamwrap_impl_t *)f;
        oskit_error_t    err;

        err = WRAPPERCALL(s, stat, out_stat, stat_flags);

        return err;
}

static OSKIT_COMDECL
stream_clone(oskit_stream_t *f, oskit_stream_t **out_stream)
{
        streamwrap_impl_t *s = (streamwrap_impl_t *)f;
        oskit_error_t    err;
	oskit_stream_t *out;

        err = WRAPPERCALL(s, clone, &out);

	if (err == 0) {
		err = oskit_wrap_stream(out, s->before, s->after, s->cookie,
			out_stream);	
		oskit_stream_release(out);
	}
        return err;
}

/***************************************************************************/
/*
 * vtables for interfaces exported by streams
 */
static struct oskit_stream_ops streamops =
{
        stream_query,
        stream_addref,
        stream_release,
        stream_read,
        stream_write,
        stream_seek,
        stream_setsize,
        stream_copyto,
        stream_commit,
        stream_revert,
        stream_lock_region,
        stream_unlock_region,
        stream_stat,
        stream_clone
};

/*
 * Wrap a stream_t in before/after brackets.
 */
oskit_error_t
oskit_wrap_stream(oskit_stream_t *in, 
	void (*before)(void *), void (*after)(void *), void *cookie,
	oskit_stream_t **out)
{
        streamwrap_impl_t *newsi = malloc(sizeof(*newsi));

        if (newsi == NULL)
                return OSKIT_ENOMEM;

	newsi->count = 1;
	newsi->ioi.ops = &streamops;
	newsi->wrapped = in;
	oskit_stream_addref(in);
	newsi->before = before;
	newsi->after = after;
	newsi->cookie = cookie;
	*out = &newsi->ioi;
	return 0;
}