File: init_rs.c

package info (click to toggle)
clif 0.93-9.1
  • links: PTS
  • area: main
  • in suites: bullseye, buster, stretch
  • size: 4,228 kB
  • sloc: ansic: 31,464; yacc: 5,067; lex: 819; makefile: 383; sh: 48
file content (218 lines) | stat: -rw-r--r-- 4,440 bytes parent folder | download | duplicates (4)
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
/*
    Clif - A C-like Interpreter Framework
    Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997 T. Hruz, L. Koren
    1998 L. Koren

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

    This program 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
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.

*/
/*
 * init_rs.c
 *
 * Initialization of the run string compiler 
 * and redefinition of its input function.
 */

#include <stdio.h>
#include <string.h>
#include <ctype.h>

#include "allocx.h"

#ifndef PROTO
#if defined (USE_PROTOTYPES) ? USE_PROTOTYPES : defined(__STDC__)
#define PROTO(ARGS) ARGS
#else
#define PROTO(ARGS) ()
#endif 
#endif

#ifndef FLEX_SCANNER
int input_rs_ PROTO((void));
#endif
void init_rs PROTO((int, char *[]));


extern int getcx PROTO((FILE *));
extern void error_message PROTO((int, ...));
extern int fprintfx PROTO((FILE *, char *, ...));

FILE *pfrs;
extern char *argvv[];
static char *argv_rs[200];
static int argc_rs;
#ifndef FLEX_SCANNER
static int argc_rs_pointer = 1, 
  counter_rs = 0;
#else
static void switch_to_char_buffer PROTO((void));
#endif


char name[]="clif.ini";/* Name of the Clif's initialization file.
			* It is always opened.
			*/

int yy_rs_wrap PROTO((void));

#ifndef FLEX_SCANNER
/*
 * Redefinition of the input for the run string compiler.
 */
int
input_rs_ ()
{
  if ((argc_rs_pointer < argc_rs)  ||  (pfrs != NULL))
    {
      if (pfrs == NULL)
	{ 
	  if (argv_rs[argc_rs_pointer][counter_rs] != '\0')
	    {
	      yy_rs_tchar = yy_rs_sptr > yy_rs_sbuf ? 
		U_rs_(*--yy_rs_sptr) : 
		argv_rs[argc_rs_pointer][counter_rs++];
	    }
	  else if (++argc_rs_pointer >= argc_rs)
	    return 0;
	  else
	    {
	      yy_rs_tchar = yy_rs_sptr > yy_rs_sbuf ? 
		U_rs_(*--yy_rs_sptr) : '\n';
	      counter_rs = 0;
	    }
	}
      else
	yy_rs_tchar = yy_rs_sptr > yy_rs_sbuf ? 
	  U_rs_(*--yy_rs_sptr): getcx (pfrs);

      if (yy_rs_tchar == 10)
	yy_rs_lineno++;
      if (yy_rs_tchar == EOF)
	{
	  fclose (pfrs);
	  pfrs = NULL;
	  if (argc_rs_pointer < argc_rs)
	    {
	      if(argv_rs[argc_rs_pointer][counter_rs] != '\0')
		{
		  yy_rs_tchar = yy_rs_sptr > yy_rs_sbuf ?
		    U_rs_(*--yy_rs_sptr) :
		    argv_rs[argc_rs_pointer][counter_rs++];
		}
	      else if ((++argc_rs_pointer) >= argc_rs)
		return 0;
	      else
		{
		  yy_rs_tchar = yy_rs_sptr > yy_rs_sbuf ?
		    U_rs_(*--yy_rs_sptr) : '\n';
		  counter_rs = 0;
		}
	    }
	  else
	    return 0;
	}
      return (yy_rs_tchar);
    }
  else
    return 0;
}
#else

static void
switch_to_char_buffer ()
{
  register int i, len = 0;
  char *str_ptr = NULL;
  for (i = 1; i < argc_rs; i++)
    {
      int tmp_len = strlen (argv_rs[i]);
      str_ptr = reallocx (str_ptr, tmp_len + len + 1);
      if (str_ptr == NULL)
	{
	  error_message (4002);
	  return;
	}
      if (len > 0)
	{
	  str_ptr[len] = ' ';
	  str_ptr[len + 1] = '\0';
	  len++;
	}
      else
	str_ptr[0] = '\0';
      len += tmp_len;
      strcat (str_ptr, argv_rs[i]);
    }
  if (NULL != str_ptr)
    yy_rs__scan_string (str_ptr);
}

#endif

/*
 * Initialization of the run string compiler.
 */
void 
init_rs (argc1,argv1)
  int argc1;
  char *argv1[];
{
  int b;
  
  if ((argvv[0] = (char *)callocx (1, 6)) == NULL)
    {
      error_message (4002);
      return;
    }
  strcpy (argvv[0],"stdin");
  
  for (b = 1; b < argc1; b++)
    {
      if ((argv_rs[b] = (char *)callocx (1, strlen (argv1[b]) + 1))
	  == NULL) 
	{
	  error_message (4002);
	  return;
	}
      strcpy (argv_rs[b], argv1[b]);
    }
  argc_rs = argc1;
  pfrs = fopen (name, "r");
  if (pfrs == NULL)
    fprintfx (stderr, "\nwarning: clif.ini does not exist\n");

#ifdef FLEX_SCANNER
  yy_rs_in = pfrs;
#endif
}


/*
 * Redefinition of internal yacc function yywrap.
 */
int
yy_rs_wrap ()
{
#ifdef FLEX_SCANNER
  static int flag;
  if (! flag)
    {
      switch_to_char_buffer ();
      flag = 1;
      return 0;
    }
#endif
  return 1;
}