I have a case where in I need to read a flat file with close to 100000 logical records. Each logical record is comprised of nx128 character parts. ie, Type A: 3x128, Type B : 4-5 X 128 etc where maximum possible n is 6.
Application has to read the file and process the records. The problem is 'n' can be determined only when we read the first 52 characters of each nx128 partition.
Could you please suggest any design paterns which I can re-use or any efficient algorithms to perform this ?
Note : 1. Performance is an important criteria as application need to process thousands of file like this everyday. 2. The data is not separated by lines. Its a long string like pattern
