Read from pipe line by line in C

后端 未结 2 1307
隐瞒了意图╮
隐瞒了意图╮ 2021-02-06 04:32

How can I separate the lines which are coming from a pipe. In the pipe there is this text:

HALLO:500\\n
TEST:300\\N
ADAD
ADAWFFA
AFAGAGAEG

I wa

相关标签:
2条回答
  • 2021-02-06 04:47

    This is usually just called reading from stdin. The program shouldn't care whether the input is a pipe, a redirected file, or a keyboard.

    fread will just read until the buffer is full. Use fgets to read a line.

    Also the buffer size should be big enough to hold the line. For little one-off programs, you can just pick a number. Or there's a standard name BUFSIZ which gives you a pretty-big buffer. How big? Big enough. Really? Probably.

    fgets will copy the newline character in the string unless the string fills up first. So you can test the last character to tell if the line was truncated or not. With reasonable inputs, that's not going to happen. But a more robust approach would allocate a larger buffer, copy the partial line, and call fgets again tp keep trying to get a complete line.

    #include <stdio.h>
    
    int main() {
        char buf[BUFSIZ];
        fgets(buf, sizeof buf, stdin);
        if (buf[strlen(buf)-1] == '\n') {
            // read full line
        } else {
            // line was truncated
        }
        return 0;
    }
    

    This gets you halfway to being protected from the dreaded buffer overflow problem. fgets will not write more than the size passed to it. The other half, as mentioned above, is doing something sensible with the possible partial lines that may result from unexpectedly long input lines.

    0 讨论(0)
  • 2021-02-06 04:47

    Here's another option (I am not totally sure it is a 'proper' way)- use the number of bytes read by the read function. In this example I was reading from stdin although a redirection was made so the fd in 0 is a file/pipe/whatever you need it to be.

      while ((nbytes=read(STDIN_FILENO, buffer, MAX_PIPE_SIZE)) > 0) {
        write(STDOUT_FILENO, buffer, nbytes);
      }
    
    0 讨论(0)
提交回复
热议问题