2010-12-22 14:13:04 +00:00
|
|
|
/*
|
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg 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 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* FFmpeg 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 FFmpeg; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
2012-08-06 13:49:32 +00:00
|
|
|
#include "config.h"
|
2010-12-22 14:13:04 +00:00
|
|
|
#include "file.h"
|
2013-08-06 18:19:24 +00:00
|
|
|
#include "internal.h"
|
2011-06-04 12:34:27 +00:00
|
|
|
#include "log.h"
|
2012-08-15 20:27:52 +00:00
|
|
|
#include "mem.h"
|
2010-12-22 14:13:04 +00:00
|
|
|
#include <fcntl.h>
|
|
|
|
#include <sys/stat.h>
|
2012-06-21 15:54:02 +00:00
|
|
|
#if HAVE_UNISTD_H
|
2010-12-22 14:13:04 +00:00
|
|
|
#include <unistd.h>
|
2012-06-21 15:54:02 +00:00
|
|
|
#endif
|
2012-11-29 15:02:42 +00:00
|
|
|
#if HAVE_IO_H
|
|
|
|
#include <io.h>
|
|
|
|
#endif
|
2010-12-22 14:13:04 +00:00
|
|
|
#if HAVE_MMAP
|
|
|
|
#include <sys/mman.h>
|
2011-01-05 05:16:33 +00:00
|
|
|
#elif HAVE_MAPVIEWOFFILE
|
|
|
|
#include <windows.h>
|
2010-12-22 14:13:04 +00:00
|
|
|
#endif
|
|
|
|
|
2014-09-22 09:02:13 +00:00
|
|
|
typedef struct FileLogContext {
|
2010-12-22 14:13:04 +00:00
|
|
|
const AVClass *class;
|
|
|
|
int log_offset;
|
|
|
|
void *log_ctx;
|
|
|
|
} FileLogContext;
|
|
|
|
|
|
|
|
static const AVClass file_log_ctx_class = {
|
|
|
|
"FILE", av_default_item_name, NULL, LIBAVUTIL_VERSION_INT,
|
|
|
|
offsetof(FileLogContext, log_offset), offsetof(FileLogContext, log_ctx)
|
|
|
|
};
|
|
|
|
|
|
|
|
int av_file_map(const char *filename, uint8_t **bufptr, size_t *size,
|
|
|
|
int log_offset, void *log_ctx)
|
|
|
|
{
|
|
|
|
FileLogContext file_log_ctx = { &file_log_ctx_class, log_offset, log_ctx };
|
2013-08-06 18:19:24 +00:00
|
|
|
int err, fd = avpriv_open(filename, O_RDONLY);
|
2010-12-22 14:13:04 +00:00
|
|
|
struct stat st;
|
|
|
|
av_unused void *ptr;
|
|
|
|
off_t off_size;
|
|
|
|
char errbuf[128];
|
|
|
|
*bufptr = NULL;
|
|
|
|
|
|
|
|
if (fd < 0) {
|
|
|
|
err = AVERROR(errno);
|
|
|
|
av_strerror(err, errbuf, sizeof(errbuf));
|
|
|
|
av_log(&file_log_ctx, AV_LOG_ERROR, "Cannot read file '%s': %s\n", filename, errbuf);
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2010-12-22 16:16:31 +00:00
|
|
|
if (fstat(fd, &st) < 0) {
|
2010-12-22 14:13:04 +00:00
|
|
|
err = AVERROR(errno);
|
|
|
|
av_strerror(err, errbuf, sizeof(errbuf));
|
2010-12-22 16:16:31 +00:00
|
|
|
av_log(&file_log_ctx, AV_LOG_ERROR, "Error occurred in fstat(): %s\n", errbuf);
|
2010-12-22 14:13:04 +00:00
|
|
|
close(fd);
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
off_size = st.st_size;
|
2011-04-12 19:17:26 +00:00
|
|
|
if (off_size > SIZE_MAX) {
|
2010-12-22 14:13:04 +00:00
|
|
|
av_log(&file_log_ctx, AV_LOG_ERROR,
|
|
|
|
"File size for file '%s' is too big\n", filename);
|
|
|
|
close(fd);
|
|
|
|
return AVERROR(EINVAL);
|
|
|
|
}
|
|
|
|
*size = off_size;
|
|
|
|
|
|
|
|
#if HAVE_MMAP
|
|
|
|
ptr = mmap(NULL, *size, PROT_READ|PROT_WRITE, MAP_PRIVATE, fd, 0);
|
2011-05-07 08:00:03 +00:00
|
|
|
if (ptr == MAP_FAILED) {
|
2010-12-22 14:13:04 +00:00
|
|
|
err = AVERROR(errno);
|
|
|
|
av_strerror(err, errbuf, sizeof(errbuf));
|
|
|
|
av_log(&file_log_ctx, AV_LOG_ERROR, "Error occurred in mmap(): %s\n", errbuf);
|
|
|
|
close(fd);
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
*bufptr = ptr;
|
2011-01-05 05:16:33 +00:00
|
|
|
#elif HAVE_MAPVIEWOFFILE
|
|
|
|
{
|
|
|
|
HANDLE mh, fh = (HANDLE)_get_osfhandle(fd);
|
|
|
|
|
|
|
|
mh = CreateFileMapping(fh, NULL, PAGE_READONLY, 0, 0, NULL);
|
|
|
|
if (!mh) {
|
|
|
|
av_log(&file_log_ctx, AV_LOG_ERROR, "Error occurred in CreateFileMapping()\n");
|
|
|
|
close(fd);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
ptr = MapViewOfFile(mh, FILE_MAP_READ, 0, 0, *size);
|
|
|
|
CloseHandle(mh);
|
|
|
|
if (!ptr) {
|
|
|
|
av_log(&file_log_ctx, AV_LOG_ERROR, "Error occurred in MapViewOfFile()\n");
|
|
|
|
close(fd);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
*bufptr = ptr;
|
|
|
|
}
|
2010-12-22 14:13:04 +00:00
|
|
|
#else
|
|
|
|
*bufptr = av_malloc(*size);
|
|
|
|
if (!*bufptr) {
|
|
|
|
av_log(&file_log_ctx, AV_LOG_ERROR, "Memory allocation error occurred\n");
|
|
|
|
close(fd);
|
|
|
|
return AVERROR(ENOMEM);
|
|
|
|
}
|
|
|
|
read(fd, *bufptr, *size);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
close(fd);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void av_file_unmap(uint8_t *bufptr, size_t size)
|
|
|
|
{
|
|
|
|
#if HAVE_MMAP
|
|
|
|
munmap(bufptr, size);
|
2011-01-05 05:16:33 +00:00
|
|
|
#elif HAVE_MAPVIEWOFFILE
|
|
|
|
UnmapViewOfFile(bufptr);
|
2010-12-22 14:13:04 +00:00
|
|
|
#else
|
|
|
|
av_free(bufptr);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2016-03-09 13:33:25 +00:00
|
|
|
int av_tempfile(const char *prefix, char **filename, int log_offset, void *log_ctx) {
|
|
|
|
return avpriv_tempfile(prefix, filename, log_offset, log_ctx);
|
2011-10-16 13:21:58 +00:00
|
|
|
}
|