2 * This file is part of MPlayer.
4 * MPlayer is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * MPlayer 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
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 #include <sys/types.h>
32 static struct stream_priv_s
{
35 } stream_priv_dflts
= {
39 #define ST_OFF(f) M_ST_OFF(struct stream_priv_s,f)
41 static const m_option_t stream_opts_fields
[] = {
42 {"string", ST_OFF(filename
), CONF_TYPE_STRING
, 0, 0 ,0, NULL
},
43 {"filename", ST_OFF(filename2
), CONF_TYPE_STRING
, 0, 0 ,0, NULL
},
44 { NULL
, NULL
, 0, 0, 0, 0, NULL
}
46 static const struct m_struct_st stream_opts
= {
48 sizeof(struct stream_priv_s
),
53 static int fill_buffer(stream_t
*s
, char* buffer
, int max_len
){
54 int r
= read(s
->fd
,buffer
,max_len
);
55 return (r
<= 0) ? -1 : r
;
58 static int write_buffer(stream_t
*s
, char* buffer
, int len
) {
59 int r
= write(s
->fd
,buffer
,len
);
60 return (r
<= 0) ? -1 : r
;
63 static int seek(stream_t
*s
,off_t newpos
) {
65 if(lseek(s
->fd
,s
->pos
,SEEK_SET
)<0) {
72 static int seek_forward(stream_t
*s
,off_t newpos
) {
74 mp_msg(MSGT_STREAM
,MSGL_INFO
,"Cannot seek backward in linear streams!\n");
78 int len
=s
->fill_buffer(s
,s
->buffer
,STREAM_BUFFER_SIZE
);
79 if(len
<=0){ s
->eof
=1; s
->buf_pos
=s
->buf_len
=0; break; } // EOF
87 static int control(stream_t
*s
, int cmd
, void *arg
) {
89 case STREAM_CTRL_GET_SIZE
: {
92 size
= lseek(s
->fd
, 0, SEEK_END
);
93 lseek(s
->fd
, s
->pos
, SEEK_SET
);
94 if(size
!= (off_t
)-1) {
95 *((off_t
*)arg
) = size
;
100 return STREAM_UNSUPPORTED
;
103 static int open_f(stream_t
*stream
,int mode
, void* opts
, int* file_format
) {
107 unsigned char *filename
;
108 struct stream_priv_s
* p
= (struct stream_priv_s
*)opts
;
110 if(mode
== STREAM_READ
)
112 else if(mode
== STREAM_WRITE
)
113 m
= O_RDWR
|O_CREAT
|O_TRUNC
;
115 mp_msg(MSGT_OPEN
,MSGL_ERR
, "[file] Unknown open mode %d\n",mode
);
116 m_struct_free(&stream_opts
,opts
);
117 return STREAM_UNSUPPORTED
;
121 filename
= p
->filename
;
122 else if(p
->filename2
)
123 filename
= p
->filename2
;
127 mp_msg(MSGT_OPEN
,MSGL_ERR
, "[file] No filename\n");
128 m_struct_free(&stream_opts
,opts
);
133 // extract '/' from '/x:/path'
134 if( filename
[ 0 ] == '/' && filename
[ 1 ] && filename
[ 2 ] == ':' )
140 if(!strcmp(filename
,"-")){
141 if(mode
== STREAM_READ
) {
143 mp_tmsg(MSGT_OPEN
,MSGL_INFO
,"Reading from stdin...\n");
146 setmode(fileno(stdin
),O_BINARY
);
149 mp_msg(MSGT_OPEN
,MSGL_INFO
,"Writing to stdout\n");
152 setmode(fileno(stdout
),O_BINARY
);
156 mode_t openmode
= S_IRUSR
|S_IWUSR
;
158 openmode
|= S_IRGRP
|S_IWGRP
|S_IROTH
|S_IWOTH
;
160 f
=open(filename
,m
, openmode
);
162 mp_tmsg(MSGT_OPEN
,MSGL_ERR
,"File not found: '%s'\n",filename
);
163 m_struct_free(&stream_opts
,opts
);
168 len
=lseek(f
,0,SEEK_END
); lseek(f
,0,SEEK_SET
);
170 // seeks on stdin incorrectly succeed on MinGW
175 if(mode
== STREAM_READ
) stream
->seek
= seek_forward
;
176 stream
->type
= STREAMTYPE_STREAM
; // Must be move to STREAMTYPE_FILE
177 stream
->flags
|= MP_STREAM_SEEK_FW
;
178 } else if(len
>= 0) {
180 stream
->end_pos
= len
;
181 stream
->type
= STREAMTYPE_FILE
;
184 mp_msg(MSGT_OPEN
,MSGL_V
,"[file] File size is %"PRId64
" bytes\n", (int64_t)len
);
187 stream
->fill_buffer
= fill_buffer
;
188 stream
->write_buffer
= write_buffer
;
189 stream
->control
= control
;
190 stream
->read_chunk
= 64*1024;
192 m_struct_free(&stream_opts
,opts
);
196 const stream_info_t stream_info_file
= {
200 "based on the code from ??? (probably Arpi)",
202 { "file", "", NULL
},
204 1 // Urls are an option string