FFmpeg
gopher.c
Go to the documentation of this file.
1 /*
2  * Gopher protocol
3  *
4  * Copyright (c) 2009 Toshimitsu Kimura
5  *
6  * based on libavformat/http.c, Copyright (c) 2000, 2001 Fabrice Bellard
7  *
8  * This file is part of FFmpeg.
9  *
10  * FFmpeg is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU Lesser General Public
12  * License as published by the Free Software Foundation; either
13  * version 2.1 of the License, or (at your option) any later version.
14  *
15  * FFmpeg is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18  * Lesser General Public License for more details.
19  *
20  * You should have received a copy of the GNU Lesser General Public
21  * License along with FFmpeg; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
23  */
24 
25 #include "libavutil/avstring.h"
26 #include "avformat.h"
27 #include "internal.h"
28 #include "network.h"
29 #include "url.h"
30 
31 typedef struct GopherContext {
34 
35 static int gopher_write(URLContext *h, const uint8_t *buf, int size)
36 {
37  GopherContext *s = h->priv_data;
38  return ffurl_write(s->hd, buf, size);
39 }
40 
41 static int gopher_connect(URLContext *h, const char *path)
42 {
43  char buffer[1024];
44 
45  if (!*path) return AVERROR(EINVAL);
46  switch (*++path) {
47  case '5':
48  case '9':
49  path = strchr(path, '/');
50  if (!path) return AVERROR(EINVAL);
51  break;
52  default:
54  "Gopher protocol type '%c' not supported yet!\n",
55  *path);
56  return AVERROR(EINVAL);
57  }
58 
59  /* send gopher sector */
60  snprintf(buffer, sizeof(buffer), "%s\r\n", path);
61 
62  if (gopher_write(h, buffer, strlen(buffer)) < 0)
63  return AVERROR(EIO);
64 
65  return 0;
66 }
67 
69 {
70  GopherContext *s = h->priv_data;
71  if (s->hd) {
72  ffurl_close(s->hd);
73  s->hd = NULL;
74  }
75  return 0;
76 }
77 
78 static int gopher_open(URLContext *h, const char *uri, int flags)
79 {
80  GopherContext *s = h->priv_data;
81  char hostname[1024], auth[1024], path[1024], buf[1024];
82  int port, err;
83 
84  h->is_streamed = 1;
85 
86  /* needed in any case to build the host string */
87  av_url_split(NULL, 0, auth, sizeof(auth), hostname, sizeof(hostname), &port,
88  path, sizeof(path), uri);
89 
90  if (port < 0)
91  port = 70;
92 
93  ff_url_join(buf, sizeof(buf), "tcp", NULL, hostname, port, NULL);
94 
95  s->hd = NULL;
97  &h->interrupt_callback, NULL, h->protocol_whitelist, h->protocol_blacklist, h);
98  if (err < 0)
99  goto fail;
100 
101  if ((err = gopher_connect(h, path)) < 0)
102  goto fail;
103  return 0;
104  fail:
105  gopher_close(h);
106  return err;
107 }
108 
109 static int gopher_read(URLContext *h, uint8_t *buf, int size)
110 {
111  GopherContext *s = h->priv_data;
112  int len = ffurl_read(s->hd, buf, size);
113  return len;
114 }
115 
116 
118  .name = "gopher",
119  .url_open = gopher_open,
120  .url_read = gopher_read,
121  .url_write = gopher_write,
122  .url_close = gopher_close,
123  .priv_data_size = sizeof(GopherContext),
125 };
AV_LOG_WARNING
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:182
AVERROR
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later. That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another. Frame references ownership and permissions
URL_PROTOCOL_FLAG_NETWORK
#define URL_PROTOCOL_FLAG_NETWORK
Definition: url.h:34
AVIO_FLAG_READ_WRITE
#define AVIO_FLAG_READ_WRITE
read-write pseudo flag
Definition: avio.h:656
GopherContext
Definition: gopher.c:31
gopher_open
static int gopher_open(URLContext *h, const char *uri, int flags)
Definition: gopher.c:78
ffurl_close
int ffurl_close(URLContext *h)
Definition: avio.c:470
URLProtocol
Definition: url.h:54
fail
#define fail()
Definition: checkasm.h:120
buf
void * buf
Definition: avisynth_c.h:766
gopher_close
static int gopher_close(URLContext *h)
Definition: gopher.c:68
ffurl_open_whitelist
int ffurl_open_whitelist(URLContext **puc, const char *filename, int flags, const AVIOInterruptCB *int_cb, AVDictionary **options, const char *whitelist, const char *blacklist, URLContext *parent)
Create an URLContext for accessing to the resource indicated by url, and open it.
Definition: avio.c:307
s
#define s(width, name)
Definition: cbs_vp9.c:257
ff_url_join
int ff_url_join(char *str, int size, const char *proto, const char *authorization, const char *hostname, int port, const char *fmt,...)
Definition: url.c:36
internal.h
NULL
#define NULL
Definition: coverity.c:32
gopher_write
static int gopher_write(URLContext *h, const uint8_t *buf, int size)
Definition: gopher.c:35
gopher_connect
static int gopher_connect(URLContext *h, const char *path)
Definition: gopher.c:41
ff_gopher_protocol
const URLProtocol ff_gopher_protocol
Definition: gopher.c:117
size
int size
Definition: twinvq_data.h:11134
URLProtocol::name
const char * name
Definition: url.h:55
URLContext
Definition: url.h:38
av_url_split
void av_url_split(char *proto, int proto_size, char *authorization, int authorization_size, char *hostname, int hostname_size, int *port_ptr, char *path, int path_size, const char *url)
Split a URL string into components.
Definition: utils.c:4756
url.h
uint8_t
uint8_t
Definition: audio_convert.c:194
len
int len
Definition: vorbis_enc_data.h:452
gopher_read
static int gopher_read(URLContext *h, uint8_t *buf, int size)
Definition: gopher.c:109
avformat.h
network.h
ffurl_read
int ffurl_read(URLContext *h, unsigned char *buf, int size)
Read up to size bytes from the resource accessed by h, and store the read bytes in buf.
Definition: avio.c:410
buffer
the frame and frame reference mechanism is intended to as much as expensive copies of that data while still allowing the filters to produce correct results The data is stored in buffers represented by AVFrame structures Several references can point to the same frame buffer
Definition: filter_design.txt:49
ffurl_write
int ffurl_write(URLContext *h, const unsigned char *buf, int size)
Write size bytes from buf to the resource accessed by h.
Definition: avio.c:424
GopherContext::hd
URLContext * hd
Definition: gopher.c:32
flags
#define flags(name, subs,...)
Definition: cbs_av1.c:565
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:28
h
h
Definition: vp9dsp_template.c:2038
avstring.h
snprintf
#define snprintf
Definition: snprintf.h:34