aria 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #------------------------------------------------------------------------------
  2. # $File: aria,v 1.2 2024/06/10 23:09:52 christos Exp $
  3. # aria: file(1) magic for download manager aria
  4. # URL: https://de.wikipedia.org/wiki/Aria_(Software)
  5. # Reference: https://github.com/aria2/aria2/blob/master/doc/manual-src/en/technical-notes.rst
  6. # From: Joerg Jenderek
  7. # Note: only version 1 suited
  8. # check for valid version one
  9. 0 beshort 0x0001
  10. # skip most uncompressed DEGAS med-res bitmap *.PI2 and GEM bitmap (v1) *.IMG
  11. # by test for valid infoHashCheck extension
  12. >2 ubelong&0xffFFffFE 0x00000000
  13. # skip DEGAS med-res bitmap DIAGRAM1.PI2 by test for valid length of download
  14. >>(6.L+14) ubequad >0
  15. >>>0 use aria
  16. 0 name aria
  17. # version; (0x0000) or (0x0001); for 0 all multi-byte are in host byte order. For 1 big endian
  18. >0 beshort x aria2 control file, version %u
  19. #!:mime application/octet-stream
  20. !:mime application/x-aria
  21. !:ext aria2
  22. # EXTension; if EXT[3]&1 == 1 checks whether saved InfoHash and current downloading the same; infoHashCheck extension
  23. >2 ubelong !0 \b, infoHashCheck %#x
  24. # info hash length like: 0 14h
  25. >6 ubelong !0 \b, %#x bytes info hash
  26. # info hash; BitTorrent InfoHash
  27. >>10 ubequad x %#16.16llx...
  28. # piece length; the length of the piece like: 400h 100000h
  29. >(6.L+10) ubelong x \b, piece length 0x%x
  30. # total length; the total length of the download
  31. >(6.L+14) ubequad x \b, total length %llu
  32. #>(6.L+14) ubequad x \b, total length %#llx
  33. # upload length; the uploaded length of download like: 0 400h
  34. >(6.L+22) ubequad !0 \b, upload length %#llx
  35. # bitfield length; the length of bitfield like: 4 6 Ah 10h 13h 167h
  36. >(6.L+30) ubelong x \b, %#x bytes bitfield
  37. # bitfield; bitfield which represents current download progress
  38. >(6.L+34) ubequad !0 %#llx...