Read a line from a .txt file?

Posted By: Hredot

Read a line from a .txt file? - 02/12/18 20:31

I guess one could use a generic C code to read the first line from a txt file, as for instance described here.
Does Zorro by any chance have a more convenient function to accomplish this task?
Or, how would one read the LAST line in a .txt file?
Posted By: AndrewAMD

Re: Read a line from a .txt file? - 02/12/18 23:05

Zorro has some handy file functions, which you can easily wrap with a helper function.
http://zorro-project.com/manual/en/file_.htm

But how you would wrap them depends on what you are trying to do.

For example, you can convert a file into a char* string and change the first newline character '\n' to a null character '\0' to get the first line.

For last line, simply find the last '\n' and point to the character after it.

I might be able to demo this first thing in the morning tomorrow unless someone beats me to it.
Posted By: Hredot

Re: Read a line from a .txt file? - 02/13/18 06:05

@AndrewAMD
Awesome link, thanks! Looking forward to your demo!
Posted By: AndrewAMD

Re: Read a line from a .txt file? - 02/13/18 12:52

Well, I didn't write helpers, but I left you a ton of clues on how to write helpers for your own use case.

See attached.

I suppose that if I had more time, I can write it into an identical style function, like "file_read_firstline" and "file_read_lastline".

Code:
int main()
{
	// create a file
	const string f = "./mumble.txt";
	file_write(f,"Many mumbling mice",0);
	file_append(f,"\nAre making merry music in the moonlight!",0);
	file_append(f,"\nMighty nice!",0);
	
	// check file length
	long l = file_length(f), l2 = 0;
	printf("\nlength: %d",l);
	
	// allocate memory for reading the file into a string
	char* str = malloc(l+1);
	memset(str,0,l+1);
	
	// fill the string with data and check how much data was copied
	l2 = file_read(f,str,l+1);
	printf("\nlength2: %d",l2);
	
	// let's see where the newline characters are
	int i = 0;
	for(i = 0; i<l; i++)
	{
		if(str[i]=='\n') printf("\ni: %d, found newline!",i);
	}
	// let's print the string
	printf("\n%s",str);
	
	// let's find the last newline character (if not found, zero)
	for(i = l-1; i>0; i--)
	{
		if(str[i]=='\n') {break;}
	}
	// point to the last part of the string by offsetting the pointer
	char* lastline = str + i;
	printf("%s",lastline);
	
	// okay, now let's alter the original string to convert it into the first line only.
	// Remember, a string is all data before a null character.
	for(i=0; i<l; i++)
	{
		if(str[i]=='\n') {str[i]=0;break;}
	}
	// let's print the altered string (first line)
	printf("\n%s",str);
	
	
	// always free memory after using malloc
	free(str);
	return 0;
}



Attached File
mumble.c  (72 downloads)
Posted By: Hredot

Re: Read a line from a .txt file? - 02/13/18 13:24

@AndrewAMD:
Thanks for the code!

I wonder, does malloc remember how much memory was allocated originally, or does free(str); only free up memory up to the null character, which could potentially lead to a memory leak?

Isn't loading the entire file just to read one line a bit excessive? Perhaps some ideas presented here could help ease the workload.
Posted By: AndrewAMD

Re: Read a line from a .txt file? - 02/13/18 13:41

Originally Posted By: Hredot
does free(str); only free up memory up to the null character, which could potentially lead to a memory leak?
No. You can use malloc and free for any kind of data, not just char arrays.
Quote:
Isn't loading the entire file just to read one line a bit excessive? Perhaps some ideas presented here could help ease the workload.
I was trying to help you solve your problem in five minutes or less. You're writing in C... why do you care about these optimizations? Are you reading gigabytes of data?
Posted By: Hredot

Re: Read a line from a .txt file? - 02/13/18 14:25

I see, OK!

Oh, I don't know... Perhaps I don't have a good perception for what could cause slowdown in C. Coming from a more higher level languages, I get worried about that too much I guess. laugh

In any case, thank you for your help! This is very useful code!
Posted By: AndrewAMD

Re: Read a line from a .txt file? - 02/13/18 14:31

Ah, I see. Yes, this is not python or R. wink
© 2024 lite-C Forums