1

我编写了以下方法,该方法基本上从另一个线程连续写入的日志文件中读取最新行。此代码在不同的线程上运行并由计时器驱动(每 5 秒触发一次)。这很简单。这是它的样子:

void FileManager::ReadFile()
{
    std::vector<std::string> vecLines;
    std::string line;

    m_InputStream.clear();

    while (std::getline(m_InputStream, line))
    {
        vecLines.push_back(line);
    }

    if (! vecLines.empty())
    {
        OnFileUpdate(vecLines);
    }
}

我的问题,这段代码安全吗?基本上,我执行的算法是提前打开输入流并查找文件末尾。然后当这个方法被调用时,如果有任何新的行要读取,那么它们将被读取到这里。如果有任何新行,则将通知该类的任何感兴趣的客户(通过 OnFileUpdate() 调用)。

4

1 回答 1

0

这需要在后台挂起一个线程。

我要做的是创建一个类来处理您的所有错误/事件日志记录,如下所示。您可以将所有内容设为静态,然后您可以从多个位置访问它 优点:没有额外的文件 I/O 没有辅助线程 缺点:没有锁就不是多核安全的

class EventLogger {
  public:
    EventLogger();
    ~EventLogger();
    void LogEvent(const std::string &event) {
      //Handle output to file here
      OnFileUpdate(event);
    }
  private: 
    void OnFileUpdate(const std::string &event) {
      //DoWorkHere
    }
}
于 2013-01-24T23:55:54.570 回答