13

我正在尝试从一个正在增长的文件中读取(类似于什么tail -F),但我的代码肯定存在一些问题:

string   log, logFile("test.log");
size_t   p = 0;

while(true)
{
    ifstream ifs(logFile.c_str());

    ifs.seekg(p);  //*1

    while(ifs.eof() == false)
    {
        getline(ifs, log);

        cout << log << endl;

        p = ifs.tellg();  //*2
    }

    nanosleep(&pause, NULL);
}

如果没有 //*1 和 //*2 行,日志文件会被正确读取到其末尾,但如果添加新行,则不会发生任何事情。

使用 seekg 和 tellg 我试图存储文件的当前结束位置,这样当我重新打开它时,我可以去那里阅读已添加的内容。

我想知道我的代码有什么问题,以及是否真的有必要为此关闭并重新打开同一个文件。

谢谢你。

4

4 回答 4

17

循环不正确,因为eof()遇到时tellg()返回,并且在调用后-1没有立即检查需要的。将循环更改为:eof()getline()

while (getline(ifs, log))
{
    cout << log << endl;
    p = ifs.tellg();
}

此外, asp声明为size_twhen tellg()return-1的值p被设置为4294967295。这意味着seekg()被设置为超出文件末尾。更改pto的类型std::streamoff并确认调用seekg()成功:

if (ifs.seekg(p))
{
    while (getline(ifs, log))
    {
        cout << log << endl;
        p = ifs.tellg();
    }
}

如果确实有必要为此关闭并重新打开同一个文件。

不,这不是必需的,但您需要从流中获取状态clear()eof以下是已发布代码的更正版本的替代方法:

#include <iostream>
#include <string>
#include <fstream>

int main()
{
    std::ifstream ifs("test.log");

    if (ifs.is_open())
    {
        std::string line;
        while (true)
        {
            while (std::getline(ifs, line)) std::cout << line << "\n";
            if (!ifs.eof()) break; // Ensure end of read was EOF.
            ifs.clear();

            // You may want a sleep in here to avoid
            // being a CPU hog.
        }
    }

    return 0;
}
于 2012-08-01T10:36:44.530 回答
3

由于这些答案都没有奏效,我想出了一个有效的答案......

#include <iostream>
#include <string>
#include <fstream>

using namespace std;

int main()
{
    string   log, logFile("test.txt");
    std::streamoff   p = 0;
    ifstream ifs(logFile.c_str());

    while(true)
    {

        ifs.seekg(p);  //*1
        while (getline(ifs, log))
        {
            cout << log << endl;
            if(ifs.tellg() == -1) p = p + log.size();
            else p = ifs.tellg();
        }
        ifs.clear();

    }
}
于 2021-02-07T05:27:32.637 回答
2

这种方法对我很有效:

#include <string>
#include <chrono>
#include <thread>
#include <fstream>
#include <iostream>

int main(int, char* argv[])
{
    // open file passed in on command line (at end of file)
    std::ifstream ifs(argv[1], std::ios::ate);

    if(!ifs.is_open())
    {
        std::cerr << "ERROR: opening log file: " << argv[1] << '\n';
        return 1;
    }

    // remember file position
    std::ios::streampos gpos = ifs.tellg();

    std::string line;
    bool done = false;

    while(!done)
    {
        // try to read line
        if(!std::getline(ifs, line) || ifs.eof())
        {
            // if we fail, clear stream, return to beginning of line
            ifs.clear();
            ifs.seekg(gpos);

            // and wait to try again
            std::this_thread::sleep_for(std::chrono::milliseconds(100));
            continue;
        }

        // remember the position of the next line in case
        // the next read fails
        gpos = ifs.tellg();

        // process line here
        std::cout << "line: " << line << std::endl;
    }
}
于 2015-08-13T00:21:34.547 回答
0

这段代码对我有用:

struct timespec pause;
pause.tv_sec  = 1;
pause.tv_nsec = 0;

std::ifstream ifs("test.log");
std::streamoff p;

if(ifs.is_open())
{
    std::string line;

    while(true)
    {
        if(ifs.seekg(p))
        {
            while(std::getline(ifs, line))
            {
                std::cout << line << std::endl;
                p = ifs.tellg();
            }
        }

        ifs.clear();

        nanosleep(&pause, NULL);
    }
}
于 2015-11-03T14:42:30.943 回答