基于getline()函数的深入理解

我在网上搜了半天getline()函数,大多针对C++的,重载函数比较多,云里雾里的,而且没有实例,反正就是没有自己所需要的getline()函数。所以,自己在Linux下man了一把,并做了测试。getline()函数的功能是从文件中获取行信息,即每次读取一行信息。

因为我使用getline()函数的目的是获取本地网卡信息,即eth0的信息,从而判断启动机子时是否查了网线(本来可以从驱动里做,但应用层可以搞定,就不想多做处理了,谅解)。

//函数原型
#define _GNU_SOURCE
#include <stdio.h>
      ssize_t getline(char **lineptr, size_t *n, FILE *stream);
      ssize_t getdelim(char **lineptr, size_t *n, int delim, FILE*stream);
[root@localhost for_test]# cat dev
Inter-|   Receive                                                | Transmit
 face |bytes   packets errs drop fifo frame compressed multicast|bytes    packets errs drop fifo colls carriercompressed
   lo:       0       0   0    0    0    0          0         0        0      0    0    0   0     0       0         0
 eth0:  53311     230    0    0   0     0          0        0     5370      33   0    0    0    0       0          0
[root@localhost for_test]# cat eth0_dev.c


代码如下:

#include <stdio.h>
#include <string.h>
int main(void)
{
 FILE *fp = NULL;
    int cnt = -1;
    int len = 0;
 char buf1[16] = {0}, buf2[16] = {0}, buf3[16] = {0};
    char *line = NULL;
    char *pstr = NULL; 
 fp = fopen("./dev", "rb");
 if(NULL == fp)
 {
  printf("open /proc/net/dev err!\n");
  return -1;
 }
    while(-1 != (cnt = getline(&line, &len, fp)))//读取行信息,'\n'为换行标志
    {
        pstr = strstr(line, "eth0");//查找改行中是否有"eth0"的字符串
        if(NULL != pstr)
        {
   //printf("%s\n", pstr);
   sscanf(pstr, "%s\t%s\t%s", buf1, buf2, buf3);
   printf("buf1:%s  buf2:%s  buf3:%s\n", buf1, buf2, buf3);
   break;
        }
    }
    //确保空间的释放
    if(line)
    {
        free(line);
    }
    fclose(fp);
 return 0;
}

[root@localhost for_test]#gcc eth0_dev.c
[root@localhost for_test]# ./a.out
buf1:eth0:  buf2:53311 buf3:230
[root@localhost for_test]# man getline


代码如下:

DESCRIPTION
       getline()  reads  an entire line from stream, storing the address of the buffer containing the text into *lineptr.  The buffer is null-
       terminated and includes the newline character, if one was found.
       If *lineptr is NULL, then getline() will allocate a buffer for storing the line, which should be freed by the user  program.   Alterna-
       tively,  before calling getline(), *lineptr can contain a pointer to a malloc()-allocated buffer *n bytes in size. If the buffer is not
       large enough to hold the line, getline() resizes it with realloc(), updating *lineptr and *n as necessary. In either case,  on  a  suc-
       cessful call, *lineptr and *n will be updated to reflect the buffer address and allocated size respectively.
       getdelim()  works  like  getline(), except a line delimiter other than newline can be specified as the delimiter argument. As with get-
       line(), a delimiter character is not added if one was not present in the input before end of file was reached.
RETURN VALUE
       On success, getline() and getdelim() return the number of characters read, including the delimiter character,  but  not  including  the
       terminating null byte. This value can be used to handle embedded null bytes in the line read.
       Both functions return -1  on failure to read a line (including end of file condition).
ERRORS
       EINVAL Bad parameters (n or lineptr is NULL, or stream is not valid).
EXAMPLE
       #define _GNU_SOURCE
       #include <stdio.h>
       #include <stdlib.h>
       int main(void)
       {
            FILE * fp;
            char * line = NULL;
            size_t len = 0;
            ssize_t read;
            fp = fopen("/etc/motd", "r");
            if (fp == NULL)
                 exit(EXIT_FAILURE);
            while ((read = getline(&line, &len, fp)) != -1) {
                 printf("Retrieved line of length %zu :\n", read);
                 printf("%s", line);
            }
            if (line)
                 free(line);
            return EXIT_SUCCESS;
       }
CONFORMING TO
       Both getline() and getdelim() are GNU extensions.  They are available since libc 4.6.27.

(0)

