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.
21 // Initial draft of my new cache system...
22 // Note it runs in 2 processes (using fork()), but doesn't require locking!!
23 // TODO: seeking, data consistency checking
25 #define READ_SLEEP_TIME 10
26 // These defines are used to reduce the cost of many successive
27 // seeks (e.g. when a file has no index) by spinning quickly at first.
28 #define INITIAL_FILL_USLEEP_TIME 1000
29 #define INITIAL_FILL_USLEEP_COUNT 10
30 #define FILL_USLEEP_TIME 50000
31 #define PREFILL_SLEEP_TIME 200
32 #define CONTROL_SLEEP_TIME 0
38 #include <sys/types.h>
42 #include "osdep/shmem.h"
43 #include "osdep/timer.h"
44 #if defined(__MINGW32__)
46 static void ThreadProc( void *s
);
47 #elif defined(__OS2__)
50 static void ThreadProc( void *s
);
51 #elif defined(PTHREAD_CACHE)
53 static void *ThreadProc(void *s
);
56 #define FORKED_CACHE 1
59 #define FORKED_CACHE 0
69 unsigned char *buffer
; // base pointer of the allocated buffer memory
70 int buffer_size
; // size of the allocated buffer memory
71 int sector_size
; // size of a single sector (2048/2324)
72 int back_size
; // we should keep back_size amount of old bytes for backward seek
73 int fill_limit
; // we should fill buffer only if space>=fill_limit
74 int seek_limit
; // keep filling cache if distance is less that seek limit
77 off_t min_filepos
; // buffer contain only a part of the file, from min-max pos
79 off_t offset
; // filepos <-> bufferpos offset value (filepos of the buffer's first byte)
83 // int seek_lock; // 1 if we will seek/reset buffer, 2 if we are ready for cmd
84 // int fifo_flag; // 1 if we should use FIFO to notice cache about buffer reads.
88 volatile unsigned control_uint_arg
;
89 volatile double control_double_arg
;
90 volatile int control_res
;
91 volatile off_t control_new_pos
;
92 volatile double stream_time_length
;
95 static int min_fill
=0;
97 int cache_fill_status
=0;
99 static void cache_wakeup(stream_t
*s
)
102 // signal process to wake up immediately
103 kill(s
->cache_pid
, SIGUSR1
);
107 static void cache_stats(cache_vars_t
*s
)
109 int newb
=s
->max_filepos
-s
->read_filepos
; // new bytes in the buffer
110 mp_msg(MSGT_CACHE
,MSGL_INFO
,"0x%06X [0x%06X] 0x%06X ",(int)s
->min_filepos
,(int)s
->read_filepos
,(int)s
->max_filepos
);
111 mp_msg(MSGT_CACHE
,MSGL_INFO
,"%3d %% (%3d%%)\n",100*newb
/s
->buffer_size
,100*min_fill
/s
->buffer_size
);
114 static int cache_read(cache_vars_t
*s
, unsigned char *buf
, int size
)
118 int last_max
= s
->max_filepos
;
122 //printf("CACHE2_READ: 0x%X <= 0x%X <= 0x%X \n",s->min_filepos,s->read_filepos,s->max_filepos);
124 if(s
->read_filepos
>=s
->max_filepos
|| s
->read_filepos
<s
->min_filepos
){
127 if (s
->max_filepos
== last_max
) {
128 if (sleep_count
++ == 10)
129 mp_msg(MSGT_CACHE
, MSGL_WARN
, "Cache not filling!\n");
131 last_max
= s
->max_filepos
;
134 // waiting for buffer fill...
135 if (stream_check_interrupt(READ_SLEEP_TIME
)) {
139 continue; // try again...
143 newb
=s
->max_filepos
-s
->read_filepos
; // new bytes in the buffer
144 if(newb
<min_fill
) min_fill
=newb
; // statistics...
146 // printf("*** newb: %d bytes ***\n",newb);
148 pos
=s
->read_filepos
- s
->offset
;
149 if(pos
<0) pos
+=s
->buffer_size
; else
150 if(pos
>=s
->buffer_size
) pos
-=s
->buffer_size
;
152 if(newb
>s
->buffer_size
-pos
) newb
=s
->buffer_size
-pos
; // handle wrap...
153 if(newb
>size
) newb
=size
;
156 if(s
->read_filepos
<s
->min_filepos
) mp_msg(MSGT_CACHE
,MSGL_ERR
,"Ehh. s->read_filepos<s->min_filepos !!! Report bug...\n");
158 // len=write(mem,newb)
159 //printf("Buffer read: %d bytes\n",newb);
160 memcpy(buf
,&s
->buffer
[pos
],newb
);
165 s
->read_filepos
+=len
;
170 cache_fill_status
=(s
->max_filepos
-s
->read_filepos
)/(s
->buffer_size
/ 100);
174 static int cache_fill(cache_vars_t
*s
)
176 int back
,back2
,newb
,space
,len
,pos
;
177 off_t read
=s
->read_filepos
;
179 if(read
<s
->min_filepos
|| read
>s
->max_filepos
){
181 mp_msg(MSGT_CACHE
,MSGL_DBG2
,"Out of boundaries... seeking to 0x%"PRIX64
" \n",(int64_t)read
);
182 // streaming: drop cache contents only if seeking backward or too much fwd:
183 if(s
->stream
->type
!=STREAMTYPE_STREAM
||
184 read
<s
->min_filepos
|| read
>=s
->max_filepos
+s
->seek_limit
)
186 s
->offset
= // FIXME!?
187 s
->min_filepos
=s
->max_filepos
=read
; // drop cache content :(
188 if(s
->stream
->eof
) stream_reset(s
->stream
);
189 stream_seek(s
->stream
,read
);
190 mp_msg(MSGT_CACHE
,MSGL_DBG2
,"Seek done. new pos: 0x%"PRIX64
" \n",(int64_t)stream_tell(s
->stream
));
194 // calc number of back-bytes:
195 back
=read
- s
->min_filepos
;
196 if(back
<0) back
=0; // strange...
197 if(back
>s
->back_size
) back
=s
->back_size
;
199 // calc number of new bytes:
200 newb
=s
->max_filepos
- read
;
201 if(newb
<0) newb
=0; // strange...
203 // calc free buffer space:
204 space
=s
->buffer_size
- (newb
+back
);
207 pos
=s
->max_filepos
- s
->offset
;
208 if(pos
>=s
->buffer_size
) pos
-=s
->buffer_size
; // wrap-around
210 if(space
<s
->fill_limit
){
211 // printf("Buffer is full (%d bytes free, limit: %d)\n",space,s->fill_limit);
212 return 0; // no fill...
215 // printf("### read=0x%X back=%d newb=%d space=%d pos=%d\n",read,back,newb,space,pos);
217 // reduce space if needed:
218 if(space
>s
->buffer_size
-pos
) space
=s
->buffer_size
-pos
;
220 // if(space>32768) space=32768; // limit one-time block size
221 if(space
>4*s
->sector_size
) space
=4*s
->sector_size
;
223 // if(s->seek_lock) return 0; // FIXME
226 // back+newb+space <= buffer_size
227 back2
=s
->buffer_size
-(space
+newb
); // max back size
228 if(s
->min_filepos
<(read
-back2
)) s
->min_filepos
=read
-back2
;
230 s
->min_filepos
=read
-back
; // avoid seeking-back to temp area...
234 //printf("Buffer fill: %d bytes of %d\n",space,s->buffer_size);
235 //len=stream_fill_buffer(s->stream);
236 //memcpy(&s->buffer[pos],s->stream->buffer,len); // avoid this extra copy!
238 len
=stream_read(s
->stream
,&s
->buffer
[pos
],space
);
242 if(pos
+len
>=s
->buffer_size
){
244 s
->offset
+=s
->buffer_size
;
251 static int cache_execute_control(cache_vars_t
*s
) {
252 static unsigned last
;
253 int quit
= s
->control
== -2;
254 if (quit
|| !s
->stream
->control
) {
255 s
->stream_time_length
= 0;
256 s
->control_new_pos
= 0;
257 s
->control_res
= STREAM_UNSUPPORTED
;
261 if (GetTimerMS() - last
> 99) {
263 if (s
->stream
->control(s
->stream
, STREAM_CTRL_GET_TIME_LENGTH
, &len
) == STREAM_OK
)
264 s
->stream_time_length
= len
;
266 s
->stream_time_length
= 0;
269 if (s
->control
== -1) return 1;
270 switch (s
->control
) {
271 case STREAM_CTRL_GET_CURRENT_TIME
:
272 case STREAM_CTRL_SEEK_TO_TIME
:
273 case STREAM_CTRL_GET_ASPECT_RATIO
:
274 s
->control_res
= s
->stream
->control(s
->stream
, s
->control
, &s
->control_double_arg
);
276 case STREAM_CTRL_SEEK_TO_CHAPTER
:
277 case STREAM_CTRL_GET_NUM_CHAPTERS
:
278 case STREAM_CTRL_GET_CURRENT_CHAPTER
:
279 case STREAM_CTRL_GET_NUM_ANGLES
:
280 case STREAM_CTRL_GET_ANGLE
:
281 case STREAM_CTRL_SET_ANGLE
:
282 s
->control_res
= s
->stream
->control(s
->stream
, s
->control
, &s
->control_uint_arg
);
285 s
->control_res
= STREAM_UNSUPPORTED
;
288 s
->control_new_pos
= s
->stream
->pos
;
293 static void *shared_alloc(int size
) {
295 return shmem_alloc(size
);
301 static void shared_free(void *ptr
, int size
) {
303 shmem_free(ptr
, size
);
309 static cache_vars_t
* cache_init(int size
,int sector
){
311 cache_vars_t
* s
=shared_alloc(sizeof(cache_vars_t
));
312 if(s
==NULL
) return NULL
;
314 memset(s
,0,sizeof(cache_vars_t
));
319 s
->buffer_size
=num
*sector
;
320 s
->sector_size
=sector
;
321 s
->buffer
=shared_alloc(s
->buffer_size
);
323 if(s
->buffer
== NULL
){
324 shared_free(s
, sizeof(cache_vars_t
));
328 s
->fill_limit
=8*sector
;
329 s
->back_size
=s
->buffer_size
/2;
333 void cache_uninit(stream_t
*s
) {
334 cache_vars_t
* c
= s
->cache_data
;
337 cache_do_control(s
, -2, NULL
);
339 kill(s
->cache_pid
,SIGKILL
);
340 waitpid(s
->cache_pid
,NULL
,0);
345 shared_free(c
->buffer
, c
->buffer_size
);
348 shared_free(s
->cache_data
, sizeof(cache_vars_t
));
349 s
->cache_data
= NULL
;
352 static void exit_sighandler(int x
){
357 static void dummy_sighandler(int x
) {
361 * Main loop of the cache process or thread.
363 static void cache_mainloop(cache_vars_t
*s
) {
366 signal(SIGUSR1
, SIG_IGN
);
369 if (!cache_fill(s
)) {
371 // Let signal wake us up, we cannot leave this
372 // enabled since we do not handle EINTR in most places.
373 // This might need extra code to work on BSD.
374 signal(SIGUSR1
, dummy_sighandler
);
376 if (sleep_count
< INITIAL_FILL_USLEEP_COUNT
) {
378 usec_sleep(INITIAL_FILL_USLEEP_TIME
);
380 usec_sleep(FILL_USLEEP_TIME
); // idle
382 signal(SIGUSR1
, SIG_IGN
);
386 // cache_stats(s->cache_data);
387 } while (cache_execute_control(s
));
391 * \return 1 on success, 0 if the function was interrupted and -1 on error
393 int stream_enable_cache(stream_t
*stream
,int size
,int min
,int seek_limit
){
394 int ss
= stream
->sector_size
? stream
->sector_size
: STREAM_BUFFER_SIZE
;
398 if (stream
->flags
& STREAM_NON_CACHEABLE
) {
399 mp_msg(MSGT_CACHE
,MSGL_STATUS
,"\rThis stream is non-cacheable\n");
403 s
=cache_init(size
,ss
);
404 if(s
== NULL
) return -1;
405 stream
->cache_data
=s
;
406 s
->stream
=stream
; // callback
407 s
->seek_limit
=seek_limit
;
410 //make sure that we won't wait from cache_fill
411 //more data than it is allowed to fill
412 if (s
->seek_limit
> s
->buffer_size
- s
->fill_limit
){
413 s
->seek_limit
= s
->buffer_size
- s
->fill_limit
;
415 if (min
> s
->buffer_size
- s
->fill_limit
) {
416 min
= s
->buffer_size
- s
->fill_limit
;
418 // to make sure we wait for the cache process/thread to be active
424 if((stream
->cache_pid
=fork())){
425 if ((pid_t
)stream
->cache_pid
== -1)
426 stream
->cache_pid
= 0;
429 stream_t
* stream2
=malloc(sizeof(stream_t
));
430 memcpy(stream2
,s
->stream
,sizeof(stream_t
));
432 #if defined(__MINGW32__)
433 stream
->cache_pid
= _beginthread( ThreadProc
, 0, s
);
434 #elif defined(__OS2__)
435 stream
->cache_pid
= _beginthread( ThreadProc
, NULL
, 256 * 1024, s
);
439 pthread_create(&tid
, NULL
, ThreadProc
, s
);
440 stream
->cache_pid
= 1;
444 if (!stream
->cache_pid
) {
445 mp_msg(MSGT_CACHE
, MSGL_ERR
,
446 "Starting cache process/thread failed: %s.\n", strerror(errno
));
449 // wait until cache is filled at least prefill_init %
450 mp_msg(MSGT_CACHE
,MSGL_V
,"CACHE_PRE_INIT: %"PRId64
" [%"PRId64
"] %"PRId64
" pre:%d eof:%d \n",
451 (int64_t)s
->min_filepos
,(int64_t)s
->read_filepos
,(int64_t)s
->max_filepos
,min
,s
->eof
);
452 while(s
->read_filepos
<s
->min_filepos
|| s
->max_filepos
-s
->read_filepos
<min
){
453 mp_tmsg(MSGT_CACHE
,MSGL_STATUS
,"\rCache fill: %5.2f%% (%"PRId64
" bytes) ",
454 100.0*(float)(s
->max_filepos
-s
->read_filepos
)/(float)(s
->buffer_size
),
455 (int64_t)s
->max_filepos
-s
->read_filepos
457 if(s
->eof
) break; // file is smaller than prefill size
458 if(stream_check_interrupt(PREFILL_SLEEP_TIME
)) {
463 mp_msg(MSGT_CACHE
,MSGL_STATUS
,"\n");
464 return 1; // parent exits
467 cache_uninit(stream
);
472 signal(SIGTERM
,exit_sighandler
); // kill
474 // make sure forked code never leaves this function
480 #if defined(__MINGW32__) || defined(__OS2__)
481 static void ThreadProc( void *s
){
486 static void *ThreadProc( void *s
){
493 int cache_stream_fill_buffer(stream_t
*s
){
495 if(!s
->cache_pid
) return stream_fill_buffer(s
);
497 // cache_stats(s->cache_data);
499 if(s
->pos
!=((cache_vars_t
*)s
->cache_data
)->read_filepos
) mp_msg(MSGT_CACHE
,MSGL_ERR
,"!!! read_filepos differs!!! report this bug...\n");
501 len
=cache_read(s
->cache_data
,s
->buffer
, ((cache_vars_t
*)s
->cache_data
)->sector_size
);
502 //printf("cache_stream_fill_buffer->read -> %d\n",len);
504 if(len
<=0){ s
->eof
=1; s
->buf_pos
=s
->buf_len
=0; return 0; }
509 // printf("[%d]",len);fflush(stdout);
514 int cache_stream_seek_long(stream_t
*stream
,off_t pos
){
517 if(!stream
->cache_pid
) return stream_seek_long(stream
,pos
);
519 s
=stream
->cache_data
;
522 mp_msg(MSGT_CACHE
,MSGL_DBG2
,"CACHE2_SEEK: 0x%"PRIX64
" <= 0x%"PRIX64
" (0x%"PRIX64
") <= 0x%"PRIX64
" \n",s
->min_filepos
,pos
,s
->read_filepos
,s
->max_filepos
);
524 newpos
=pos
/s
->sector_size
; newpos
*=s
->sector_size
; // align
525 stream
->pos
=s
->read_filepos
=newpos
;
527 cache_wakeup(stream
);
529 cache_stream_fill_buffer(stream
);
532 if(pos
>=0 && pos
<=stream
->buf_len
){
533 stream
->buf_pos
=pos
; // byte position in sector
537 // stream->buf_pos=stream->buf_len=0;
540 mp_msg(MSGT_CACHE
,MSGL_V
,"cache_stream_seek: WARNING! Can't seek to 0x%"PRIX64
" !\n",(int64_t)(pos
+newpos
));
544 int cache_do_control(stream_t
*stream
, int cmd
, void *arg
) {
546 cache_vars_t
* s
= stream
->cache_data
;
548 case STREAM_CTRL_SEEK_TO_TIME
:
549 s
->control_double_arg
= *(double *)arg
;
552 case STREAM_CTRL_SEEK_TO_CHAPTER
:
553 case STREAM_CTRL_SET_ANGLE
:
554 s
->control_uint_arg
= *(unsigned *)arg
;
557 // the core might call these every frame, they are too slow for this...
558 case STREAM_CTRL_GET_TIME_LENGTH
:
559 // case STREAM_CTRL_GET_CURRENT_TIME:
560 *(double *)arg
= s
->stream_time_length
;
561 return s
->stream_time_length
? STREAM_OK
: STREAM_UNSUPPORTED
;
562 case STREAM_CTRL_GET_NUM_CHAPTERS
:
563 case STREAM_CTRL_GET_CURRENT_CHAPTER
:
564 case STREAM_CTRL_GET_ASPECT_RATIO
:
565 case STREAM_CTRL_GET_NUM_ANGLES
:
566 case STREAM_CTRL_GET_ANGLE
:
571 return STREAM_UNSUPPORTED
;
573 cache_wakeup(stream
);
574 while (s
->control
!= -1) {
575 if (sleep_count
++ == 1000)
576 mp_msg(MSGT_CACHE
, MSGL_WARN
, "Cache not responding!\n");
577 if (stream_check_interrupt(CONTROL_SLEEP_TIME
)) {
579 return STREAM_UNSUPPORTED
;
583 case STREAM_CTRL_GET_TIME_LENGTH
:
584 case STREAM_CTRL_GET_CURRENT_TIME
:
585 case STREAM_CTRL_GET_ASPECT_RATIO
:
586 *(double *)arg
= s
->control_double_arg
;
588 case STREAM_CTRL_GET_NUM_CHAPTERS
:
589 case STREAM_CTRL_GET_CURRENT_CHAPTER
:
590 case STREAM_CTRL_GET_NUM_ANGLES
:
591 case STREAM_CTRL_GET_ANGLE
:
592 *(unsigned *)arg
= s
->control_uint_arg
;
594 case STREAM_CTRL_SEEK_TO_CHAPTER
:
595 case STREAM_CTRL_SEEK_TO_TIME
:
596 case STREAM_CTRL_SET_ANGLE
:
597 stream
->pos
= s
->read_filepos
= s
->control_new_pos
;
600 return s
->control_res
;