summaryrefslogtreecommitdiff
path: root/src/tet3/servlib/xdxfile.c
blob: 3737c89933dd36b5b0bd3f54b88d75f29799f7be (plain)
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
/*
 *      SCCS:  @(#)xdxfile.c	1.6 (96/11/04) 
 *
 *	UniSoft Ltd., London, England
 *
 * (C) Copyright 1992 X/Open Company Limited
 *
 * All rights reserved.  No part of this source code may be reproduced,
 * stored in a retrieval system, or transmitted, in any form or by any
 * means, electronic, mechanical, photocopying, recording or otherwise,
 * except as stated in the end-user licence agreement, without the prior
 * permission of the copyright owners.
 *
 * X/Open and the 'X' symbol are trademarks of X/Open Company Limited in
 * the UK and other countries.
 */

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

/************************************************************************

SCCS:   	@(#)xdxfile.c	1.6 96/11/04 TETware release 3.3
NAME:		xdxfile.c
PRODUCT:	TETware
AUTHOR:		Andrew Dingwall, UniSoft Ltd.
DATE CREATED:	May 1992

DESCRIPTION:
	function to transfer a save file to the master system

MODIFICATIONS:

	Aaron Plattner, April 2010
	Fixed warnings when compiled with GCC's -Wall option.

************************************************************************/

#include <stdio.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/stat.h>
#include "dtmac.h"
#include "dtmsg.h"
#include "avmsg.h"
#include "btmsg.h"
#include "valmsg.h"
#include "error.h"
#include "bstring.h"
#include "servlib.h"
#include "dtetlib.h"

/* static function declarations */
static int xd_tfclose PROTOLIST((int));
static long xd_tfopen PROTOLIST((char *, int));
static int xd_tfwrite PROTOLIST((FILE *, int, char *));
static int xd_wrloop PROTOLIST((FILE *, int, char *));


/*
**	tet_xdxfile() - transfer a save file to the xresd on the
**		master system
**
**	return 0 if successful or -1 on error
*/

int tet_xdxfile(ifile, ofile)
char *ifile, *ofile;
{
	register int rc;
	register int xfid;
	register FILE *ifp;
	struct STAT_ST stbuf;

	/* make sure that file names are non-null */
	if (!ifile || !*ifile || !ofile || !*ofile) {
		tet_xderrno = ER_INVAL;
		return(-1);
	}

	/* get the file mode */
	if (STAT(ifile, &stbuf) < 0) {
		error(errno, "stat failed on", ifile);
		tet_xderrno = ER_ERR;
		return(-1);
	}

	/* open the file */
	if ((ifp = fopen(ifile, "r")) == NULL) {
		error(errno, "can't open", ifile);
		tet_xderrno = ER_ERR;
		return(-1);
	}

	/* open the transfer file on the master system */
	if ((xfid = xd_tfopen(ofile, (int) stbuf.st_mode)) < 0) {
		(void) fclose(ifp);
		return(-1);
	}

	/* transfer the data to the master system */
	rc = xd_wrloop(ifp, xfid, ifile);

	/* close the local file and the transfer file on the master system */
	(void) fclose(ifp);
	return(xd_tfclose(xfid) < 0 ? -1 : rc);
}

/*
**	xd_tfopen() - open a transfer file on the master system
**
**	return the transfer file id if successful or -1 on error
*/

static long xd_tfopen(ofile, mode)
char *ofile;
int mode;
{
	register char *dp;
	extern char tet_xderrmsg[];

	/* get the xresd message buffer */
	if ((dp = tet_xdmsgbuf(avmsgsz(OP_TFOPEN_ARGC))) == (char *) 0) {
		tet_xderrno = ER_ERR;
		return(-1L);
	}

#define mp	((struct avmsg *) dp)

	/* set up the request message */
	mp->av_argc = OP_TFOPEN_ARGC;
	AV_TFNAME(mp) = ofile;
	AV_MODE(mp) = (long) mode;

#undef mp

	/* send the request and receive the reply */
	dp = tet_xdtalk(OP_TFOPEN, TALK_DELAY);

#define rp	((struct valmsg *) dp)

	/* handle the return codes */
	switch (tet_xderrno) {
	case ER_OK:
		return((int) VM_XFID(rp));
	case ER_ERR:
		if (!dp)
			break;
		/* else fall through */
	default:
		error(0, tet_xderrmsg, tet_ptrepcode(tet_xderrno));
		break;
	}

#undef rp

	/* here for server error return */
	return(-1L);
}

/*
**	xd_tfclose() - close a transfer file on the master system
**
**	return 0 if successful or -1 on error
*/

static int xd_tfclose(xfid)
int xfid;
{
	register struct valmsg *mp;
	extern char tet_xderrmsg[];

	/* get the xresd message buffer */
	if ((mp = (struct valmsg *) tet_xdmsgbuf(valmsgsz(OP_TFCLOSE_NVALUE))) == (struct valmsg *) 0) {
		tet_xderrno = ER_ERR;
		return(-1);
	}

	/* set up the request message */
	mp->vm_nvalue = OP_TFCLOSE_NVALUE;
	VM_XFID(mp) = (long) xfid;

	/* send the request and receive the reply */
	mp = (struct valmsg *) tet_xdtalk(OP_TFCLOSE, TALK_DELAY);

	/* handle the return codes */
	switch (tet_xderrno) {
	case ER_OK:
		return(0);
	case ER_ERR:
		if (!mp)
			break;
		/* else fall through */
	default:
		error(0, tet_xderrmsg, tet_ptrepcode(tet_xderrno));
		break;
	}

	/* here for server error return */
	return(-1);
}

/*
**	xd_wrloop() - write a transfer file on the master system
**
**	return 0 if successful or -1 on error
*/

static int xd_wrloop(ifp, xfid, ifile)
FILE *ifp;
int xfid;
char *ifile;
{
	register int rc;

	while ((rc = xd_tfwrite(ifp, xfid, ifile)) > 0)
		;

	return(rc);
}

/*
**	xd_tfwrite() - perform a single transfer file i/o operation
**
**	return	1 if successful
**		0 on EOF
**		-1 on error
*/

static int xd_tfwrite(ifp, xfid, ifile)
FILE *ifp;
int xfid;
char *ifile;
{
	register struct btmsg *mp;
	register int n;
	extern char tet_xderrmsg[];

	/* get the XRESD message buffer */
	if ((mp = (struct btmsg *) tet_xdmsgbuf(BT_BTMSGSZ)) == (struct btmsg *) 0)
		return(-1);

	/* read the input file */
	if ((n = fread(mp->bt_data, sizeof mp->bt_data[0], sizeof mp->bt_data, ifp)) < 0) {
		error(errno, "read error on", ifile);
		tet_xderrno = ER_ERR;
		return(-1);
	}
	else if (n == 0)
		return(0);

	/* set up the request message */
	mp->bt_fid = (unsigned short) xfid;
	mp->bt_count = (unsigned short) n;
	if (n < sizeof mp->bt_data)
		bzero(&mp->bt_data[n], (int) (sizeof mp->bt_data - n));

	/* send the request and recieve the reply */
	mp = (struct btmsg *) tet_xdtalk(OP_TFWRITE, TALK_DELAY);

	/* handle the return codes */
	switch (tet_xderrno) {
	case ER_OK:
		return(1);
	case ER_ERR:
		if (!mp)
			break;
		/* else fall through */
	default:
		error(0, tet_xderrmsg, tet_ptrepcode(tet_xderrno));
		break;
	}

	/* here for server error return */
	return(-1);
}