File: fs_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 (283 lines) | stat: -rw-r--r-- 7,894 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
283
/*
 * 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.
 */

/*
 * Copyright (c) 1989, 1993
 *	The Regents of the University of California.  All rights reserved.
 * (c) UNIX System Laboratories, Inc.
 * All or some portions of this file are derived from material licensed
 * to the University of California by American Telephone and Telegraph
 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
 * the permission of UNIX System Laboratories, Inc.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 * 3. All advertising materials mentioning features or use of this software
 *    must display the following acknowledgement:
 *	This product includes software developed by the University of
 *	California, Berkeley and its contributors.
 * 4. Neither the name of the University nor the names of its contributors
 *    may be used to endorse or promote products derived from this software
 *    without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 * SUCH DAMAGE.
 */

#include <oskit/com.h>
#include <oskit/com/wrapper.h>
#include <oskit/c/string.h>
#include <oskit/boolean.h>
#include <oskit/io/absio.h>
#include <oskit/com/stream.h>
#include <oskit/fs/filesystem.h>
#include <oskit/fs/file.h>
#include <oskit/fs/dir.h>
#include <oskit/fs/openfile.h>
#include <oskit/c/assert.h>
#include <oskit/c/malloc.h>

/*
 * Wrappers for oskit_filesysem component.
 */
struct gfilesystem {
	oskit_filesystem_t	fsi;		/* COM file interface */
	int			count;
	oskit_filesystem_t	*w_fsi;		/* Wrapped COM FS interface */
	void			(*before)(void *);
	void			(*after)(void *);
	void			*cookie;
};

#define WRAPPERCALL(g, ops, iface, call, args...) ({			      \
	oskit_error_t __err;						      \
	g->before(g->cookie);						      \
	__err = oskit_##iface##_##call(g->w_##ops ,##args);        	      \
	DEBUGWRAPPER(iface, call, __err);				      \
	g->after(g->cookie);						      \
	__err; })

#define WRAPPERCALL_NOARGS(g, ops, iface, call) ({			      \
	oskit_error_t __err;						      \
	g->before(g->cookie);						      \
	__err = oskit_##iface##_##call(g->w_##ops);	      	      	      \
	DEBUGWRAPPER(iface, call, __err);				      \
	g->after(g->cookie);						      \
	__err; })


/*
 * oskit_filesystem methods
 */
static OSKIT_COMDECL
filesystem_query(oskit_filesystem_t *f,
		 const struct oskit_guid *iid, void **out_ihandle)
{
	struct gfilesystem	*fs = (struct gfilesystem *) f;

	if (!fs || !fs->count)
		return OSKIT_E_INVALIDARG;

	if (memcmp(iid, &oskit_iunknown_iid, sizeof(*iid)) == 0 ||
	    memcmp(iid, &oskit_filesystem_iid, sizeof(*iid)) == 0) {
		*out_ihandle = &fs->fsi;
		fs->before(fs->cookie);
		++fs->count;
		fs->after(fs->cookie);
		return 0;
	}

	*out_ihandle = NULL;
	return OSKIT_E_NOINTERFACE;    
}

static OSKIT_COMDECL_U
filesystem_addref(oskit_filesystem_t *f)
{
	struct gfilesystem	*fs = (struct gfilesystem *) f;
	unsigned		newcount;

	if (!fs || !fs->count)
		return OSKIT_E_INVALIDARG;

	fs->before(fs->cookie);
	newcount = ++fs->count;
	fs->after(fs->cookie);

	return newcount;
}

static OSKIT_COMDECL_U
filesystem_release(oskit_filesystem_t *f)
{
	struct gfilesystem	*fs = (struct gfilesystem *) f;
        unsigned		newcount;

	if (!fs || !fs->count)
		return OSKIT_E_INVALIDARG;

	fs->before(fs->cookie);
	if ((newcount = --fs->count) == 0) {
		if (fs->w_fsi)
			oskit_filesystem_release(fs->w_fsi);
		fs->after(fs->cookie);
		free(fs);
	}
	else
		fs->after(fs->cookie);
		
	return newcount;
}

static OSKIT_COMDECL
filesystem_statfs(oskit_filesystem_t *f, oskit_statfs_t *out_stats)
{
	struct gfilesystem	*fs = (struct gfilesystem *) f;
	oskit_error_t		err;

	if (!fs || !fs->count)
		return OSKIT_E_INVALIDARG;

	err = WRAPPERCALL(fs, fsi, filesystem, statfs, out_stats);

	return err;
}

static OSKIT_COMDECL
filesystem_sync(oskit_filesystem_t *f, oskit_bool_t wait)
{
	struct gfilesystem	*fs = (struct gfilesystem *) f;
	oskit_error_t		err;

	if (!fs || !fs->count)
		return OSKIT_E_INVALIDARG;

	err = WRAPPERCALL(fs, fsi, filesystem, sync, wait);

	return err;
}

static OSKIT_COMDECL
filesystem_getroot(oskit_filesystem_t *f, struct oskit_dir **out_dir)
{
	struct gfilesystem	*fs = (struct gfilesystem *) f;
	oskit_dir_t		*newdir;
	oskit_error_t		err;

	if (!fs || !fs->count)
		return OSKIT_E_INVALIDARG;

	err = WRAPPERCALL(fs, fsi, filesystem, getroot, &newdir);

	if (err == 0) {
		err = oskit_wrap_dir(newdir,
				     fs->before, fs->after, fs->cookie,
				     out_dir);

		if (err == 0)
			oskit_dir_release(newdir);
	}

	return err;
}

static OSKIT_COMDECL
filesystem_remount(oskit_filesystem_t *f, oskit_u32_t flags)
{
	struct gfilesystem	*fs = (struct gfilesystem *) f;
	oskit_error_t		err;

	if (!fs || !fs->count)
		return OSKIT_E_INVALIDARG;

	err = WRAPPERCALL(fs, fsi, filesystem, remount, flags);

	return err;
}

static OSKIT_COMDECL
filesystem_unmount(oskit_filesystem_t *f)
{
	struct gfilesystem	*fs = (struct gfilesystem *) f;
	oskit_error_t		err;

	if (!fs || !fs->count)
		return OSKIT_E_INVALIDARG;

	err = WRAPPERCALL(fs, fsi, filesystem, unmount);

	return err;
}

static struct oskit_filesystem_ops fs_ops = {
	filesystem_query,
	filesystem_addref,
	filesystem_release,
	filesystem_statfs,
	filesystem_sync,
	filesystem_getroot,
	filesystem_remount,
	filesystem_unmount
};

/*
 * oskit_filesystem wrapper constructor.
 */
oskit_error_t
oskit_wrap_filesystem(oskit_filesystem_t *in,
		      void (*before)(),
		      void (*after)(),
		      void *cookie,
		      oskit_filesystem_t **out)
{
	struct gfilesystem	*newfs = malloc(sizeof(*newfs));

        if (newfs == NULL)
                return OSKIT_ENOMEM;
        memset(newfs, 0, sizeof(*newfs));

        newfs->count   = 1;
        newfs->fsi.ops = &fs_ops;
 	newfs->w_fsi   = in;
	oskit_filesystem_addref(in);

	newfs->before = before;
	newfs->after  = after;
	newfs->cookie = cookie;

	*out = &newfs->fsi;
	return 0;
}