I'm working with very large text files, 2GB and more. I would like to have a Seek() like function. Has anyone done something like that? Loading to TStringList is out of the question. Also working with untyped file as well. For now I'm using readLn, but that lasts too long. Thanks.
|
|
Map the file into memory (CreateFileMapping/MapViewOfFile) by pieces, then scan the mapped memory and build an index - the list of positions of each line beginnings. Then your seek operation will be performed by getting position of Nth line in the file and seeking to this position. Use TFileStream then to perform random access to the file or, if you only read the file, you can use file mappings for random access as well - this might be even faster than using TFileStream in parallel to file mapping. |
|||||||||||||||
|
|
Try GpHugeFile.
|
|||
|
|
|
You set some pretty hard borderconditions. The only thing I can imagine is to try to get the handle from the textfile, and use win32 functions to seek directly. Beware of textfile caching though. If large codebases using writeln/readln are the reason, implementing your own textfile driver that allows it (or simplifies caching) might be the solution. Free Pascal has a getfilehandle function for this purpose, to retrieve the OS handle from textfile/tfilerec files. I don't know what recent Delphi's add in this department. |
|||
|
|
|
If you need line-level granularity instead of byte-level, there is absolutely no way to avoid reading through the entire file at least once in order to find the end of line markers (LF or CRLF, depending on your environment.) This is a hard limit - you can't know in advance where your end of line is going to be. After building the end of line to byte offset index you could conceivably cache it on-disk and use a heuristic a la "last modified time" to check whether the index needs to be regenerated (you need a heuristic because you can't ensure that the file contents hasn't changed except by reading through it, and then you might as well rebuild the index since you'll be I/O bound anyway.) As suggested by others, the underlying mechanism will have to be CreateFileMapping / CreateViewOfFile (or mmap under POSIX.) |
|||
|
|
|
You can use this function to change the current position in a TText file:
It will return true on success, false on error (invalid position of file not opened). If you want to have fast access, ensure that you have set {$I-} and check IOResult by hand, and have called System.SetTextBuffer() with some buffer (1 KB up to 64 KB could make sense). |
||||
|
|