]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/blob - libavformat/file.c
I forgot commit this
[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     if (flags & URL_DIRECT)
55         access |= O_DIRECT;
56     fd = open(filename, access, 0666);
57     if (fd < 0)
58         return AVERROR(ENOENT);
59     h->priv_data = (void *) (intptr_t) fd;
60     return 0;
61 }
62
63 static int file_read(URLContext *h, unsigned char *buf, int size)
64 {
65     int fd = (intptr_t) h->priv_data;
66     return read(fd, buf, size);
67 }
68
69 static int file_write(URLContext *h, unsigned char *buf, int size)
70 {
71     int fd = (intptr_t) h->priv_data;
72     return write(fd, buf, size);
73 }
74
75 /* XXX: use llseek */
76 static int64_t file_seek(URLContext *h, int64_t pos, int whence)
77 {
78     int fd = (intptr_t) h->priv_data;
79     return lseek(fd, pos, whence);
80 }
81
82 static int file_close(URLContext *h)
83 {
84     int fd = (intptr_t) h->priv_data;
85     return close(fd);
86 }
87
88 static int file_get_handle(URLContext *h)
89 {
90     return (intptr_t) h->priv_data;
91 }
92
93 URLProtocol file_protocol = {
94     "file",
95     file_open,
96     file_read,
97     file_write,
98     file_seek,
99     file_close,
100     .url_get_file_handle = file_get_handle,
101 };
102
103 /* pipe protocol */
104
105 static int pipe_open(URLContext *h, const char *filename, int flags)
106 {
107     int fd;
108     char *final;
109     av_strstart(filename, "pipe:", &filename);
110
111     fd = strtol(filename, &final, 10);
112     if((filename == final) || *final ) {/* No digits found, or something like 10ab */
113         if (flags & URL_WRONLY) {
114             fd = 1;
115         } else {
116             fd = 0;
117         }
118     }
119 #if HAVE_SETMODE
120     setmode(fd, O_BINARY);
121 #endif
122     h->priv_data = (void *) (intptr_t) fd;
123     h->is_streamed = 1;
124     return 0;
125 }
126
127 URLProtocol pipe_protocol = {
128     "pipe",
129     pipe_open,
130     file_read,
131     file_write,
132     .url_get_file_handle = file_get_handle,
133 };