File: fileio.c

package info (click to toggle)
src2tex 2.12h-4
  • links: PTS
  • area: main
  • in suites: potato
  • size: 1,932 kB
  • ctags: 144
  • sloc: ansic: 5,672; sh: 405; makefile: 134; lisp: 46; sed: 39
file content (261 lines) | stat: -rw-r--r-- 6,583 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
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
/* {\hrulefill} *
{\ % beginning of TeX mode

\input fonts.tex % define fonts
\input title.tex % title and authors

% end of TeX mode}
* {\hrulefill} */


/* {\hrulefill\ fileio.c\ \hrulefill} */


#include <stdio.h>
#include "src2tex.h"

int Page_Len_Max = -1;


/* {\hrulefill\ get file names in cptr[]\ \hrulefill} */
/* {\rm Here we get {\sl input-file-name} from command line and put

\smallskip
\qquad{\tt cptr[0]}={\sl input-file-name},
	{\tt cptr[1]}={\sl output-file-name},
\smallskip

\noindent
Here modifying {\sl input-file-name}, we determine {\sl output-file-name}
so that it has a file name extension of the form \ {\sl $*$.tex}\ .
\hfill} */

void get_fnames(argc, argv, cptr)
int argc;
char *argv[];
char *cptr[];
{
    static char workarea[2][FNAME_LEN_MAX];
    char c;
    int i;

    if ((argc != 1) && (argc != 2) && (argc != 3))
      {
#ifdef LATEX
	  fprintf(stderr, "Usage: src2latex file_name\n");
#else
	  fprintf(stderr, "Usage: src2tex file_name\n");
#endif
	  exit(EXIT_FAILURE);
      }
    if (argc == 1)
      {
	workarea[0][0] = '\0';
	workarea[1][0] = '\0';
      }
    if ((argc == 2) || ((argc == 3) && (*argv[1] != '-')))
      {
	for (i = 0; i < FNAME_LEN_MAX - 1; ++i)
	  {
	    if ((c = *(argv[1] + i)) == '\0')
	      break;
	    workarea[0][i] = c;
	  }
	workarea[0][i] = '\0';
	for (i = 0; i < FNAME_LEN_MAX - 5; ++i)
	  {
	    if ((c = *(argv[1] + i)) == '\0')
	      break;
#ifndef UNIX
	    if (c == '.')
	      break;
#endif
	    workarea[1][i] = c;
	  }
	workarea[1][i] = '.';
	workarea[1][i + 1] = 't';
	workarea[1][i + 2] = 'e';
	workarea[1][i + 3] = 'x';
	workarea[1][i + 4] = '\0';
      }
    if ((argc == 3) && (*argv[1] == '-'))
      {
	Page_Len_Max = 0;
	for (i = 1; i < FNAME_LEN_MAX - 1; ++i)
	  {
	    if ((*(argv[1] + i) < '0') || (*(argv[1] + i) > '9'))
	      break;
	    Page_Len_Max = 10 * Page_Len_Max + (int)(*(argv[1] + i) - '0');
	    if (Page_Len_Max >1024)
	      {
		Page_Len_Max = 0;
		break;
	      }
	  }
#ifdef DEBUGGING
	printf ("get_fnames(): Page_Len_Max is set to %d\n", Page_Len_Max);
#endif
	for (i = 0; i < FNAME_LEN_MAX - 1; ++i)
	  {
	    if ((c = *(argv[2] + i)) == '\0')
	      break;
	    workarea[0][i] = c;
	  }
	workarea[0][i] = '\0';
	for (i = 0; i < FNAME_LEN_MAX - 5; ++i)
	  {
	    if ((c = *(argv[2] + i)) == '\0')
	      break;
#ifndef UNIX
	    if (c == '.')
	      break;
#endif
	    workarea[1][i] = c;
	  }
	workarea[1][i] = '.';
	workarea[1][i + 1] = 't';
	workarea[1][i + 2] = 'e';
	workarea[1][i + 3] = 'x';
	workarea[1][i + 4] = '\0';
      }
    cptr[0] = workarea[0];
    cptr[1] = workarea[1];
}

/* {\hrulefill\ open files for {tt cptr[]}=file\_names,
   {\tt fptr[]}=file\_pointers\ \hrulefill} */
/* {\rm This function opens {\sl input-file} and {\sl output-file} with

\smallskip
\qquad{\tt cptr[0]}={\sl input-file-name},
	{\tt cptr[1]}={\sl output-file-name}
\smallskip

\noindent
and set two file pointers

\smallskip
\qquad{\tt fptr[0]}={\sl input-file-pointer},
	{\tt fptr[1]}={\sl output-file-pointer}.
\hfill} */

