TODO 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. Stuff that needs to be done and wishlist:
  2. These are in no particular order.
  3. Some might be dupes, some might be done already.
  4. - Other archivers: perhaps tar(.gz|.bz2), RPM, ARJ, etc. These are less
  5. important, since streaming archives aren't of much value to games (which
  6. is why zipfiles are king: random access), but it could have uses for, say,
  7. an installer/updater.
  8. - Stack allocate in stripAppleBundle() (platform/unix.c) instead of calloc().
  9. - Reduce malloc() pressure all over the place. We fragment memory like mad.
  10. - macclassic.c :
  11. "/* (Hmm. Default behaviour is broken in the base library. :) ) */"
  12. - Platforms to port to: Amiga (needs platform driver), DOS4GW (platform driver).
  13. - profile string list interpolation.
  14. - We have two different ways to find dir entries in zip.c.
  15. - Do symlinks in zip archiver work when they point to dirs?
  16. - Enable more warnings?
  17. - Use __cdecl in physfs.h?
  18. - Look for FIXMEs (many marked with "!!!" in comments).
  19. - Probably other stuff. Requests and recommendations are welcome.
  20. - Cygwin should use unix/posix and not win32 platform code.
  21. - Add "mount points"
  22. - Expose the archiver registration mechanism to the outside world.
  23. - Set up a mechanism for file enumeration that employs a callback.
  24. - Allow the application to provide allocation services.
  25. - Find some way to relax or remove the security model for external tools.
  26. - Non-blocking I/O
  27. - mmap() in posix.c
  28. - OSX shouldn't use ~/.app for userdir.
  29. - fscanf and fprintf support in extras dir.
  30. - Why do we call it openArchive and dirClose?
  31. - Sanity check byte order at runtime.
  32. - Every DIR_* function requires a malloc/free!
  33. - Merge DirHandle and PhysDirInfo.
  34. - Memory locking?
  35. - Clean up file code to match DirHandle cleanups.
  36. - Find a better name than dvoid and fvoid.
  37. - Use something other than void * for platform file handlers.
  38. - Can win32.c and pocketpc.c get merged?
  39. - There's so much cut-and-paste between archivers...can this be reduced?
  40. - General code audit.
  41. - Just make PHYSFS_file * a void * typedef so we don't have to allocate?
  42. - Multiple write dirs with mount points?
  43. - Deprecate PHYSFS_setSaneConfig and move it to extras?
  44. - PHYSFS_file should really be PHYSFS_File for consistency.
  45. - (Re)move the profiling code in physfs.c.
  46. - maybe other stuff.
  47. // end of TODO ...