]> git.sesse.net Git - ffmpeg/blob - libavformat/protocols.c
avformat/gopher: Add support for Gopher over TLS
[ffmpeg] / libavformat / protocols.c
1 /*
2  * This file is part of FFmpeg.
3  *
4  * FFmpeg is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * FFmpeg is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with FFmpeg; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17  */
18
19 #include "config.h"
20
21 #include "libavutil/avstring.h"
22 #include "libavutil/mem.h"
23
24 #include "url.h"
25
26 extern const URLProtocol ff_async_protocol;
27 extern const URLProtocol ff_bluray_protocol;
28 extern const URLProtocol ff_cache_protocol;
29 extern const URLProtocol ff_concat_protocol;
30 extern const URLProtocol ff_crypto_protocol;
31 extern const URLProtocol ff_data_protocol;
32 extern const URLProtocol ff_ffrtmpcrypt_protocol;
33 extern const URLProtocol ff_ffrtmphttp_protocol;
34 extern const URLProtocol ff_file_protocol;
35 extern const URLProtocol ff_ftp_protocol;
36 extern const URLProtocol ff_gopher_protocol;
37 extern const URLProtocol ff_gophers_protocol;
38 extern const URLProtocol ff_hls_protocol;
39 extern const URLProtocol ff_http_protocol;
40 extern const URLProtocol ff_httpproxy_protocol;
41 extern const URLProtocol ff_https_protocol;
42 extern const URLProtocol ff_icecast_protocol;
43 extern const URLProtocol ff_mmsh_protocol;
44 extern const URLProtocol ff_mmst_protocol;
45 extern const URLProtocol ff_md5_protocol;
46 extern const URLProtocol ff_pipe_protocol;
47 extern const URLProtocol ff_prompeg_protocol;
48 extern const URLProtocol ff_rtmp_protocol;
49 extern const URLProtocol ff_rtmpe_protocol;
50 extern const URLProtocol ff_rtmps_protocol;
51 extern const URLProtocol ff_rtmpt_protocol;
52 extern const URLProtocol ff_rtmpte_protocol;
53 extern const URLProtocol ff_rtmpts_protocol;
54 extern const URLProtocol ff_rtp_protocol;
55 extern const URLProtocol ff_sctp_protocol;
56 extern const URLProtocol ff_srtp_protocol;
57 extern const URLProtocol ff_subfile_protocol;
58 extern const URLProtocol ff_tee_protocol;
59 extern const URLProtocol ff_tcp_protocol;
60 extern const URLProtocol ff_tls_protocol;
61 extern const URLProtocol ff_udp_protocol;
62 extern const URLProtocol ff_udplite_protocol;
63 extern const URLProtocol ff_unix_protocol;
64 extern const URLProtocol ff_libamqp_protocol;
65 extern const URLProtocol ff_librtmp_protocol;
66 extern const URLProtocol ff_librtmpe_protocol;
67 extern const URLProtocol ff_librtmps_protocol;
68 extern const URLProtocol ff_librtmpt_protocol;
69 extern const URLProtocol ff_librtmpte_protocol;
70 extern const URLProtocol ff_libsrt_protocol;
71 extern const URLProtocol ff_libssh_protocol;
72 extern const URLProtocol ff_libsmbclient_protocol;
73 extern const URLProtocol ff_libzmq_protocol;
74
75 #include "libavformat/protocol_list.c"
76
77 #if FF_API_CHILD_CLASS_NEXT
78 const AVClass *ff_urlcontext_child_class_next(const AVClass *prev)
79 {
80     int i;
81
82     /* find the protocol that corresponds to prev */
83     for (i = 0; prev && url_protocols[i]; i++) {
84         if (url_protocols[i]->priv_data_class == prev) {
85             i++;
86             break;
87         }
88     }
89
90     /* find next protocol with priv options */
91     for (; url_protocols[i]; i++)
92         if (url_protocols[i]->priv_data_class)
93             return url_protocols[i]->priv_data_class;
94     return NULL;
95 }
96 #endif
97
98 const AVClass *ff_urlcontext_child_class_iterate(void **iter)
99 {
100     const AVClass *ret = NULL;
101     uintptr_t i;
102
103     for (i = (uintptr_t)*iter; url_protocols[i]; i++) {
104         ret = url_protocols[i]->priv_data_class;
105         if (ret)
106             break;
107     }
108
109     *iter = (void*)(uintptr_t)(url_protocols[i] ? i + 1 : i);
110     return ret;
111 }
112
113 const char *avio_enum_protocols(void **opaque, int output)
114 {
115     const URLProtocol **p = *opaque;
116
117     p = p ? p + 1 : url_protocols;
118     *opaque = p;
119     if (!*p) {
120         *opaque = NULL;
121         return NULL;
122     }
123     if ((output && (*p)->url_write) || (!output && (*p)->url_read))
124         return (*p)->name;
125     return avio_enum_protocols(opaque, output);
126 }
127
128 const AVClass *avio_protocol_get_class(const char *name)
129 {
130     int i = 0;
131     for (i = 0; url_protocols[i]; i++) {
132         if (!strcmp(url_protocols[i]->name, name))
133             return url_protocols[i]->priv_data_class;
134     }
135     return NULL;
136 }
137
138 const URLProtocol **ffurl_get_protocols(const char *whitelist,
139                                         const char *blacklist)
140 {
141     const URLProtocol **ret;
142     int i, ret_idx = 0;
143
144     ret = av_mallocz_array(FF_ARRAY_ELEMS(url_protocols), sizeof(*ret));
145     if (!ret)
146         return NULL;
147
148     for (i = 0; url_protocols[i]; i++) {
149         const URLProtocol *up = url_protocols[i];
150
151         if (whitelist && *whitelist && !av_match_name(up->name, whitelist))
152             continue;
153         if (blacklist && *blacklist && av_match_name(up->name, blacklist))
154             continue;
155
156         ret[ret_idx++] = up;
157     }
158
159     return ret;
160 }