TODO
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:2k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. The hfs_fs "to do" list.
  2. ------------------------
  3. Items are broken down into groups and the groups are listed in order
  4. from most important to least important.  The items within each group
  5. are not placed in any particular order.  The order in which items are
  6. listed probably doesn't correlate well with the order they will be
  7. addressed.
  8. Genuine bugs:
  9. 1. Header files have compiled-in limit (currently 10) on descriptors.
  10. Missing features:
  11. 1. 1k block support is needed for some devices.
  12. 2. An ioctl()-based interface is needed to provide a consistent way
  13. to do things under all of the representations of forked files.
  14. Possible additional "fork" mount options:
  15. 1. AppleSingle.
  16. 2. The scheme MacOS uses on FAT disks (PC Exchange).
  17. 3. "Flat" (no resource forks or metadata).
  18. Performance issues:
  19. 1. Use drAllocPtr to speed block allocations.
  20. 2. Keep a real cache of bnodes, rather than just a hash table of
  21. the ones that are currently in use.
  22. 3. Keep a real cache of extent records, rather than just a linked
  23. list of the ones that are currently in use and the one most
  24. recently used.  This is particularly needed to get acceptable
  25. performance with multiple readers on a file.  Perhaps simply
  26. keep them in memory once they've been read until the file is
  27. closed.
  28. Implementation details:
  29. 1. Allocation scheme could/should be closer to that used by Apple.
  30. 2. B*-tree insertion could/should be closer to that used by Apple.
  31. 3. Magic-number checks on data structures are rarely done.
  32. 4. Error recovery is needed for failed binsert(), bdelete() and rename().
  33. 5. Deadlock detection is needed to make insert_empty_bnode() and
  34. bdelete() less likely to hang on a corrupted B-tree.
  35. 6. Metadata for covered directories shouldn't appear in the filesystem.
  36. Under CAP and AppleDouble it currently does.  However, the obvious
  37. solution is a real performance killer and is not worth implementing.
  38. Fantasy features:
  39. 1. Access Desktop file/database for comment and icon.
  40. 2. Implement mmap() for AppleDouble header files and CAP info files.
  41. 3. Implement AppleShare client support.
  42. Suggestions/comments/questions are welcome.
  43. Code addressing any of the issues listed above is especially welcome.
  44. Paul H. Hargrove
  45. hargrove@sccm.Stanford.EDU