You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

298 lines
11KB

  1. /*
  2. * This file is part of Libav.
  3. *
  4. * Libav 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. * Libav 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 Libav; if not, write to the Free Software
  16. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  17. */
  18. /**
  19. * @file
  20. * unbuffered private I/O API
  21. */
  22. #ifndef AVFORMAT_URL_H
  23. #define AVFORMAT_URL_H
  24. #include "avio.h"
  25. #include "libavformat/version.h"
  26. #include "libavutil/dict.h"
  27. #include "libavutil/log.h"
  28. #define URL_PROTOCOL_FLAG_NESTED_SCHEME 1 /*< The protocol name can be the first part of a nested protocol scheme */
  29. #define URL_PROTOCOL_FLAG_NETWORK 2 /*< The protocol uses network */
  30. extern const AVClass ffurl_context_class;
  31. typedef struct URLContext {
  32. const AVClass *av_class; /**< information for av_log(). Set by url_open(). */
  33. const struct URLProtocol *prot;
  34. /**
  35. * A NULL-terminated list of protocols usable by the child contexts.
  36. */
  37. const struct URLProtocol **protocols;
  38. void *priv_data;
  39. char *filename; /**< specified URL */
  40. int flags;
  41. int max_packet_size; /**< if non zero, the stream is packetized with this max packet size */
  42. int is_streamed; /**< true if streamed (no seek possible), default = false */
  43. int is_connected;
  44. AVIOInterruptCB interrupt_callback;
  45. } URLContext;
  46. typedef struct URLProtocol {
  47. const char *name;
  48. int (*url_open)( URLContext *h, const char *url, int flags);
  49. /**
  50. * This callback is to be used by protocols which open further nested
  51. * protocols. options are then to be passed to ffurl_open()/ffurl_connect()
  52. * for those nested protocols.
  53. */
  54. int (*url_open2)(URLContext *h, const char *url, int flags, AVDictionary **options);
  55. /**
  56. * Read data from the protocol.
  57. * If data is immediately available (even less than size), EOF is
  58. * reached or an error occurs (including EINTR), return immediately.
  59. * Otherwise:
  60. * In non-blocking mode, return AVERROR(EAGAIN) immediately.
  61. * In blocking mode, wait for data/EOF/error with a short timeout (0.1s),
  62. * and return AVERROR(EAGAIN) on timeout.
  63. * Checking interrupt_callback, looping on EINTR and EAGAIN and until
  64. * enough data has been read is left to the calling function; see
  65. * retry_transfer_wrapper in avio.c.
  66. */
  67. int (*url_read)( URLContext *h, unsigned char *buf, int size);
  68. int (*url_write)(URLContext *h, const unsigned char *buf, int size);
  69. int64_t (*url_seek)( URLContext *h, int64_t pos, int whence);
  70. int (*url_close)(URLContext *h);
  71. int (*url_read_pause)(URLContext *h, int pause);
  72. int64_t (*url_read_seek)(URLContext *h, int stream_index,
  73. int64_t timestamp, int flags);
  74. int (*url_get_file_handle)(URLContext *h);
  75. int (*url_get_multi_file_handle)(URLContext *h, int **handles,
  76. int *numhandles);
  77. int (*url_shutdown)(URLContext *h, int flags);
  78. int priv_data_size;
  79. const AVClass *priv_data_class;
  80. int flags;
  81. int (*url_check)(URLContext *h, int mask);
  82. } URLProtocol;
  83. /**
  84. * Create a URLContext for accessing to the resource indicated by
  85. * url, but do not initiate the connection yet.
  86. *
  87. * @param puc pointer to the location where, in case of success, the
  88. * function puts the pointer to the created URLContext
  89. * @param flags flags which control how the resource indicated by url
  90. * is to be opened
  91. * @param int_cb interrupt callback to use for the URLContext, may be
  92. * NULL
  93. * @param protocols a NULL-terminate list of protocols available for use by
  94. * this context and its children. The caller must ensure this
  95. * list remains valid until the context is closed.
  96. * @return 0 in case of success, a negative value corresponding to an
  97. * AVERROR code in case of failure
  98. */
  99. int ffurl_alloc(URLContext **puc, const char *filename, int flags,
  100. const AVIOInterruptCB *int_cb,
  101. const URLProtocol **protocols);
  102. /**
  103. * Connect an URLContext that has been allocated by ffurl_alloc
  104. *
  105. * @param options A dictionary filled with options for nested protocols,
  106. * i.e. it will be passed to url_open2() for protocols implementing it.
  107. * This parameter will be destroyed and replaced with a dict containing options
  108. * that were not found. May be NULL.
  109. */
  110. int ffurl_connect(URLContext *uc, AVDictionary **options);
  111. /**
  112. * Create an URLContext for accessing to the resource indicated by
  113. * url, and open it.
  114. *
  115. * @param puc pointer to the location where, in case of success, the
  116. * function puts the pointer to the created URLContext
  117. * @param flags flags which control how the resource indicated by url
  118. * is to be opened
  119. * @param int_cb interrupt callback to use for the URLContext, may be
  120. * NULL
  121. * @param options A dictionary filled with protocol-private options. On return
  122. * this parameter will be destroyed and replaced with a dict containing options
  123. * that were not found. May be NULL.
  124. * @param protocols a NULL-terminate list of protocols available for use by
  125. * this context and its children. The caller must ensure this
  126. * list remains valid until the context is closed.
  127. * @return 0 in case of success, a negative value corresponding to an
  128. * AVERROR code in case of failure
  129. */
  130. int ffurl_open(URLContext **puc, const char *filename, int flags,
  131. const AVIOInterruptCB *int_cb, AVDictionary **options,
  132. const URLProtocol **protocols);
  133. /**
  134. * Read up to size bytes from the resource accessed by h, and store
  135. * the read bytes in buf.
  136. *
  137. * @return The number of bytes actually read, or a negative value
  138. * corresponding to an AVERROR code in case of error. A value of zero
  139. * indicates that it is not possible to read more from the accessed
  140. * resource (except if the value of the size argument is also zero).
  141. */
  142. int ffurl_read(URLContext *h, unsigned char *buf, int size);
  143. /**
  144. * Read as many bytes as possible (up to size), calling the
  145. * read function multiple times if necessary.
  146. * This makes special short-read handling in applications
  147. * unnecessary, if the return value is < size then it is
  148. * certain there was either an error or the end of file was reached.
  149. */
  150. int ffurl_read_complete(URLContext *h, unsigned char *buf, int size);
  151. /**
  152. * Write size bytes from buf to the resource accessed by h.
  153. *
  154. * @return the number of bytes actually written, or a negative value
  155. * corresponding to an AVERROR code in case of failure
  156. */
  157. int ffurl_write(URLContext *h, const unsigned char *buf, int size);
  158. /**
  159. * Change the position that will be used by the next read/write
  160. * operation on the resource accessed by h.
  161. *
  162. * @param pos specifies the new position to set
  163. * @param whence specifies how pos should be interpreted, it must be
  164. * one of SEEK_SET (seek from the beginning), SEEK_CUR (seek from the
  165. * current position), SEEK_END (seek from the end), or AVSEEK_SIZE
  166. * (return the filesize of the requested resource, pos is ignored).
  167. * @return a negative value corresponding to an AVERROR code in case
  168. * of failure, or the resulting file position, measured in bytes from
  169. * the beginning of the file. You can use this feature together with
  170. * SEEK_CUR to read the current file position.
  171. */
  172. int64_t ffurl_seek(URLContext *h, int64_t pos, int whence);
  173. /**
  174. * Close the resource accessed by the URLContext h, and free the
  175. * memory used by it.
  176. *
  177. * @return a negative value if an error condition occurred, 0
  178. * otherwise
  179. */
  180. int ffurl_close(URLContext *h);
  181. /**
  182. * Return the filesize of the resource accessed by h, AVERROR(ENOSYS)
  183. * if the operation is not supported by h, or another negative value
  184. * corresponding to an AVERROR error code in case of failure.
  185. */
  186. int64_t ffurl_size(URLContext *h);
  187. /**
  188. * Return the file descriptor associated with this URL. For RTP, this
  189. * will return only the RTP file descriptor, not the RTCP file descriptor.
  190. *
  191. * @return the file descriptor associated with this URL, or <0 on error.
  192. */
  193. int ffurl_get_file_handle(URLContext *h);
  194. /**
  195. * Return the file descriptors associated with this URL.
  196. *
  197. * @return 0 on success or <0 on error.
  198. */
  199. int ffurl_get_multi_file_handle(URLContext *h, int **handles, int *numhandles);
  200. /**
  201. * Signal the URLContext that we are done reading or writing the stream.
  202. *
  203. * @param h pointer to the resource
  204. * @param flags flags which control how the resource indicated by url
  205. * is to be shutdown
  206. *
  207. * @return a negative value if an error condition occurred, 0
  208. * otherwise
  209. */
  210. int ffurl_shutdown(URLContext *h, int flags);
  211. /**
  212. * Check if the user has requested to interrup a blocking function
  213. * associated with cb.
  214. */
  215. int ff_check_interrupt(AVIOInterruptCB *cb);
  216. /* udp.c */
  217. int ff_udp_set_remote_url(URLContext *h, const char *uri);
  218. int ff_udp_get_local_port(URLContext *h);
  219. /**
  220. * Assemble a URL string from components. This is the reverse operation
  221. * of av_url_split.
  222. *
  223. * Note, this requires networking to be initialized, so the caller must
  224. * ensure ff_network_init has been called.
  225. *
  226. * @see av_url_split
  227. *
  228. * @param str the buffer to fill with the url
  229. * @param size the size of the str buffer
  230. * @param proto the protocol identifier, if null, the separator
  231. * after the identifier is left out, too
  232. * @param authorization an optional authorization string, may be null.
  233. * An empty string is treated the same as a null string.
  234. * @param hostname the host name string
  235. * @param port the port number, left out from the string if negative
  236. * @param fmt a generic format string for everything to add after the
  237. * host/port, may be null
  238. * @return the number of characters written to the destination buffer
  239. */
  240. int ff_url_join(char *str, int size, const char *proto,
  241. const char *authorization, const char *hostname,
  242. int port, const char *fmt, ...) av_printf_format(7, 8);
  243. /*
  244. * Convert a relative url into an absolute url, given a base url.
  245. *
  246. * @param buf the buffer where output absolute url is written
  247. * @param size the size of buf
  248. * @param base the base url, may be equal to buf.
  249. * @param rel the new url, which is interpreted relative to base
  250. */
  251. void ff_make_absolute_url(char *buf, int size, const char *base,
  252. const char *rel);
  253. const AVClass *ff_urlcontext_child_class_next(const AVClass *prev);
  254. /**
  255. * Construct a list of protocols matching a given whitelist and/or blacklist.
  256. *
  257. * @param whitelist a comma-separated list of allowed protocol names or NULL. If
  258. * this is a non-empty string, only protocols in this list will
  259. * be included.
  260. * @param blacklist a comma-separated list of forbidden protocol names or NULL.
  261. * If this is a non-empty string, all protocols in this list
  262. * will be excluded.
  263. *
  264. * @return a NULL-terminated array of matching protocols. The array must be
  265. * freed by the caller.
  266. */
  267. const URLProtocol **ffurl_get_protocols(const char *whitelist,
  268. const char *blacklist);
  269. #endif /* AVFORMAT_URL_H */