codecs.conf: remove yuv422 format from VDPAU section
[mplayer/glamo.git] / stream / cache2.c
blob05905a6dedc0ad8cbe022956534d58a32b37c7a2
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 "osdep/shmem.h"
43 #include "osdep/timer.h"
44 #if defined(__MINGW32__)
45 #include <windows.h>
46 static void ThreadProc( void *s );
47 #elif defined(__OS2__)
48 #define INCL_DOS
49 #include <os2.h>
50 static void ThreadProc( void *s );
51 #elif defined(PTHREAD_CACHE)
52 #include <pthread.h>
53 static void *ThreadProc(void *s);
54 #else
55 #include <sys/wait.h>
56 #define FORKED_CACHE 1
57 #endif
58 #ifndef FORKED_CACHE
59 #define FORKED_CACHE 0
60 #endif
62 #include "mp_msg.h"
64 #include "stream.h"
65 #include "cache2.h"
67 typedef struct {
68 // constats:
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
75 // filler's pointers:
76 int eof;
77 off_t min_filepos; // buffer contain only a part of the file, from min-max pos
78 off_t max_filepos;
79 off_t offset; // filepos <-> bufferpos offset value (filepos of the buffer's first byte)
80 // reader's pointers:
81 off_t read_filepos;
82 // commands/locking:
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.
85 // callback
86 stream_t* stream;
87 volatile int control;
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;
93 } cache_vars_t;
95 static int min_fill=0;
97 int cache_fill_status=0;
99 static void cache_wakeup(stream_t *s)
101 #if FORKED_CACHE
102 // signal process to wake up immediately
103 kill(s->cache_pid, SIGUSR1);
104 #endif
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)
116 int total=0;
117 int sleep_count = 0;
118 int last_max = s->max_filepos;
119 while(size>0){
120 int pos,newb,len;
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){
125 // eof?
126 if(s->eof) break;
127 if (s->max_filepos == last_max) {
128 if (sleep_count++ == 10)
129 mp_msg(MSGT_CACHE, MSGL_WARN, "Cache not filling!\n");
130 } else {
131 last_max = s->max_filepos;
132 sleep_count = 0;
134 // waiting for buffer fill...
135 if (stream_check_interrupt(READ_SLEEP_TIME)) {
136 s->eof = 1;
137 break;
139 continue; // try again...
141 sleep_count = 0;
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;
155 // check:
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);
161 buf+=newb;
162 len=newb;
163 // ...
165 s->read_filepos+=len;
166 size-=len;
167 total+=len;
170 cache_fill_status=(s->max_filepos-s->read_filepos)/(s->buffer_size / 100);
171 return total;
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){
180 // seek...
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);
206 // calc bufferpos:
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
225 #if 1
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;
229 #else
230 s->min_filepos=read-back; // avoid seeking-back to temp area...
231 #endif
233 // ....
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!
237 // ....
238 len=stream_read(s->stream,&s->buffer[pos],space);
239 s->eof= !len;
241 s->max_filepos+=len;
242 if(pos+len>=s->buffer_size){
243 // wrap...
244 s->offset+=s->buffer_size;
247 return len;
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;
258 s->control = -1;
259 return !quit;
261 if (GetTimerMS() - last > 99) {
262 double len;
263 if (s->stream->control(s->stream, STREAM_CTRL_GET_TIME_LENGTH, &len) == STREAM_OK)
264 s->stream_time_length = len;
265 else
266 s->stream_time_length = 0;
267 last = GetTimerMS();
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);
275 break;
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);
283 break;
284 default:
285 s->control_res = STREAM_UNSUPPORTED;
286 break;
288 s->control_new_pos = s->stream->pos;
289 s->control = -1;
290 return 1;
293 static void *shared_alloc(int size) {
294 #if FORKED_CACHE
295 return shmem_alloc(size);
296 #else
297 return malloc(size);
298 #endif
301 static void shared_free(void *ptr, int size) {
302 #if FORKED_CACHE
303 shmem_free(ptr, size);
304 #else
305 free(ptr);
306 #endif
309 static cache_vars_t* cache_init(int size,int sector){
310 int num;
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));
315 num=size/sector;
316 if(num < 16){
317 num = 16;
318 }//32kb min_size
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));
325 return NULL;
328 s->fill_limit=8*sector;
329 s->back_size=s->buffer_size/2;
330 return s;
333 void cache_uninit(stream_t *s) {
334 cache_vars_t* c = s->cache_data;
335 if(s->cache_pid) {
336 #if !FORKED_CACHE
337 cache_do_control(s, -2, NULL);
338 #else
339 kill(s->cache_pid,SIGKILL);
340 waitpid(s->cache_pid,NULL,0);
341 #endif
342 s->cache_pid = 0;
344 if(!c) return;
345 shared_free(c->buffer, c->buffer_size);
346 c->buffer = NULL;
347 c->stream = NULL;
348 shared_free(s->cache_data, sizeof(cache_vars_t));
349 s->cache_data = NULL;
352 static void exit_sighandler(int x){
353 // close stream
354 exit(0);
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) {
364 int sleep_count = 0;
365 #if FORKED_CACHE
366 signal(SIGUSR1, SIG_IGN);
367 #endif
368 do {
369 if (!cache_fill(s)) {
370 #if FORKED_CACHE
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);
375 #endif
376 if (sleep_count < INITIAL_FILL_USLEEP_COUNT) {
377 sleep_count++;
378 usec_sleep(INITIAL_FILL_USLEEP_TIME);
379 } else
380 usec_sleep(FILL_USLEEP_TIME); // idle
381 #if FORKED_CACHE
382 signal(SIGUSR1, SIG_IGN);
383 #endif
384 } else
385 sleep_count = 0;
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;
395 int res = -1;
396 cache_vars_t* s;
398 if (stream->flags & STREAM_NON_CACHEABLE) {
399 mp_msg(MSGT_CACHE,MSGL_STATUS,"\rThis stream is non-cacheable\n");
400 return 1;
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
419 // before continuing
420 if (min <= 0)
421 min = 1;
423 #if FORKED_CACHE
424 if((stream->cache_pid=fork())){
425 if ((pid_t)stream->cache_pid == -1)
426 stream->cache_pid = 0;
427 #else
429 stream_t* stream2=malloc(sizeof(stream_t));
430 memcpy(stream2,s->stream,sizeof(stream_t));
431 s->stream=stream2;
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 );
436 #else
438 pthread_t tid;
439 pthread_create(&tid, NULL, ThreadProc, s);
440 stream->cache_pid = 1;
442 #endif
443 #endif
444 if (!stream->cache_pid) {
445 mp_msg(MSGT_CACHE, MSGL_ERR,
446 "Starting cache process/thread failed: %s.\n", strerror(errno));
447 goto err_out;
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)) {
459 res = 0;
460 goto err_out;
463 mp_msg(MSGT_CACHE,MSGL_STATUS,"\n");
464 return 1; // parent exits
466 err_out:
467 cache_uninit(stream);
468 return res;
471 #if FORKED_CACHE
472 signal(SIGTERM,exit_sighandler); // kill
473 cache_mainloop(s);
474 // make sure forked code never leaves this function
475 exit(0);
476 #endif
479 #if !FORKED_CACHE
480 #if defined(__MINGW32__) || defined(__OS2__)
481 static void ThreadProc( void *s ){
482 cache_mainloop(s);
483 _endthread();
485 #else
486 static void *ThreadProc( void *s ){
487 cache_mainloop(s);
488 return NULL;
490 #endif
491 #endif
493 int cache_stream_fill_buffer(stream_t *s){
494 int len;
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; }
505 s->eof=0;
506 s->buf_pos=0;
507 s->buf_len=len;
508 s->pos+=len;
509 // printf("[%d]",len);fflush(stdout);
510 return len;
514 int cache_stream_seek_long(stream_t *stream,off_t pos){
515 cache_vars_t* s;
516 off_t newpos;
517 if(!stream->cache_pid) return stream_seek_long(stream,pos);
519 s=stream->cache_data;
520 // s->seek_lock=1;
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;
526 s->eof=0; // !!!!!!!
527 cache_wakeup(stream);
529 cache_stream_fill_buffer(stream);
531 pos-=newpos;
532 if(pos>=0 && pos<=stream->buf_len){
533 stream->buf_pos=pos; // byte position in sector
534 return 1;
537 // stream->buf_pos=stream->buf_len=0;
538 // return 1;
540 mp_msg(MSGT_CACHE,MSGL_V,"cache_stream_seek: WARNING! Can't seek to 0x%"PRIX64" !\n",(int64_t)(pos+newpos));
541 return 0;
544 int cache_do_control(stream_t *stream, int cmd, void *arg) {
545 int sleep_count = 0;
546 cache_vars_t* s = stream->cache_data;
547 switch (cmd) {
548 case STREAM_CTRL_SEEK_TO_TIME:
549 s->control_double_arg = *(double *)arg;
550 s->control = cmd;
551 break;
552 case STREAM_CTRL_SEEK_TO_CHAPTER:
553 case STREAM_CTRL_SET_ANGLE:
554 s->control_uint_arg = *(unsigned *)arg;
555 s->control = cmd;
556 break;
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:
567 case -2:
568 s->control = cmd;
569 break;
570 default:
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)) {
578 s->eof = 1;
579 return STREAM_UNSUPPORTED;
582 switch (cmd) {
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;
587 break;
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;
593 break;
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;
598 break;
600 return s->control_res;