File: iomt_use.c

package info (click to toggle)
fis-gtm 6.2-000-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 30,784 kB
  • ctags: 42,554
  • sloc: ansic: 358,483; asm: 4,847; csh: 4,574; sh: 2,261; awk: 200; makefile: 86; sed: 13
file content (221 lines) | stat: -rw-r--r-- 5,727 bytes parent folder | download | duplicates (2)
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
/****************************************************************
 *								*
 *	Copyright 2001, 2006 Fidelity Information Services, Inc	*
 *								*
 *	This source code contains the intellectual property	*
 *	of its copyright holder(s), and is made available	*
 *	under a license.  If you do not know the terms of	*
 *	the license, please stop and do not read further.	*
 *								*
 ****************************************************************/

#include "mdef.h"
#include "gtm_iconv.h"
#include "gtm_string.h"

#include "copy.h"
#include "io_params.h"
#include "io.h"
#include "iosp.h"
#include "iottdef.h"
#include "iomtdef.h"
#include "nametabtyp.h"
#include "stringpool.h"
#include "namelook.h"

static readonly nametabent mtlab_names[] =
{
	 {3, "ANS"}, {4,"ANSI"}, {3, "DOS"}, {5, "DOS11"}
};
static readonly unsigned char mtlab_index[27] =
{
	0, 2, 2, 2, 4, 4, 4, 4, 4, 4, 4, 4, 4
	,4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4
	,4, 4, 4
};

static readonly char mtlab_type[]={MTLAB_ANSI, MTLAB_ANSI, MTLAB_DOS11, MTLAB_DOS11};

static readonly nametabent mtwtlab_names[] =
{
	{4, "EOF1"}, {4,"EOF2"}, {4, "HDR1"}, {4, "HDR2"}, {4, "VOL1"}
};

static readonly unsigned char mtwtlab_index[27] =
{
	0, 0, 0, 0, 0, 2, 2, 2, 4, 4, 4, 4, 4
	,4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5
	,5, 5, 5
};

static readonly char mtwtlab_type[]={MTL_EOF1, MTL_EOF2, MTL_HDR1, MTL_HDR2, MTL_VOL1};

LITREF unsigned char io_params_size[];

