123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304 |
- /* misc.c
- *
- * Copyright (C) 1996-2022 Timo Kokkonen
- * All Rights Reserved.
- *
- * SPDX-License-Identifier: GPL-3.0-or-later
- *
- * This file is part of JPEGoptim.
- *
- * JPEGoptim is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * JPEGoptim 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 General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with JPEGoptim. If not, see <https://www.gnu.org/licenses/>.
- */
- #ifdef HAVE_CONFIG_H
- #include "config.h"
- #endif
- #include <stdio.h>
- #include <sys/types.h>
- #include <sys/stat.h>
- #ifdef HAVE_UNISTD_H
- #include <unistd.h>
- #endif
- #include <string.h>
- #include <stdarg.h>
- #include <stdlib.h>
- #include "jpegoptim.h"
- int delete_file(const char *name)
- {
- int retval;
- if (!name)
- return -1;
- if (verbose_mode > 1 && !quiet_mode)
- fprintf(stderr,"deleting: %s\n",name);
- if ((retval=unlink(name)) && !quiet_mode)
- warn("error removing file: %s",name);
- return retval;
- }
- long file_size(FILE *fp)
- {
- struct stat buf;
- if (!fp)
- return -1;
- if (fstat(fileno(fp),&buf) != 0)
- return -2;
- return (long)buf.st_size;
- }
- int is_directory(const char *pathname)
- {
- struct stat buf;
- if (!pathname)
- return 0;
- if (stat(pathname,&buf) != 0)
- return 0;
- return (S_ISDIR(buf.st_mode) ? 1 : 0);
- }
- int is_file(const char *filename, struct stat *st)
- {
- struct stat buf;
- if (!filename)
- return 0;
- if (lstat(filename,&buf) != 0)
- return 0;
- if (st)
- *st=buf;
- return (S_ISREG(buf.st_mode) ? 1 : 0);
- }
- int file_exists(const char *pathname)
- {
- struct stat buf;
- if (!pathname)
- return 0;
- return (stat(pathname,&buf) == 0 ? 1 : 0);
- }
- int rename_file(const char *old_path, const char *new_path)
- {
- if (!old_path || !new_path)
- return -1;
- #ifdef WIN32
- if (file_exists(new_path))
- delete_file(new_path);
- #endif
- return rename(old_path,new_path);
- }
- #define COPY_BUF_SIZE (256*1024)
- int copy_file(const char *srcfile, const char *dstfile)
- {
- FILE *in,*out;
- unsigned char buf[COPY_BUF_SIZE];
- int r,w;
- int err=0;
- if (!srcfile || !dstfile)
- return -1;
- in=fopen(srcfile,"rb");
- if (!in) {
- warn("failed to open file for reading: %s", srcfile);
- return -2;
- }
- out=fopen(dstfile,"wb");
- if (!out) {
- fclose(in);
- warn("failed to open file for writing: %s", dstfile);
- return -3;
- }
- do {
- r=fread(buf,1,sizeof(buf),in);
- if (r > 0) {
- w=fwrite(buf,1,r,out);
- if (w != r) {
- err=1;
- warn("error writing to file: %s", dstfile);
- break;
- }
- } else {
- if (ferror(in)) {
- err=2;
- warn("error reading file: %s", srcfile);
- break;
- }
- }
- } while (!feof(in));
- fclose(out);
- fclose(in);
- return err;
- }
- char *fgetstr(char *s, size_t size, FILE *stream)
- {
- char *p;
- if (!s || size < 1 || !stream)
- return NULL;
- if (!fgets(s, size, stream))
- return NULL;
- p = s + strnlen(s, size) - 1;
- while ((p >= s) && ((*p == 10) || (*p == 13)))
- *p--=0;
- return s;
- }
- char *splitdir(const char *pathname, char *buf, size_t size)
- {
- char *s;
- int len = 0;
- if (!pathname || !buf || size < 1)
- return NULL;
- if ((s = strrchr(pathname, DIR_SEPARATOR_C)))
- len = (s - pathname) + 1;
- if (len >= size)
- return NULL;
- if (len > 0)
- memcpy(buf, pathname, len);
- buf[len] = 0;
- return buf;
- }
- char *splitname(const char *pathname, char *buf, size_t size)
- {
- const char *s = NULL;
- int len;
- if (!pathname || !buf || size < 1)
- return NULL;
- if ((s = strrchr(pathname, DIR_SEPARATOR_C)))
- s++;
- else
- s=pathname;
- if ((len = strlen(s)) >= size)
- return NULL;
- if (len > 0)
- memcpy(buf, s, len);
- buf[len] = 0;
- return buf;
- }
- char *strncopy(char *dst, const char *src, size_t size)
- {
- if (!dst || !src || size < 1)
- return dst;
- if (size > 1)
- strncpy(dst, src, size - 1);
- dst[size - 1] = 0;
- return dst;
- }
- char *strncatenate(char *dst, const char *src, size_t size)
- {
- int used, free;
- if (!dst || !src || size < 1)
- return dst;
- /* Check if dst string is already "full" ... */
- used = strnlen(dst, size);
- if ((free = size - used) <= 1)
- return dst;
- return strncat(dst + used, src, free - 1);
- }
- char *str_add_list(char *dst, size_t size, const char *src, const char *delim)
- {
- if (!dst || !src || !delim || size < 1)
- return dst;
- if (strnlen(dst, size) > 0)
- strncatenate(dst, delim, size);
- return strncatenate(dst, src, size);
- }
- void fatal(const char *format, ...)
- {
- va_list args;
- fprintf(stderr, PROGRAMNAME ": ");
- va_start(args,format);
- vfprintf(stderr, format, args);
- va_end(args);
- fprintf(stderr,"\n");
- fflush(stderr);
- exit(3);
- }
- void warn(const char *format, ...)
- {
- va_list args;
- if (quiet_mode) return;
- fprintf(stderr, PROGRAMNAME ": ");
- va_start(args,format);
- vfprintf(stderr, format, args);
- va_end(args);
- fprintf(stderr,"\n");
- fflush(stderr);
- }
- /* eof :-) */
|