相关推荐

  • 老生常谈C++getline使用方法

    一.心得 getline(cin,s); 多去看函数的使用默认说明 二.使用 getline(istream &in, string &s) 从输入流读入一行到string s • 功能: –从输入流中读入字符,存到string变量 –直到出现以下情况为止: • 读入了文件结束标志 • 读到一个新行 • 达到字符串的最大长度 –如果getline没有读入字符,将返回false,可用于判断文件是否结束 /* 3 */ #include <iostream> #include &l

  • 基于C++ cin、cin.get()、cin.getline()、getline()、gets()函数的使用详解

    1.cin 2.cin.get() 3.cin.getline() 4.getline() 5.gets() 6.getchar() 附:cin.ignore();  cin.get()//跳过一个字符,例如不想要的回车,空格等字符 1.cin>>          用法1:最基本,也是最常用的用法,输入一个数字: #include <iostream> using namespace std; main () {    int a,b;    cin>>a>&g

  • C++中getline()和get()的方法浅析

    最原始的方法: 获取输入流最原始的形式就是cin>>(type) ,但是这种形式在碰到输入中有空格.制表符或者换行符的时候就会中断,值得注意的是中断后空格.制表符或者换行符还继续留在输入流中.所以最简单的,我们无法使用cin>>(type)的形式来读取包含空格的字符串,比如输入流中有一句:How are you?使用cin>>(type)是无法一次性读取出来的,鉴于此,getline()方法和get()方法便诞生了. getline()方法: getline()方法读取

  • 基于getline()函数的深入理解

    我在网上搜了半天getline()函数,大多针对C++的,重载函数比较多,云里雾里的,而且没有实例,反正就是没有自己所需要的getline()函数.所以,自己在Linux下man了一把,并做了测试.getline()函数的功能是从文件中获取行信息,即每次读取一行信息. 因为我使用getline()函数的目的是获取本地网卡信息,即eth0的信息,从而判断启动机子时是否查了网线(本来可以从驱动里做,但应用层可以搞定,就不想多做处理了,谅解). //函数原型#define _GNU_SOURCE#in

  • 基于memset()函数的深入理解

    今天写软件工程大作业,调了半天的bug,原来是对memset函数认识不到位造成的.int max[teachRelationNum];memset(max,0,sizeof(max));注意啊,可以使用sizeof(max),也可以使用 sizeof(int)*teachRelationNum,不可以直接使用 teachRelationNum,来初始化!一般情况下,可以这样使用:memset(max,0,sizeof(max));memset(max,-1,sizeof(max));memset

  • Kotlin中关于内联函数的一些理解分享

    前言 看了很多博客,才明白了内联的含义,其实最根本的就是将写在别处的代码拷贝到你现在执行的方法中,相当于在一个方法中执行,java的方法执行是需要压栈出栈的对吧,如果是两三个方法那就是两三次的压栈出栈,为了节省这个操作,提高一定的效率,kotlin就出了这么个函数.但又想想,如果是个超级大的函数,考来考去的也是很麻烦啊,所以这东西需要自己权衡吧,遵守单一职责,降低代码圈发杂度才是根本. 内联函数的理解 inline函数(内联函数)从概念上讲是编译器使用函数实现的真实代码来替换每一次的函数调用,带

  • python被修饰的函数消失问题解决(基于wraps函数)

    这篇文章主要介绍了python被修饰的函数消失问题解决(基于wraps函数),文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下 当使用@修饰符修饰函数时,会存在这样一个问题:被修饰的函数会消失(这是因为修饰函数没有设置返回值,如果设置了返回值,则就把返回值赋给被修饰函数,比如,test1函数的返回值设置为 return 6, 那么就把6赋值给test2,test2就不再是一个函数,而是一个int类型的变量,值就是6): def test1(A):

  • C/C++中getline函数案例总结

    getline函数是一个比较常见的函数.根据它的名字我们就可以知道这个函数是来完成读入一行数据的.现在对getline函数进行一个总结. 在标准C语言中,getline函数是不存在的. 下面是一个简单的实现方式: int getline_(char s[],int lim){ int c,i; i=0; while((c=getchar())!=EOF&&c!='\n'&&i<lim-1) s[i++]=c; s[i]='\0'; return i; } 下面是一个简

  • PHP基于自定义函数实现的汉字转拼音功能实例

    本文实例讲述了PHP基于自定义函数实现的汉字转拼音功能.分享给大家供大家参考,具体如下: 整个过程用到了pinyin.table文件. pinyin.php <?php header("Content-Type:text/html;charset=utf-8"); $letters = ""; if ($_GET) { $cat_name = $_GET["cat_name"]; $catname = convert($cat_name);

  • 对send(),recv()函数的全面理解

    int send( SOCKET s, const char FAR *buf, int len, int flags ); 不论是客户还是服务器应用程序都用send函数来向TCP连接的另一端发送数据. 客户程序一般用send函数向服务器发送请求,而服务器则通常用send函数来向客户程序发送应答. 该函数的第一个参数指定发送端套接字描述符: 第二个参数指明一个存放应用程序要发送数据的缓冲区: 第三个参数指明实际要发送的数据的字节数: 第四个参数一般置0. 这里只描述同步Socket的send函数

  • 浅析JS中对函数function的理解(基础篇)

    正文:我们知道,在js中,函数实际上是一个对象,每个函数都是Function类型的实例,并且都与其他引用类型一样具有属性和方法.因此,函数名实际上是指向函数对象的指针,不与某个函数绑定.在常见的两种定义方式(见下文)之外,还有一种定义的方式能更直观的体现出这个概念: var sum = new Function("num1", "num2", "return num1 + num2"); //不推荐 Function的构造函数可以接收任意数量的参

  • 基于PHP函数的操作方法

    如下所示: <?php //简单函数 function show(){ echo "hello"; } show(); //有参数的函数 function show($a){ echo "$a"; } show("world"); //有返回值的函数 function show(){ return "小V,你好!"; } echo show(); function show($a,$b){ return $a+$b; }

  • C++的get()函数与getline()函数使用详解

    C++ get()函数读入一个字符 get()函数是cin输入流对象的成员函数,它有3种形式:无参数的,有一个参数的,有3个参数的. 1) 不带参数的get函数 其调用形式为 cin.get() 用来从指定的输入流中提取一个字符(包括空白字符),函数的返回值就是读入的字符. 若遇到输入流中的文件结束符,则函数值返回文件结束标志EOF(End Of File),一般以-1代表EOF,用-1而不用0或正值,是考虑到不与字符的ASCII代码混淆,但不同的C ++系统所用的EOF值有可能不同. [例]

随机推荐