home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-2.iso / Developer / resources / classes / IEMappedFile.README < prev    next >
Encoding:
Text File  |  1993-01-26  |  1006 b   |  11 lines

  1.     IEMappedFile is a public domain class.  It is designed as a central resource to map files into memory and make sure that only one object corresponds to one filename.  It encapsulates the following information:
  2.     -the filename (which has been NXUniqueString'ed)
  3.     -the open file descriptor
  4.     -the pointer to the memory which is mapped to the file
  5.     -the size of the file
  6.     -the last modify time of the file
  7.     
  8.     The factory object keeps a HashTable of filenames and objects to insure that only one instance is created for a given filename.      There are two methods which return the pointer to the memory map.  The -data method just returns the pointer.  The -dataUpdated method first checks to see if the file has been modified, and if it has it remaps the file and returns the data pointer.
  9.     This is a read only object and does not support writing memory to disk, or even writing to memory.
  10.     Please send me all bugs found and/or corrected!  I have used it but not extensively, specifically the archiving support.
  11.