file.c 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  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. #include "libavutil/avstring.h"
  22. #include "avformat.h"
  23. #include <fcntl.h>
  24. #if HAVE_SETMODE
  25. #include <io.h>
  26. #endif
  27. #include <unistd.h>
  28. #include <sys/stat.h>
  29. #include <stdlib.h>
  30. #include "os_support.h"
  31. #include "url.h"
  32. /* standard file protocol */
  33. static int file_read(URLContext *h, unsigned char *buf, int size)
  34. {
  35. int fd = (intptr_t) h->priv_data;
  36. return read(fd, buf, size);
  37. }
  38. static int file_write(URLContext *h, const unsigned char *buf, int size)
  39. {
  40. int fd = (intptr_t) h->priv_data;
  41. return write(fd, buf, size);
  42. }
  43. static int file_get_handle(URLContext *h)
  44. {
  45. return (intptr_t) h->priv_data;
  46. }
  47. static int file_check(URLContext *h, int mask)
  48. {
  49. struct stat st;
  50. int ret = stat(h->filename, &st);
  51. if (ret < 0)
  52. return AVERROR(errno);
  53. ret |= st.st_mode&S_IRUSR ? mask&AVIO_RDONLY : 0;
  54. ret |= st.st_mode&S_IWUSR ? mask&AVIO_WRONLY : 0;
  55. ret |= st.st_mode&S_IWUSR && st.st_mode&S_IRUSR ? mask&AVIO_RDWR : 0;
  56. return ret;
  57. }
  58. #if CONFIG_FILE_PROTOCOL
  59. static int file_open(URLContext *h, const char *filename, int flags)
  60. {
  61. int access;
  62. int fd;
  63. av_strstart(filename, "file:", &filename);
  64. if (flags & AVIO_RDWR) {
  65. access = O_CREAT | O_TRUNC | O_RDWR;
  66. } else if (flags & AVIO_WRONLY) {
  67. access = O_CREAT | O_TRUNC | O_WRONLY;
  68. } else {
  69. access = O_RDONLY;
  70. }
  71. #ifdef O_BINARY
  72. access |= O_BINARY;
  73. #endif
  74. fd = open(filename, access, 0666);
  75. if (fd == -1)
  76. return AVERROR(errno);
  77. h->priv_data = (void *) (intptr_t) fd;
  78. return 0;
  79. }
  80. /* XXX: use llseek */
  81. static int64_t file_seek(URLContext *h, int64_t pos, int whence)
  82. {
  83. int fd = (intptr_t) h->priv_data;
  84. if (whence == AVSEEK_SIZE) {
  85. struct stat st;
  86. int ret = fstat(fd, &st);
  87. return ret < 0 ? AVERROR(errno) : st.st_size;
  88. }
  89. return lseek(fd, pos, whence);
  90. }
  91. static int file_close(URLContext *h)
  92. {
  93. int fd = (intptr_t) h->priv_data;
  94. return close(fd);
  95. }
  96. URLProtocol ff_file_protocol = {
  97. .name = "file",
  98. .url_open = file_open,
  99. .url_read = file_read,
  100. .url_write = file_write,
  101. .url_seek = file_seek,
  102. .url_close = file_close,
  103. .url_get_file_handle = file_get_handle,
  104. .url_check = file_check,
  105. };
  106. #endif /* CONFIG_FILE_PROTOCOL */
  107. #if CONFIG_PIPE_PROTOCOL
  108. static int pipe_open(URLContext *h, const char *filename, int flags)
  109. {
  110. int fd;
  111. char *final;
  112. av_strstart(filename, "pipe:", &filename);
  113. fd = strtol(filename, &final, 10);
  114. if((filename == final) || *final ) {/* No digits found, or something like 10ab */
  115. if (flags & AVIO_WRONLY) {
  116. fd = 1;
  117. } else {
  118. fd = 0;
  119. }
  120. }
  121. #if HAVE_SETMODE
  122. setmode(fd, O_BINARY);
  123. #endif
  124. h->priv_data = (void *) (intptr_t) fd;
  125. h->is_streamed = 1;
  126. return 0;
  127. }
  128. URLProtocol ff_pipe_protocol = {
  129. .name = "pipe",
  130. .url_open = pipe_open,
  131. .url_read = file_read,
  132. .url_write = file_write,
  133. .url_get_file_handle = file_get_handle,
  134. .url_check = file_check,
  135. };
  136. #endif /* CONFIG_PIPE_PROTOCOL */