]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/blob - libavformat/file.c
5cc887d1c125bcfeddc3b5a28dd55dbcfb73a2e9
[frescor/ffmpeg.git] / libavformat / file.c
1 /*
2  * Buffered file io for ffmpeg system
3  * Copyright (c) 2001 Fabrice Bellard
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 #define _GNU_SOURCE
23 #include "libavutil/avstring.h"
24 #include "avformat.h"
25 #include <fcntl.h>
26 #if HAVE_SETMODE
27 #include <io.h>
28 #endif
29 #include <unistd.h>
30 #include <sys/time.h>
31 #include <stdlib.h>
32 #include "os_support.h"
33
34
35 /* standard file protocol */
36
37 static int file_open(URLContext *h, const char *filename, int flags)
38 {
39     int access;
40     int fd;
41
42     av_strstart(filename, "file:", &filename);
43
44     if (flags & URL_RDWR) {
45         access = O_CREAT | O_TRUNC | O_RDWR;
46     } else if (flags & URL_WRONLY) {
47         access = O_CREAT | O_TRUNC | O_WRONLY;
48     } else {
49         access = O_RDONLY;
50     }
51 #ifdef O_BINARY
52     access |= O_BINARY;
53 #endif
54     access |= O_DIRECT;
55     fd = open(filename, access, 0666);
56     if (fd < 0)
57         return AVERROR(ENOENT);
58     h->priv_data = (void *) (intptr_t) fd;
59     return 0;
60 }
61
62 static int file_read(URLContext *h, unsigned char *buf, int size)
63 {
64     int fd = (intptr_t) h->priv_data;
65     return read(fd, buf, size);
66 }
67
68 static int file_write(URLContext *h, unsigned char *buf, int size)
69 {
70     int fd = (intptr_t) h->priv_data;
71     return write(fd, buf, size);
72 }
73
74 /* XXX: use llseek */
75 static int64_t file_seek(URLContext *h, int64_t pos, int whence)
76 {
77     int fd = (intptr_t) h->priv_data;
78     return lseek(fd, pos, whence);
79 }
80
81 static int file_close(URLContext *h)
82 {
83     int fd = (intptr_t) h->priv_data;
84     return close(fd);
85 }
86
87 static int file_get_handle(URLContext *h)
88 {
89     return (intptr_t) h->priv_data;
90 }
91
92 URLProtocol file_protocol = {
93     "file",
94     file_open,
95     file_read,
96     file_write,
97     file_seek,
98     file_close,
99     .url_get_file_handle = file_get_handle,
100 };
101
102 /* pipe protocol */
103
104 static int pipe_open(URLContext *h, const char *filename, int flags)
105 {
106     int fd;
107     char *final;
108     av_strstart(filename, "pipe:", &filename);
109
110     fd = strtol(filename, &final, 10);
111     if((filename == final) || *final ) {/* No digits found, or something like 10ab */
112         if (flags & URL_WRONLY) {
113             fd = 1;
114         } else {
115             fd = 0;
116         }
117     }
118 #if HAVE_SETMODE
119     setmode(fd, O_BINARY);
120 #endif
121     h->priv_data = (void *) (intptr_t) fd;
122     h->is_streamed = 1;
123     return 0;
124 }
125
126 URLProtocol pipe_protocol = {
127     "pipe",
128     pipe_open,
129     file_read,
130     file_write,
131     .url_get_file_handle = file_get_handle,
132 };