augustobecker / get_next_line

A C function that reads any valid file line by line - @42sp Project

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

get_next_line - @42sp

ℹ️ A C function that reads any valid file line by line until the end

104/100

Index

What is get-next-line?

It's the second project at 42. A function, in C, that returns a line, read from a file descriptor. In short, it can read any valid file and does that line by line to optimize memory, since the file size is not known. It's an extremely useful function that can be used in the next school's projects.

Requirements

⚠️ The project must be written in accordance with the Norm

The Norm is a programming standard that defines a set of rules to follow when writing code at 42. It applies to all C projects within the Common Core by default, and to any project where it's specified. These are some of them:
Each function must be maximum 25 lines, not counting the function's own curly brackets.

Each line must be at most 80 columns wide, comments included.

A function can take 4 named parameters maximum.

You can't declare more than 5 variables per function.

You're not allowed to use: for , do...while , switch , case ,  goto  ,
ternary operators such as `?' and VLAs - Variable Length Arrays.

The norminette (as we call the norm at 42) is in python and open source.

Its repository is available at https://github.com/42School/norminette.

In addition to the Norm, the subject have other requirements, which are:

It is forbidden to declare global variables.

Your read must use the BUFFER_SIZE defined during compilation to read from
a file or from stdin. This value will be modified during the evaluation for testing
purposes.

The program will be compiled in this way:
gcc -Wall -Wextra -Werror -D BUFFER_SIZE=42 <files>.c.

libft is not allowed for this project. You must add a get_next_line_utils.c file
which will contain the functions that are needed for your get_next_line to work

How does it work?

✨ For this project we were introduced to the concept of static variables ✨

ℹ️ A static variable is allocated "statically", which means its lifetime is the entire execution of the program.

The line is, by definition, a string ending in "\n" (line break) or "EOF" (to the end of the file) and which, according to the subject, must be read in a buffer of a size defined in the compilation. get_next_line runs the read function and stores what was read during the call, only then it looks for a "\n" - when it finds it we know we've reached the end of the line, if it doesn't find the "\n" but read returns 0 we know that there is nothing ahead to be read (EOF), in other cases, we simply do not reach the end of the line, what was read is stored in the line that will be returned and we continue reading the file. Most of the time, the buffer does not match the exact size of the line, and it is also not possible to read the same stretch of the line two times, which creates one of the biggest problems in the development of get_next_line: What happens in those cases where, for example, the BUFFER_SIZE is 10 and the line ends at the 6th character? The 4 characters remaining after the line break would be lost and reading would continue into the next 10 character buffer. To solve this, we use the static variable as a backup, to store those leftover characters. And when the function is called again, one of the first things done is to check if there is anything in the backup and if there is, start the new line from there. In general this is how it works, other details of how it works are more technical and I thought it best to leave them out of this explanation, but you can check it out by checking the function.

How do I use the function?

It aims to create a library called libgetnextline.a from the source files. To create this library, clone the project:

git clone https://github.com/augustobecker/get_next_line get_next_line

Enter the repository:

cd get_next_line

Run these commands to compile the source code to object files:

clang -Wall -Werror -Wextra -c get_next_line.c -o get_next_line.o 
clang -Wall -Werror -Wextra -c get_next_line_utils.c -o get_next_line_utils.o 

And then creating the library libgetnextline.a:

ar -rcs libgetnextline.a get_next_line.o get_next_line_utils.o 

You should see a libgetnextline.a file and some object files (.o).

Now to clean up (removing the .o files), run this command:

rm -f get_next_line.o get_next_line_utils.o 

Now you just have to add this header at your .c files and use the get_next_line function or any other from the library:

#include "get_next_line.h"

If you try to compile your .c files with clang using "clang example.c" you will get an undefined symbol error for libgetnextline functions.

You have to tell the file which library it's using:

clang example.c libgetnextline.a

That's it. Now run it using ./a.out

Now, if you're looking for a way to use this function, here's a practical demonstration:

char	*full_file;
char	*line_temp;
int	file_fd

file_fd = open(argv, O_RDONLY);
if (file_fd == -1)
	ft_error_msg("The Map couldn't be opened. Invalid fd");
full_file = ft_strdup("");
while (true)
{
	full_file = get_next_line(file_fd);
	if (line_temp == 0)
		break ;
	full_file(full_file, line_temp);
	free(line_temp);
}
close(file_fd);
return (full_file);

How do I test it?

To test the code we're going to be using @jgambard's gnlTester. There are some good others but I'll only be covering this one.

To test the code in this repo Clone this repo and cd into it:

git clone https://github.com/augustobecker/get_next_line get_next_line
 
cd get_next_line/	

Now, clone @jgambard's gnlTester

https://github.com/Tripouille/gnlTester Tester_get_next_line

Go into the test folder and run the mandatory test:

cd Tester_get_next_line
make m

If you did everything correctly you should see something like this: 68747470733a2f2f692e696d6775722e636f6d2f75344c6936414d2e706e67

42 Cursus

42 is a global education initiative that proposes a new way of learning technology: no teachers, no classrooms, students learning from their fellow students (peer to peer learning), with a methodology that develops both computing and life skills. Not to mention that it's completely free of charge and open to all with no prerequisites.

Admissions at 42 are unlike other colleges. We use a merit-based admission process. The final step of the admission is the Piscine - This is part of the admissions process and requires 4 weeks of intensive and immersive coding. No prior coding experience is necessary at all.

You can check more about the admission process on the 42sp website: https://www.42sp.org.br or on my github repository: 42 Piscine

To see other projects developed by me at 42, click here: 42 Cursus

Author

Augusto Becker | acesar-l | 🇧🇷👨‍🚀

👋 How to reach me:

About

A C function that reads any valid file line by line - @42sp Project


Languages

Language:C 100.0%