加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

c – Poco :: Logger线程是否安全?

发布时间:2020-12-16 03:39:23 所属栏目:百科 来源:网络整理
导读:在我的测试代码中看起来像线程安全.我可以在多线程程序中使用Poco :: Logger吗? static Poco::Logger *pLogger; class MyRunnable : public Poco::Runnable { private: std::string _name; Poco::Random _rnd; public: void setName(std::string name) { _n
在我的测试代码中看起来像线程安全.我可以在多线程程序中使用Poco :: Logger吗?
static Poco::Logger *pLogger;    
class MyRunnable : public Poco::Runnable {
   private:
      std::string _name;
      Poco::Random _rnd;
   public:
      void setName(std::string name) {
            _name = name;
         }
      void run() {
         for (int i=0; i<200; i++) {
            pLogger->information("info from: " + _name);
            _rnd.seed(_rnd.next(65532) * _name.size());
            Poco::Thread::sleep(_rnd.next(13) + 1);
         }
      }
};

这里是测试主要:

int
main ( int argc,char *argv[] )
{
   Poco::Thread thr1,thr2,thr3;
   MyRunnable *pMyR1 = new MyRunnable(),*pMyR2 = new MyRunnable(),*pMyR3 = new MyRunnable();
   pMyR1->setName("r1");
   pMyR2->setName("ra2");
   pMyR3->setName("runable3");

   Poco::FormattingChannel *pFCFile = new Poco::FormattingChannel(new Poco::PatternFormatter("%Y-%m-%d %H:%M:%S.%c %N[%P]:%s: %q:%t"));
   pFCFile->setChannel(new Poco::FileChannel("test.log"));
   pFCFile->open();
   pLogger = &(Poco::Logger::create("FileLogger",pFCFile,Poco::Message::PRIO_INFORMATION));


   thr1.start(*pMyR1);
   thr2.start(*pMyR2);
   thr3.start(*pMyR3);

   std::cout << "starting..." << std::endl;
   thr1.join();
   thr2.join();
   thr3.join();
   std::cout << "end." << std::endl;
   return EXIT_SUCCESS;
}           /* ----------  end of function main  ---------- */

解决方法

这个问题很老了,但我有同样的疑问,所以在图书馆论坛上找到我发现:
http://pocoproject.org/forum/viewtopic.php?f=12&t=1233&p=2681&hilit=logger#p2681 重要的引用是:“Logger对于不同的日志记录功能是线程安全的.如果你尝试更改连接到Logger的Channel而另一个线程当前正在使用Logger,这可能会导致问题.”

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读