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.

251 lines
9.0KB

  1. /*
  2. *
  3. * This file is part of FFmpeg.
  4. *
  5. * FFmpeg is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU Lesser General Public
  7. * License as published by the Free Software Foundation; either
  8. * version 2.1 of the License, or (at your option) any later version.
  9. *
  10. * FFmpeg is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. * Lesser General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Lesser General Public
  16. * License along with FFmpeg; if not, write to the Free Software
  17. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  18. */
  19. /**
  20. * @file
  21. * unbuffered private I/O API
  22. */
  23. #ifndef AVFORMAT_URL_H
  24. #define AVFORMAT_URL_H
  25. #include "avio.h"
  26. #include "libavformat/version.h"
  27. #include "libavutil/dict.h"
  28. #include "libavutil/log.h"
  29. #define URL_PROTOCOL_FLAG_NESTED_SCHEME 1 /*< The protocol name can be the first part of a nested protocol scheme */
  30. #define URL_PROTOCOL_FLAG_NETWORK 2 /*< The protocol uses network */
  31. extern int (*url_interrupt_cb)(void);
  32. extern const AVClass ffurl_context_class;
  33. typedef struct URLContext {
  34. const AVClass *av_class; /**< information for av_log(). Set by url_open(). */
  35. struct URLProtocol *prot;
  36. void *priv_data;
  37. char *filename; /**< specified URL */
  38. int flags;
  39. int max_packet_size; /**< if non zero, the stream is packetized with this max packet size */
  40. int is_streamed; /**< true if streamed (no seek possible), default = false */
  41. int is_connected;
  42. AVIOInterruptCB interrupt_callback;
  43. } URLContext;
  44. typedef struct URLProtocol {
  45. const char *name;
  46. int (*url_open)( URLContext *h, const char *url, int flags);
  47. /**
  48. * This callback is to be used by protocols which open further nested
  49. * protocols. options are then to be passed to ffurl_open()/ffurl_connect()
  50. * for those nested protocols.
  51. */
  52. int (*url_open2)(URLContext *h, const char *url, int flags, AVDictionary **options);
  53. /**
  54. * Read data from the protocol.
  55. * If data is immediately available (even less than size), EOF is
  56. * reached or an error occurs (including EINTR), return immediately.
  57. * Otherwise:
  58. * In non-blocking mode, return AVERROR(EAGAIN) immediately.
  59. * In blocking mode, wait for data/EOF/error with a short timeout (0.1s),
  60. * and return AVERROR(EAGAIN) on timeout.
  61. * Checking interrupt_callback, looping on EINTR and EAGAIN and until
  62. * enough data has been read is left to the calling function; see
  63. * retry_transfer_wrapper in avio.c.
  64. */
  65. int (*url_read)( URLContext *h, unsigned char *buf, int size);
  66. int (*url_write)(URLContext *h, const unsigned char *buf, int size);
  67. int64_t (*url_seek)( URLContext *h, int64_t pos, int whence);
  68. int (*url_close)(URLContext *h);
  69. struct URLProtocol *next;
  70. int (*url_read_pause)(URLContext *h, int pause);
  71. int64_t (*url_read_seek)(URLContext *h, int stream_index,
  72. int64_t timestamp, int flags);
  73. int (*url_get_file_handle)(URLContext *h);
  74. int (*url_get_multi_file_handle)(URLContext *h, int **handles,
  75. int *numhandles);
  76. int (*url_shutdown)(URLContext *h, int flags);
  77. int priv_data_size;
  78. const AVClass *priv_data_class;
  79. int flags;
  80. int (*url_check)(URLContext *h, int mask);
  81. } URLProtocol;
  82. /**
  83. * Create a URLContext for accessing to the resource indicated by
  84. * url, but do not initiate the connection yet.
  85. *
  86. * @param puc pointer to the location where, in case of success, the
  87. * function puts the pointer to the created URLContext
  88. * @param flags flags which control how the resource indicated by url
  89. * is to be opened
  90. * @param int_cb interrupt callback to use for the URLContext, may be
  91. * NULL
  92. * @return 0 in case of success, a negative value corresponding to an
  93. * AVERROR code in case of failure
  94. */
  95. int ffurl_alloc(URLContext **puc, const char *filename, int flags,
  96. const AVIOInterruptCB *int_cb);
  97. /**
  98. * Connect an URLContext that has been allocated by ffurl_alloc
  99. *
  100. * @param options A dictionary filled with options for nested protocols,
  101. * i.e. it will be passed to url_open2() for protocols implementing it.
  102. * This parameter will be destroyed and replaced with a dict containing options
  103. * that were not found. May be NULL.
  104. */
  105. int ffurl_connect(URLContext *uc, AVDictionary **options);
  106. /**
  107. * Create an URLContext for accessing to the resource indicated by
  108. * url, and open it.
  109. *
  110. * @param puc pointer to the location where, in case of success, the
  111. * function puts the pointer to the created URLContext
  112. * @param flags flags which control how the resource indicated by url
  113. * is to be opened
  114. * @param int_cb interrupt callback to use for the URLContext, may be
  115. * NULL
  116. * @param options A dictionary filled with protocol-private options. On return
  117. * this parameter will be destroyed and replaced with a dict containing options
  118. * that were not found. May be NULL.
  119. * @return 0 in case of success, a negative value corresponding to an
  120. * AVERROR code in case of failure
  121. */
  122. int ffurl_open(URLContext **puc, const char *filename, int flags,
  123. const AVIOInterruptCB *int_cb, AVDictionary **options);
  124. /**
  125. * Read up to size bytes from the resource accessed by h, and store
  126. * the read bytes in buf.
  127. *
  128. * @return The number of bytes actually read, or a negative value
  129. * corresponding to an AVERROR code in case of error. A value of zero
  130. * indicates that it is not possible to read more from the accessed
  131. * resource (except if the value of the size argument is also zero).
  132. */
  133. int ffurl_read(URLContext *h, unsigned char *buf, int size);
  134. /**
  135. * Read as many bytes as possible (up to size), calling the
  136. * read function multiple times if necessary.
  137. * This makes special short-read handling in applications
  138. * unnecessary, if the return value is < size then it is
  139. * certain there was either an error or the end of file was reached.
  140. */
  141. int ffurl_read_complete(URLContext *h, unsigned char *buf, int size);
  142. /**
  143. * Write size bytes from buf to the resource accessed by h.
  144. *
  145. * @return the number of bytes actually written, or a negative value
  146. * corresponding to an AVERROR code in case of failure
  147. */
  148. int ffurl_write(URLContext *h, const unsigned char *buf, int size);
  149. /**
  150. * Change the position that will be used by the next read/write
  151. * operation on the resource accessed by h.
  152. *
  153. * @param pos specifies the new position to set
  154. * @param whence specifies how pos should be interpreted, it must be
  155. * one of SEEK_SET (seek from the beginning), SEEK_CUR (seek from the
  156. * current position), SEEK_END (seek from the end), or AVSEEK_SIZE
  157. * (return the filesize of the requested resource, pos is ignored).
  158. * @return a negative value corresponding to an AVERROR code in case
  159. * of failure, or the resulting file position, measured in bytes from
  160. * the beginning of the file. You can use this feature together with
  161. * SEEK_CUR to read the current file position.
  162. */
  163. int64_t ffurl_seek(URLContext *h, int64_t pos, int whence);
  164. /**
  165. * Close the resource accessed by the URLContext h, and free the
  166. * memory used by it. Also set the URLContext pointer to NULL.
  167. *
  168. * @return a negative value if an error condition occurred, 0
  169. * otherwise
  170. */
  171. int ffurl_closep(URLContext **h);
  172. int ffurl_close(URLContext *h);
  173. /**
  174. * Return the filesize of the resource accessed by h, AVERROR(ENOSYS)
  175. * if the operation is not supported by h, or another negative value
  176. * corresponding to an AVERROR error code in case of failure.
  177. */
  178. int64_t ffurl_size(URLContext *h);
  179. /**
  180. * Return the file descriptor associated with this URL. For RTP, this
  181. * will return only the RTP file descriptor, not the RTCP file descriptor.
  182. *
  183. * @return the file descriptor associated with this URL, or <0 on error.
  184. */
  185. int ffurl_get_file_handle(URLContext *h);
  186. /**
  187. * Return the file descriptors associated with this URL.
  188. *
  189. * @return 0 on success or <0 on error.
  190. */
  191. int ffurl_get_multi_file_handle(URLContext *h, int **handles, int *numhandles);
  192. /**
  193. * Signal the URLContext that we are done reading or writing the stream.
  194. *
  195. * @param h pointer to the resource
  196. * @param flags flags which control how the resource indicated by url
  197. * is to be shutdown
  198. *
  199. * @return a negative value if an error condition occurred, 0
  200. * otherwise
  201. */
  202. int ffurl_shutdown(URLContext *h, int flags);
  203. /**
  204. * Register the URLProtocol protocol.
  205. *
  206. * @param size the size of the URLProtocol struct referenced
  207. */
  208. int ffurl_register_protocol(URLProtocol *protocol, int size);
  209. /**
  210. * Check if the user has requested to interrup a blocking function
  211. * associated with cb.
  212. */
  213. int ff_check_interrupt(AVIOInterruptCB *cb);
  214. /**
  215. * Iterate over all available protocols.
  216. *
  217. * @param prev result of the previous call to this functions or NULL.
  218. */
  219. URLProtocol *ffurl_protocol_next(URLProtocol *prev);
  220. /* udp.c */
  221. int ff_udp_set_remote_url(URLContext *h, const char *uri);
  222. int ff_udp_get_local_port(URLContext *h);
  223. #endif /* AVFORMAT_URL_H */