lsflib/src/get_line.c
author Markus Bröker <mbroeker@largo.dyndns.tv>
Thu, 16 Apr 2009 12:50:53 +0200
changeset 77 49e0babccb23
parent 29 7abf6146898e
child 121 fef2ccfa7b12
permissions -rw-r--r--
HEADER TAGS The std header tags are now subdir/file.ext committer: Markus Bröker <mbroeker@largo.homelinux.org>

/**
 * lsflib/src/get_line.c
 * Copyright (C) 2008 Markus Broeker
 */

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#include <lsf.h>

#ifndef LINE_LENGTH
#define LINE_LENGTH 100
#endif

char *get_line (const char *filename, const char *cmd, size_t size)
{
    int i, j;
    char *line, *ptr;

    FILE *f = fopen (filename, "r");

    if (!f) {
        perror ("FOPEN:");
        return NULL;
    }

    line = malloc (LINE_LENGTH + 1);
    ptr = malloc ((LINE_LENGTH + 1) * size);
    i = 0;

    while (fgets (line, LINE_LENGTH, f) != NULL) {
        if (strstr (line, cmd)) {
            do {
                if ((strlen (ptr) + strlen (line)) < LINE_LENGTH * size) {
                    strcat (ptr, line);
                    fgets (line, LINE_LENGTH, f);
                    i++;
                } else {
                    printf ("OVERFLOW: [%d]: %s\n", i * LINE_LENGTH, line);
                    exit (0);
                }
            } while (strchr (line, '"') == NULL);
            if (i > 1)
                strcat (ptr, line);
        }
        for (i = 0; i < strlen (ptr); i++)
            switch (ptr[i]) {
            case '\n':
            case '\\':
            case '"':
                for (j = i; j < strlen (ptr) - 1; j++)
                    ptr[j] = ptr[j + 1];
                ptr[j] = 0;
                break;
            }
    }

    fclose (f);
    free (line);

    return ptr;
}