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
|
// Copyright (C) 2004-2024 Artifex Software, Inc.
//
// This file is part of MuPDF.
//
// MuPDF is free software: you can redistribute it and/or modify it under the
// terms of the GNU Affero General Public License as published by the Free
// Software Foundation, either version 3 of the License, or (at your option)
// any later version.
//
// MuPDF 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 Affero General Public License for more
// details.
//
// You should have received a copy of the GNU Affero General Public License
// along with MuPDF. If not, see <https://www.gnu.org/licenses/agpl-3.0.en.html>
//
// Alternative licensing terms are available from the licensor.
// For commercial licensing, see <https://www.artifex.com/> or contact
// Artifex Software, Inc., 39 Mesa Street, Suite 108A, San Francisco,
// CA 94129, USA, for further information.
#define _LARGEFILE_SOURCE
#ifndef _FILE_OFFSET_BITS
#define _FILE_OFFSET_BITS 64
#endif
#include "mupdf/fitz.h"
#include <string.h>
#include <errno.h>
#include <stdio.h>
#ifdef _WIN32
#include <windows.h>
#include <wchar.h>
#else
#include <unistd.h>
#endif
int
fz_file_exists(fz_context *ctx, const char *path)
{
FILE *file;
#ifdef _WIN32
file = fz_fopen_utf8(path, "rb");
#else
file = fopen(path, "rb");
#endif
if (file)
fclose(file);
return !!file;
}
fz_stream *
fz_new_stream(fz_context *ctx, void *state, fz_stream_next_fn *next, fz_stream_drop_fn *drop)
{
fz_stream *stm = NULL;
fz_try(ctx)
{
stm = fz_malloc_struct(ctx, fz_stream);
}
fz_catch(ctx)
{
if (drop)
drop(ctx, state);
fz_rethrow(ctx);
}
stm->refs = 1;
stm->error = 0;
stm->eof = 0;
stm->pos = 0;
stm->bits = 0;
stm->avail = 0;
stm->rp = NULL;
stm->wp = NULL;
stm->state = state;
stm->next = next;
stm->drop = drop;
stm->seek = NULL;
return stm;
}
fz_stream *
fz_keep_stream(fz_context *ctx, fz_stream *stm)
{
return fz_keep_imp(ctx, stm, &stm->refs);
}
void
fz_drop_stream(fz_context *ctx, fz_stream *stm)
{
if (fz_drop_imp(ctx, stm, &stm->refs))
{
if (stm->drop)
stm->drop(ctx, stm->state);
fz_free(ctx, stm);
}
}
/* File stream */
// TODO: WIN32: HANDLE CreateFileW(), etc.
// TODO: POSIX: int creat(), read(), write(), lseeko, etc.
typedef struct
{
FILE *file;
char *filename;
#ifdef _WIN32
wchar_t *filename_w;
#endif
int del_on_drop;
unsigned char buffer[4096];
} fz_file_stream;
static int next_file(fz_context *ctx, fz_stream *stm, size_t n)
{
fz_file_stream *state = stm->state;
/* n is only a hint, that we can safely ignore */
n = fread(state->buffer, 1, sizeof(state->buffer), state->file);
if (n < sizeof(state->buffer) && ferror(state->file))
fz_throw(ctx, FZ_ERROR_SYSTEM, "read error: %s", strerror(errno));
stm->rp = state->buffer;
stm->wp = state->buffer + n;
stm->pos += (int64_t)n;
if (n == 0)
return EOF;
return *stm->rp++;
}
static void seek_file(fz_context *ctx, fz_stream *stm, int64_t offset, int whence)
{
fz_file_stream *state = stm->state;
#ifdef _WIN32
int64_t n = _fseeki64(state->file, offset, whence);
#else
int64_t n = fseeko(state->file, offset, whence);
#endif
if (n < 0)
fz_throw(ctx, FZ_ERROR_SYSTEM, "cannot seek: %s", strerror(errno));
#ifdef _WIN32
stm->pos = _ftelli64(state->file);
#else
stm->pos = ftello(state->file);
#endif
stm->rp = state->buffer;
stm->wp = state->buffer;
}
static void drop_file(fz_context *ctx, void *state_)
{
fz_file_stream *state = state_;
if (state->filename && state->del_on_drop)
{
#ifdef _WIN32
if (state->filename_w)
_wunlink(state->filename_w);
else
#endif
unlink(state->filename);
}
#ifdef _WIN32
fz_free(ctx, state->filename_w);
#endif
fz_free(ctx, state->filename);
fz_free(ctx, state);
}
static void close_and_drop_file(fz_context *ctx, void *state_)
{
fz_file_stream *state = state_;
if (state)
{
int n = fclose(state->file);
if (n < 0)
fz_warn(ctx, "close error: %s", strerror(errno));
drop_file(ctx, state_);
}
}
static fz_stream *
fz_open_file_ptr(fz_context *ctx, FILE *file, const char *name, int wide, int del_on_drop)
{
fz_stream *stm;
fz_file_stream *state = NULL;
fz_var(state);
#ifndef _WIN32
assert(!wide);
#endif
fz_try(ctx)
{
state = fz_malloc_struct(ctx, fz_file_stream);
state->file = file;
#ifdef _WIN32
if (wide)
{
size_t z = wcslen((const wchar_t *)name)+1;
state->filename_w = fz_malloc(ctx, z*2);
memcpy(state->filename_w, name, z*2);
state->filename = fz_utf8_from_wchar(ctx, (const wchar_t *)name);
}
else
#endif
state->filename = fz_strdup(ctx, name);
state->del_on_drop = del_on_drop;
stm = fz_new_stream(ctx, state, next_file, close_and_drop_file);
stm->seek = seek_file;
}
fz_catch(ctx)
{
if (state == NULL && del_on_drop)
{
fclose(file);
#ifdef _WIN32
if (wide)
_wunlink((const wchar_t *)name);
else
#endif
unlink(name);
}
else
close_and_drop_file(ctx, state);
fz_rethrow(ctx);
}
return stm;
}
fz_stream *fz_open_file_ptr_no_close(fz_context *ctx, FILE *file)
{
fz_stream *stm;
fz_file_stream *state = fz_malloc_struct(ctx, fz_file_stream);
state->file = file;
/* We don't own the file ptr. Ensure we don't close it */
stm = fz_new_stream(ctx, state, next_file, drop_file);
stm->seek = seek_file;
return stm;
}
fz_stream *
fz_open_file(fz_context *ctx, const char *name)
{
FILE *file;
#ifdef _WIN32
file = fz_fopen_utf8(name, "rb");
#else
file = fopen(name, "rb");
#endif
if (file == NULL)
fz_throw(ctx, FZ_ERROR_SYSTEM, "cannot open %s: %s", name, strerror(errno));
return fz_open_file_ptr(ctx, file, name, 0, 0);
}
fz_stream *
fz_open_file_autodelete(fz_context *ctx, const char *name)
{
FILE *file;
#ifdef _WIN32
file = fz_fopen_utf8(name, "rb");
#else
file = fopen(name, "rb");
#endif
if (file == NULL)
fz_throw(ctx, FZ_ERROR_SYSTEM, "cannot open %s: %s", name, strerror(errno));
return fz_open_file_ptr(ctx, file, name, 0, 1);
}
fz_stream *
fz_try_open_file(fz_context *ctx, const char *name)
{
FILE *file;
#ifdef _WIN32
file = fz_fopen_utf8(name, "rb");
#else
file = fopen(name, "rb");
#endif
if (file == NULL)
return NULL;
return fz_open_file_ptr(ctx, file, name, 0, 0);
}
#ifdef _WIN32
fz_stream *
fz_open_file_w(fz_context *ctx, const wchar_t *name)
{
FILE *file = _wfopen(name, L"rb");
if (file == NULL)
fz_throw(ctx, FZ_ERROR_SYSTEM, "cannot open file %ls: %s", name, strerror(errno));
return fz_open_file_ptr(ctx, file, (const char *)name, 1, 0);
}
#endif
const char *
fz_stream_filename(fz_context *ctx, fz_stream *stm)
{
if (!stm || stm->next != next_file)
return NULL;
return ((fz_file_stream *)stm->state)->filename;
}
/* Memory stream */
static int next_buffer(fz_context *ctx, fz_stream *stm, size_t max)
{
return EOF;
}
static void seek_buffer(fz_context *ctx, fz_stream *stm, int64_t offset, int whence)
{
int64_t pos = stm->pos - (stm->wp - stm->rp);
/* Convert to absolute pos */
if (whence == 1)
{
offset += pos; /* Was relative to current pos */
}
else if (whence == 2)
{
offset += stm->pos; /* Was relative to end */
}
if (offset < 0)
offset = 0;
if (offset > stm->pos)
offset = stm->pos;
stm->rp += (int)(offset - pos);
}
static void drop_buffer(fz_context *ctx, void *state_)
{
fz_buffer *state = (fz_buffer *)state_;
fz_drop_buffer(ctx, state);
}
fz_stream *
fz_open_buffer(fz_context *ctx, fz_buffer *buf)
{
fz_stream *stm;
if (buf == NULL)
return NULL;
fz_keep_buffer(ctx, buf);
stm = fz_new_stream(ctx, buf, next_buffer, drop_buffer);
stm->seek = seek_buffer;
stm->rp = buf->data;
stm->wp = buf->data + buf->len;
stm->pos = (int64_t)buf->len;
return stm;
}
fz_stream *
fz_open_memory(fz_context *ctx, const unsigned char *data, size_t len)
{
fz_stream *stm;
stm = fz_new_stream(ctx, NULL, next_buffer, NULL);
stm->seek = seek_buffer;
stm->rp = (unsigned char *)data;
stm->wp = (unsigned char *)data + len;
stm->pos = (int64_t)len;
return stm;
}
|