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
|
/*
* Copyright (C) 2021 Liquidaty and the zsv/lib contributors
* All rights reserved
*
* This file is part of zsv/lib, distributed under the license defined at
* https://opensource.org/licenses/MIT
*/
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <errno.h>
#include <unistd.h> // for close()
#include <fcntl.h> // open
#include <zsv/utils/dirs.h>
#include <zsv/utils/os.h>
#include <zsv/utils/file.h>
/**
* Get a temp file name. The returned value, if any, will have been allocated
* on the heap, and the caller should `free()`
*
* @param prefix string with which the resulting file name will be prefixed
*/
#if defined(_WIN32) || defined(WIN32) || defined(WIN)
#include <windows.h>
char *zsv_get_temp_filename(const char *prefix) {
TCHAR lpTempPathBuffer[MAX_PATH];
DWORD dwRetVal = GetTempPath(MAX_PATH, // length of the buffer
lpTempPathBuffer); // buffer for path
if (!(dwRetVal > 0 && dwRetVal < MAX_PATH))
zsv_perror("GetTempPath");
else {
char szTempFileName[MAX_PATH];
UINT uRetVal = GetTempFileName(lpTempPathBuffer, // directory for tmp files
TEXT(prefix), // temp file name prefix
0, // create unique name
szTempFileName); // buffer for name
if (uRetVal > 0)
return strdup(szTempFileName);
zsv_perror(lpTempPathBuffer);
}
return NULL;
}
#else
char *zsv_get_temp_filename(const char *prefix) {
char *s = NULL;
char *tmpdir = getenv("TMPDIR");
if (!tmpdir)
tmpdir = ".";
asprintf(&s, "%s/%s_XXXXXXXX", tmpdir, prefix);
if (!s) {
const char *msg = strerror(errno);
fprintf(stderr, "%s%c%s: %s\n", tmpdir, FILESLASH, prefix, msg ? msg : "Unknown error");
} else {
int fd = mkstemp(s);
if (fd > 0) {
close(fd);
return s;
}
free(s);
}
return NULL;
}
#endif
/**
* Replacement for tmpfile().
* Returns filename; file must be manually removed after fclose
*
* @param mode optional mode passed to fopen(); if NULL, defaults to "wb"
*/
FILE *zsv_tmpfile(const char *prefix, char **filename, const char *mode) {
char *fn = zsv_get_temp_filename(prefix);
if (fn) {
FILE *f = fopen(fn, mode == NULL ? "wb" : mode);
if (f) {
*filename = fn;
return f;
}
}
int e = errno;
free(fn);
errno = e;
return NULL;
}
/**
* Temporarily redirect a FILE * (e.g. stdout / stderr) to a temp file
* temp_filename and bak are set as return values
* caller must free temp_filename
*
* @param old_fd file descriptor of file to dupe e.g. fileno(stdout);
* @return fd needed to pass on to zsv_redirect_file_from_temp
*/
#if defined(_WIN32) || defined(__FreeBSD__)
#include <sys/stat.h> // S_IRUSR S_IWUSR
#endif
int zsv_redirect_file_to_temp(FILE *f, const char *tempfile_prefix, char **temp_filename) {
int new_fd;
int old_fd = fileno(f);
fflush(f);
int bak = dup(old_fd);
*temp_filename = zsv_get_temp_filename(tempfile_prefix);
new_fd = open(*temp_filename, O_WRONLY | O_CREAT, S_IRUSR | S_IWUSR);
dup2(new_fd, old_fd);
close(new_fd);
return bak;
}
/**
* Restore a FILE * that was redirected by zsv_redirect_file_to_temp()
*/
void zsv_redirect_file_from_temp(FILE *f, int bak, int old_fd) {
fflush(f);
dup2(bak, old_fd);
close(bak);
}
#if defined(_WIN32) || defined(WIN32) || defined(WIN)
int zsv_file_exists(const char *filename) {
DWORD attributes = GetFileAttributes(filename);
return (attributes != INVALID_FILE_ATTRIBUTES && !(attributes & FILE_ATTRIBUTE_DIRECTORY));
}
#else
#include <sys/stat.h> // S_IRUSR S_IWUSR
int zsv_file_exists(const char *filename) {
struct stat buffer;
if (stat(filename, &buffer) == 0) {
char is_dir = buffer.st_mode & S_IFDIR ? 1 : 0;
if (!is_dir)
return 1;
}
return 0;
}
#endif
/**
* Copy a file, given source and destination paths
* On error, output error message and return non-zero
*/
int zsv_copy_file(const char *src, const char *dest) {
// create one or more directories if needed
if (zsv_mkdirs(dest, 1)) {
fprintf(stderr, "Unable to create directories needed for %s\n", dest);
return -1;
}
// copy the file
int err = 0;
FILE *fsrc = zsv_fopen(src, "rb");
if (!fsrc)
err = errno ? errno : -1, perror(src);
else {
FILE *fdest = zsv_fopen(dest, "wb");
if (!fdest)
err = errno ? errno : -1, perror(dest);
else {
err = zsv_copy_file_ptr(fsrc, fdest);
if (err)
perror(dest);
fclose(fdest);
}
fclose(fsrc);
}
return err;
}
/**
* Copy a file-like, given source and destination handles
* and read/write functions
* Return error number per errno.h
*/
int zsv_copy_filelike_ptr(
FILE *src, size_t (*freadx)(void *restrict ptr, size_t size, size_t nitems, void *restrict stream), FILE *dest,
size_t (*fwritex)(const void *restrict ptr, size_t size, size_t nitems, void *restrict stream)) {
int err = 0;
char buffer[4096 * 16];
size_t bytes_read;
while ((bytes_read = freadx(buffer, 1, sizeof(buffer), src)) > 0) {
if (fwritex(buffer, 1, bytes_read, dest) != bytes_read) {
err = errno ? errno : -1;
break;
}
}
return err;
}
/**
* Copy a file, given source and destination FILE pointers
* Return error number per errno.h
*/
int zsv_copy_file_ptr(FILE *src, FILE *dest) {
return zsv_copy_filelike_ptr(
src, (size_t(*)(void *restrict ptr, size_t size, size_t nitems, void *restrict stream))fread, dest,
(size_t(*)(const void *restrict ptr, size_t size, size_t nitems, void *restrict stream))fwrite);
}
size_t zsv_dir_len_basename(const char *filepath, const char **basename) {
for (size_t len = strlen(filepath); len; len--) {
if (filepath[len - 1] == '/' || filepath[len - 1] == '\\') {
*basename = filepath + len;
return len - 1;
}
}
*basename = filepath;
return 0;
}
int zsv_file_readable(const char *filename, int *err, FILE **f_out) {
FILE *f;
int rc;
if (err)
*err = 0;
// to do: use fstat()
if ((f = zsv_fopen(filename, "rb")) == NULL) {
rc = 0;
if (err)
*err = errno;
else
perror(filename);
} else {
rc = 1;
if (f_out)
*f_out = f;
else
fclose(f);
}
return rc;
}
/**
* Function that is the same as `fwrite()`, but can be used as a callback
* argument to `zsv_set_scan_filter()`
*/
size_t zsv_filter_write(void *FILEp, unsigned char *buff, size_t bytes_read) {
fwrite(buff, 1, bytes_read, (FILE *)FILEp);
return bytes_read;
}
int zsv_no_printf(void *_ctx, const char *_format, ...) {
// do nothing!
return 0;
}
#include "file-mem.c"
|