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
|
/* 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.
*/
/* prevent gp.h from defining fopen */
#define fopen fopen
#include "windows_.h"
#include "stdio_.h"
#include "gp.h"
#include "memory_.h"
#include "stat_.h"
#include "gserrors.h"
#include "gp_mswin.h"
/* Should be in io.h */
extern intptr_t _get_osfhandle(int fd);
/* Open a file with the given name, as a stream of uninterpreted bytes. */
FILE *
gp_fopen_impl(gs_memory_t *mem, const char *fname, const char *mode)
{
int len = utf8_to_wchar(NULL, fname);
wchar_t *uni;
wchar_t wmode[4];
FILE *file;
if (len <= 0)
return NULL;
uni = (wchar_t *)gs_alloc_bytes(mem, len*sizeof(wchar_t), "gp_fopen_impl");
if (uni == NULL)
return NULL;
utf8_to_wchar(uni, fname);
utf8_to_wchar(wmode, mode);
file = _wfopen(uni, wmode);
gs_free_object(mem, uni, "gs_fopen_impl");
return file;
}
int
gp_unlink_impl(gs_memory_t *mem, const char *fname)
{
int len = utf8_to_wchar(NULL, fname);
wchar_t *uni;
int ret;
if (len <= 0)
return gs_error_unknownerror;
uni = (wchar_t *)gs_alloc_bytes(mem, len*sizeof(wchar_t), "gp_unlink_impl");
if (uni == NULL)
return gs_error_VMerror;
utf8_to_wchar(uni, fname);
ret = _wunlink(uni);
gs_free_object(mem, uni, "gs_unlink_impl");
return ret;
}
int
gp_rename_impl(gs_memory_t *mem, const char *from, const char *to)
{
int lenf = utf8_to_wchar(NULL, from);
int lent = utf8_to_wchar(NULL, to);
wchar_t *unif, *unit;
int ret;
if (lenf <= 0 || lent <= 0)
return gs_error_unknownerror;
unif = (wchar_t *)gs_alloc_bytes(mem, lenf*sizeof(wchar_t), "gp_rename_impl");
if (unif == NULL)
return gs_error_VMerror;
unit = (wchar_t *)gs_alloc_bytes(mem, lent*sizeof(wchar_t), "gp_rename_impl");
if (unit == NULL) {
gs_free_object(mem, unif, "gs_unlink_impl");
return gs_error_VMerror;
}
utf8_to_wchar(unif, from);
utf8_to_wchar(unit, to);
ret = _wrename(unif, unit);
gs_free_object(mem, unif, "gs_rename_impl");
gs_free_object(mem, unit, "gs_rename_impl");
return ret;
}
/* Create a second open FILE on the basis of a given one */
FILE *gp_fdup_impl(FILE *f, const char *mode)
{
int fd = fileno(f);
if (fd < 0)
return NULL;
fd = dup(fd);
if (fd < 0)
return NULL;
return fdopen(fd, mode);
}
/* Read from a specified offset within a FILE into a buffer */
int gp_pread_impl(char *buf, size_t count, gs_offset_t offset, FILE *f)
{
OVERLAPPED overlapped;
DWORD ret;
HANDLE hnd = (HANDLE)_get_osfhandle(fileno(f));
if (hnd == INVALID_HANDLE_VALUE)
return -1;
memset(&overlapped, 0, sizeof(OVERLAPPED));
overlapped.Offset = (DWORD)offset;
overlapped.OffsetHigh = (DWORD)(offset >> 32);
if (!ReadFile((HANDLE)hnd, buf, count, &ret, &overlapped))
return -1;
return ret;
}
/* Write to a specified offset within a FILE from a buffer */
int gp_pwrite_impl(const char *buf, size_t count, gs_offset_t offset, FILE *f)
{
OVERLAPPED overlapped;
DWORD ret;
HANDLE hnd = (HANDLE)_get_osfhandle(fileno(f));
if (hnd == INVALID_HANDLE_VALUE)
return -1;
memset(&overlapped, 0, sizeof(OVERLAPPED));
overlapped.Offset = (DWORD)offset;
overlapped.OffsetHigh = (DWORD)(offset >> 32);
if (!WriteFile((HANDLE)hnd, buf, count, &ret, &overlapped))
return -1;
return ret;
}
/* --------- 64 bit file access ----------- */
/* MSVC versions before 8 doen't provide big files.
MSVC 8 doesn't distinguish big and small files,
but provide special positioning functions
to access data behind 4GB.
Currently we support 64 bits file access with MSVC only.
*/
#if defined(_MSC_VER) && _MSC_VER < 1400
int64_t _ftelli64( FILE *);
int _fseeki64( FILE *, int64_t, int);
#endif
gs_offset_t gp_ftell_impl(FILE *strm)
{
#if !defined(_MSC_VER)
return ftell(strm);
#elif _MSC_VER < 1200
return ftell(strm);
#else
return (int64_t)_ftelli64(strm);
#endif
}
int gp_fseek_impl(FILE *strm, gs_offset_t offset, int origin)
{
#if !defined(_MSC_VER)
return fseek(strm, offset, origin);
#elif _MSC_VER < 1200
long offset1 = (long)offset;
if (offset != offset1)
return -1;
return fseek(strm, offset1, origin);
#else
return _fseeki64(strm, offset, origin);
#endif
}
bool gp_fseekable_impl(FILE *f)
{
struct __stat64 s;
int fno;
fno = fileno(f);
if (fno < 0)
return(false);
if (_fstat64(fno, &s) < 0)
return(false);
return((bool)S_ISREG(s.st_mode));
}
|