ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Algorithm-FEC/FEC.xs
(Generate patch)

Comparing Algorithm-FEC/FEC.xs (file contents):
Revision 1.4 by root, Sat Sep 13 20:35:49 2003 UTC vs.
Revision 1.9 by root, Sun Dec 23 15:32:14 2007 UTC

26 26
27 void **b_addr; 27 void **b_addr;
28 void **b_mmap; 28 void **b_mmap;
29 int *b_sz; 29 int *b_sz;
30 SV **b_sv; 30 SV **b_sv;
31 int *idx; /* the decoding indices */
31} *Algorithm__FEC; 32} *Algorithm__FEC;
32 33
33static void 34static void
34chk_array (SV *sv, int size, const char *func, const char *var) 35chk_array (SV *sv, int size, const char *func, const char *var)
35{ 36{
36 if (!SvROK (sv) 37 if (!SvROK (sv)
37 || SvTYPE (SvRV (sv)) != SVt_PVAV 38 || SvTYPE (SvRV (sv)) != SVt_PVAV
38 || av_len ((AV *)SvRV (sv)) != size - 1) 39 || av_len ((AV *)SvRV (sv)) != size - 1)
39 croak ("%s: %s must be a reference to an array of size %d", size); 40 croak ("%s: %s (%s) must be a reference to an array of size %d", func, SvPV_nolen (sv), var, size);
40} 41}
41 42
42static void 43static void
43free_files (struct state *self) 44free_files (struct state *self)
44{ 45{
53 54
54 Safefree (self->b_addr); self->b_addr = 0; 55 Safefree (self->b_addr); self->b_addr = 0;
55 Safefree (self->b_mmap); self->b_mmap = 0; 56 Safefree (self->b_mmap); self->b_mmap = 0;
56 Safefree (self->b_sz ); self->b_sz = 0; 57 Safefree (self->b_sz ); self->b_sz = 0;
57 Safefree (self->b_sv ); self->b_sv = 0; 58 Safefree (self->b_sv ); self->b_sv = 0;
59 Safefree (self->idx ); self->idx = 0;
58} 60}
59 61
60static void 62static void
61realloc_files (struct state *self) 63realloc_files (struct state *self)
62{ 64{
179 RETVAL->ep = encoded_packets; 181 RETVAL->ep = encoded_packets;
180 OUTPUT: 182 OUTPUT:
181 RETVAL 183 RETVAL
182 184
183void 185void
184set_blocks (self, blocks) 186set_encode_blocks (self, blocks)
185 Algorithm::FEC self 187 Algorithm::FEC self
186 SV * blocks 188 SV * blocks
187 CODE: 189 CODE:
188 190
189 free_files (self); 191 free_files (self);
190 192
191 if (SvOK (blocks)) 193 if (SvOK (blocks))
192 { 194 {
193 chk_array (blocks, self->dp, "encode", "blocks"); 195 chk_array (blocks, self->dp, "set_encode_blocks", "blocks");
194 open_files (self, (AV *)SvRV (blocks), 0); 196 open_files (self, (AV *)SvRV (blocks), 0);
195 } 197 }
196 198
197SV * 199SV *
198encode (self, block_index) 200encode (self, block_index)
203 if (block_index < 0 || self->ep <= block_index) 205 if (block_index < 0 || self->ep <= block_index)
204 croak ("encode: block_index %d out of range, must be 0 <= block_index < %d", 206 croak ("encode: block_index %d out of range, must be 0 <= block_index < %d",
205 block_index, self->ep); 207 block_index, self->ep);
206 208
207 if (!self->b_addr) 209 if (!self->b_addr)
208 croak ("no blocks specified by a preceding call to set_blocks"); 210 croak ("no blocks specified by a preceding call to set_encode_blocks");
209 211
210 force_addrs (self, self->dp); 212 force_addrs (self, self->dp);
211 213
212 RETVAL = newSV (self->sz); 214 RETVAL = newSV (self->sz);
213 if (!RETVAL) 215 if (!RETVAL)
214 croak ("unable to allocate result block (out of memory)"); 216 croak ("unable to allocate result block (out of memory)");
217
215 SvPOK_only (RETVAL); 218 SvPOK_only (RETVAL);
216 SvCUR_set (RETVAL, self->sz); 219 SvCUR_set (RETVAL, self->sz);
217 220
218 self->imp->fec_encode (self->code, self->b_addr, 221 self->imp->fec_encode (self->code, self->b_addr,
219 SvPVX (RETVAL), block_index, self->sz); 222 SvPVX (RETVAL), block_index, self->sz);
220 223
221 OUTPUT: 224 OUTPUT:
222 RETVAL 225 RETVAL
223 226
224void 227void
225decode (self, blocks, indices) 228set_decode_blocks (self, blocks, indices)
226 Algorithm::FEC self 229 Algorithm::FEC self
227 SV * blocks 230 SV * blocks
228 SV * indices 231 SV * indices
232 ALIAS:
233 shuffle = 1
229 CODE: 234 CODE:
230{ 235{
231 int i; 236 int i;
232 int *idx; 237 int *idx;
233 238
234 chk_array (blocks, self->dp, "decode", "blocks"); 239 chk_array (blocks, self->dp, "set_decode_blocks", "blocks");
235 chk_array (indices, self->dp, "decode", "indices"); 240 chk_array (indices, self->dp, "set_decode_blocks", "indices");
236 open_files (self, (AV *)SvRV (blocks), 1);
237
238 force_addrs (self, self->dp);
239 241
240 Newz (0, idx, self->dp, int); 242 Newz (0, idx, self->dp, int);
241 243
242 /* copy and check */ 244 /* copy and check */
243 for (i = 0; i < self->dp; i++) 245 for (i = 0; i < self->dp; i++)
244 { 246 {
245 SV *a = *av_fetch ((AV *)SvRV (indices), i, 1); 247 idx[i] = SvIV (*av_fetch ((AV *)SvRV (indices), i, 1));
246 idx[i] = SvIV (a);
247 sv_setiv (a, i);
248 248
249 if (idx[i] < 0 || idx[i] >= self->ep) 249 if (idx[i] < 0 || idx[i] >= self->ep)
250 { 250 {
251 Safefree (idx); 251 Safefree (idx);
252 croak ("index %d in array out of bounds (0 <= %d < %d != true)", 252 croak ("index %d in array out of bounds (0 <= %d < %d != true)",
259 * so we know the order. 259 * so we know the order.
260 */ 260 */
261 for (i = 0; i < self->dp; i++) 261 for (i = 0; i < self->dp; i++)
262 while (idx[i] < self->dp && idx[i] != i) 262 while (idx[i] < self->dp && idx[i] != i)
263 { 263 {
264 SV **a, **b; 264 SV **a, **b, **e, **f;
265 int d; 265 int d;
266 void *p; 266 void *p;
267 SV *s; 267 SV *s;
268 int c = idx[i]; 268 int j = idx[i];
269 269
270 if (idx[c] == c) 270 if (idx[j] == j)
271 { 271 {
272 Safefree (idx); 272 Safefree (idx);
273 croak ("error while shuffling, duplicate indices? (idx[i]%d i%d idx[c]%d c%d", idx[i],i,idx[c],c); 273 croak ("error while shuffling, duplicate indices?");
274 } 274 }
275 275
276 a = av_fetch ((AV *)SvRV (indices), i, 1); 276 a = av_fetch ((AV *)SvRV (indices), i, 1);
277 b = av_fetch ((AV *)SvRV (indices), c, 1); 277 b = av_fetch ((AV *)SvRV (indices), j, 1);
278 e = av_fetch ((AV *)SvRV (blocks ), i, 1);
279 f = av_fetch ((AV *)SvRV (blocks ), j, 1);
278 280
279 d = idx[i]; idx[i] = idx[c]; idx[c] = d; 281 d = idx[i]; idx[i] = idx[j]; idx[j] = d;
280 p = self->b_addr[i]; self->b_addr[i] = self->b_addr[c]; self->b_addr[c] = p;
281 s = *a; *a = *b; *b = s; 282 s = *a; *a = *b; *b = s;
283 s = *e; *e = *f; *f = s;
282 } 284 }
283 285
286 if (ix)
287 Safefree (idx);
288 else
289 {
290 open_files (self, (AV *)SvRV (blocks), 1);
291 self->idx = idx;
292 }
293}
294
295void
296decode (self)
297 Algorithm::FEC self
298 CODE:
299
300 if (!self->idx)
301 croak ("index array must be set by a prior call to set_decode_blocks");
302
303 force_addrs (self, self->dp);
284 self->imp->fec_decode (self->code, self->b_addr, idx, self->sz); 304 self->imp->fec_decode (self->code, self->b_addr, self->idx, self->sz);
285
286 Safefree (idx);
287
288 free_files (self); 305 free_files (self);
289}
290 306
291void 307void
292copy (self, srcblock, dstblock) 308copy (self, srcblock, dstblock)
293 Algorithm::FEC self 309 Algorithm::FEC self
294 SV * srcblock 310 SV * srcblock

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines