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 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344
|
/* FILE WRITER HTFWrite.h
* ===========
*
* This version of the stream object just writes to a C file.
* The file is assumed open and left open.
*
* Bugs:
* strings written must be less than buffer size.
*/
#include <HTUtils.h>
#include <HTFWriter.h>
#include <HTFormat.h>
#include <HTAlert.h>
#include <HTFile.h>
#include <LYUtils.h>
#include <LYLeaks.h>
/* Stream Object
* ------------
*/
struct _HTStream {
const HTStreamClass *isa;
FILE *fp;
char *end_command;
char *remove_command;
BOOL announce;
};
/*_________________________________________________________________________
*
* B L A C K H O L E C L A S S
*
* There is only one black hole instance shared by anyone
* who wanst a black hole. These black holes don't radiate,
* they just absorb data.
*/
static void HTBlackHole_put_character(HTStream *me, char c)
{
}
static void HTBlackHole_put_string(HTStream *me, const char *s)
{
}
static void HTBlackHole_write(HTStream *me, const char *s, int l)
{
}
static void HTBlackHole_free(HTStream *me)
{
}
static void HTBlackHole_abort(HTStream *me, HTError e)
{
}
/* Black Hole stream
* -----------------
*/
static const HTStreamClass HTBlackHoleClass =
{
"BlackHole",
HTBlackHole_free,
HTBlackHole_abort,
HTBlackHole_put_character, HTBlackHole_put_string,
HTBlackHole_write
};
static HTStream HTBlackHoleInstance =
{
&HTBlackHoleClass,
NULL,
NULL,
NULL,
NO
};
/* Black hole craetion
*/
HTStream *HTBlackHole(void)
{
return &HTBlackHoleInstance;
}
/*_________________________________________________________________________
*
* F I L E A C T I O N R O U T I N E S
* Bug:
* All errors are ignored.
*/
/* Character handling
* ------------------
*/
static void HTFWriter_put_character(HTStream *me, char c)
{
putc(c, me->fp);
}
/* String handling
* ---------------
*
* Strings must be smaller than this buffer size.
*/
static void HTFWriter_put_string(HTStream *me, const char *s)
{
fputs(s, me->fp);
}
/* Buffer write. Buffers can (and should!) be big.
* ------------
*/
static void HTFWriter_write(HTStream *me, const char *s, int l)
{
fwrite(s, 1, l, me->fp);
}
/* Free an HTML object
* -------------------
*
* Note that the SGML parsing context is freed, but the created
* object is not,
* as it takes on an existence of its own unless explicitly freed.
*/
static void HTFWriter_free(HTStream *me)
{
fclose(me->fp);
if (me->end_command) { /* Temp file */
_HTProgress(me->end_command); /* Tell user what's happening */
system(me->end_command);
FREE(me->end_command);
if (me->remove_command) {
system(me->remove_command);
FREE(me->remove_command);
}
}
FREE(me);
}
/* End writing
*/
static void HTFWriter_abort(HTStream *me, HTError e)
{
fclose(me->fp);
if (me->end_command) { /* Temp file */
CTRACE((tfp, "HTFWriter: Aborting: file not executed.\n"));
FREE(me->end_command);
if (me->remove_command) {
system(me->remove_command);
FREE(me->remove_command);
}
}
FREE(me);
}
/* Structured Object Class
* -----------------------
*/
static const HTStreamClass HTFWriter = /* As opposed to print etc */
{
"FileWriter",
HTFWriter_free,
HTFWriter_abort,
HTFWriter_put_character, HTFWriter_put_string,
HTFWriter_write
};
/* Subclass-specific Methods
* -------------------------
*/
HTStream *HTFWriter_new(FILE *fp)
{
HTStream *me;
if (!fp)
return NULL;
me = (HTStream *) malloc(sizeof(*me));
if (me == NULL)
outofmem(__FILE__, "HTML_new");
me->isa = &HTFWriter;
me->fp = fp;
me->end_command = NULL;
me->remove_command = NULL;
me->announce = NO;
return me;
}
/* Make system command from template
* ---------------------------------
*
* See mailcap spec for description of template.
*/
/* @@ to be written. sprintfs will do for now. */
/* Take action using a system command
* ----------------------------------
*
* originally from Ghostview handling by Marc Andreseen.
* Creates temporary file, writes to it, executes system command
* on end-document. The suffix of the temp file can be given
* in case the application is fussy, or so that a generic opener can
* be used.
*/
HTStream *HTSaveAndExecute(HTPresentation *pres,
HTParentAnchor *anchor, /* Not used */
HTStream *sink) /* Not used */
#ifdef UNIX
#define REMOVE_COMMAND "/bin/rm -f %s\n"
#endif
#ifdef VMS
#define REMOVE_COMMAND "delete/noconfirm/nolog %s.."
#endif
#ifdef REMOVE_COMMAND
{
char *fnam;
const char *suffix;
HTStream *me;
if (HTClientHost) {
HTAlert(CANNOT_SAVE_REMOTE);
return HTBlackHole();
}
me = (HTStream *) malloc(sizeof(*me));
if (me == NULL)
outofmem(__FILE__, "Save and execute");
me->isa = &HTFWriter;
/* Save the file under a suitably suffixed name */
suffix = HTFileSuffix(pres->rep, anchor->content_encoding);
fnam = (char *) malloc(L_tmpnam + 16 + strlen(suffix));
if (fnam == NULL)
outofmem(__FILE__, "HTSaveAndExecute");
tmpnam(fnam);
strcat(fnam, suffix);
me->fp = fopen(fnam, BIN_W);
if (!me->fp) {
HTAlert(CANNOT_OPEN_TEMP);
FREE(fnam);
FREE(me);
return NULL;
}
/* Make command to process file
*/
me->end_command = 0;
HTSprintf0(&(me->end_command), pres->command, fnam, fnam, fnam);
me->remove_command = NULL; /* If needed, put into end_command */
#ifdef NOPE
/* Make command to delete file
*/
me->remove_command = 0;
HTSprintf0(&(me->remove_command), REMOVE_COMMAND, fnam);
#endif
me->announce = NO;
FREE(fnam);
return me;
}
#else /* can do remove */
{
return NULL;
}
#endif
/* Save Locally
* ------------
*
* Bugs:
* GUI Apps should open local Save panel here really.
*
*/
HTStream *HTSaveLocally(HTPresentation *pres,
HTParentAnchor *anchor, /* Not used */
HTStream *sink) /* Not used */
{
char *fnam;
char *answer;
const char *suffix;
HTStream *me;
if (HTClientHost) {
HTAlert(CANNOT_SAVE_REMOTE);
return HTBlackHole();
}
me = (HTStream *) malloc(sizeof(*me));
if (me == NULL)
outofmem(__FILE__, "SaveLocally");
me->isa = &HTFWriter;
me->end_command = NULL;
me->remove_command = NULL; /* If needed, put into end_command */
me->announce = YES;
/* Save the file under a suitably suffixed name */
suffix = HTFileSuffix(pres->rep, anchor->content_encoding);
fnam = (char *) malloc(L_tmpnam + 16 + strlen(suffix));
if (fnam == NULL)
outofmem(__FILE__, "HTSaveLocally");
tmpnam(fnam);
strcat(fnam, suffix);
/* Save Panel */
answer = HTPrompt(GIVE_FILENAME, fnam);
FREE(fnam);
me->fp = fopen(answer, BIN_W);
if (!me->fp) {
HTAlert(CANNOT_OPEN_OUTPUT);
FREE(answer);
FREE(me);
return NULL;
}
FREE(answer);
return me;
}
/* Format Converter using system command
* -------------------------------------
*/
|