void iomt_use(io_desc *iod, mval *pp)
{
	unsigned char	ch, len;
	int		lab_type;
	int4		length, width;
	int4		skips;
	d_mt_struct	*mt_ptr, *out_ptr;
	io_desc		*d_in, *d_out;
	char		*tab;
	int		p_offset;

	error_def(ERR_MTINVLAB);
	error_def(ERR_DEVPARMNEG);
	error_def(ERR_UNIMPLOP);

	p_offset = 0;
	d_in = iod->pair.in;
	d_out = iod->pair.out;
	mt_ptr = (d_mt_struct *)iod->dev_sp;
	out_ptr = (d_mt_struct *)d_out->dev_sp;
	while (*(pp->str.addr + p_offset) != iop_eol)
	{
		switch (ch = *(pp->str.addr + p_offset++))
		{
		case iop_ebcdic:
			mt_ptr->ebcdic = TRUE;
			break;
		case iop_noebcdic:
			mt_ptr->ebcdic = FALSE;
			break;
		case iop_newversion:
			mt_ptr->newversion = TRUE;
			break;
		case iop_label:
			len = *(pp->str.addr + p_offset);
			tab = pp->str.addr + p_offset + 1;
			if ((lab_type = namelook(mtlab_index, mtlab_names, tab, len)) < 0)
				rts_error(VARLSTCNT(1) ERR_MTINVLAB);
			mt_ptr->labeled = mtlab_type[lab_type];
			break;
		case iop_nolabel:
			mt_ptr->labeled = FALSE;
			break;
		case iop_rdcheckdata:
			mt_ptr->read_mask |= IO_M_DATACHECK;
			break;
		case iop_nordcheckdata:
			mt_ptr->read_mask &= (~(IO_M_DATACHECK));
			break;
		case iop_wtcheckdata:
			mt_ptr->write_mask |= IO_M_DATACHECK;
			break;
		case iop_nowtcheckdata:
			mt_ptr->write_mask &= (~(IO_M_DATACHECK));
			break;
		case iop_inhretry:
			mt_ptr->write_mask |= IO_M_INHRETRY;
			mt_ptr->read_mask |= IO_M_INHRETRY;
			break;
		case iop_retry:
			mt_ptr->write_mask &= ~IO_M_INHRETRY;
			mt_ptr->read_mask &= ~IO_M_INHRETRY;
			break;
		case iop_inhextgap:
			mt_ptr->write_mask |= IO_M_INHEXTGAP;
			break;
		case iop_extgap:
			mt_ptr->write_mask &= ~IO_M_INHEXTGAP;
			break;
		case iop_length:
			GET_LONG(length, (pp->str.addr + p_offset));
			if (length < 0)
				rts_error(VARLSTCNT(1) ERR_DEVPARMNEG);
			iod->length = length;
			break;
		case iop_width:
			GET_LONG(width, (pp->str.addr + p_offset));
			if (width < 0)
				rts_error(VARLSTCNT(1) ERR_DEVPARMNEG);
			if (width == 0)
			{
				iod->wrap = FALSE;
				iod->width = mt_ptr->record_sz;
			} else  if (width <= mt_ptr->record_sz)
			{
				iomt_flush(iod);
				iod->width = width;
				iod->wrap = TRUE;
			}
			break;
		case iop_wrap:
			out_ptr->wrap = TRUE;
			break;
		case iop_nowrap:
			out_ptr->wrap = FALSE;
			break;
		case iop_skipfile:
			GET_LONG(skips, (pp->str.addr + p_offset));
			iomt_skipfile(iod, skips);
			break;
		case iop_unload:
			assert(FALSE);
			break;
		case iop_rewind:
			iomt_rewind(iod);
			break;
		case iop_erasetape:
			iomt_erase(iod);
			break;
		case iop_space:
			GET_LONG(skips, (pp->str.addr + p_offset));
			iomt_skiprecord(iod, skips);
			break;
		case iop_writeof:
			iomt_eof(iod);
			break;
		case iop_writetm:
			iomt_tm(iod);
			break;
		case iop_writelb:
			len = *(pp->str.addr + p_offset);
			tab = pp->str.addr + p_offset + 1;
			if ((lab_type = namelook(mtwtlab_index, mtwtlab_names, tab, len)) < 0)
				rts_error(VARLSTCNT(1) ERR_MTINVLAB);
			iomt_wtansilab(iod, mtwtlab_type[lab_type]);
			break;
		case iop_next:
			rts_error(VARLSTCNT(1) ERR_UNIMPLOP);
			break;
		case iop_exception:
			iod->error_handler.len = *(pp->str.addr + p_offset);
			iod->error_handler.addr = (char *)(pp->str.addr + p_offset + 1);
			s2pool(&iod->error_handler);
			break;
		case iop_ipchset:
			{
#if defined(KEEP_zOS_EBCDIC) || defined(VMS)
				if ( (iconv_t)0 != iod->input_conv_cd )
				{
					ICONV_CLOSE_CD(iod->input_conv_cd);
				}
				SET_CODE_SET(iod->in_code_set, (char *)(pp->str.addr + p_offset + 1));
				if (DEFAULT_CODE_SET != iod->in_code_set)
					ICONV_OPEN_CD(iod->input_conv_cd, (char *)(pp->str.addr + p_offset + 1), INSIDE_CH_SET);
#endif
                        	break;
			}
                case iop_opchset:
			{
#if defined(KEEP_zOS_EBCDIC) || defined(VMS)
				if ( (iconv_t) 0 != iod->output_conv_cd )
				{
					ICONV_CLOSE_CD(iod->output_conv_cd);
				}
				SET_CODE_SET(iod->out_code_set, (char *)(pp->str.addr + p_offset + 1));
				if (DEFAULT_CODE_SET != iod->out_code_set)
					ICONV_OPEN_CD(iod->output_conv_cd, INSIDE_CH_SET, (char *)(pp->str.addr + p_offset + 1));
#endif
                        	break;
			}
		default:
			break;
		}
		p_offset += ((IOP_VAR_SIZE == io_params_size[ch]) ?
			(unsigned char)*(pp->str.addr + p_offset) + 1 : io_params_size[ch]);
	}
}