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 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433
|
/* dvihp.c: emulate the dvihp shell script
Converted to C by Eli Zaretskii <eliz@is.elta.co.il>
Adapted to Win32 by Fabrice POPINEAU
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include "mktex.h"
#include "stackenv.h"
static const char rcs_id[] =
"$Id: dvihp.c,v 1.7 2002/10/06 14:02:09 olaf Exp $";
static char rcs_revision[] = "$Revision: 1.7 $";
static void usage (void)
{
printf ("Usage: %s [OPTIONS] [DVIFILE[.dvi]].\n\
Translate the given DVIFILE to Hewlett-Packard PCL by calling dvicopy\n\
and then $DVILJ (dvilj4 by default).\n\
In the absence of other options, pipe the PCL to $SPOOL (lpr by default).\n\
\n\
Options are recognized from dvips where possible:\n\
-A print odd pages\n\
-B print even pages\n\
-d # set debug bits to # (see documentation)\n\
-D # set resolution to #\n\
-f run as filter\n\
-l # don't print pages after #\n\
-m manual feed\n\
-n # print # pages\n\
-O #,# set/change paper offset to #,# mm\n\
-o s output to s instead of spooling\n\
-p # don't print pages before #\n\
-Ps pass directly to lpr\n\
-v verbose operation\n\
-x # set magnification to #\n\
\n\
Other options are passed to the dvilj program.\n\
\n\
Email bug reports to tex-k@mail.tug.org.\n", program_invocation_short_name);
fflush (stdout);
}
/* Emulate `rm -f prefix*' */
void rmfiles (const_string prefix)
{
#ifdef _WIN32
/* Win32 doesn't have POSIX dirent functions. */
WIN32_FIND_DATA ffd;
HANDLE hnd;
boolean go_on;
string temp = concat (prefix, "*");
string directory = xdirname (prefix);
pushd (directory);
hnd = FindFirstFile(temp, &ffd);
go_on = (hnd != INVALID_HANDLE_VALUE);
while (go_on) {
/* FIXME: can this remove read-only files also, like rm -f does? */
DeleteFile(ffd.cFileName);
go_on = (FindNextFile(hnd, &ffd) == TRUE);
}
FindClose(hnd);
free(temp);
popd ();
#else /* not _WIN32 */
DIR *dp;
struct dirent *de;
int temp_len = strlen (prefix);
string directory = "./";
const_string base = xbasename (prefix);
/* Copy the directory part of PREFIX with the trailing slash, if any. */
if (base != prefix)
{
directory = (string) xmalloc (base - prefix + 1);
directory[0] = '\0';
strncat (directory, prefix, base - prefix);
}
/* Find matching files and delete them. */
if ((dp = opendir (directory)) != 0) {
while ((de = readdir (dp)) != 0)
{
string found = concat (directory, de->d_name);
if (FILESTRNCASEEQ (found, prefix, temp_len))
/* On POSIX-compliant systems, including DJGPP, this will also
remove read-only files and empty directories, like rm -f does. */
if (remove (found))
perror (found);
free (found);
}
}
#endif /* not _WIN32 */
}
void __cdecl output_and_cleanup(int code)
{
/* FIXME : what cleanup should be done ? */
}
int
main (int argc, char *argv[])
{
string opt = (string) xmalloc (1);
string output = "", infile = "";
string output_opt = " -e";
string dvilj;
string spool;
string tmpdir;
string spool_opt = "";
char template[PATH_MAX];
string vfless_dvi, dvicopy_log, dvilj_log;
int verbose = 0;
string cmdline, maybe_spool_cmd = "";
const_string space = " ";
output_and_cleanup_function = output_and_cleanup;
progname = argv[0];
kpse_set_progname (progname);
#ifdef _WIN32
SetConsoleCtrlHandler((PHANDLER_ROUTINE)mt_exit, TRUE);
#else
# ifdef SIGINT
signal (SIGINT, sigint_handler);
# endif
# ifdef SIGQUIT
signal (SIGQUIT, sigint_handler);
# endif
# ifdef SIGHUP
signal (SIGHUP, sigint_handler);
# endif
# ifdef SIGTERM
signal (SIGTERM, sigint_handler);
# endif
#endif
dvilj = kpse_var_value ("DVILJ");
spool = kpse_var_value ("SPOOL");
tmpdir = kpse_var_value ("TMPDIR");
opt[0] = '\0';
/* Set default values for variables:
${DVILJ=dvilj4} the dvilj variant to run
${SPOOL=lpr} used to print an LJ file
${TMPDIR=/tmp} for the dvicopy output */
if (!dvilj || !*dvilj)
dvilj = "dvilj4";
if (!spool || !*spool)
{
#ifdef __DJGPP__
/* Feature: if they don't have LPR installed, make the
default be to print to the local printer device. */
char lpr_path[PATH_MAX];
extern char *__dosexec_find_on_path (const char *, char **, char *);
extern char **environ;
if (!__dosexec_find_on_path ("lpr", (char **)0, lpr_path)
&& !__dosexec_find_on_path ("lpr", environ, lpr_path))
spool = "> PRN";
else
#endif
spool = "| lpr";
}
if (!tmpdir || !*tmpdir)
{
tmpdir = "/tmp";
if (access (tmpdir, R_OK|W_OK) != 0)
{
mkdir (tmpdir, 0755);
#ifdef DOSISH
if (access (tmpdir, R_OK|W_OK) != 0)
{
/* Maybe this is a read-only filesystem (CD-ROM)? */
tmpdir = "c:/tmp";
mkdir (tmpdir, 0755); /* in case they don't have it */
}
#endif
}
}
if (argc <= 1)
{
fprintf (stderr, "%s: Missing argument(s).\nTry `%s --help' for more information.\n",
program_invocation_short_name, program_invocation_short_name);
return 0;
}
while (--argc)
{
char *arg = *++argv;
if (STREQ (arg, "-help") || STREQ (arg, "--help"))
{
usage ();
return 0;
}
else if (STREQ (arg, "-version") || STREQ (arg, "--version"))
{
printf ("%s: (Dviljk 2.6) %s\nThere is NO warranty. This program is public domain.\n",
program_invocation_short_name, rcs_revision);
return 0;
}
else if (arg[0] == '-')
{
string newopt = NULL;
switch (arg[1])
{
case 'A': /* -A => -D1 (odd pages) */
newopt = concat (opt, " -D1");
break;
case 'B': /* -B -> -D2 (even pages) */
newopt = concat (opt, " -D2");
break;
case 'd': /* -d => --D (debug) */
if (arg[2] == '\0')
{
argc--;
newopt = concat3 (opt, " --D", *++argv);
}
else
newopt = concat3 (opt, " --D", arg + 2);
break;
case 'D': /* -D => -R (resolution) */
argc--;
newopt = concat3 (opt, " -R", *++argv);
break;
case 'f': /* -f (run as filter) */
infile = "";
output = "-";
break;
case 'l': /* -l => -t (ending page) */
if (arg[2] == '\0')
{
argc--;
newopt = concat3 (opt, " -t", *++argv);
}
else
newopt = concat3 (opt, " -t", arg + 2);
break;
case 'm': /* -m => -A (manual feed) */
newopt = concat (opt, " -A");
break;
case 'n': /* -n => -p (page count) */
if (arg[2] == '\0')
{
argc--;
newopt = concat3 (opt, " -t", *++argv);
}
else
newopt = concat3 (opt, " -t", arg + 2);
break;
case 'o': /* -o (output file) */
{
string inbase = xstrdup (xbasename (infile));
if (argc == 1 && *inbase)
{
/* No remaining args, output to foo.lj. */
int inbaselen = strlen (inbase);
if (FILESTRCASEEQ (inbase + inbaselen - 4, ".dvi"))
output = strcpy (inbase + inbaselen - 4, ".lj");
else
{
#if defined (MSDOS) && defined _PC_NAME_MAX
if (pathconf (infile, _PC_NAME_MAX) <= 12)
{
/* Plain MS-DOS (not Windows 95), can't have
more than a single dot in a filename. */
char *dot = strchr (inbase, '.');
if (dot)
*dot = '\0';
}
#endif
output = concat (inbase, ".lj");
free (inbase);
}
}
else if (arg[2] == '\0')
{
argc--;
output = *++argv;
}
else
output = arg + 2;
break;
}
case 'O': /* -O => -x, -y (page offsets) */
{
int x_len;
char *params = arg + 2;
char *x;
if (arg[2] == '\0')
{
argc--;
params = *++argv;
}
x_len = strcspn (params, ",");
x = (char *)xmalloc (x_len + 1);
x[0] = '\0';
strncat (x, params, x_len);
if (params[x_len] == ',')
x_len++; /* get past the comma, if any */
newopt = concatn (opt, " -x", x, " y", params + x_len, NULL);
break;
}
case 'p': /* -p => -f (starting page) */
if (arg[2] == '\0')
{
argc--;
newopt = concat3 (opt, " -f", *++argv);
}
else
newopt = concat3 (opt, " -f", arg + 2);
break;
case 'P': /* -Pprinter */
output = "";
if (spool[0] == '>') /* direct printing: replace device */
spool = concat ("> ", arg[2] ? arg + 2 : *++argv);
else
spool_opt = concat ("-P", arg[2] ? arg + 2 : *++argv);
if (arg[2] == '\0')
argc--;
break;
case 'v': /* verbose */
verbose = 1;
newopt = concat (opt, " -v");
break;
case 'x': /* -x => -m (magnification) */
if (arg[2] == '\0')
{
argc--;
newopt = concat3 (opt, " -m", *++argv);
}
else
newopt = concat3 (opt, " -m", arg + 2);
break;
case '-': /* -- => end of options */
argc--;
infile = *++argv;
break;
default: /* pass other options through */
newopt = concat3 (opt, space, arg);
break;
}
if (newopt)
{
free (opt);
opt = newopt;
}
}
else
infile = arg;
}
/* Generate temporary filenames. Assumes PID is 5 digits. */
sprintf (template, "%s/dvi%5.5d.", tmpdir, getpid ());
vfless_dvi = concat (template, "-vf");
/* FIXME: where are these two used? */
dvicopy_log = concat (template, "copy");
dvilj_log = concat (template, "lj");
/* Expand VF references.
If INFILE is null, this will read standard input.
dvilj can't read from a pipe, so always write to a file. */
if (verbose)
fprintf (stderr, "Running dvicopy %s >%s\n", infile, vfless_dvi);
/* FIXME: special characters in filenames aren't protected from the shell. */
cmdline = concatn ("dvicopy ", infile, " >", vfless_dvi, NULL);
if (system (cmdline))
{
fprintf (stderr, "%s: dvicopy %s failed.\n", progname, infile);
return 1;
}
free (cmdline);
if (verbose)
{
struct stat st_buf;
if (stat (vfless_dvi, &st_buf))
perror (vfless_dvi);
else /* assume they only want to see the size and timestamp */
fprintf (stderr, " %ld %s %s\n",
(long)st_buf.st_size, ctime (&st_buf.st_mtime), vfless_dvi);
}
if (!*output)
{
output = "-"; /* output to stdout */
maybe_spool_cmd = concat (spool, spool_opt);
}
/* Translate DVI to LJ. */
cmdline = concatn (dvilj, space, opt, output_opt, output,
space, vfless_dvi, space, maybe_spool_cmd, NULL);
if (verbose)
fprintf (stderr, "Running %s\n", cmdline);
if (system (cmdline))
{
fprintf (stderr, "%s: %s failed.\n", progname, dvilj);
return 2;
}
/* rm -f $TMPDIR/dvi$$.* */
rmfiles (template);
return 0;
}
|