Index: src/liblogger/TAsyncMultiLogger.h =================================================================== diff -u -N -r0e09682e3d8fe604066820a5e283361f9f088704 -ra4635addad389b9e117679437a3e1b64a739ea96 --- src/liblogger/TAsyncMultiLogger.h (.../TAsyncMultiLogger.h) (revision 0e09682e3d8fe604066820a5e283361f9f088704) +++ src/liblogger/TAsyncMultiLogger.h (.../TAsyncMultiLogger.h) (revision a4635addad389b9e117679437a3e1b64a739ea96) @@ -1,68 +1,68 @@ -// ============================================================================ -// Copyright (C) 2001-2016 by Jozef Starosczyk -// ixen@copyhandler.com -// -// This program is free software; you can redistribute it and/or modify -// it under the terms of the GNU Library General Public License -// (version 2) as published by the Free Software Foundation; -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU Library General Public -// License along with this program; if not, write to the -// Free Software Foundation, Inc., -// 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -// ============================================================================ -#ifndef __TASYNCMULTILOGGER_H__ -#define __TASYNCMULTILOGGER_H__ - -#include "TLogFileData.h" -#include -#include -#include "TLoggerRotationInfo.h" -#include "liblogger.h" - -namespace logger -{ - class TAsyncMultiLogger; - - using TAsyncMultiLoggerPtr = std::shared_ptr; - - class LIBLOGGER_API TAsyncMultiLogger - { - public: - static TAsyncMultiLoggerPtr GetInstance(); - - public: - TAsyncMultiLogger(); - ~TAsyncMultiLogger(); - - void FinishLogging(); - TLogFileDataPtr CreateLoggerData(PCTSTR pszLogPath, const TMultiLoggerConfigPtr& spLoggerConfig); - - TLoggerRotationInfoPtr GetRotationInfo() const; - void SetMaxLogSize(unsigned int uiMaxLogSize); - void SetMaxRotatedCount(unsigned int uiMaxRotatedCount); - - private: - static DWORD __stdcall LoggingThread(void* pParam); - - private: -#pragma warning(push) -#pragma warning(disable: 4251) - std::unordered_set m_setLoggerData; - boost::shared_mutex m_mutex; - - std::shared_ptr m_spStopEvent; - std::shared_ptr m_spStoppedEvent; - HANDLE m_hThread = nullptr; - - TLoggerRotationInfoPtr m_spGlobalRotationInfo; -#pragma warning(pop) - }; -} - -#endif +// ============================================================================ +// Copyright (C) 2001-2016 by Jozef Starosczyk +// ixen@copyhandler.com +// +// This program is free software; you can redistribute it and/or modify +// it under the terms of the GNU Library General Public License +// (version 2) as published by the Free Software Foundation; +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU Library General Public +// License along with this program; if not, write to the +// Free Software Foundation, Inc., +// 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +// ============================================================================ +#ifndef __TASYNCMULTILOGGER_H__ +#define __TASYNCMULTILOGGER_H__ + +#include "TLogFileData.h" +#include +#include +#include "TLoggerRotationInfo.h" +#include "liblogger.h" + +namespace logger +{ + class TAsyncMultiLogger; + + using TAsyncMultiLoggerPtr = std::shared_ptr; + + class LIBLOGGER_API TAsyncMultiLogger + { + public: + static TAsyncMultiLoggerPtr GetInstance(); + + public: + TAsyncMultiLogger(); + ~TAsyncMultiLogger(); + + void FinishLogging(); + TLogFileDataPtr CreateLoggerData(PCTSTR pszLogPath, const TMultiLoggerConfigPtr& spLoggerConfig); + + TLoggerRotationInfoPtr GetRotationInfo() const; + void SetMaxLogSize(unsigned int uiMaxLogSize); + void SetMaxRotatedCount(unsigned int uiMaxRotatedCount); + + private: + static DWORD __stdcall LoggingThread(void* pParam); + + private: +#pragma warning(push) +#pragma warning(disable: 4251) + std::unordered_set m_setLoggerData; + boost::shared_mutex m_mutex; + + std::shared_ptr m_spStopEvent; + std::shared_ptr m_spStoppedEvent; + HANDLE m_hThread = nullptr; + + TLoggerRotationInfoPtr m_spGlobalRotationInfo; +#pragma warning(pop) + }; +} + +#endif