203 lines
5.5 KiB
C
203 lines
5.5 KiB
C
|
/*
|
||
|
* Copyright (c) 2021 Taner Sener
|
||
|
*
|
||
|
* This file is part of FFmpegKit.
|
||
|
*
|
||
|
* FFmpegKit is free software: you can redistribute it and/or modify
|
||
|
* it under the terms of the GNU Lesser General Public License as published by
|
||
|
* the Free Software Foundation, either version 3 of the License, or
|
||
|
* (at your option) any later version.
|
||
|
*
|
||
|
* FFmpegKit 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 Lesser General Public License for more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU Lesser General Public License
|
||
|
* along with FFmpegKit. If not, see <http://www.gnu.org/licenses/>.
|
||
|
*/
|
||
|
|
||
|
#include "libavutil/file.h"
|
||
|
|
||
|
static int64_t fd_seek(URLContext *h, int64_t pos, int whence)
|
||
|
{
|
||
|
FileContext *c = h->priv_data;
|
||
|
int64_t ret;
|
||
|
|
||
|
if (whence == AVSEEK_SIZE) {
|
||
|
struct stat st;
|
||
|
ret = fstat(c->fd, &st);
|
||
|
return ret < 0 ? AVERROR(errno) : (S_ISFIFO(st.st_mode) ? 0 : st.st_size);
|
||
|
}
|
||
|
|
||
|
ret = lseek(c->fd, pos, whence);
|
||
|
|
||
|
return ret < 0 ? AVERROR(errno) : ret;
|
||
|
}
|
||
|
|
||
|
static int fd_open(URLContext *h, const char *filename, int flags)
|
||
|
{
|
||
|
FileContext *c = h->priv_data;
|
||
|
int fd;
|
||
|
struct stat st;
|
||
|
char *final;
|
||
|
char *saveptr = NULL;
|
||
|
char *fd_string = NULL;
|
||
|
char filename_backup[128];
|
||
|
|
||
|
av_strstart(filename, "fd:", &filename);
|
||
|
av_strstart(filename, "saf:", &filename);
|
||
|
av_strlcpy(filename_backup, filename, FFMIN(sizeof(filename), sizeof(filename_backup)));
|
||
|
fd_string = av_strtok(filename_backup, ".", &saveptr);
|
||
|
|
||
|
fd = strtol(fd_string, &final, 10);
|
||
|
if ((fd_string == final) || *final ) {
|
||
|
fd = -1;
|
||
|
}
|
||
|
|
||
|
c->fd = fd;
|
||
|
|
||
|
h->is_streamed = !fstat(fd, &st) && S_ISFIFO(st.st_mode);
|
||
|
|
||
|
/* Buffer writes more than the default 32k to improve throughput especially
|
||
|
* with networked file systems */
|
||
|
if (!h->is_streamed && flags & AVIO_FLAG_WRITE)
|
||
|
h->min_packet_size = h->max_packet_size = 262144;
|
||
|
|
||
|
if (c->seekable >= 0)
|
||
|
h->is_streamed = !c->seekable;
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
static int fd_check(URLContext *h, int mask)
|
||
|
{
|
||
|
int ret = 0;
|
||
|
const char *filename = h->filename;
|
||
|
av_strstart(filename, "fd:", &filename);
|
||
|
av_strstart(filename, "saf:", &filename);
|
||
|
|
||
|
{
|
||
|
#if HAVE_ACCESS && defined(R_OK)
|
||
|
if (access(filename, F_OK) < 0)
|
||
|
return AVERROR(errno);
|
||
|
if (mask&AVIO_FLAG_READ)
|
||
|
if (access(filename, R_OK) >= 0)
|
||
|
ret |= AVIO_FLAG_READ;
|
||
|
if (mask&AVIO_FLAG_WRITE)
|
||
|
if (access(filename, W_OK) >= 0)
|
||
|
ret |= AVIO_FLAG_WRITE;
|
||
|
#else
|
||
|
struct stat st;
|
||
|
# ifndef _WIN32
|
||
|
ret = stat(filename, &st);
|
||
|
# else
|
||
|
ret = win32_stat(filename, &st);
|
||
|
# endif
|
||
|
if (ret < 0)
|
||
|
return AVERROR(errno);
|
||
|
|
||
|
ret |= st.st_mode&S_IRUSR ? mask&AVIO_FLAG_READ : 0;
|
||
|
ret |= st.st_mode&S_IWUSR ? mask&AVIO_FLAG_WRITE : 0;
|
||
|
#endif
|
||
|
}
|
||
|
return ret;
|
||
|
}
|
||
|
|
||
|
static int fd_delete(URLContext *h)
|
||
|
{
|
||
|
#if HAVE_UNISTD_H
|
||
|
int ret;
|
||
|
const char *filename = h->filename;
|
||
|
av_strstart(filename, "fd:", &filename);
|
||
|
av_strstart(filename, "saf:", &filename);
|
||
|
|
||
|
ret = rmdir(filename);
|
||
|
if (ret < 0 && (errno == ENOTDIR
|
||
|
# ifdef _WIN32
|
||
|
|| errno == EINVAL
|
||
|
# endif
|
||
|
))
|
||
|
ret = unlink(filename);
|
||
|
if (ret < 0)
|
||
|
return AVERROR(errno);
|
||
|
|
||
|
return ret;
|
||
|
#else
|
||
|
return AVERROR(ENOSYS);
|
||
|
#endif /* HAVE_UNISTD_H */
|
||
|
}
|
||
|
|
||
|
static int fd_move(URLContext *h_src, URLContext *h_dst)
|
||
|
{
|
||
|
const char *filename_src = h_src->filename;
|
||
|
const char *filename_dst = h_dst->filename;
|
||
|
av_strstart(filename_src, "fd:", &filename_src);
|
||
|
av_strstart(filename_src, "saf:", &filename_src);
|
||
|
av_strstart(filename_dst, "fd:", &filename_dst);
|
||
|
av_strstart(filename_dst, "saf:", &filename_dst);
|
||
|
|
||
|
if (rename(filename_src, filename_dst) < 0)
|
||
|
return AVERROR(errno);
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
static int fd_close(URLContext *h)
|
||
|
{
|
||
|
FileContext *c = h->priv_data;
|
||
|
|
||
|
fd_close_function custom_fd_close = av_get_fd_close();
|
||
|
if (custom_fd_close != NULL) {
|
||
|
return custom_fd_close(c->fd);
|
||
|
} else {
|
||
|
return close(c->fd);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
static const AVClass saf_class = {
|
||
|
.class_name = "saf",
|
||
|
.item_name = av_default_item_name,
|
||
|
.option = file_options,
|
||
|
.version = LIBAVUTIL_VERSION_INT,
|
||
|
};
|
||
|
|
||
|
static const AVClass fd_class = {
|
||
|
.class_name = "fd",
|
||
|
.item_name = av_default_item_name,
|
||
|
.option = file_options,
|
||
|
.version = LIBAVUTIL_VERSION_INT,
|
||
|
};
|
||
|
|
||
|
const URLProtocol ff_saf_protocol = {
|
||
|
.name = "saf",
|
||
|
.url_open = fd_open,
|
||
|
.url_read = file_read,
|
||
|
.url_write = file_write,
|
||
|
.url_seek = fd_seek,
|
||
|
.url_close = fd_close,
|
||
|
.url_get_file_handle = file_get_handle,
|
||
|
.url_check = fd_check,
|
||
|
.url_delete = fd_delete,
|
||
|
.url_move = fd_move,
|
||
|
.priv_data_size = sizeof(FileContext),
|
||
|
.priv_data_class = &saf_class,
|
||
|
.default_whitelist = "saf,crypto,data"
|
||
|
};
|
||
|
|
||
|
const URLProtocol ff_fd_protocol = {
|
||
|
.name = "fd",
|
||
|
.url_open = fd_open,
|
||
|
.url_read = file_read,
|
||
|
.url_write = file_write,
|
||
|
.url_seek = fd_seek,
|
||
|
.url_close = fd_close,
|
||
|
.url_get_file_handle = file_get_handle,
|
||
|
.url_check = fd_check,
|
||
|
.url_delete = fd_delete,
|
||
|
.url_move = fd_move,
|
||
|
.priv_data_size = sizeof(FileContext),
|
||
|
.priv_data_class = &fd_class,
|
||
|
.default_whitelist = "fd,crypto,data"
|
||
|
};
|