/
makani
/
strongdc
Обзор
Документация
Войти
/
makani
/
strongdc
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
client/TraceManager.cpp
100 строк
2 KB
bigmuscle
updated core
24 июл 2011, 22:28
24 июл 2011, 22:28
172ec44
Код
Авторство
О чём код?
/* * Copyright (C) 2001-2003 Jacek Sieka, j_s@telia.com * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * 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 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. */ #include "stdinc.h" #include "DCPlusPlus.h" #include "DCPlusPlus.h" #include "TraceManager.h" namespace dcpp { TraceManager* Singleton<TraceManager>::instance = NULL; void TraceManager::print(string msg) { DWORD tid; char buf[21]; time_t now = time(NULL); strftime(buf, 21, "%Y-%m-%d %H:%M:%S ", localtime(&now)); tid = GetCurrentThreadId(); Lock l(cs); try { f->write(buf + string(indents[tid], ' ') + msg + "\r\n"); } catch (const FileException&) { // ... } } void CDECL TraceManager::trace_print(const char* format, ...) noexcept { va_list args; va_start(args, format); char buf[512]; _vsnprintf(buf, sizeof(buf), format, args); print(buf); va_end(args); }; void CDECL TraceManager::trace_start(const char* format, ...) noexcept { va_list args; va_start(args, format); char buf[512]; _vsnprintf(buf, sizeof(buf), format, args); print((string)"START " + buf); indents[GetCurrentThreadId()] += 4; va_end(args); } void CDECL TraceManager::trace_end(const char* format, ...) noexcept { va_list args; va_start(args, format); char buf[512]; _vsnprintf(buf, sizeof(buf), format, args); indents[GetCurrentThreadId()] -= 4; print((string)"END " +buf); va_end(args); } } // namespace dcpp /** * @file * $Id$ */