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
|
2322
|
11
|
|
12 #include <stdio.h>
|
|
13 #include <stdlib.h>
|
|
14 #include <string.h>
|
|
15 #include <signal.h>
|
|
16
|
|
17 #include "../linux/shmem.h"
|
|
18
|
2371
|
19 #include "mp_msg.h"
|
|
20
|
2322
|
21 #include "stream.h"
|
|
22
|
|
23 int stream_fill_buffer(stream_t *s);
|
|
24 int stream_seek_long(stream_t *s,off_t pos);
|
|
25
|
|
26
|
|
27 typedef struct {
|
|
28 // constats:
|
|
29 unsigned char *buffer; // base pointer of the alllocated buffer memory
|
2352
|
30 int buffer_size; // size of the alllocated buffer memory
|
|
31 int sector_size; // size of a single sector (2048/2324)
|
|
32 int back_size; // we should keep back_size amount of old bytes for backward seek
|
|
33 int fill_limit; // we should fill buffer only if space>=fill_limit
|
2374
|
34 // filler's pointers:
|
|
35 int eof;
|
|
36 off_t min_filepos; // buffer contain only a part of the file, from min-max pos
|
|
37 off_t max_filepos;
|
|
38 off_t offset; // filepos <-> bufferpos offset value (filepos of the buffer's first byte)
|
2322
|
39 // reader's pointers:
|
2374
|
40 off_t read_filepos;
|
2322
|
41 // commands/locking:
|
2352
|
42 // int seek_lock; // 1 if we will seek/reset buffer, 2 if we are ready for cmd
|
|
43 // int fifo_flag; // 1 if we should use FIFO to notice cache about buffer reads.
|
2322
|
44 // callback
|
|
45 stream_t* stream;
|
|
46 } cache_vars_t;
|
|
47
|
2352
|
48 static int min_fill=0;
|
|
49 static int sleep_flag=0;
|
|
50
|
|
51 int cache_fill_status=0;
|
2322
|
52
|
|
53 void cache_stats(cache_vars_t* s){
|
|
54 int newb=s->max_filepos-s->read_filepos; // new bytes in the buffer
|
|
55 printf("0x%06X [0x%06X] 0x%06X ",s->min_filepos,s->read_filepos,s->max_filepos);
|
|
56 printf("%3d %% (%3d%%)\n",100*newb/s->buffer_size,100*min_fill/s->buffer_size);
|
|
57 }
|
|
58
|
|
59 int cache_read(cache_vars_t* s,unsigned char* buf,int size){
|
|
60 int total=0;
|
|
61 while(size>0){
|
|
62 int pos,newb,len;
|
2352
|
63
|
|
64 //printf("CACHE2_READ: 0x%X <= 0x%X <= 0x%X \n",s->min_filepos,s->read_filepos,s->max_filepos);
|
2322
|
65
|
2374
|
66 if(s->read_filepos>=s->max_filepos || s->read_filepos<s->min_filepos){
|
2352
|
67 // eof?
|
|
68 if(s->eof) break;
|
|
69 // waiting for buffer fill...
|
|
70 usleep(READ_USLEEP_TIME); // 10ms
|
|
71 continue; // try again...
|
|
72 }
|
|
73
|
2374
|
74 newb=s->max_filepos-s->read_filepos; // new bytes in the buffer
|
2322
|
75 if(newb<min_fill) min_fill=newb; // statistics...
|
|
76
|
|
77 // printf("*** newb: %d bytes ***\n",newb);
|
2352
|
78
|
|
79 pos=s->read_filepos - s->offset;
|
|
80 if(pos<0) pos+=s->buffer_size; else
|
|
81 if(pos>=s->buffer_size) pos-=s->buffer_size;
|
|
82
|
2322
|
83 if(newb>s->buffer_size-pos) newb=s->buffer_size-pos; // handle wrap...
|
|
84 if(newb>size) newb=size;
|
|
85
|
2352
|
86 // check:
|
2371
|
87 if(s->read_filepos<s->min_filepos) mp_msg(MSGT_CACHE,MSGL_ERR,"Ehh. s->read_filepos<s->min_filepos !!! Report bug...\n");
|
2352
|
88
|
2322
|
89 // len=write(mem,newb)
|
|
90 //printf("Buffer read: %d bytes\n",newb);
|
|
91 memcpy(buf,&s->buffer[pos],newb);
|
|
92 buf+=newb;
|
2352
|
93 len=newb;
|
2322
|
94 // ...
|
|
95
|
|
96 s->read_filepos+=len;
|
|
97 size-=len;
|
|
98 total+=len;
|
|
99
|
|
100 }
|
2352
|
101 cache_fill_status=100*(s->max_filepos-s->read_filepos)/s->buffer_size;
|
2322
|
102 return total;
|
|
103 }
|
|
104
|
|
105 int cache_fill(cache_vars_t* s){
|
2374
|
106 int back,back2,newb,space,len,pos,endpos;
|
|
107 off_t read=s->read_filepos;
|
2322
|
108
|
2352
|
109 if(read<s->min_filepos || read>s->max_filepos){
|
|
110 // seek...
|
2371
|
111 mp_msg(MSGT_CACHE,MSGL_DBG2,"Out of boundaries... seeking to 0x%X \n",read);
|
2352
|
112 s->offset= // FIXME!?
|
|
113 s->min_filepos=s->max_filepos=read; // drop cache content :(
|
|
114 if(s->stream->eof) stream_reset(s->stream);
|
|
115 stream_seek(s->stream,read);
|
2371
|
116 mp_msg(MSGT_CACHE,MSGL_DBG2,"Seek done. new pos: 0x%X \n",(int)stream_tell(s->stream));
|
2352
|
117 }
|
|
118
|
2322
|
119 // calc number of back-bytes:
|
|
120 back=read - s->min_filepos;
|
|
121 if(back<0) back=0; // strange...
|
|
122 if(back>s->back_size) back=s->back_size;
|
|
123
|
|
124 // calc number of new bytes:
|
|
125 newb=s->max_filepos - read;
|
|
126 if(newb<0) newb=0; // strange...
|
|
127
|
|
128 // calc free buffer space:
|
|
129 space=s->buffer_size - (newb+back);
|
|
130
|
|
131 // calc bufferpos:
|
|
132 pos=s->max_filepos - s->offset;
|
|
133 if(pos>=s->buffer_size) pos-=s->buffer_size; // wrap-around
|
|
134
|
|
135 if(space<s->fill_limit){
|
|
136 // printf("Buffer is full (%d bytes free, limit: %d)\n",space,s->fill_limit);
|
|
137 return 0; // no fill...
|
|
138 }
|
|
139
|
|
140 // printf("### read=0x%X back=%d newb=%d space=%d pos=%d\n",read,back,newb,space,pos);
|
|
141
|
|
142 // reduce space if needed:
|
|
143 if(space>s->buffer_size-pos) space=s->buffer_size-pos;
|
|
144
|
|
145 // if(space>32768) space=32768; // limit one-time block size
|
|
146 if(space>4*s->sector_size) space=4*s->sector_size;
|
|
147
|
2352
|
148 // if(s->seek_lock) return 0; // FIXME
|
|
149
|
|
150 #if 1
|
|
151 // back+newb+space <= buffer_size
|
|
152 back2=s->buffer_size-(space+newb); // max back size
|
|
153 if(s->min_filepos<(read-back2)) s->min_filepos=read-back2;
|
|
154 #else
|
2322
|
155 s->min_filepos=read-back; // avoid seeking-back to temp area...
|
2352
|
156 #endif
|
2322
|
157
|
|
158 // ....
|
|
159 //printf("Buffer fill: %d bytes of %d\n",space,s->buffer_size);
|
|
160 //len=stream_fill_buffer(s->stream);
|
|
161 //memcpy(&s->buffer[pos],s->stream->buffer,len); // avoid this extra copy!
|
|
162 // ....
|
2348
|
163 len=stream_read(s->stream,&s->buffer[pos],space);
|
|
164 if(!len) s->eof=1;
|
2322
|
165
|
|
166 s->max_filepos+=len;
|
|
167 if(pos+len>=s->buffer_size){
|
|
168 // wrap...
|
|
169 s->offset+=s->buffer_size;
|
|
170 }
|
|
171
|
|
172 return len;
|
|
173
|
|
174 }
|
|
175
|
|
176 cache_vars_t* cache_init(int size,int sector){
|
|
177 int num;
|
|
178 cache_vars_t* s=shmem_alloc(sizeof(cache_vars_t));
|
|
179 memset(s,0,sizeof(cache_vars_t));
|
|
180 num=size/sector;
|
|
181 s->buffer_size=num*sector;
|
|
182 s->sector_size=sector;
|
|
183 s->buffer=shmem_alloc(s->buffer_size);
|
|
184 s->fill_limit=8*sector;
|
|
185 s->back_size=size/2;
|
|
186 return s;
|
|
187 }
|
|
188
|
|
189 static void exit_sighandler(int x){
|
|
190 // close stream
|
|
191 exit(0);
|
|
192 }
|
|
193
|
|
194 void stream_enable_cache(stream_t *s,int size){
|
|
195 int ss=(s->type==STREAMTYPE_VCD)?VCD_SECTOR_DATA:STREAM_BUFFER_SIZE;
|
|
196 s->cache_data=cache_init(size,ss);
|
|
197 ((cache_vars_t*)s->cache_data)->stream=s; // callback
|
|
198 if((s->cache_pid=fork())) return; // parent exits
|
|
199 // cache thread mainloop:
|
|
200 signal(SIGTERM,exit_sighandler); // kill
|
|
201 while(1){
|
|
202 if(!cache_fill(s->cache_data)){
|
2352
|
203 usleep(FILL_USLEEP_TIME); // idle
|
2322
|
204 }
|
2327
|
205 // cache_stats(s->cache_data);
|
2322
|
206 }
|
|
207 }
|
|
208
|
|
209 int cache_stream_fill_buffer(stream_t *s){
|
|
210 int len;
|
|
211 if(s->eof){ s->buf_pos=s->buf_len=0; return 0; }
|
|
212 if(!s->cache_pid) return stream_fill_buffer(s);
|
|
213
|
2352
|
214 // cache_stats(s->cache_data);
|
|
215
|
2371
|
216 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
|
217
|
2322
|
218 len=cache_read(s->cache_data,s->buffer, ((cache_vars_t*)s->cache_data)->sector_size);
|
2352
|
219 //printf("cache_stream_fill_buffer->read -> %d\n",len);
|
2327
|
220
|
2322
|
221 if(len<=0){ s->eof=1; s->buf_pos=s->buf_len=0; return 0; }
|
|
222 s->buf_pos=0;
|
|
223 s->buf_len=len;
|
|
224 s->pos+=len;
|
|
225 // printf("[%d]",len);fflush(stdout);
|
|
226 return len;
|
|
227
|
|
228 }
|
|
229
|
2352
|
230 int cache_stream_seek_long(stream_t *stream,off_t pos){
|
|
231 cache_vars_t* s;
|
|
232 off_t newpos;
|
|
233 if(!stream->cache_pid) return stream_seek_long(stream,pos);
|
|
234
|
|
235 s=stream->cache_data;
|
|
236 // s->seek_lock=1;
|
|
237
|
2371
|
238 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
|
239
|
2352
|
240 newpos=pos/s->sector_size; newpos*=s->sector_size; // align
|
|
241 stream->pos=s->read_filepos=newpos;
|
|
242 s->eof=0; // !!!!!!!
|
|
243
|
|
244 cache_stream_fill_buffer(stream);
|
2322
|
245
|
2352
|
246 pos-=newpos;
|
|
247 if(pos>=0 && pos<=stream->buf_len){
|
|
248 stream->buf_pos=pos; // byte position in sector
|
|
249 return 1;
|
|
250 }
|
|
251
|
|
252 // stream->buf_pos=stream->buf_len=0;
|
|
253 // return 1;
|
|
254
|
2371
|
255 #ifdef _LARGEFILE_SOURCE
|
|
256 mp_msg(MSGT_CACHE,MSGL_V,"cache_stream_seek: WARNING! Can't seek to 0x%llX !\n",(long long)(pos+newpos));
|
|
257 #else
|
|
258 mp_msg(MSGT_CACHE,MSGL_V,"cache_stream_seek: WARNING! Can't seek to 0x%X !\n",(pos+newpos));
|
|
259 #endif
|
2322
|
260 return 0;
|
|
261 }
|
|
262
|
|
263 #endif
|