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 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735
|
/* Copyright (C) 2001-2021 Artifex Software, Inc.
All Rights Reserved.
This software is provided AS-IS with no warranty, either express or
implied.
This software is distributed under license and may not be copied,
modified or distributed except as expressly authorized under the terms
of the license contained in the file LICENSE in this distribution.
Refer to licensing information at http://www.artifex.com or contact
Artifex Software, Inc., 1305 Grant Avenue - Suite 200, Novato,
CA 94945, U.S.A., +1(415)492-9861, for further information.
*/
/* VAX/VMS specific routines for Ghostscript */
/* prevent gp.h from defining fopen */
#define fopen fopen
#include "string_.h"
#include "memory_.h"
#include "gx.h"
#include "gp.h"
#include "gpmisc.h"
#include "gsstruct.h"
#include <stat.h>
#include <stdlib.h> /* for exit() with some compiler versions */
#include <errno.h> /* for exit() with other compiler versions */
#include <unixio.h>
extern char *getenv(const char *);
/* Apparently gcc doesn't allow extra arguments for fopen: */
#ifdef VMS /* DEC C */
# define fopen_VMS fopen
#else /* gcc */
# define fopen_VMS(name, mode, m1, m2) fopen(name, mode)
#endif
/* VMS string descriptor structure */
#define DSC$K_DTYPE_T 14
#define DSC$K_CLASS_S 1
struct dsc$descriptor_s {
unsigned short dsc$w_length;
unsigned char dsc$b_dtype;
unsigned char dsc$b_class;
char *dsc$a_pointer;
};
typedef struct dsc$descriptor_s descrip;
/* VMS RMS constants */
#define RMS_IS_ERROR_OR_NMF(rmsv) (((rmsv) & 1) == 0)
#define RMS$_NMF 99018
#define RMS$_NORMAL 65537
#define NAM$C_MAXRSS 255
struct file_enum_s {
uint context, length;
descrip pattern;
gs_memory_t *memory;
};
gs_private_st_ptrs1(st_file_enum, struct file_enum_s, "file_enum",
file_enum_enum_ptrs, file_enum_reloc_ptrs, pattern.dsc$a_pointer);
extern uint
LIB$FIND_FILE(descrip *, descrip *, uint *, descrip *, descrip *,
uint *, uint *),
LIB$FIND_FILE_END(uint *),
SYS$FILESCAN(descrip *, uint *, uint *),
SYS$PUTMSG(uint *, int (*)(), descrip *, uint);
static uint
strlength(char *str, uint maxlen, char term)
{
uint i = 0;
while (i < maxlen && str[i] != term)
i++;
return i;
}
/* Do platform-dependent initialization. */
void
gp_init(void)
{
}
/* Do platform-dependent cleanup. */
void
gp_exit(int exit_status, int code)
{
}
/* Exit the program. */
void
gp_do_exit(int exit_status)
{ /* The program returns exit_status = 0 for OK, 1 for failure; */
/* VMS has different conventions. */
switch (exit_status) {
case 0:
exit(exit_OK);
case 1:
exit(exit_FAILED);
}
exit(exit_status);
}
/* ------ Date and time ------ */
/* Read the current time (in seconds since Jan. 1, 1980) */
/* and fraction (in nanoseconds). */
void
gp_get_realtime(long *pdt)
{
struct {
uint _l0, _l1;
} binary_date, now, difference;
long LIB$EDIV(), LIB$SUBX(), SYS$BINTIM(), SYS$GETTIM();
long units_per_second = 10000000;
char *jan_1_1980 = "1-JAN-1980 00:00:00.00";
descrip str_desc;
/* For those interested, Wednesday, November 17, 1858 is the base
of the Modified Julian Day system adopted by the Smithsonian
Astrophysical Observatory in 1957 for satellite tracking. (The
year 1858 preceded the oldest star catalog in use at the
observatory.) VMS uses quadword time stamps which are offsets
in 100 nanosecond units from November 17, 1858. With a 63-bit
absolute time representation (sign bit must be clear), VMS will
have no trouble with time until 31-JUL-31086 02:48:05.47. */
/* Convert January 1, 1980 into a binary absolute time */
str_desc.dsc$w_length = strlen(jan_1_1980);
str_desc.dsc$a_pointer = jan_1_1980;
(void)SYS$BINTIM(&str_desc, &binary_date);
/* Compute number of 100 nanosecond units since January 1, 1980. */
(void)SYS$GETTIM(&now);
(void)LIB$SUBX(&now, &binary_date, &difference);
/* Convert to seconds and nanoseconds. */
(void)LIB$EDIV(&units_per_second, &difference, &pdt[0], &pdt[1]);
pdt[1] *= 100;
}
/* Read the current user CPU time (in seconds) */
/* and fraction (in nanoseconds). */
void
gp_get_usertime(long *pdt)
{
gp_get_realtime(pdt); /* Use an approximation for now. */
}
/* ------ Screen management ------ */
/* Get the environment variable that specifies the display to use. */
const char *
gp_getenv_display(void)
{
return getenv("DECW$DISPLAY");
}
/* ------ Printer accessing ------ */
/* Open a connection to a printer. A null file name means use the */
/* standard printer connected to the machine, if any. */
/* Return NULL if the connection could not be opened. */
FILE *
gp_open_printer(const gs_memory_t *mem,
char fname[gp_file_name_sizeof],
int *binary_mode)
{
if (strlen(fname) == 0)
return 0;
if (*binary_mode) { /*
* Printing must be done exactly byte to byte,
* using "passall". However the standard VMS symbiont
* does not treat stream-LF files correctly in this respect,
* but throws away \n characters. Giving the file
* the record type "undefined", but accessing it as a
* normal stream-LF file does the trick.
*/
return fopen_VMS(fname, "w", "rfm = udf", "ctx = stm");
} else { /* Open as a normal text stream file. */
return fopen_VMS(fname, "w", "rfm = var", "rat = cr");
}
}
/* Close the connection to the printer. */
void
gp_close_printer(gp_file *pfile, const char *fname)
{
gp_fclose(pfile);
}
/* ------ File naming and accessing ------ */
/* Define the character used for separating file names in a list. */
const char gp_file_name_list_separator = ',';
/* Define the default scratch file name prefix. */
const char gp_scratch_file_name_prefix[] = "_temp_";
/* Define the name of the null output file. */
const char gp_null_file_name[] = "NLA0:";
/* Define the name that designates the current directory. */
const char gp_current_directory_name[] = "[]";
/* Define the string to be concatenated with the file mode */
/* for opening files without end-of-line conversion. */
const char* gp_fmode_binary_suffix = "";
/* Define the file modes for binary reading or writing. */
const char gp_fmode_rb[] = "r";
const char gp_fmode_wb[] = "w";
/* Create and open a scratch file with a given name prefix. */
/* Write the actual file name at fname. */
FILE *
gp_open_scratch_file_impl(const gs_memory_t *mem,
const char *prefix,
char fname[gp_file_name_sizeof],
const char *mode,
int remove)
{
FILE *f;
char tmpdir[gp_file_name_sizeof];
int tdlen = gp_file_name_sizeof;
int flen[1];
if (remove)
return NULL;
if (!gp_file_name_is_absolute(prefix, strlen(prefix)) &&
gp_gettmpdir(tmpdir, &tdlen) == 0) {
flen[0] = gp_file_name_sizeof;
if (gp_file_name_combine(tmpdir, tdlen, prefix, strlen(prefix),
false, fname, flen ) != gp_combine_success ) {
return NULL;
}
fname[ *flen ] = 0;
} else {
strcpy(fname, prefix);
}
if (strlen(fname) + 6 >= gp_file_name_sizeof)
return 0; /* file name too long */
strcat(fname, "XXXXXX");
mktemp(fname);
f = fopen(fname, mode);
if (f == NULL)
emprintf1(mem, "**** Could not open temporary file %s\n", fname);
return f;
}
/* Open a file with the given name, as a stream of uninterpreted bytes. */
/* We have to do something special if the file was FTP'ed in binary mode. */
/* Unfortunately, only DEC C supports the extra arguments to fopen. */
FILE *
gp_fopen_impl(gs_memory_t *mem, const char *fname, const char *mode)
{
#ifdef __DECC
#define FAB$C_FIX 1
stat_t buffer;
if (stat((char *)fname, &buffer) == 0)
if (buffer.st_fab_rfm == FAB$C_FIX)
return fopen(fname, mode, "rfm=stmlf", "ctx=stm");
#endif
return fopen(fname, mode);
}
int
gp_unlink_impl(gs_memory_t *mem, const char *fname)
{
return unlink(fname);
}
int
gp_rename_impl(gs_memory_t *mem, const char *from, const char *to)
{
return rename(from, to);
}
int gp_stat_impl(const gs_memory_t *mem, const char *path, struct stat *buf)
{
return stat(path, buf);
}
int gp_can_share_fdesc(void)
{
return 0;
}
FILE *gp_fdup_impl(FILE *f, const char *mode)
{
return NULL;
}
int gp_pread_impl(char *buf, size_t count, gs_offset_t offset, FILE *f)
{
return -1;
}
int gp_pwrite_impl(const char *buf, size_t count, gs_offset_t offset, FILE *f)
{
return -1;
}
/* Set a file into binary or text mode. */
int
gp_setmode_binary_impl(FILE * pfile, bool binary)
{
return 0; /* Noop under VMS */
}
/* ------ Wild card file search procedures ------ */
static void
gp_free_enumeration(file_enum * pfen)
{
if (pfen) {
LIB$FIND_FILE_END(&pfen->context);
gs_free_object(pfen->memory, pfen->pattern.dsc$a_pointer,
"GP_ENUM(pattern)");
gs_free_object(pfen->memory, pfen,
"GP_ENUM(file_enum)");
}
}
/* Begin an enumeration. See gp.h for details. */
file_enum *
gp_enumerate_files_init_impl(gs_memory_t * mem, const char *pat, uint patlen)
{
file_enum *pfen;
uint i, len;
char *c, *newpat;
bool dot_in_filename = false;
pfen = gs_alloc_struct(mem, file_enum, &st_file_enum,
"GP_ENUM(file_enum)");
newpat = (char *)gs_alloc_bytes(mem, patlen + 2, "GP_ENUM(pattern)");
if (pfen == 0 || newpat == 0) {
gs_free_object(mem, newpat, "GP_ENUM(pattern)");
gs_free_object(mem, pfen, "GP_ENUM(file_enum)");
return (file_enum *) 0;
}
/* Copy the pattern removing backslash quoting characters and
* transforming unquoted question marks, '?', to percent signs, '%'.
* (VAX/VMS uses the wildcard '%' to represent exactly one character
* and '*' to represent zero or more characters. Any combination and
* number of interspersed wildcards is permitted.)
*
* Since VMS requires "*.*" to actually return all files, we add a
* special check for a path ending in "*" and change it into "*.*"
* if a "." wasn't part of the file spec. Thus "[P.A.T.H]*" becomes
* "[P.A.T.H]*.*" but "[P.A.T.H]*.*" or "[P.A.T.H]*.X*" are unmodified.
*/
c = newpat;
for (i = 0; i < patlen; pat++, i++)
switch (*pat) {
case '?':
*c++ = '%';
break;
case '\\':
i++;
if (i < patlen)
*c++ = *++pat;
break;
case '.':
case ']':
dot_in_filename = *pat == '.';
default:
*c++ = *pat;
break;
}
/* Check for trailing "*" and see if we need to add ".*" */
if (pat[-1] == '*' && !dot_in_filename) {
*c++ = '.';
*c++ = '*';
}
len = c - newpat;
/* Pattern may not exceed 255 characters */
if (len > 255) {
gs_free_object(mem, newpat, "GP_ENUM(pattern)");
gs_free_object(mem, pfen, "GP_ENUM(file_enum)");
return (file_enum *) 0;
}
pfen->context = 0;
pfen->length = patlen;
pfen->pattern.dsc$w_length = len;
pfen->pattern.dsc$b_dtype = DSC$K_DTYPE_T;
pfen->pattern.dsc$b_class = DSC$K_CLASS_S;
pfen->pattern.dsc$a_pointer = newpat;
pfen->memory = mem;
return pfen;
}
/* Return the next file name in the enumeration. The client passes in */
/* a scratch string and a max length. If the name of the next file fits, */
/* the procedure returns the length. If it doesn't fit, the procedure */
/* returns max length +1. If there are no more files, the procedure */
/* returns -1. */
uint
gp_enumerate_files_next_impl(gs_memory_t * mem, file_enum * pfen, char *ptr, uint maxlen)
{
char *c, filnam[NAM$C_MAXRSS];
descrip result =
{NAM$C_MAXRSS, DSC$K_DTYPE_T, DSC$K_CLASS_S, 0};
uint i, len;
(void)mem;
result.dsc$a_pointer = filnam;
/* Find the next file which matches the pattern */
i = LIB$FIND_FILE(&pfen->pattern, &result, &pfen->context,
(descrip *) 0, (descrip *) 0, (uint *) 0, (uint *) 0);
/* Check the return status */
if (RMS_IS_ERROR_OR_NMF(i)) {
gp_free_enumeration(pfen);
return (uint)(-1);
} else if ((len = strlength(filnam, NAM$C_MAXRSS, ' ')) > maxlen)
return maxlen + 1;
/* Copy the returned filename over to the input string ptr */
c = ptr;
for (i = 0; i < len; i++)
*c++ = filnam[i];
return len;
}
/* Clean up a file enumeration. This is only called to abandon */
/* an enumeration partway through: ...next should do it if there are */
/* no more files to enumerate. This should deallocate the file_enum */
/* structure and any subsidiary structures, strings, buffers, etc. */
void
gp_enumerate_files_close_impl(gs_memory_t * mem, file_enum * pfen)
{
(void)mem;
gp_free_enumeration(pfen);
}
const char *
gp_strerror(int errnum)
{
return NULL;
}
/* We don't have a good way to get a serial number here, so just */
/* return what we always used to: GS_SERIALNUMBER. */
int
gp_serialnumber(void)
{
return (int)(gs_serialnumber);
}
/* -------------- Helpers for gp_file_name_combine_generic ------------- */
uint gp_file_name_root(const char *fname, uint len)
{
/*
* The root for device:[root.][directory.subdirectory]filename.extension;version
* is device:[root.][
* The root for device:[directory.subdirectory]filename.extension;version
* is device:[
* The root for logical:filename.extension;version
* is logical:
*/
int i, j;
if (len == 0)
return 0;
/* Search for ':' */
for (i = 0; i < len; i++)
if (fname[i] == ':')
break;
if (i == len)
return 0; /* No root. */
if (fname[i] == ':')
i++;
if (i == len || fname[i] != '[')
return i;
/* Search for ']' */
i++;
for (j = i; j < len; j++)
if (fname[j] == ']')
break;
if (j == len)
return i; /* No ']'. Allowed as a Ghostscript specifics. */
j++;
if (j == len)
return i; /* Appending "device:[directory.subdirectory]" with "filename.extension;version". */
if (fname[j] != '[')
return i; /* Can't append anything, but pass through for checking an absolute path. */
return j + 1; /* device:[root.][ */
}
uint gs_file_name_check_separator(const char *fname, int len, const char *item)
{
if (len > 0) {
/*
* Ghostscript specifics : an extended syntax like Mac OS.
* We intentionally don't consider ':' and '[' as separators
* in forward search, see gp_file_name_combine.
*/
if (fname[0] == ']')
return 1; /* It is a file separator. */
if (fname[0] == '.')
return 1; /* It is a directory separator. */
if (fname[0] == '-') {
if (fname == item + 1 && item[0] == '-')
return 1; /* Two or more parents, cut the first one. */
return 1;
}
} else if (len < 0) {
if (fname[-1] == '.' || fname[-1] == ':' || fname[-1] == '[')
return 1;
}
return 0;
}
bool gp_file_name_is_parent(const char *fname, uint len)
{ /* Ghostscript specifics : an extended syntax like Mac OS. */
return len == 1 && fname[0] == '-';
}
bool gp_file_name_is_current(const char *fname, uint len)
{ /* Ghostscript specifics : an extended syntax like Mac OS. */
return len == 0;
}
const char *gp_file_name_separator(void)
{ return "]";
}
const char *gp_file_name_directory_separator(void)
{ return ".";
}
const char *gp_file_name_parent(void)
{ return "-";
}
const char *gp_file_name_current(void)
{ return "";
}
bool gp_file_name_is_parent_allowed(void)
{ return false;
}
bool gp_file_name_is_empty_item_meanful(void)
{ return true;
}
gp_file_name_combine_result
gp_file_name_combine(const char *prefix, uint plen, const char *fname, uint flen,
bool no_sibling, char *buffer, uint *blen)
{
/*
* Reduce it to the general case.
*
* Implementation restriction : fname must not contain a part of
* "device:[root.]["
*/
uint rlen, flen1 = flen, plen1 = plen;
const char *fname1 = fname;
if ( plen > 0 && prefix[plen-1] == '\0' )
plen--;
if (plen == 0 && flen == 0) {
/* Not sure that we need this case. */
if (*blen == 0)
return gp_combine_small_buffer;
buffer[0] = '.';
*blen = 1;
}
rlen = gp_file_name_root(fname, flen);
if (rlen > 0 || plen == 0 || flen == 0) {
if (rlen == 0 && plen != 0) {
fname1 = prefix;
flen1 = plen;
}
if (flen1 + 1 > *blen)
return gp_combine_small_buffer;
memcpy(buffer, fname1, flen1);
buffer[flen1] = 0;
*blen = flen1;
return gp_combine_success;
}
if ( prefix[plen - 1] == ']' && fname[ 0 ] == '-' )
{
memcpy(buffer, prefix, plen - 1 );
fname1 = fname + 1;
flen1 = flen - 1;
memcpy(buffer + plen - 1 , fname1, flen1);
memcpy(buffer + plen + flen1 - 1 , "]" , 1 );
buffer[plen + flen1] = 0;
*blen = plen + flen1;
return gp_combine_success;
}
if ( prefix[plen - 1] == ':' || (prefix[plen - 1] == ']' &&
memchr(fname, ']', flen) == 0) )
{
/* Just concatenate. */
if (plen + flen + 1 > *blen)
return gp_combine_small_buffer;
memcpy(buffer, prefix, plen);
memcpy(buffer + plen, fname, flen);
buffer[plen + flen] = 0;
*blen = plen + flen;
return gp_combine_success;
}
if ( memchr( prefix , '[' , plen ) == 0 &&
memchr( prefix , '.' , plen ) == 0 )
{
char* tmp_prefix;
int tmp_plen;
if ( prefix[0] == '/' )
{
tmp_prefix = prefix + 1;
tmp_plen = plen - 1;
}
else
{
tmp_prefix = prefix;
tmp_plen = plen;
}
if ( tmp_plen + flen + 2 > *blen)
return gp_combine_small_buffer;
memcpy(buffer, tmp_prefix, tmp_plen);
memcpy(buffer + tmp_plen , ":" , 1 );
memcpy(buffer + tmp_plen + 1, fname, flen);
if ( memchr( fname , '.' , flen ) != 0 )
{
buffer[ tmp_plen + flen + 1] = 0;
*blen = tmp_plen + flen + 1;
}
else
{
memcpy(buffer + tmp_plen + flen + 1 , "." , 1 );
buffer[ tmp_plen + flen + 2] = 0;
*blen = tmp_plen + flen + 2;
}
return gp_combine_success;
}
if (prefix[plen - 1] != ']' && fname[0] == '[')
return gp_combine_cant_handle;
/* Unclose "][" :*/
if (fname[0] == '[') {
fname1 = fname + 1;
flen1 = flen - 1;
}
if (prefix[plen - 1] == ']')
plen1 = plen - 1;
return gp_file_name_combine_generic(prefix, plen1,
fname1, flen1, no_sibling, buffer, blen);
}
bool
gp_file_name_good_char(unsigned char c)
{
return (c >= 'A' && c <= 'Z') || (c >='a' && c <= 'z') || (c >= '0' && c <= '9') || c == '$' || c == '-' || c == '_';
}
/* ------ Font enumeration ------ */
/* This is used to query the native os for a list of font names and
* corresponding paths. The general idea is to save the hassle of
* building a custom fontmap file.
*/
void *gp_enumerate_fonts_init(gs_memory_t *mem)
{
return NULL;
}
int gp_enumerate_fonts_next(void *enum_state, char **fontname, char **path)
{
return 0;
}
void gp_enumerate_fonts_free(void *enum_state)
{
}
/* --------- 64 bit file access ----------- */
/* fixme: Not implemented yet.
* Currently we stub it with 32 bits access.
*/
int64_t gp_ftell_impl(FILE *strm)
{
return ftell(strm);
}
int gp_fseek_impl(FILE *strm, gs_offset_t offset, int origin)
{
long offset1 = (long)offset;
if (offset != offset1)
return -1;
return fseek(strm, offset1, origin);
}
bool gp_fseekable_impl(FILE *f)
{
struct stat s;
int fno;
fno = fileno(f);
if (fno < 0)
return(false);
if (fstat(fno, &s) < 0)
return(false);
return((bool)S_ISREG(s.st_mode));
}
|