Mercurial > mplayer.hg
annotate libmpdemux/cache2.c @ 7584:838ee1b00853
this patch adds an ability to recover from audio buffer cross-run by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
author | alex |
---|---|
date | Wed, 02 Oct 2002 16:46:55 +0000 |
parents | c4434bdf6e51 |
children | 013c255225d8 |
rev | line source |
---|---|
2324 | 1 #include "config.h" |
2 | |
2322 | 3 #ifdef USE_STREAM_CACHE |
4 | |
5 // Initial draft of my new cache system... | |
2352 | 6 // Note it runs in 2 processes (using fork()), but doesn't requires locking!! |
2322 | 7 // TODO: seeking, data consistency checking |
8 | |
2352 | 9 #define READ_USLEEP_TIME 10000 |
10 #define FILL_USLEEP_TIME 50000 | |
4825
41d2da3bd082
Make blocking call in libmpdemux interuptable (only with new input,
albeu
parents:
3726
diff
changeset
|
11 #define PREFILL_SLEEP_TIME 200 |
2322 | 12 |
13 #include <stdio.h> | |
14 #include <stdlib.h> | |
15 #include <string.h> | |
16 #include <signal.h> | |
3726 | 17 #include <sys/types.h> |
18 #include <unistd.h> | |
2322 | 19 |
20 #include "../linux/shmem.h" | |
21 | |
2371 | 22 #include "mp_msg.h" |
23 | |
2322 | 24 #include "stream.h" |
25 | |
26 int stream_fill_buffer(stream_t *s); | |
27 int stream_seek_long(stream_t *s,off_t pos); | |
28 | |
29 | |
30 typedef struct { | |
31 // constats: | |
32 unsigned char *buffer; // base pointer of the alllocated buffer memory | |
2352 | 33 int buffer_size; // size of the alllocated buffer memory |
34 int sector_size; // size of a single sector (2048/2324) | |
35 int back_size; // we should keep back_size amount of old bytes for backward seek | |
36 int fill_limit; // we should fill buffer only if space>=fill_limit | |
3562 | 37 int prefill; // we should fill min prefill bytes if cache gets empty |
2374 | 38 // filler's pointers: |
39 int eof; | |
40 off_t min_filepos; // buffer contain only a part of the file, from min-max pos | |
41 off_t max_filepos; | |
42 off_t offset; // filepos <-> bufferpos offset value (filepos of the buffer's first byte) | |
2322 | 43 // reader's pointers: |
2374 | 44 off_t read_filepos; |
2322 | 45 // commands/locking: |
2352 | 46 // int seek_lock; // 1 if we will seek/reset buffer, 2 if we are ready for cmd |
47 // int fifo_flag; // 1 if we should use FIFO to notice cache about buffer reads. | |
2322 | 48 // callback |
49 stream_t* stream; | |
50 } cache_vars_t; | |
51 | |
2352 | 52 static int min_fill=0; |
53 | |
54 int cache_fill_status=0; | |
2322 | 55 |
56 void cache_stats(cache_vars_t* s){ | |
57 int newb=s->max_filepos-s->read_filepos; // new bytes in the buffer | |
7472
c4434bdf6e51
tons of warning fixes, also some 10l bugfixes, including Dominik's PVA bug
arpi
parents:
7204
diff
changeset
|
58 printf("0x%06X [0x%06X] 0x%06X ",(int)s->min_filepos,(int)s->read_filepos,(int)s->max_filepos); |
2322 | 59 printf("%3d %% (%3d%%)\n",100*newb/s->buffer_size,100*min_fill/s->buffer_size); |
60 } | |
61 | |
62 int cache_read(cache_vars_t* s,unsigned char* buf,int size){ | |
63 int total=0; | |
64 while(size>0){ | |
65 int pos,newb,len; | |
2352 | 66 |
67 //printf("CACHE2_READ: 0x%X <= 0x%X <= 0x%X \n",s->min_filepos,s->read_filepos,s->max_filepos); | |
2322 | 68 |
2374 | 69 if(s->read_filepos>=s->max_filepos || s->read_filepos<s->min_filepos){ |
2352 | 70 // eof? |
71 if(s->eof) break; | |
72 // waiting for buffer fill... | |
73 usleep(READ_USLEEP_TIME); // 10ms | |
74 continue; // try again... | |
75 } | |
76 | |
2374 | 77 newb=s->max_filepos-s->read_filepos; // new bytes in the buffer |
2322 | 78 if(newb<min_fill) min_fill=newb; // statistics... |
79 | |
80 // printf("*** newb: %d bytes ***\n",newb); | |
2352 | 81 |
82 pos=s->read_filepos - s->offset; | |
83 if(pos<0) pos+=s->buffer_size; else | |
84 if(pos>=s->buffer_size) pos-=s->buffer_size; | |
85 | |
2322 | 86 if(newb>s->buffer_size-pos) newb=s->buffer_size-pos; // handle wrap... |
87 if(newb>size) newb=size; | |
88 | |
2352 | 89 // check: |
2371 | 90 if(s->read_filepos<s->min_filepos) mp_msg(MSGT_CACHE,MSGL_ERR,"Ehh. s->read_filepos<s->min_filepos !!! Report bug...\n"); |
2352 | 91 |
2322 | 92 // len=write(mem,newb) |
93 //printf("Buffer read: %d bytes\n",newb); | |
94 memcpy(buf,&s->buffer[pos],newb); | |
95 buf+=newb; | |
2352 | 96 len=newb; |
2322 | 97 // ... |
98 | |
99 s->read_filepos+=len; | |
100 size-=len; | |
101 total+=len; | |
102 | |
103 } | |
2352 | 104 cache_fill_status=100*(s->max_filepos-s->read_filepos)/s->buffer_size; |
2322 | 105 return total; |
106 } | |
107 | |
108 int cache_fill(cache_vars_t* s){ | |
7472
c4434bdf6e51
tons of warning fixes, also some 10l bugfixes, including Dominik's PVA bug
arpi
parents:
7204
diff
changeset
|
109 int back,back2,newb,space,len,pos; |
2374 | 110 off_t read=s->read_filepos; |
2322 | 111 |
2352 | 112 if(read<s->min_filepos || read>s->max_filepos){ |
113 // seek... | |
2371 | 114 mp_msg(MSGT_CACHE,MSGL_DBG2,"Out of boundaries... seeking to 0x%X \n",read); |
2352 | 115 s->offset= // FIXME!? |
116 s->min_filepos=s->max_filepos=read; // drop cache content :( | |
117 if(s->stream->eof) stream_reset(s->stream); | |
118 stream_seek(s->stream,read); | |
2371 | 119 mp_msg(MSGT_CACHE,MSGL_DBG2,"Seek done. new pos: 0x%X \n",(int)stream_tell(s->stream)); |
2352 | 120 } |
121 | |
2322 | 122 // calc number of back-bytes: |
123 back=read - s->min_filepos; | |
124 if(back<0) back=0; // strange... | |
125 if(back>s->back_size) back=s->back_size; | |
126 | |
127 // calc number of new bytes: | |
128 newb=s->max_filepos - read; | |
129 if(newb<0) newb=0; // strange... | |
130 | |
131 // calc free buffer space: | |
132 space=s->buffer_size - (newb+back); | |
133 | |
134 // calc bufferpos: | |
135 pos=s->max_filepos - s->offset; | |
136 if(pos>=s->buffer_size) pos-=s->buffer_size; // wrap-around | |
137 | |
138 if(space<s->fill_limit){ | |
139 // printf("Buffer is full (%d bytes free, limit: %d)\n",space,s->fill_limit); | |
140 return 0; // no fill... | |
141 } | |
142 | |
143 // printf("### read=0x%X back=%d newb=%d space=%d pos=%d\n",read,back,newb,space,pos); | |
144 | |
145 // reduce space if needed: | |
146 if(space>s->buffer_size-pos) space=s->buffer_size-pos; | |
147 | |
148 // if(space>32768) space=32768; // limit one-time block size | |
149 if(space>4*s->sector_size) space=4*s->sector_size; | |
150 | |
2352 | 151 // if(s->seek_lock) return 0; // FIXME |
152 | |
153 #if 1 | |
154 // back+newb+space <= buffer_size | |
155 back2=s->buffer_size-(space+newb); // max back size | |
156 if(s->min_filepos<(read-back2)) s->min_filepos=read-back2; | |
157 #else | |
2322 | 158 s->min_filepos=read-back; // avoid seeking-back to temp area... |
2352 | 159 #endif |
2322 | 160 |
161 // .... | |
162 //printf("Buffer fill: %d bytes of %d\n",space,s->buffer_size); | |
163 //len=stream_fill_buffer(s->stream); | |
164 //memcpy(&s->buffer[pos],s->stream->buffer,len); // avoid this extra copy! | |
165 // .... | |
2348 | 166 len=stream_read(s->stream,&s->buffer[pos],space); |
167 if(!len) s->eof=1; | |
2322 | 168 |
169 s->max_filepos+=len; | |
170 if(pos+len>=s->buffer_size){ | |
171 // wrap... | |
172 s->offset+=s->buffer_size; | |
173 } | |
174 | |
175 return len; | |
176 | |
177 } | |
178 | |
179 cache_vars_t* cache_init(int size,int sector){ | |
180 int num; | |
181 cache_vars_t* s=shmem_alloc(sizeof(cache_vars_t)); | |
182 memset(s,0,sizeof(cache_vars_t)); | |
183 num=size/sector; | |
184 s->buffer_size=num*sector; | |
185 s->sector_size=sector; | |
186 s->buffer=shmem_alloc(s->buffer_size); | |
187 s->fill_limit=8*sector; | |
188 s->back_size=size/2; | |
3562 | 189 s->prefill=size/20; // default: 5% |
2322 | 190 return s; |
191 } | |
192 | |
193 static void exit_sighandler(int x){ | |
194 // close stream | |
195 exit(0); | |
196 } | |
197 | |
4825
41d2da3bd082
Make blocking call in libmpdemux interuptable (only with new input,
albeu
parents:
3726
diff
changeset
|
198 int stream_enable_cache(stream_t *stream,int size,int min,int prefill){ |
3562 | 199 int ss=(stream->type==STREAMTYPE_VCD)?VCD_SECTOR_DATA:STREAM_BUFFER_SIZE; |
5991 | 200 cache_vars_t* s; |
7006
c0b490505298
disable cache if stream->fd<0 (no regular file/pipe but some special thing)
arpi
parents:
5991
diff
changeset
|
201 |
7204 | 202 if (stream->type==STREAMTYPE_STREAM && stream->fd < 0) { |
203 // The stream has no 'fd' behind it, so is non-cacheable | |
204 mp_msg(MSGT_CACHE,MSGL_STATUS,"\rThis stream is non-cacheable\n"); | |
205 return 1; | |
206 } | |
7006
c0b490505298
disable cache if stream->fd<0 (no regular file/pipe but some special thing)
arpi
parents:
5991
diff
changeset
|
207 |
5991 | 208 if(size<32*1024) size=32*1024; // 32kb min |
209 s=cache_init(size,ss); | |
3562 | 210 stream->cache_data=s; |
211 s->stream=stream; // callback | |
212 s->prefill=size*prefill; | |
213 | |
214 if((stream->cache_pid=fork())){ | |
215 // wait until cache is filled at least prefill_init % | |
5931 | 216 mp_msg(MSGT_CACHE,MSGL_V,"CACHE_PRE_INIT: %d [%d] %d pre:%d eof:%d \n", |
3600 | 217 s->min_filepos,s->read_filepos,s->max_filepos,min,s->eof); |
3562 | 218 while(s->read_filepos<s->min_filepos || s->max_filepos-s->read_filepos<min){ |
219 mp_msg(MSGT_CACHE,MSGL_STATUS,"\rCache fill: %5.2f%% (%d bytes) ", | |
3600 | 220 100.0*(float)(s->max_filepos-s->read_filepos)/(float)(s->buffer_size), |
3562 | 221 s->max_filepos-s->read_filepos |
222 ); | |
223 if(s->eof) break; // file is smaller than prefill size | |
4825
41d2da3bd082
Make blocking call in libmpdemux interuptable (only with new input,
albeu
parents:
3726
diff
changeset
|
224 if(mpdemux_check_interrupt(PREFILL_SLEEP_TIME)) |
41d2da3bd082
Make blocking call in libmpdemux interuptable (only with new input,
albeu
parents:
3726
diff
changeset
|
225 return 0; |
3562 | 226 } |
4825
41d2da3bd082
Make blocking call in libmpdemux interuptable (only with new input,
albeu
parents:
3726
diff
changeset
|
227 return 1; // parent exits |
3562 | 228 } |
229 | |
2322 | 230 // cache thread mainloop: |
231 signal(SIGTERM,exit_sighandler); // kill | |
232 while(1){ | |
3562 | 233 if(!cache_fill(s)){ |
2352 | 234 usleep(FILL_USLEEP_TIME); // idle |
2322 | 235 } |
2327 | 236 // cache_stats(s->cache_data); |
2322 | 237 } |
238 } | |
239 | |
240 int cache_stream_fill_buffer(stream_t *s){ | |
241 int len; | |
242 if(s->eof){ s->buf_pos=s->buf_len=0; return 0; } | |
243 if(!s->cache_pid) return stream_fill_buffer(s); | |
244 | |
2352 | 245 // cache_stats(s->cache_data); |
246 | |
2371 | 247 if(s->pos!=((cache_vars_t*)s->cache_data)->read_filepos) mp_msg(MSGT_CACHE,MSGL_ERR,"!!! read_filepos differs!!! report this bug...\n"); |
2327 | 248 |
2322 | 249 len=cache_read(s->cache_data,s->buffer, ((cache_vars_t*)s->cache_data)->sector_size); |
2352 | 250 //printf("cache_stream_fill_buffer->read -> %d\n",len); |
2327 | 251 |
2322 | 252 if(len<=0){ s->eof=1; s->buf_pos=s->buf_len=0; return 0; } |
253 s->buf_pos=0; | |
254 s->buf_len=len; | |
255 s->pos+=len; | |
256 // printf("[%d]",len);fflush(stdout); | |
257 return len; | |
258 | |
259 } | |
260 | |
2352 | 261 int cache_stream_seek_long(stream_t *stream,off_t pos){ |
262 cache_vars_t* s; | |
263 off_t newpos; | |
264 if(!stream->cache_pid) return stream_seek_long(stream,pos); | |
265 | |
266 s=stream->cache_data; | |
267 // s->seek_lock=1; | |
268 | |
2371 | 269 mp_msg(MSGT_CACHE,MSGL_DBG2,"CACHE2_SEEK: 0x%X <= 0x%X (0x%X) <= 0x%X \n",s->min_filepos,(int)pos,s->read_filepos,s->max_filepos); |
2322 | 270 |
2352 | 271 newpos=pos/s->sector_size; newpos*=s->sector_size; // align |
272 stream->pos=s->read_filepos=newpos; | |
273 s->eof=0; // !!!!!!! | |
274 | |
275 cache_stream_fill_buffer(stream); | |
2322 | 276 |
2352 | 277 pos-=newpos; |
278 if(pos>=0 && pos<=stream->buf_len){ | |
279 stream->buf_pos=pos; // byte position in sector | |
280 return 1; | |
281 } | |
282 | |
283 // stream->buf_pos=stream->buf_len=0; | |
284 // return 1; | |
285 | |
2371 | 286 #ifdef _LARGEFILE_SOURCE |
287 mp_msg(MSGT_CACHE,MSGL_V,"cache_stream_seek: WARNING! Can't seek to 0x%llX !\n",(long long)(pos+newpos)); | |
288 #else | |
289 mp_msg(MSGT_CACHE,MSGL_V,"cache_stream_seek: WARNING! Can't seek to 0x%X !\n",(pos+newpos)); | |
290 #endif | |
2322 | 291 return 0; |
292 } | |
293 | |
294 #endif |