vo_vpdau: fix preemption recovery broken in decec7f2a37e559d
[mplayer.git] / stream / cache2.c
blob6e8f398c37111dff95546136626a149c58ff599c
1 /*
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.
19 #include "config.h"
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
34 #include <stdio.h>
35 #include <stdlib.h>
36 #include <string.h>
37 #include <signal.h>
38 #include <sys/types.h>
39 #include <unistd.h>
40 #include <errno.h>
42 #include "libavutil/avutil.h"
43 #include "osdep/shmem.h"
44 #include "osdep/timer.h"
45 #if defined(__MINGW32__)
46 #include <windows.h>
47 static void ThreadProc( void *s );
48 #elif defined(__OS2__)
49 #define INCL_DOS
50 #include <os2.h>
51 static void ThreadProc( void *s );
52 #elif defined(PTHREAD_CACHE)
53 #include <pthread.h>
54 static void *ThreadProc(void *s);
55 #else
56 #include <sys/wait.h>
57 #define FORKED_CACHE 1
58 #endif
59 #ifndef FORKED_CACHE
60 #define FORKED_CACHE 0
61 #endif
63 #include "mp_msg.h"
65 #include "stream.h"
66 #include "cache2.h"
67 #include "mpcommon.h"
69 typedef struct {
70 // constats:
71 unsigned char *buffer; // base pointer of the allocated buffer memory
72 int buffer_size; // size of the allocated buffer memory
73 int sector_size; // size of a single sector (2048/2324)
74 int back_size; // we should keep back_size amount of old bytes for backward seek
75 int fill_limit; // we should fill buffer only if space>=fill_limit
76 int seek_limit; // keep filling cache if distance is less that seek limit
77 // filler's pointers:
78 int eof;
79 off_t min_filepos; // buffer contain only a part of the file, from min-max pos
80 off_t max_filepos;
81 off_t offset; // filepos <-> bufferpos offset value (filepos of the buffer's first byte)
82 // reader's pointers:
83 off_t read_filepos;
84 // commands/locking:
85 // int seek_lock; // 1 if we will seek/reset buffer, 2 if we are ready for cmd
86 // int fifo_flag; // 1 if we should use FIFO to notice cache about buffer reads.
87 // callback
88 stream_t* stream;
89 volatile int control;
90 volatile unsigned control_uint_arg;
91 volatile double control_double_arg;
92 volatile int control_res;
93 volatile off_t control_new_pos;
94 volatile double stream_time_length;
95 volatile double stream_time_pos;
96 } cache_vars_t;
98 static int min_fill=0;
100 static void cache_wakeup(stream_t *s)
102 #if FORKED_CACHE
103 // signal process to wake up immediately
104 kill(s->cache_pid, SIGUSR1);
105 #endif
108 static int cache_read(cache_vars_t *s, unsigned char *buf, int size)
110 int total=0;
111 int sleep_count = 0;
112 int last_max = s->max_filepos;
113 while(size>0){
114 int pos,newb,len;
116 //printf("CACHE2_READ: 0x%X <= 0x%X <= 0x%X \n",s->min_filepos,s->read_filepos,s->max_filepos);
118 if(s->read_filepos>=s->max_filepos || s->read_filepos<s->min_filepos){
119 // eof?
120 if(s->eof) break;
121 if (s->max_filepos == last_max) {
122 if (sleep_count++ == 10)
123 mp_msg(MSGT_CACHE, MSGL_WARN, "Cache not filling, consider increasing -cache and/or -cache-min!\n");
124 } else {
125 last_max = s->max_filepos;
126 sleep_count = 0;
128 // waiting for buffer fill...
129 if (stream_check_interrupt(READ_SLEEP_TIME)) {
130 s->eof = 1;
131 break;
133 continue; // try again...
135 sleep_count = 0;
137 newb=s->max_filepos-s->read_filepos; // new bytes in the buffer
138 if(newb<min_fill) min_fill=newb; // statistics...
140 // printf("*** newb: %d bytes ***\n",newb);
142 pos=s->read_filepos - s->offset;
143 if(pos<0) pos+=s->buffer_size; else
144 if(pos>=s->buffer_size) pos-=s->buffer_size;
146 if(newb>s->buffer_size-pos) newb=s->buffer_size-pos; // handle wrap...
147 if(newb>size) newb=size;
149 // check:
150 if(s->read_filepos<s->min_filepos) mp_msg(MSGT_CACHE,MSGL_ERR,"Ehh. s->read_filepos<s->min_filepos !!! Report bug...\n");
152 // len=write(mem,newb)
153 //printf("Buffer read: %d bytes\n",newb);
154 memcpy(buf,&s->buffer[pos],newb);
155 buf+=newb;
156 len=newb;
157 // ...
159 s->read_filepos+=len;
160 size-=len;
161 total+=len;
164 return total;
167 static int cache_fill(cache_vars_t *s)
169 int back,back2,newb,space,len,pos;
170 off_t read=s->read_filepos;
171 int read_chunk;
172 int wraparound_copy = 0;
174 if(read<s->min_filepos || read>s->max_filepos){
175 // seek...
176 mp_msg(MSGT_CACHE,MSGL_DBG2,"Out of boundaries... seeking to 0x%"PRIX64" \n",(int64_t)read);
177 // drop cache contents only if seeking backward or too much fwd.
178 // This is also done for on-disk files, since it loses the backseek cache.
179 // That in turn can cause major bandwidth increase and performance
180 // issues with e.g. mov or badly interleaved files
181 if(read<s->min_filepos || read>=s->max_filepos+s->seek_limit)
183 s->offset= // FIXME!?
184 s->min_filepos=s->max_filepos=read; // drop cache content :(
185 if(s->stream->eof) stream_reset(s->stream);
186 stream_seek_internal(s->stream,read);
187 mp_msg(MSGT_CACHE,MSGL_DBG2,"Seek done. new pos: 0x%"PRIX64" \n",(int64_t)stream_tell(s->stream));
191 // calc number of back-bytes:
192 back=read - s->min_filepos;
193 if(back<0) back=0; // strange...
194 if(back>s->back_size) back=s->back_size;
196 // calc number of new bytes:
197 newb=s->max_filepos - read;
198 if(newb<0) newb=0; // strange...
200 // calc free buffer space:
201 space=s->buffer_size - (newb+back);
203 // calc bufferpos:
204 pos=s->max_filepos - s->offset;
205 if(pos>=s->buffer_size) pos-=s->buffer_size; // wrap-around
207 if(space<s->fill_limit){
208 // printf("Buffer is full (%d bytes free, limit: %d)\n",space,s->fill_limit);
209 return 0; // no fill...
212 // printf("### read=0x%X back=%d newb=%d space=%d pos=%d\n",read,back,newb,space,pos);
214 // try to avoid wrap-around. If not possible due to sector size
215 // do an extra copy.
216 if(space>s->buffer_size-pos) {
217 if (s->buffer_size-pos >= s->sector_size) {
218 space=s->buffer_size-pos;
219 } else {
220 space = s->sector_size;
221 wraparound_copy = 1;
225 // limit one-time block size
226 read_chunk = s->stream->read_chunk;
227 if (!read_chunk) read_chunk = 4*s->sector_size;
228 space = FFMIN(space, read_chunk);
230 #if 1
231 // back+newb+space <= buffer_size
232 back2=s->buffer_size-(space+newb); // max back size
233 if(s->min_filepos<(read-back2)) s->min_filepos=read-back2;
234 #else
235 s->min_filepos=read-back; // avoid seeking-back to temp area...
236 #endif
238 if (wraparound_copy) {
239 int to_copy;
240 len = stream_read_internal(s->stream, s->stream->buffer, space);
241 to_copy = FFMIN(len, s->buffer_size-pos);
242 memcpy(s->buffer + pos, s->stream->buffer, to_copy);
243 memcpy(s->buffer, s->stream->buffer + to_copy, len - to_copy);
244 } else
245 len = stream_read_internal(s->stream, &s->buffer[pos], space);
246 s->eof= !len;
248 s->max_filepos+=len;
249 if(pos+len>=s->buffer_size){
250 // wrap...
251 s->offset+=s->buffer_size;
254 return len;
258 static int cache_execute_control(cache_vars_t *s) {
259 double double_res;
260 unsigned uint_res;
261 static unsigned last;
262 int quit = s->control == -2;
263 if (quit || !s->stream->control) {
264 s->stream_time_length = 0;
265 s->stream_time_pos = MP_NOPTS_VALUE;
266 s->control_new_pos = 0;
267 s->control_res = STREAM_UNSUPPORTED;
268 s->control = -1;
269 return !quit;
271 if (GetTimerMS() - last > 99) {
272 double len, pos;
273 if (s->stream->control(s->stream, STREAM_CTRL_GET_TIME_LENGTH, &len) == STREAM_OK)
274 s->stream_time_length = len;
275 else
276 s->stream_time_length = 0;
277 if (s->stream->control(s->stream, STREAM_CTRL_GET_CURRENT_TIME, &pos) == STREAM_OK)
278 s->stream_time_pos = pos;
279 else
280 s->stream_time_pos = MP_NOPTS_VALUE;
281 last = GetTimerMS();
283 if (s->control == -1) return 1;
284 switch (s->control) {
285 case STREAM_CTRL_SEEK_TO_TIME:
286 double_res = s->control_double_arg;
287 case STREAM_CTRL_GET_CURRENT_TIME:
288 case STREAM_CTRL_GET_ASPECT_RATIO:
289 s->control_res = s->stream->control(s->stream, s->control, &double_res);
290 s->control_double_arg = double_res;
291 break;
292 case STREAM_CTRL_SEEK_TO_CHAPTER:
293 case STREAM_CTRL_SET_ANGLE:
294 uint_res = s->control_uint_arg;
295 case STREAM_CTRL_GET_NUM_CHAPTERS:
296 case STREAM_CTRL_GET_CURRENT_CHAPTER:
297 case STREAM_CTRL_GET_NUM_ANGLES:
298 case STREAM_CTRL_GET_ANGLE:
299 s->control_res = s->stream->control(s->stream, s->control, &uint_res);
300 s->control_uint_arg = uint_res;
301 break;
302 default:
303 s->control_res = STREAM_UNSUPPORTED;
304 break;
306 s->control_new_pos = s->stream->pos;
307 s->control = -1;
308 return 1;
311 static void *shared_alloc(int size) {
312 #if FORKED_CACHE
313 return shmem_alloc(size);
314 #else
315 return malloc(size);
316 #endif
319 static void shared_free(void *ptr, int size) {
320 #if FORKED_CACHE
321 shmem_free(ptr, size);
322 #else
323 free(ptr);
324 #endif
327 static cache_vars_t* cache_init(int size,int sector){
328 int num;
329 cache_vars_t* s=shared_alloc(sizeof(cache_vars_t));
330 if(s==NULL) return NULL;
332 memset(s,0,sizeof(cache_vars_t));
333 num=size/sector;
334 if(num < 16){
335 num = 16;
336 }//32kb min_size
337 s->buffer_size=num*sector;
338 s->sector_size=sector;
339 s->buffer=shared_alloc(s->buffer_size);
341 if(s->buffer == NULL){
342 shared_free(s, sizeof(cache_vars_t));
343 return NULL;
346 s->fill_limit=8*sector;
347 s->back_size=s->buffer_size/2;
348 return s;
351 void cache_uninit(stream_t *s) {
352 cache_vars_t* c = s->cache_data;
353 if(s->cache_pid) {
354 #if !FORKED_CACHE
355 cache_do_control(s, -2, NULL);
356 #else
357 kill(s->cache_pid,SIGKILL);
358 waitpid(s->cache_pid,NULL,0);
359 #endif
360 s->cache_pid = 0;
362 if(!c) return;
363 shared_free(c->buffer, c->buffer_size);
364 c->buffer = NULL;
365 c->stream = NULL;
366 shared_free(s->cache_data, sizeof(cache_vars_t));
367 s->cache_data = NULL;
370 static void exit_sighandler(int x){
371 // close stream
372 exit(0);
375 static void dummy_sighandler(int x) {
379 * Main loop of the cache process or thread.
381 static void cache_mainloop(cache_vars_t *s) {
382 int sleep_count = 0;
383 #if FORKED_CACHE
384 struct sigaction sa = { .sa_handler = SIG_IGN };
385 sigaction(SIGUSR1, &sa, NULL);
386 #endif
387 do {
388 if (!cache_fill(s)) {
389 #if FORKED_CACHE
390 // Let signal wake us up, we cannot leave this
391 // enabled since we do not handle EINTR in most places.
392 // This might need extra code to work on BSD.
393 sa.sa_handler = dummy_sighandler;
394 sigaction(SIGUSR1, &sa, NULL);
395 #endif
396 if (sleep_count < INITIAL_FILL_USLEEP_COUNT) {
397 sleep_count++;
398 usec_sleep(INITIAL_FILL_USLEEP_TIME);
399 } else
400 usec_sleep(FILL_USLEEP_TIME); // idle
401 #if FORKED_CACHE
402 sa.sa_handler = SIG_IGN;
403 sigaction(SIGUSR1, &sa, NULL);
404 #endif
405 } else
406 sleep_count = 0;
407 } while (cache_execute_control(s));
411 * \return 1 on success, 0 if the function was interrupted and -1 on error
413 int stream_enable_cache(stream_t *stream,int size,int min,int seek_limit){
414 int ss = stream->sector_size ? stream->sector_size : STREAM_BUFFER_SIZE;
415 int res = -1;
416 cache_vars_t* s;
418 if (stream->flags & STREAM_NON_CACHEABLE) {
419 mp_msg(MSGT_CACHE,MSGL_STATUS,"\rThis stream is non-cacheable\n");
420 return 1;
423 s=cache_init(size,ss);
424 if(s == NULL) return -1;
425 stream->cache_data=s;
426 s->stream=stream; // callback
427 s->seek_limit=seek_limit;
430 //make sure that we won't wait from cache_fill
431 //more data than it is allowed to fill
432 if (s->seek_limit > s->buffer_size - s->fill_limit ){
433 s->seek_limit = s->buffer_size - s->fill_limit;
435 if (min > s->buffer_size - s->fill_limit) {
436 min = s->buffer_size - s->fill_limit;
438 // to make sure we wait for the cache process/thread to be active
439 // before continuing
440 if (min <= 0)
441 min = 1;
443 #if FORKED_CACHE
444 if((stream->cache_pid=fork())){
445 if ((pid_t)stream->cache_pid == -1)
446 stream->cache_pid = 0;
447 #else
449 stream_t* stream2=malloc(sizeof(stream_t));
450 memcpy(stream2,s->stream,sizeof(stream_t));
451 s->stream=stream2;
452 #if defined(__MINGW32__)
453 stream->cache_pid = _beginthread( ThreadProc, 0, s );
454 #elif defined(__OS2__)
455 stream->cache_pid = _beginthread( ThreadProc, NULL, 256 * 1024, s );
456 #else
458 pthread_t tid;
459 pthread_create(&tid, NULL, ThreadProc, s);
460 stream->cache_pid = 1;
462 #endif
463 #endif
464 if (!stream->cache_pid) {
465 mp_msg(MSGT_CACHE, MSGL_ERR,
466 "Starting cache process/thread failed: %s.\n", strerror(errno));
467 goto err_out;
469 // wait until cache is filled at least prefill_init %
470 mp_msg(MSGT_CACHE,MSGL_V,"CACHE_PRE_INIT: %"PRId64" [%"PRId64"] %"PRId64" pre:%d eof:%d \n",
471 (int64_t)s->min_filepos,(int64_t)s->read_filepos,(int64_t)s->max_filepos,min,s->eof);
472 while(s->read_filepos<s->min_filepos || s->max_filepos-s->read_filepos<min){
473 mp_tmsg(MSGT_CACHE,MSGL_STATUS,"\rCache fill: %5.2f%% (%"PRId64" bytes) ",
474 100.0*(float)(s->max_filepos-s->read_filepos)/(float)(s->buffer_size),
475 (int64_t)s->max_filepos-s->read_filepos
477 if(s->eof) break; // file is smaller than prefill size
478 if(stream_check_interrupt(PREFILL_SLEEP_TIME)) {
479 res = 0;
480 goto err_out;
483 mp_msg(MSGT_CACHE,MSGL_STATUS,"\n");
484 return 1; // parent exits
486 err_out:
487 cache_uninit(stream);
488 return res;
491 #if FORKED_CACHE
492 signal(SIGTERM,exit_sighandler); // kill
493 cache_mainloop(s);
494 // make sure forked code never leaves this function
495 exit(0);
496 #endif
499 #if !FORKED_CACHE
500 #if defined(__MINGW32__) || defined(__OS2__)
501 static void ThreadProc( void *s ){
502 cache_mainloop(s);
503 _endthread();
505 #else
506 static void *ThreadProc( void *s ){
507 cache_mainloop(s);
508 return NULL;
510 #endif
511 #endif
513 int cache_stream_fill_buffer(stream_t *s){
514 int len;
515 int sector_size;
516 if(!s->cache_pid) return stream_fill_buffer(s);
518 if(s->pos!=((cache_vars_t*)s->cache_data)->read_filepos) mp_msg(MSGT_CACHE,MSGL_ERR,"!!! read_filepos differs!!! report this bug...\n");
519 sector_size = ((cache_vars_t*)s->cache_data)->sector_size;
520 if (sector_size > STREAM_MAX_SECTOR_SIZE) {
521 mp_msg(MSGT_CACHE, MSGL_ERR, "Sector size %i larger than maximum %i\n", sector_size, STREAM_MAX_SECTOR_SIZE);
522 sector_size = STREAM_MAX_SECTOR_SIZE;
525 len=cache_read(s->cache_data,s->buffer, sector_size);
526 //printf("cache_stream_fill_buffer->read -> %d\n",len);
528 if(len<=0){ s->eof=1; s->buf_pos=s->buf_len=0; return 0; }
529 s->eof=0;
530 s->buf_pos=0;
531 s->buf_len=len;
532 s->pos+=len;
533 // printf("[%d]",len);fflush(stdout);
534 if (s->capture_file)
535 stream_capture_do(s);
536 return len;
540 int cache_fill_status(stream_t *s) {
541 cache_vars_t *cv;
542 if (!s || !s->cache_data)
543 return -1;
544 cv = s->cache_data;
545 return (cv->max_filepos-cv->read_filepos)/(cv->buffer_size / 100);
548 int cache_stream_seek_long(stream_t *stream,off_t pos){
549 cache_vars_t* s;
550 off_t newpos;
551 if(!stream->cache_pid) return stream_seek_long(stream,pos);
553 s=stream->cache_data;
554 // s->seek_lock=1;
556 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);
558 newpos=pos/s->sector_size; newpos*=s->sector_size; // align
559 stream->pos=s->read_filepos=newpos;
560 s->eof=0; // !!!!!!!
561 cache_wakeup(stream);
563 cache_stream_fill_buffer(stream);
565 pos-=newpos;
566 if(pos>=0 && pos<=stream->buf_len){
567 stream->buf_pos=pos; // byte position in sector
568 return 1;
571 // stream->buf_pos=stream->buf_len=0;
572 // return 1;
574 mp_msg(MSGT_CACHE,MSGL_V,"cache_stream_seek: WARNING! Can't seek to 0x%"PRIX64" !\n",(int64_t)(pos+newpos));
575 return 0;
578 int cache_do_control(stream_t *stream, int cmd, void *arg) {
579 int sleep_count = 0;
580 cache_vars_t* s = stream->cache_data;
581 switch (cmd) {
582 case STREAM_CTRL_SEEK_TO_TIME:
583 s->control_double_arg = *(double *)arg;
584 s->control = cmd;
585 break;
586 case STREAM_CTRL_SEEK_TO_CHAPTER:
587 case STREAM_CTRL_SET_ANGLE:
588 s->control_uint_arg = *(unsigned *)arg;
589 s->control = cmd;
590 break;
591 // the core might call these every frame, so cache them...
592 case STREAM_CTRL_GET_TIME_LENGTH:
593 *(double *)arg = s->stream_time_length;
594 return s->stream_time_length ? STREAM_OK : STREAM_UNSUPPORTED;
595 case STREAM_CTRL_GET_CURRENT_TIME:
596 *(double *)arg = s->stream_time_pos;
597 return s->stream_time_pos != MP_NOPTS_VALUE ? STREAM_OK : STREAM_UNSUPPORTED;
598 case STREAM_CTRL_GET_NUM_CHAPTERS:
599 case STREAM_CTRL_GET_CURRENT_CHAPTER:
600 case STREAM_CTRL_GET_ASPECT_RATIO:
601 case STREAM_CTRL_GET_NUM_ANGLES:
602 case STREAM_CTRL_GET_ANGLE:
603 case -2:
604 s->control = cmd;
605 break;
606 default:
607 return STREAM_UNSUPPORTED;
609 cache_wakeup(stream);
610 while (s->control != -1) {
611 if (sleep_count++ == 1000)
612 mp_msg(MSGT_CACHE, MSGL_WARN, "Cache not responding!\n");
613 if (stream_check_interrupt(CONTROL_SLEEP_TIME)) {
614 s->eof = 1;
615 return STREAM_UNSUPPORTED;
618 if (s->control_res != STREAM_OK)
619 return s->control_res;
620 switch (cmd) {
621 case STREAM_CTRL_GET_TIME_LENGTH:
622 case STREAM_CTRL_GET_CURRENT_TIME:
623 case STREAM_CTRL_GET_ASPECT_RATIO:
624 *(double *)arg = s->control_double_arg;
625 break;
626 case STREAM_CTRL_GET_NUM_CHAPTERS:
627 case STREAM_CTRL_GET_CURRENT_CHAPTER:
628 case STREAM_CTRL_GET_NUM_ANGLES:
629 case STREAM_CTRL_GET_ANGLE:
630 *(unsigned *)arg = s->control_uint_arg;
631 break;
632 case STREAM_CTRL_SEEK_TO_CHAPTER:
633 case STREAM_CTRL_SEEK_TO_TIME:
634 case STREAM_CTRL_SET_ANGLE:
635 stream->pos = s->read_filepos = s->control_new_pos;
636 break;
638 return s->control_res;