void open_files(cptr, fptr)
char *cptr[];
FILE *fptr[];
{
  if ((*cptr[0] == '-') && (*(cptr[0]+1) == 'v'))
    {
#ifdef LATEX
#ifndef UNIX
      printf("src2ltex version ");
#else
      printf("src2latex version ");
#endif
#else
      printf("src2tex version ");
#endif
      printf(VERSION);
#ifndef UNIX
      printf(" for DOS");
#else
      printf(" for UNIX");
#endif
      printf(" with %d byte buffer\n", BUFFER_SIZE);
      exit(EXIT_FAILURE);
    }
  if (*cptr[0] == '-')
    {
#ifdef LATEX
#ifndef UNIX
      printf("Usage: src2ltex [file]\n");
#else
      printf("Usage: src2latex [file]\n");
#endif
#else
      printf("Usage: src2tex [file]\n");
#endif
      printf("Here [file] should be written in one of the following languages:\n");
      printf("Basic, C, C++, Cobol, Fortran, HTML, Java, Lisp, Make,\n");
      printf("Pascal, Perl, Scheme, Shell, Tcl/Tk;\n");
      printf("Asir, Macsyma, Maple, Maxima, Mathematica, MatLab, MuPAD,\n");
      printf("Octave, Reduce.\n");
      printf("  *.tex, *.txt                =>    TEXT\n");
      printf("  *.bas, *.vb                 =>    BASIC\n");
      printf("  *.c, *.cpp, *.vc            =>    C, C++, OBJECTIVE-C\n");
      printf("  *.cbl, *.cob                =>    COBOL\n");
      printf("  *.f, *.for                  =>    FORTRAN\n");
      printf("  *.html                      =>    HTML\n");
      printf("  *.java                      =>    JAVA\n");
      printf("  *.el, *.lsp, *.sc, *.scm    =>    LISP, SCHEME\n");
      printf("  makefile                    =>    MAKE\n");
      printf("  *.p, *.pas, *.tp            =>    PASCAL\n");
      printf("  *.pl, *.prl                 =>    PERL\n");
      printf("  *.sh, *.csh, *.ksh          =>    SHELL\n");
      printf("  *.tcl, *.tk                 =>    TCL/TK\n");
      printf("  *.asi, *.asir, *.asr        =>    ASIR\n");
      printf("  *.mac, *.max                =>    MACSYMA, MAXIMA\n");
      printf("  *.map, *.mpl                =>    MAPLE\n");
      printf("  *.mat, *.mma                =>    MATHEMATICA\n");
      printf("  *.ml, *.mtlb, *.oct         =>    MATLAB, OCTAVE\n");
      printf("  *.mu                        =>    MuPAD\n");
      printf("  *.red, *.rdc                =>    REDUCE\n");
      printf("For more information, please read the src2tex.c.ps file.\n");
      exit(EXIT_FAILURE);
    }
  if (*cptr[0] == '\0')
    fptr[0] = stdin;
  else
    {
      if ((fptr[0] = fopen(cptr[0], "r")) == NULL)
	{
	  fprintf(stderr, "\nError: cannot open %s\n", cptr[0]);
	  exit(EXIT_FAILURE);
	}
    }
  if (*cptr[1] == '\0')
    fptr[1] = stdout;
  else
    {
      if ((fptr[1] = fopen(cptr[1], "w")) == NULL)
	{
	  fprintf(stderr, "\nError: cannot open %s\n", cptr[1]);
	  exit(EXIT_FAILURE);
	}
    }
}

/* {\hrulefill\ close files for {\tt cptr[]}=file\_names,
   {\tt fptr[]}=file\_pointers\ \hrulefill} */
/* {\rm This function closes two files with file pointers

\smallskip
\qquad{\tt fptr[0]}={\sl input-file-pointer},
	{\tt fptr[1]}={\sl output-file-pointer}.
\smallskip

\noindent
File names

\smallskip
\qquad{\tt cptr[0]}={\sl input-file-name},
	{\tt cptr[1]}={\sl output-file-name}
\smallskip

\noindent
are used only in error messages.\hfill} */

void close_files(cptr, fptr)
char *cptr[];
FILE *fptr[];
{
    if (fclose(fptr[0]) == EOF)
      {
	  fprintf(stderr, "\nError: cannot close %s\n", cptr[0]);
	  exit(EXIT_FAILURE);
      }
    if (fclose(fptr[1]) == EOF)
      {
	  fprintf(stderr, "\nError: cannot close %s\n", cptr[1]);
	  exit(EXIT_FAILURE);
      }
}