summaryrefslogtreecommitdiff
path: root/web/funnelAC/sources/writfile.c
blob: 256ddbf22a84679015fd8d4e8769a6cd4b49cff3 (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
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
/*##############################################################################

FUNNNELWEB COPYRIGHT
====================
FunnelWeb is a literate-programming macro preprocessor.

Copyright (C) 1992 Ross N. Williams.

   Ross N. Williams
   ross@spam.adelaide.edu.au
   16 Lerwick Avenue, Hazelwood Park 5066, Australia.

This program is free software; you can redistribute it and/or modify
it under the terms of Version 2 of the GNU General Public License as
published by the Free Software Foundation.

This program is distributed WITHOUT ANY WARRANTY; without even the implied
warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See Version 2 of the GNU General Public License for more details.

You should have received a copy of Version 2 of the GNU General Public
License along with this program. If not, you can FTP the license from
prep.ai.mit.edu/pub/gnu/COPYING-2 or write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.

Section 2a of the license requires that all changes to this file be
recorded prominently in this file. Please record all changes here.

Programmers:
   RNW  Ross N. Williams  ross@spam.adelaide.edu.au

Changes:
   07-May-1992  RNW  Program prepared for release under GNU GPL V2.

##############################################################################*/


/******************************************************************************/
/*                                   WRITFILE.C                               */
/******************************************************************************/
/*                                                                            */
/* Implementation Notes                                                       */
/* --------------------                                                       */
/* The .H file gives most of the details of what this package does. Here we   */
/* just give some notes on how it is implemented.                             */
/*                                                                            */
/* MAGIC NUMBERS: These are placed at the head and tail of wf_t records so as */
/* to assist in the detection of uninitialized or corrupted variables.        */
/*                                                                            */
/* TEXT VS BINARY: A big problem arises in choosing whether to write binary   */
/* or text files. Binary files are far faster because they allow us to write  */
/* out large slabs of text using fwrite. The only catch is that they do not   */
/* translate EOL characters in the end of line representation of the host     */
/* environment. Text files, on the other hand are slower (because we have     */
/* only fputc and fputs) but do provide the translation. The solution we      */
/* adopt is to use binary if the host environment's representation for end of */
/* file is EOL (='\n'), but text otherwise. We can determine this by testing  */
/* the symbol UNIX_EOL defined in machin.h. If binary output is chosen,       */
/* only fwrite is called as we don't know if fwrite and fputc calls can be    */
/* mixed (it would seem not).                                                 */
/* Note: We could test the preprocessor symbol in each function. However,     */
/* the wf_att function introduces a problem as we may be attaching to a text  */
/* file in a UNIX_EOL environment (e.g. stdout). So we make the text/binary   */
/* attribute and attribute of each file, rather than the environment which we */
/* use only to direct us in how to create and tag (as binary or text) a file. */
/*                                                                            */
/******************************************************************************/

#include "style.h"

#include "as.h"
#include "machin.h"
#include "writfile.h"

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

#define MGC_HEAD (4837295L)
#define MGC_TAIL (1213839L)

/* Set the following to TRUE to bomb the package upon the first error.        */
/* This is a good idea during debugging if no output appears.                 */
#define BOMB_ON_ERROR FALSE

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

LOCAL void wf_check P_((p_wf_t));
LOCAL void wf_check(p_wf)
p_wf_t p_wf;
{
 as_cold(p_wf!=NULL,"wf_check: p_wf==NULL.");

 as_cold(p_wf->wf_mhead==MGC_HEAD,
         "wf_check: Magic header field has non-magic value.");

 as_cold(p_wf->wf_mtail==MGC_TAIL,
         "wf_check: Magic trailer field has non-magic value.");

 as_cold(p_wf->wf_isope || p_wf->wf_pfile==NULL,
         "wf_check: WF is closed but wf_pfile!=NULL.");
}

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

LOCAL void wf_errlg P_((p_wf_t, char *));
LOCAL void wf_errlg(p_wf,mess)
/* This function is called whenever an error occurs on a stream. The main     */
/* responsibility of this function is to set the error flag in the stream.    */
/* However, it can do other stuff too such as log the error to the screen.    */
p_wf_t p_wf;
char   *mess;
{
 p_wf->wf_iserr=TRUE;
#if BOMB_ON_ERROR
   if (p_wf->wf_pfile == stdout)
      fprintf(stderr,"The output file error occurred on STANDARD OUTPUT.\n");
   else
      fprintf(stderr,"The output file error occurred on an ordinary file.\n");
   as_bomb(mess);
#endif
}

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

EXPORT void wf_ini(p_wf,normal)
p_wf_t p_wf;
bool   normal;
{
 p_wf->wf_mhead = MGC_HEAD;
 p_wf->wf_iserr = !normal;
 p_wf->wf_isope = FALSE;
 p_wf->wf_istxt = FALSE;
 p_wf->wf_pfile = NULL;
 p_wf->wf_mtail = MGC_TAIL;
}

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

EXPORT void wf_att(p_wf,wf_pfile)
p_wf_t  p_wf;
FILE   *wf_pfile;
{
 wf_check(p_wf);
 if (p_wf->wf_iserr) return;
 as_cold(!p_wf->wf_isope,"wf_att: WF is already open.");

 p_wf->wf_pfile = wf_pfile;
 p_wf->wf_isope = TRUE;
 p_wf->wf_istxt = TRUE; /* Play it safe with files we didn't open. */
 wf_check(p_wf);
}

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

EXPORT void wf_ope(p_wf,p_name)
p_wf_t  p_wf;
char   *p_name;
{
 FILE *result;

 wf_check(p_wf);
 if (p_wf->wf_iserr) return;
 as_cold(!p_wf->wf_isope,"wf_ope: WF is already open.");

/* Whether we open the file as text or binary depends on whether EOL maps     */
/* to an end of line in the current environment.                              */
#if UNIX_EOL
 result=fopen(p_name,"wb"); p_wf->wf_istxt=FALSE;
#else
 result=fopen(p_name,"w"); p_wf->wf_istxt=TRUE;
#endif

 if (result == FOPEN_F)
   {
    /* TRACE printf("Output file in error is \"%s\".\n",p_name); */
    wf_errlg(p_wf,"wf_ope: Error opening output file.");
   }
 else
   {p_wf->wf_isope=TRUE; p_wf->wf_pfile=result;}
 wf_check(p_wf);
}

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

EXPORT void wf_chr(p_wf,ch)
p_wf_t p_wf;
intchar   ch;
{
 wf_check(p_wf);
 if ( p_wf->wf_iserr) return;
 as_cold(p_wf->wf_isope,"wf_chr: WF is closed.");

 if (p_wf->wf_istxt)
    {
     if (fputc((int) ch,p_wf->wf_pfile) == FPUTC_F)
        wf_errlg(p_wf,"wf_chr: Error fputc()ing to output file.");
    }
 else
   {
    if (fwrite(&ch,(size_t) 1,(size_t) 1,p_wf->wf_pfile) != 1)
        wf_errlg(p_wf,"wf_chr: Error fwrite()ing to output file.");
   }
 wf_check(p_wf);
}

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

EXPORT void wf_wr(p_wf,p_str)
p_wf_t p_wf;
char   *p_str;
{
 wf_check(p_wf);
 if ( p_wf->wf_iserr) return;
 as_cold(p_wf->wf_isope,"wf_wr: WF is closed.");

 if (p_wf->wf_istxt)
   {
    if (fputs(p_str,p_wf->wf_pfile) == FPUTS_F)
       wf_errlg(p_wf,"wf_wr: Error fputs()ing to output file.");
   }
 else
   {
    size_t len = strlen(p_str);
    if (fwrite(p_str,(size_t) 1,(size_t) len,p_wf->wf_pfile) != len)
       wf_errlg(p_wf,"wf_wr: Error fwrite()ing to output file.");
   }
 wf_check(p_wf);
}

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

EXPORT void wf_blk(p_wf,p_blk,blk_len)
p_wf_t  p_wf;
char   *p_blk;
size_t  blk_len;
{
 wf_check(p_wf);
 if ( p_wf->wf_iserr) return;
 as_cold(p_wf->wf_isope,"wf_blk: WF is closed.");

 if (p_wf->wf_istxt)
   {
    /* Amazingly, fputc seems to be the only way to write out a block of */
    /* bytes with end of line translation. Shocking, but true.           */
    /* See Section B1.4 (p.246-247) of Kernighan and Ritchie.            */
    /* Note: We can't use fputs because that requires a terminating nul. */
    char *p;
    char *p_post = p_blk+blk_len;
    for (p=p_blk; p<p_post; p++)
       if (fputc(*p,p_wf->wf_pfile) == FPUTC_F)
         {
          wf_errlg(p_wf,"wf_blk: Error fputc()ing to output file.");
          break;
         }
   }
 else
   if (fwrite(p_blk,(size_t) 1,(size_t) blk_len,p_wf->wf_pfile) != blk_len)
      wf_errlg(p_wf,"wf_blk: Error fwrite()ing to output file.");
 wf_check(p_wf);
}

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

EXPORT void wf_wl(p_wf,p_str)
p_wf_t p_wf;
char   *p_str;
{
 wf_wr(p_wf,p_str);
 wf_chr(p_wf,'\n');
}

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

EXPORT void wf_clo(p_wf)
p_wf_t p_wf;
{
 wf_check(p_wf);
 if ( p_wf->wf_iserr) return;
 as_cold(p_wf->wf_isope,"wf_clo: WF is not open.");
 if (fflush(p_wf->wf_pfile) != FFLUSH_S)
    wf_errlg(p_wf,"wf_clo: Error fflush()ing output file.");
 if (fclose(p_wf->wf_pfile) == FCLOSE_F)
    wf_errlg(p_wf,"wf_clo: Error fclose()ing output file.");
 p_wf->wf_isope=FALSE;
 p_wf->wf_pfile=NULL;
 wf_check(p_wf);
}

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

EXPORT bool wf_err(p_wf)
p_wf_t p_wf;
{
 wf_check(p_wf);
 return p_wf->wf_iserr;
}

/******************************************************************************/
/*                              End of WRITFILE.C                             */
/******************************************************************************/