输出中的奇怪行为

时间:2013-11-08 18:29:05

标签: c realloc

我的程序运行正常。

这是代码:

#include <stdio.h>
#include <stdlib.h>  // for EXIT_SUCCESS and EXIT_FAILURE
#include <ctype.h>
#include <string.h>

void ReadFile(FILE* file) {
    unsigned lines = 0;

    int braces      = 0;
    int curlyBraces = 0;
    int comments    = 0;

    int c;
    char* line = 0;
    unsigned col = 0;

    while ((c = fgetc(file)) != EOF) {
        if(c == '\n') { // new line
            lines++;

            printf("%4d: {%d} (%d) /*%d*/ |%s\n", lines, curlyBraces, braces, comments, line);
            free(line); line = 0;
            col = 0;
        } else {
            // add character to line
            line = (char*)realloc(line, (col+1)*sizeof(char));
            if (line == 0) {
                fprintf(stderr, "error reallocating memory");
                return;
            }
            line[col] = c;
            col++;            

            if (c == '(') {
                braces++;
            } else if (c == ')') {
                braces--;
            } else if (c == '{') {
                curlyBraces++;
            } else if (c == '}') {
                curlyBraces--;
            } else if (c == '/') {
                if (fgetc(file) == '*') {
                    comments++;
                } else {
                    fseek(file, -1, SEEK_CUR);
                }
            } else if (c == '*') {
                if (fgetc(file) == '/') {
                    comments--;
                } else {
                    fseek(file, -1, SEEK_CUR);
                }
            }
        }
    }
}

int main(int argc, char** argv) {
    short lines = 0, words = 0, chars = 0;

    /* check for arguments */
    if (argc == 1) {
        fprintf(stderr, "usage: %s filename\n", argv[0]);
        return EXIT_FAILURE;
    }

    /* open file */
    FILE* file = fopen(argv[1], "r");
    if(file == 0) {
        fprintf(stderr, "error open file '%s'\n", argv[1]);
        return EXIT_FAILURE;
    }

    ReadFile(file);

    if (fclose(file) == EOF) {
        fprintf(stderr, "error in fclose()\n");
        return EXIT_FAILURE;    
    }

    return EXIT_SUCCESS;
}

在输出上我得到一些奇怪的输出,比如realloc会覆盖一些数据...... 我已经尝试过strcat,但我不能使用常量字符。所以我必须使用realloc。

这是输出的简短摘录

P 68: {1} (0) /*0*/ |   / open file *
  69: {1} (0) /*0*/ |   FILE* file = fopen(argv[1], "r");
  70: {2} (0) /*0*/ |   if(file == 0) {
rn EXIT_FA(0) /*0*/ |       fprintf(stderr, "error open file '%s'\n", argv[1]);
r open fi (0) /*0*/ |       return EXIT_FAILURE;
  73: {1} (0) /*0*/ |   }
} 74: {1} (0) /*0*/ |

也许还有另一种方法可以实现这一目标?使用fgets()我可以得到整行,但增加文件中的指针,我必须给fgets()一个字符计数。所以这不是一个完美的解决方案。

1 个答案:

答案 0 :(得分:0)

您需要在打印出来之前终止字符串:

    lines++;
    line[col] = 0; // new
    printf("%4d: {%d} (%d) /*%d*/ |%s\n", lines, curlyBraces, braces, comments, line);

不幸的是line[col]在这里不合格。所以在添加终结符之前需要realloc行:

        lines++;
        line = (char*)realloc(line, (col+1)*sizeof(char));
        if (line == 0) {
            fprintf(stderr, "error reallocating memory");
            return;
        }
        line[col] = 0; // new
        printf("%4d: {%d} (%d) /*%d*/ |%s\n", lines, curlyBraces, braces, comments, line);

另外,你知道ungetc吗?你可以用ungetc替换那些fseek(-1)。