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
|
3562
|
11 #define PREFILL_USLEEP_TIME 200000
|
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 static int sleep_flag=0;
|
|
54
|
|
55 int cache_fill_status=0;
|
2322
|
56
|
|
57 void cache_stats(cache_vars_t* s){
|
|
58 int newb=s->max_filepos-s->read_filepos; // new bytes in the buffer
|
|
59 printf("0x%06X [0x%06X] 0x%06X ",s->min_filepos,s->read_filepos,s->max_filepos);
|
|
60 printf("%3d %% (%3d%%)\n",100*newb/s->buffer_size,100*min_fill/s->buffer_size);
|
|
61 }
|
|
62
|
|
63 int cache_read(cache_vars_t* s,unsigned char* buf,int size){
|
|
64 int total=0;
|
|
65 while(size>0){
|
|
66 int pos,newb,len;
|
2352
|
67
|
|
68 //printf("CACHE2_READ: 0x%X <= 0x%X <= 0x%X \n",s->min_filepos,s->read_filepos,s->max_filepos);
|
2322
|
69
|
2374
|
70 if(s->read_filepos>=s->max_filepos || s->read_filepos<s->min_filepos){
|
2352
|
71 // eof?
|
|
72 if(s->eof) break;
|
|
73 // waiting for buffer fill...
|
|
74 usleep(READ_USLEEP_TIME); // 10ms
|
|
75 continue; // try again...
|
|
76 }
|
|
77
|
2374
|
78 newb=s->max_filepos-s->read_filepos; // new bytes in the buffer
|
2322
|
79 if(newb<min_fill) min_fill=newb; // statistics...
|
|
80
|
|
81 // printf("*** newb: %d bytes ***\n",newb);
|
2352
|
82
|
|
83 pos=s->read_filepos - s->offset;
|
|
84 if(pos<0) pos+=s->buffer_size; else
|
|
85 if(pos>=s->buffer_size) pos-=s->buffer_size;
|
|
86
|
2322
|
87 if(newb>s->buffer_size-pos) newb=s->buffer_size-pos; // handle wrap...
|
|
88 if(newb>size) newb=size;
|
|
89
|
2352
|
90 // check:
|
2371
|
91 if(s->read_filepos<s->min_filepos) mp_msg(MSGT_CACHE,MSGL_ERR,"Ehh. s->read_filepos<s->min_filepos !!! Report bug...\n");
|
2352
|
92
|
2322
|
93 // len=write(mem,newb)
|
|
94 //printf("Buffer read: %d bytes\n",newb);
|
|
95 memcpy(buf,&s->buffer[pos],newb);
|
|
96 buf+=newb;
|
2352
|
97 len=newb;
|
2322
|
98 // ...
|
|
99
|
|
100 s->read_filepos+=len;
|
|
101 size-=len;
|
|
102 total+=len;
|
|
103
|
|
104 }
|
2352
|
105 cache_fill_status=100*(s->max_filepos-s->read_filepos)/s->buffer_size;
|
2322
|
106 return total;
|
|
107 }
|
|
108
|
|
109 int cache_fill(cache_vars_t* s){
|
2374
|
110 int back,back2,newb,space,len,pos,endpos;
|
|
111 off_t read=s->read_filepos;
|
2322
|
112
|
2352
|
113 if(read<s->min_filepos || read>s->max_filepos){
|
|
114 // seek...
|
2371
|
115 mp_msg(MSGT_CACHE,MSGL_DBG2,"Out of boundaries... seeking to 0x%X \n",read);
|
2352
|
116 s->offset= // FIXME!?
|
|
117 s->min_filepos=s->max_filepos=read; // drop cache content :(
|
|
118 if(s->stream->eof) stream_reset(s->stream);
|
|
119 stream_seek(s->stream,read);
|
2371
|
120 mp_msg(MSGT_CACHE,MSGL_DBG2,"Seek done. new pos: 0x%X \n",(int)stream_tell(s->stream));
|
2352
|
121 }
|
|
122
|
2322
|
123 // calc number of back-bytes:
|
|
124 back=read - s->min_filepos;
|
|
125 if(back<0) back=0; // strange...
|
|
126 if(back>s->back_size) back=s->back_size;
|
|
127
|
|
128 // calc number of new bytes:
|
|
129 newb=s->max_filepos - read;
|
|
130 if(newb<0) newb=0; // strange...
|
|
131
|
|
132 // calc free buffer space:
|
|
133 space=s->buffer_size - (newb+back);
|
|
134
|
|
135 // calc bufferpos:
|
|
136 pos=s->max_filepos - s->offset;
|
|
137 if(pos>=s->buffer_size) pos-=s->buffer_size; // wrap-around
|
|
138
|
|
139 if(space<s->fill_limit){
|
|
140 // printf("Buffer is full (%d bytes free, limit: %d)\n",space,s->fill_limit);
|
|
141 return 0; // no fill...
|
|
142 }
|
|
143
|
|
144 // printf("### read=0x%X back=%d newb=%d space=%d pos=%d\n",read,back,newb,space,pos);
|
|
145
|
|
146 // reduce space if needed:
|
|
147 if(space>s->buffer_size-pos) space=s->buffer_size-pos;
|
|
148
|
|
149 // if(space>32768) space=32768; // limit one-time block size
|
|
150 if(space>4*s->sector_size) space=4*s->sector_size;
|
|
151
|
2352
|
152 // if(s->seek_lock) return 0; // FIXME
|
|
153
|
|
154 #if 1
|
|
155 // back+newb+space <= buffer_size
|
|
156 back2=s->buffer_size-(space+newb); // max back size
|
|
157 if(s->min_filepos<(read-back2)) s->min_filepos=read-back2;
|
|
158 #else
|
2322
|
159 s->min_filepos=read-back; // avoid seeking-back to temp area...
|
2352
|
160 #endif
|
2322
|
161
|
|
162 // ....
|
|
163 //printf("Buffer fill: %d bytes of %d\n",space,s->buffer_size);
|
|
164 //len=stream_fill_buffer(s->stream);
|
|
165 //memcpy(&s->buffer[pos],s->stream->buffer,len); // avoid this extra copy!
|
|
166 // ....
|
2348
|
167 len=stream_read(s->stream,&s->buffer[pos],space);
|
|
168 if(!len) s->eof=1;
|
2322
|
169
|
|
170 s->max_filepos+=len;
|
|
171 if(pos+len>=s->buffer_size){
|
|
172 // wrap...
|
|
173 s->offset+=s->buffer_size;
|
|
174 }
|
|
175
|
|
176 return len;
|
|
177
|
|
178 }
|
|
179
|
|
180 cache_vars_t* cache_init(int size,int sector){
|
|
181 int num;
|
|
182 cache_vars_t* s=shmem_alloc(sizeof(cache_vars_t));
|
|
183 memset(s,0,sizeof(cache_vars_t));
|
|
184 num=size/sector;
|
|
185 s->buffer_size=num*sector;
|
|
186 s->sector_size=sector;
|
|
187 s->buffer=shmem_alloc(s->buffer_size);
|
|
188 s->fill_limit=8*sector;
|
|
189 s->back_size=size/2;
|
3562
|
190 s->prefill=size/20; // default: 5%
|
2322
|
191 return s;
|
|
192 }
|
|
193
|
|
194 static void exit_sighandler(int x){
|
|
195 // close stream
|
|
196 exit(0);
|
|
197 }
|
|
198
|
3600
|
199 void stream_enable_cache(stream_t *stream,int size,int min,int prefill){
|
3562
|
200 int ss=(stream->type==STREAMTYPE_VCD)?VCD_SECTOR_DATA:STREAM_BUFFER_SIZE;
|
|
201 cache_vars_t* s=cache_init(size,ss);
|
|
202 stream->cache_data=s;
|
|
203 s->stream=stream; // callback
|
|
204 s->prefill=size*prefill;
|
|
205
|
|
206 if((stream->cache_pid=fork())){
|
|
207 // wait until cache is filled at least prefill_init %
|
3600
|
208 printf("CACHE_PRE_INIT: %d [%d] %d pre:%d eof:%d \n",
|
|
209 s->min_filepos,s->read_filepos,s->max_filepos,min,s->eof);
|
3562
|
210 while(s->read_filepos<s->min_filepos || s->max_filepos-s->read_filepos<min){
|
|
211 mp_msg(MSGT_CACHE,MSGL_STATUS,"\rCache fill: %5.2f%% (%d bytes) ",
|
3600
|
212 100.0*(float)(s->max_filepos-s->read_filepos)/(float)(s->buffer_size),
|
3562
|
213 s->max_filepos-s->read_filepos
|
|
214 );
|
|
215 if(s->eof) break; // file is smaller than prefill size
|
|
216 usleep(PREFILL_USLEEP_TIME);
|
|
217 }
|
|
218 return; // parent exits
|
|
219 }
|
|
220
|
2322
|
221 // cache thread mainloop:
|
|
222 signal(SIGTERM,exit_sighandler); // kill
|
|
223 while(1){
|
3562
|
224 if(!cache_fill(s)){
|
2352
|
225 usleep(FILL_USLEEP_TIME); // idle
|
2322
|
226 }
|
2327
|
227 // cache_stats(s->cache_data);
|
2322
|
228 }
|
|
229 }
|
|
230
|
|
231 int cache_stream_fill_buffer(stream_t *s){
|
|
232 int len;
|
|
233 if(s->eof){ s->buf_pos=s->buf_len=0; return 0; }
|
|
234 if(!s->cache_pid) return stream_fill_buffer(s);
|
|
235
|
2352
|
236 // cache_stats(s->cache_data);
|
|
237
|
2371
|
238 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
|
239
|
2322
|
240 len=cache_read(s->cache_data,s->buffer, ((cache_vars_t*)s->cache_data)->sector_size);
|
2352
|
241 //printf("cache_stream_fill_buffer->read -> %d\n",len);
|
2327
|
242
|
2322
|
243 if(len<=0){ s->eof=1; s->buf_pos=s->buf_len=0; return 0; }
|
|
244 s->buf_pos=0;
|
|
245 s->buf_len=len;
|
|
246 s->pos+=len;
|
|
247 // printf("[%d]",len);fflush(stdout);
|
|
248 return len;
|
|
249
|
|
250 }
|
|
251
|
2352
|
252 int cache_stream_seek_long(stream_t *stream,off_t pos){
|
|
253 cache_vars_t* s;
|
|
254 off_t newpos;
|
|
255 if(!stream->cache_pid) return stream_seek_long(stream,pos);
|
|
256
|
|
257 s=stream->cache_data;
|
|
258 // s->seek_lock=1;
|
|
259
|
2371
|
260 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
|
261
|
2352
|
262 newpos=pos/s->sector_size; newpos*=s->sector_size; // align
|
|
263 stream->pos=s->read_filepos=newpos;
|
|
264 s->eof=0; // !!!!!!!
|
|
265
|
|
266 cache_stream_fill_buffer(stream);
|
2322
|
267
|
2352
|
268 pos-=newpos;
|
|
269 if(pos>=0 && pos<=stream->buf_len){
|
|
270 stream->buf_pos=pos; // byte position in sector
|
|
271 return 1;
|
|
272 }
|
|
273
|
|
274 // stream->buf_pos=stream->buf_len=0;
|
|
275 // return 1;
|
|
276
|
2371
|
277 #ifdef _LARGEFILE_SOURCE
|
|
278 mp_msg(MSGT_CACHE,MSGL_V,"cache_stream_seek: WARNING! Can't seek to 0x%llX !\n",(long long)(pos+newpos));
|
|
279 #else
|
|
280 mp_msg(MSGT_CACHE,MSGL_V,"cache_stream_seek: WARNING! Can't seek to 0x%X !\n",(pos+newpos));
|
|
281 #endif
|
2322
|
282 return 0;
|
|
283 }
|
|
284
|
|
285 #endif
|