繁体   English   中英

带有unique_ptr的CRTP导致段错误

[英]CRTP with unique_ptr causes segfault

我正在使用CRTP设计模式来为我的项目实现日志记录机制。 基本的CRTP类如下所示:

#include <fstream>
#include <memory>
#include <mutex>
#include <iostream>
#include <sstream>

template <typename LogPolicy>
class Logger
{
  public:
    template <typename... Args>
    void operator()(Args... args)
    {
        loggingMutex.lock();
        putTime();
        print_impl(args...);
    }

    void setMaxLogFileSize(unsigned long maxLogFileSizeArg)
    {
        //if (dynamic_cast<FileLogPolicy *>(policy.get()))
        //    policy->setMaxLogFileSize(maxLogFileSizeArg);
    }

    ~Logger()
    {
        print_impl(END_OF_LOGGING);
    }

  protected:
    std::stringstream buffer;
    std::mutex loggingMutex;
    std::string d_time;
  private:
    static constexpr auto END_OF_LOGGING = "***END OF LOGGING***";

    void putTime()
    {
        time_t raw_time;
        time(&raw_time);
        std::string localTime = ctime(&raw_time);
        localTime.erase(std::remove(localTime.begin(), localTime.end(), '\n'), localTime.end());
        buffer << localTime;
    }

    template <typename First, typename... Rest>
    void print_impl(First first, Rest... rest)
    {
        buffer << " " << first;
        print_impl(rest...);
    }

    void print_impl()
    {
        static_cast<LogPolicy*>(this)->write(buffer.str());
        buffer.str("");
    }
};

具体的日志记录类之一是记录到文件,如下所示:

#include "Logger.hpp"

class FileLogPolicy : public Logger<FileLogPolicy>
{
  public:
    FileLogPolicy(std::string fileName) : logFile(new std::ofstream)
    {
        logFile->open(fileName, std::ofstream::out | std::ofstream::binary);
        if (logFile->is_open())
        {
            std::cout << "Opening stream with addr " << (logFile.get()) << std::endl;
        }
    }

    void write(const std::string content)
    {

        std::cout << "Writing stream with addr " << (logFile.get()) << std::endl;
        (*logFile) << " " << content << std::endl;
        loggingMutex.unlock();
    }

    virtual ~FileLogPolicy()
    {
    }

  private:
    std::unique_ptr<std::ofstream> logFile; //Pointer to logging stream
    static const char *const S_FILE_NAME;   //File name used to store logging
    size_t d_maxLogFileSize;         //File max size used to store logging
};

基本上,我创建策略类的对象,并希望根据所选择的策略来记录内容。 因此,例如,我创建像这样的记录器:

FileLogPolicy log("log.txt");

在这种情况下,它应该使用Logger通过调用static_cast<LogPolicy*>(this)->write(buffer.str())将日志保存到文件中。 显然,调用write函数可以正常工作,但流对象更改为null。 如果尚未调用FileLogPolicy析构函数,那怎么可能? 当我将logFile更改为普通指针时,一切正常。 我不明白区别在哪里。

~Logger()
{
    print_impl(END_OF_LOGGING);
}

此代码在后代类被销毁后运行。

void print_impl()
{
    static_cast<LogPolicy*>(this)->write(buffer.str());
    buffer.str("");
}

它然后投下this是一个指向一类this不再。

唯一的ptr不见了,甚至访问该成员都是UB。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM