×

Random Access - Lseek in C

Introduction

lseek is a system call that is used to alter the location of the read/write pointer of a file descriptor. The lseek system call basically moves the current read/write location to anywhere within the referenced file.

The Input and output are normally sequential in the concept of file descriptors. Each read and write operation in this concept takes place at a position in the file right after the previous one. The file can be read or written in any random order in case it is necessary or required.

The lseek plays a vital role here by providing a way to navigate around in a file without reading or writing any information or data.

System call

long lseek (int fd, long offset, int origin);

The above piece of code is a system call which sets the current position in the file whose descriptor is fd to offset, which is taken relative to the location specified by origin. Here, offset is the number of bytes to move the selector.

The concluding read or write will begin at that position. The origin can be 0(zero),1 (one), or 2(two). It is numbered so, in order to specify that offset is measured from the beginning (top), from the current position (where current pointer points), or from the end of the file respectively.

Example

In order to be adjoined to a file, we need to seek to the end before writing the following. This can be achieved by using the following piece of code;

lseek (fd, 0L, 2);  // seek to the end before writing

Note: In order to get back to the beginning, the term (“rewind”) is used,

lseek (fd, 0L, 0);

Note: In the above piece of code,the ‘0L’ argument here can be written as (long) 0 or just as (zero) 0 if the declaration of lseek is properly done.

Use of lseek in C

The lseek is quite useful in C programming and implementation of file concepts like fopen or getc. With the lseek(random access), it is possible to treat files like arrays (more or like large arrays). This may help the programmer but it costs in terms of slower access.

For example:

The following function reads the nth byte of a file and copies it to another file using the lseek.

Program 1:

#include <stdio.h>    //header files 
#include <unistd.h>
#include <sys/types.h>
#include <fcntl.h>


void func(char arr[], int n)
{


int f_write = open ("start.txt", O_RDONLY);


int f_read = open("end.txt", O_WRONLY); 


int count = 0;


while (read(f_write, arr, 1))
{
		
if (count < n)
{
			
lseek (f_write, n, SEEK_CUR);
write (f_read, arr, 1);
count = n;
}
else
{
count = (2*n);
lseek(f_write, count, SEEK_CUR);
write(f_read, arr, 1);
}
}
close(f_write);
close(f_read);
}


int main()
{
	char array[50];  // Driver code
	int n;    //declaring a variable ‘n’ of type ‘int’
	n = 5;  //value assigned to n


	
	func(array, n);  //function call
	return 0;
}

Example 2:

#include <sys/types.h>    //header files


int get(int fd, long pos, char *buf, int n)
{


    if(lseek(fd, pos, 0)>=0)
    return read(fd, buf, n); 
    else
    return -1;  //return ‘-1’ in case of error
}

Code explanation:

In the above code, the function reads any number of bytes from any arbitrary (or random) place in a file.

It returns the number read. In case an error occurs, it returns ‘-1’.

Return value of lseek

The return value of lseek is a long that gives the new position in the file. In case an error occurs, it returns ‘-1’. The standard library function fseek is similar to lseek. Of Course, there are some similarities as well;

  • The first argument is a file *
  •  In case an error occurs, it returns ‘-1’.

fseek function in C

fseek() function is another similar library function to lseek in C programming which is used to move file pointer position to the given location.

SEEK_CUR – Seek_Current is used to move file pointer positions to a given location.

SEEK_END – Seek_End is used to move file pointer position to the end of file.

Drawback of lseek

Is Lseek thread safe? The original whence, exactly as passed to the lseek(2) system call.

Note: This function is not thread safe, because it shares a return buffer across all threads, and many other functions in this library

Note 2: TheRETURN VALUE

Upon successful termination;

The lseek() or random access returns the resulting offset location as measured in bytes from the top or beginning of the file. In case an error occurs, it returns ‘-1’.


Related Topics

Structure Pointer in C

Structure Pointer in C In the C programming language, a structure pointer is defined as a pointer that points to the memory block address that stores a structure. Like C standard...

4 minutes read.

Isalnum() function in C

Introduction: The isalnum () is a function used in C programming language. This function checks the passing number or argument is an alphanumeric number or not. The alphanumeric number consists of the...

3 minutes read.

Dynamic memory allocation

Dynamic memory allocation is used to allocate the memory at runtime. It has following function within <stdlib.h> header file. Function Syntax malloc() malloc (number *sizeof(int)); calloc() calloc (number, sizeof(int)); realloc() realloc (pointer_name, number * sizeof(int)); free() free (pointer_name); malloc() function The process...

2 minutes read.

pow() function in C

pow() function is one of the in-built functions present in math.h header file Power function is used to calculate the powers of the given number. The syntax of the power...

3 minutes read.

Bit Stuffing Program in C

What is a Bit Stuffing? The process of inserting one or more extra bits (0) into data is known as bit stuffing. To provide signalling information to a recipient, these are...

3 minutes read.

Conditional Operator in C

In C programming language, the conditional operator (also known as the ternary operator) is a shorthand way of writing an if-else statement. The syntax of conditional operator in C is...

3 minutes read.

How to use Typedef Struct in C

The “typedef” is a predefined keyword in C programming language which is used to declare the new name to an existing type of variable. For better understanding, if you declare a...

3 minutes read.

strcat() Function in C

Strings in c: A string is defined as the set of characters that are enclosed within the double quotations (" "). The String always ends with the null character ("\0"). The...

3 minutes read.

Exponential() in C

Introduction: In C language, there are available many types of functions. The exponential() function is one of them. It is a mathematical function. This article describes using the pow() property to...

3 minutes read.

Difference between If Else and Nested If Else in C

What is the If Else statement in C? In C programs, if else conditions are used to perform some operations based on specific conditions. The operation is only executed if the...

6 minutes read.

C Language Environment Setup

To compile C program, we must have GCC compiler installed on our machine. In this C tutorial, all the examples are compiled and tested using GCC compiler. Although we can...

3 minutes read.

Flow Chart of Do while loop in C

This is a flowchart that represents the process of executing the Do while loop in the C programming language Generally, as we know there are three main components of Do While...

3 minutes read.

Binary Search in C with Best and Worst Time Complexity

What is Binary Search? Binary search is an algorithm that is used to find an element in a sorted array efficiently. It has a time complexity of O(log n). It means...

3 minutes read.

Projects on C language in 2024

Introduction Most aspiring programmers learn the C language as their first high-level programming language. The most flexible language utilized in every industry is, without a doubt, C. Even after 50 years...

9 minutes read.

Find Day from Day in C Without using function

Introduction: In the given article, I find daily in C without using functions. It takes 365 days for the earth to revolve around the sun. It will be close to...

3 minutes read.

Bank management system in C

This is a mini project that is constructed completely using the C language. The bank management system is a beginner friendly project. To construct this user only needs to know...

12 minutes read.

C Array

An array is a collection of elements that are used to hold the fixed number of values of the same type. We cannot change the size and type of array...

2 minutes read.

Pi() Function in C

Pi: Mathematic constants are not defined in the c or c++ programming languages. To use the Mathematical constants firstly, we have to define the _USE_MATH_DEFINES and then declare the cmath and...

3 minutes read.

Range of int in C

In this session we know about the rage of the int in C language with the suitable examples and the programs. Firstly, we can learn the range of int: The int is...

3 minutes read.

Call Back Function in Embedded C

Callback function are one the most remarkable systems in C. A callback function is any code that is passed as a contention to another code, so this is the last...

3 minutes read.