TTKMusicPlayer  4.3.0.0
TTKMusicPlayer imitates Kugou UI, the music player uses of qmmp core library based on Qt for windows and linux
Macros
ttklogger.h File Reference
#include <QDebug>
#include <QDateTime>
#include "ttkglobal.h"

Go to the source code of this file.

Macros

#define __TTK_LOG_OUTPUT__   qDebug().noquote()
 
#define __TTK_DATE__   QDate::currentDate().toString(TTK_DATE_FORMAT)
 
#define __TTK_TIME__   QTime::currentTime().toString(TTK_TIMEZ_FORMAT)
 
#define __TTK_BASE_STREAM__(level, msg)   __TTK_LOG_OUTPUT__ << QString("[%1 %2][%3][%4(%5)] ").arg(__TTK_DATE__, __TTK_TIME__, level, __FILE__, QString::number(__LINE__)) << msg
 
#define __TTK_ONCE_STREAM__(level, msg)
 
#define __TTK_COND_STREAM__(cond, level, msg)
 
#define __TTK_COUNT_STREAM__(count, level, msg)
 
#define __TTK_PERIOD_STREAM__(period, level, msg)
 
#define TTK_LOG_STREAM(msg)   __TTK_LOG_OUTPUT__ << msg
 
#define TTK_TRACE_STREAM(msg)   { __TTK_BASE_STREAM__("T", msg); }
 
#define TTK_DEBUG_STREAM(msg)   { __TTK_BASE_STREAM__("D", msg); }
 
#define TTK_INFO_STREAM(msg)   { __TTK_BASE_STREAM__("I", msg); }
 
#define TTK_WARN_STREAM(msg)   { __TTK_BASE_STREAM__("W", msg); }
 
#define TTK_ERROR_STREAM(msg)   { __TTK_BASE_STREAM__("E", msg); }
 
#define TTK_FATAL_STREAM(msg)   { __TTK_BASE_STREAM__("F", msg); }
 
#define TTK_TRACE_STREAM_ONCE(msg)   { __TTK_ONCE_STREAM__("T", msg) }
 
#define TTK_DEBUG_STREAM_ONCE(msg)   { __TTK_ONCE_STREAM__("D", msg) }
 
#define TTK_INFO_STREAM_ONCE(msg)   { __TTK_ONCE_STREAM__("I", msg) }
 
#define TTK_WARN_STREAM_ONCE(msg)   { __TTK_ONCE_STREAM__("W", msg) }
 
#define TTK_ERROR_STREAM_ONCE(msg)   { __TTK_ONCE_STREAM__("E", msg) }
 
#define TTK_FATAL_STREAM_ONCE(msg)   { __TTK_ONCE_STREAM__("F", msg) }
 
#define TTK_TRACE_STREAM_COND(cond, msg)   { __TTK_COND_STREAM__(cond, "T", msg) }
 
#define TTK_DEBUG_STREAM_COND(cond, msg)   { __TTK_COND_STREAM__(cond, "D", msg) }
 
#define TTK_INFO_STREAM_COND(cond, msg)   { __TTK_COND_STREAM__(cond, "I", msg) }
 
#define TTK_WARN_STREAM_COND(cond, msg)   { __TTK_COND_STREAM__(cond, "W", msg) }
 
#define TTK_ERROR_STREAM_COND(cond, msg)   { __TTK_COND_STREAM__(cond, "E", msg) }
 
#define TTK_FATAL_STREAM_COND(cond, msg)   { __TTK_COND_STREAM__(cond, "F", msg) }
 
#define TTK_TRACE_STREAM_COUNT(count, msg)   { __TTK_COUNT_STREAM__(count, "T", msg) }
 
#define TTK_DEBUG_STREAM_COUNT(count, msg)   { __TTK_COUNT_STREAM__(count, "D", msg) }
 
#define TTK_INFO_STREAM_COUNT(count, msg)   { __TTK_COUNT_STREAM__(count, "I", msg) }
 
#define TTK_WARN_STREAM_COUNT(count, msg)   { __TTK_COUNT_STREAM__(count, "W", msg) }
 
#define TTK_ERROR_STREAM_COUNT(count, msg)   { __TTK_COUNT_STREAM__(count, "E", msg) }
 
#define TTK_FATAL_STREAM_COUNT(count, msg)   { __TTK_COUNT_STREAM__(count, "F", msg) }
 
#define TTK_TRACE_STREAM_PERIOD(period, msg)   { __TTK_PERIOD_STREAM__(period, "T", msg) }
 
#define TTK_DEBUG_STREAM_PERIOD(period, msg)   { __TTK_PERIOD_STREAM__(period, "D", msg) }
 
#define TTK_INFO_STREAM_PERIOD(period, msg)   { __TTK_PERIOD_STREAM__(period, "I", msg) }
 
#define TTK_WARN_STREAM_PERIOD(period, msg)   { __TTK_PERIOD_STREAM__(period, "W", msg) }
 
#define TTK_ERROR_STREAM_PERIOD(period, msg)   { __TTK_PERIOD_STREAM__(period, "E", msg) }
 
#define TTK_FATAL_STREAM_PERIOD(period, msg)   { __TTK_PERIOD_STREAM__(period, "F", msg) }
 

Macro Definition Documentation

#define __TTK_BASE_STREAM__ (   level,
  msg 
)    __TTK_LOG_OUTPUT__ << QString("[%1 %2][%3][%4(%5)] ").arg(__TTK_DATE__, __TTK_TIME__, level, __FILE__, QString::number(__LINE__)) << msg

Definition at line 36 of file ttklogger.h.

#define __TTK_COND_STREAM__ (   cond,
  level,
  msg 
)
Value:
if(cond) \
{ \
__TTK_BASE_STREAM__(level, msg); \
}
#define __TTK_BASE_STREAM__(level, msg)
Definition: ttklogger.h:36

Definition at line 46 of file ttklogger.h.

#define __TTK_COUNT_STREAM__ (   count,
  level,
  msg 
)
Value:
static int __last__ = 1; \
if(count > 0 && ++__last__ > count) \
{ \
__last__ = 1; \
__TTK_BASE_STREAM__(level, msg); \
}
#define __TTK_BASE_STREAM__(level, msg)
Definition: ttklogger.h:36

Definition at line 52 of file ttklogger.h.

#define __TTK_DATE__   QDate::currentDate().toString(TTK_DATE_FORMAT)

Definition at line 32 of file ttklogger.h.

#define __TTK_LOG_OUTPUT__   qDebug().noquote()

Definition at line 29 of file ttklogger.h.

#define __TTK_ONCE_STREAM__ (   level,
  msg 
)
Value:
static bool __hit__ = false; \
if(!__hit__) \
{ \
__hit__ = true; \
__TTK_BASE_STREAM__(level, msg); \
}
#define __TTK_BASE_STREAM__(level, msg)
Definition: ttklogger.h:36

Definition at line 38 of file ttklogger.h.

#define __TTK_PERIOD_STREAM__ (   period,
  level,
  msg 
)
Value:
static qint64 __last__ = 0; \
const qint64 __now__ = QDateTime::currentMSecsSinceEpoch(); \
if(__last__ + period * 1000 <= __now__ || __now__ < __last__) \
{ \
__last__ = __now__; \
__TTK_BASE_STREAM__(level, msg); \
}
#define __TTK_BASE_STREAM__(level, msg)
Definition: ttklogger.h:36
#define const
Definition: zconf.h:233

Definition at line 60 of file ttklogger.h.

#define __TTK_TIME__   QTime::currentTime().toString(TTK_TIMEZ_FORMAT)

Definition at line 33 of file ttklogger.h.

#define TTK_DEBUG_STREAM (   msg)    { __TTK_BASE_STREAM__("D", msg); }

Definition at line 73 of file ttklogger.h.

#define TTK_DEBUG_STREAM_COND (   cond,
  msg 
)    { __TTK_COND_STREAM__(cond, "D", msg) }

Definition at line 87 of file ttklogger.h.

#define TTK_DEBUG_STREAM_COUNT (   count,
  msg 
)    { __TTK_COUNT_STREAM__(count, "D", msg) }

Definition at line 94 of file ttklogger.h.

#define TTK_DEBUG_STREAM_ONCE (   msg)    { __TTK_ONCE_STREAM__("D", msg) }

Definition at line 80 of file ttklogger.h.

#define TTK_DEBUG_STREAM_PERIOD (   period,
  msg 
)    { __TTK_PERIOD_STREAM__(period, "D", msg) }

Definition at line 101 of file ttklogger.h.

#define TTK_ERROR_STREAM (   msg)    { __TTK_BASE_STREAM__("E", msg); }

Definition at line 76 of file ttklogger.h.

Referenced by MusicServerPluginTableWidget::addCellItems(), TTKCommandLineParser::addOption(), MusicLrcLocalLinkWidget::confirmButtonClicked(), MusicLrcFromKrc::decode(), MusicWYCoverSourceRequest::downloadFinished(), MusicBDTranslationRequest::downloadFinished(), MusicBingTranslationRequest::downloadFinished(), MusicWYDownloadTextRequest::downloadFinished(), MusicWYTranslationRequest::downloadFinished(), MusicYDTranslationRequest::downloadFinished(), MusicKWDownloadTextRequest::downloadFinished(), MusicDownloadTextRequest::downloadFinished(), MusicDataSourceRequest::downloadFinished(), MusicNetworkOperator::downloadFinished(), MusicCommentsItem::downloadFinished(), MusicCiBaRequest::downloadFinished(), MusicAbstractItemQueryWidget::downloadFinished(), MusicDownloadMetaDataRequest::downloadFinished(), MusicSourceUpdateRequest::downloadFinished(), MusicWebDJRadioProgramTableWidget::downloadFinished(), MusicSquareQueryItemWidget::downloadFinished(), MusicSongSharingWidget::downloadFinished(), MusicRectQueryItemWidget::downloadFinished(), MusicLabelQueryItemWidget::downloadFinished(), MusicSongDailyWidget::downloadImageFinished(), MusicCloudManagerTableWidget::downloadKeyFinished(), MusicIdentifySongRequest::downloadKeyFinished(), TTKVariant< Types >::get(), MusicDownloadQueueRequest::handleError(), MusicCloudManagerTableWidget::initialize(), MusicPlaylistCategoryWidget::initialize(), MusicExtractManager::inputData(), main(), MusicAudioRecorderModule::onRecordStart(), TTKLogOutput::open(), ReqUnityInterface::parseFromSongProperty(), MusicPLSConfigManager::readBuffer(), MusicApplication::readSystemConfigFromFile(), MusicAbstractNetwork::replyError(), QSyncDataInterface::replyError(), TTKAbstractNetwork::replyError(), MusicServerPluginTableWidget::save(), MusicWidgetRenderer::setBackgroundPixmap(), MusicSongMeta::setCover(), MusicCoreMPlayer::setMedia(), MusicProgressWidget::show(), TTKAbstractNetwork::sslErrorsString(), MusicKWDownloadTextRequest::startToRequest(), MusicDownloadTextRequest::startToRequest(), MusicPVCounterRequest::startToRequest(), MusicWYDownloadTextRequest::startToRequest(), MusicDownloadDataRequest::startToRequest(), MusicDownloadMetaDataRequest::startToRequest(), MusicKWDownloadCoverRequest::startToRequest(), MusicACRIdentifyRequest::startToRequest(), MusicXFIdentifyRequest::startToRequest(), and MusicApplication::writeSystemConfigToFile().

#define TTK_ERROR_STREAM_COND (   cond,
  msg 
)    { __TTK_COND_STREAM__(cond, "E", msg) }

Definition at line 90 of file ttklogger.h.

#define TTK_ERROR_STREAM_COUNT (   count,
  msg 
)    { __TTK_COUNT_STREAM__(count, "E", msg) }

Definition at line 97 of file ttklogger.h.

#define TTK_ERROR_STREAM_ONCE (   msg)    { __TTK_ONCE_STREAM__("E", msg) }

Definition at line 83 of file ttklogger.h.

#define TTK_ERROR_STREAM_PERIOD (   period,
  msg 
)    { __TTK_PERIOD_STREAM__(period, "E", msg) }

Definition at line 104 of file ttklogger.h.

#define TTK_FATAL_STREAM (   msg)    { __TTK_BASE_STREAM__("F", msg); }

Definition at line 77 of file ttklogger.h.

#define TTK_FATAL_STREAM_COND (   cond,
  msg 
)    { __TTK_COND_STREAM__(cond, "F", msg) }

Definition at line 91 of file ttklogger.h.

#define TTK_FATAL_STREAM_COUNT (   count,
  msg 
)    { __TTK_COUNT_STREAM__(count, "F", msg) }

Definition at line 98 of file ttklogger.h.

#define TTK_FATAL_STREAM_ONCE (   msg)    { __TTK_ONCE_STREAM__("F", msg) }

Definition at line 84 of file ttklogger.h.

#define TTK_FATAL_STREAM_PERIOD (   period,
  msg 
)    { __TTK_PERIOD_STREAM__(period, "F", msg) }

Definition at line 105 of file ttklogger.h.

#define TTK_INFO_STREAM (   msg)    { __TTK_BASE_STREAM__("I", msg); }

Definition at line 74 of file ttklogger.h.

Referenced by MusicServerPluginTableWidget::addCellItems(), cleanupCache(), QDlnaClientPrivate::connect(), MusicBottomAreaWidget::createSystemTrayIcon(), MusicKGQueryPlaylistRequest::downloadDetailsFinished(), MusicKWQueryPlaylistRequest::downloadDetailsFinished(), MusicWYQueryPlaylistRequest::downloadDetailsFinished(), MusicDJRadioProgramCategoryRequest::downloadDetailsFinished(), MusicMVRadioCategoryRequest::downloadFinished(), MusicMVRadioProgramRequest::downloadFinished(), MusicKGDownloadBackgroundRequest::downloadFinished(), MusicDownloadTextRequest::downloadFinished(), MusicPVCounterRequest::downloadFinished(), MusicResourceRequest::downloadFinished(), MusicBDTranslationRequest::downloadFinished(), MusicBingTranslationRequest::downloadFinished(), MusicWYTranslationRequest::downloadFinished(), MusicKWDownloadBackgroundRequest::downloadFinished(), MusicYDTranslationRequest::downloadFinished(), MusicKGDiscoverListRequest::downloadFinished(), MusicKWDiscoverListRequest::downloadFinished(), MusicWYCoverSourceRequest::downloadFinished(), MusicWYDownloadTextRequest::downloadFinished(), MusicKWDownloadTextRequest::downloadFinished(), MusicBarrageRequest::downloadFinished(), MusicBPDownloadBackgroundRequest::downloadFinished(), MusicDJRadioCategoryRequest::downloadFinished(), ToolQTFM::downloadFinished(), MusicWYDiscoverListRequest::downloadFinished(), MusicWYQueryArtistListRequest::downloadFinished(), MusicKWQueryArtistListRequest::downloadFinished(), MusicKGSongCommentsRequest::downloadFinished(), MusicSongRecommendRequest::downloadFinished(), MusicKWSongCommentsRequest::downloadFinished(), MusicSongSuggestRequest::downloadFinished(), MusicWYSongCommentsRequest::downloadFinished(), MusicWYQueryAlbumRequest::downloadFinished(), MusicKGQueryArtistListRequest::downloadFinished(), MusicKGQueryAlbumRequest::downloadFinished(), MusicWYQueryArtistRequest::downloadFinished(), MusicKWQueryAlbumRequest::downloadFinished(), MusicKGQueryArtistRequest::downloadFinished(), MusicKWQueryArtistRequest::downloadFinished(), MusicFMRadioSongRequest::downloadFinished(), MusicKWQuerySongRequest::downloadFinished(), MusicKWQueryToplistRequest::downloadFinished(), MusicKGQuerySongRequest::downloadFinished(), MusicKGQueryToplistRequest::downloadFinished(), MusicWYQueryMovieRequest::downloadFinished(), MusicWYQuerySongRequest::downloadFinished(), MusicWYQueryToplistRequest::downloadFinished(), MusicKWQueryMovieRequest::downloadFinished(), MusicKGQueryMovieRequest::downloadFinished(), MusicDownloadMetaDataRequest::downloadFinished(), MusicDJRadioProgramRequest::downloadFinished(), MusicKGQueryPlaylistRequest::downloadFinished(), MusicCiBaRequest::downloadFinished(), MusicNewAlbumsRecommendRequest::downloadFinished(), MusicWYQueryPlaylistRequest::downloadFinished(), MusicKWQueryPlaylistRequest::downloadFinished(), MusicDownloadDataRequest::downloadFinished(), MusicTXDownloadBackgroundRequest::downloadFinished(), MusicDJRadioProgramCategoryRequest::downloadFinished(), MusicWYQueryHotArtistListRequest::downloadFinished(), MusicKWQueryHotArtistListRequest::downloadFinished(), MusicKGPlaylistCommentsRequest::downloadFinished(), MusicKWDownloadCoverRequest::downloadFinished(), MusicKWPlaylistCommentsRequest::downloadFinished(), MusicWYPlaylistCommentsRequest::downloadFinished(), MusicKGQueryArtistAlbumRequest::downloadFinished(), MusicWYQueryArtistAlbumRequest::downloadFinished(), MusicKWQueryArtistAlbumRequest::downloadFinished(), MusicKGQueryHotArtistListRequest::downloadFinished(), ToolXIFM::downloadFinished(), MusicACRIdentifyRequest::downloadFinished(), MusicKWQueryArtistMovieRequest::downloadFinished(), MusicKGQueryArtistMovieRequest::downloadFinished(), MusicKWQueryNewSongRequest::downloadFinished(), MusicKGQueryNewSongRequest::downloadFinished(), MusicWYQueryNewSongRequest::downloadFinished(), MusicWYQueryArtistMovieRequest::downloadFinished(), MusicKGQueryPlaylistRecommendRequest::downloadFinished(), MusicArtistsRecommendRequest::downloadFinished(), MusicWYQueryNewAlbumRequest::downloadFinished(), MusicKGQueryNewAlbumRequest::downloadFinished(), MusicKWQueryNewAlbumRequest::downloadFinished(), MusicWYQueryPlaylistRecommendRequest::downloadFinished(), MusicXFIdentifyRequest::downloadFinished(), MusicBackgroundDailyWidget::downloadFinished(), MusicKWQueryPlaylistRecommendRequest::downloadFinished(), MusicKGQueryPlaylistHighRequest::downloadFinished(), MusicWYQueryPlaylistHighRequest::downloadFinished(), MusicPlaylistRecommendRequest::downloadFinished(), MusicKWQueryPlaylistHighRequest::downloadFinished(), MusicBackgroundOnlineWidget::downloadFinished(), MusicPlaylistHQRecommendRequest::downloadFinished(), MusicCloudManagerTableWidget::downloadKeyFinished(), MusicKWQueryPlaylistRequest::downloadMoreDetailsFinished(), MusicKWQuerySongRequest::downloadSingleFinished(), MusicKGQuerySongRequest::downloadSingleFinished(), MusicWYQueryMovieRequest::downloadSingleFinished(), MusicWYQuerySongRequest::downloadSingleFinished(), MusicKWQueryMovieRequest::downloadSingleFinished(), MusicKGQueryMovieRequest::downloadSingleFinished(), MusicUnityQueryMovieRequest::downloadUnityFinished(), MusicTXDownloadBackgroundRequest::downloadUrl(), MusicTXDownloadBackgroundRequest::downloadUrlFinished(), MusicRunTimeManager::execute(), MusicProcessServer::execute(), TTKInitialization::execute(), TTK::fetchFileSizeByUrl(), MusicMobileSongsManagerWidget::findExtraDevicePath(), TTKInitialization::generateFont(), TTK::initialize(), MusicLrcAnalysis::loadFromFile(), MusicApplicationModule::loadNetWorkSetting(), main(), MusicDownloadQueryFactory::makeAlbumRequest(), MusicDownloadQueryFactory::makeArtistAlbumRequest(), MusicDownloadQueryFactory::makeArtistListRequest(), MusicDownloadQueryFactory::makeArtistMovieRequest(), MusicDownloadQueryFactory::makeArtistRequest(), MusicDownloadQueryFactory::makeHotArtistListRequest(), MusicDownloadQueryFactory::makeMovieRequest(), MusicDownloadQueryFactory::makeNewAlbumRequest(), MusicDownloadQueryFactory::makeNewSongRequest(), MusicDownloadQueryFactory::makePlaylistHighRequest(), MusicDownloadQueryFactory::makePlaylistRecommendRequest(), MusicDownloadQueryFactory::makePlaylistRequest(), MusicDownloadQueryFactory::makeSongRequest(), MusicDownloadQueryFactory::makeToplistRequest(), MusicKWQueryPlaylistRequest::morePlaylistDetails(), MusicAudioRecorderModule::MusicAudioRecorderModule(), MusicAbstractSongsListTableWidget::openFileDir(), ReqUnityInterface::parseFromSongProperty(), parseSongPropertyA(), parseSongPropertyB(), parseSongPropertyC(), parseSongPropertyD(), parseSongPropertyE(), parseSongPropertyUnity(), parseSongPropertyV1(), parseSongPropertyV2(), parseSongPropertyV3(), parseSongPropertyX(), MusicSongDlnaTransferWidget::playSongAction(), MusicTransformWidget::processTransform(), MusicServerPluginTableWidget::save(), MusicMobileSongsManagerWidget::searchFilePathChanged(), MusicTimerAutoModule::setShutdown(), MusicNetworkThread::start(), MusicKGSongCommentsRequest::startToPage(), MusicUnityQueryMovieRequest::startToPage(), MusicKWSongCommentsRequest::startToPage(), MusicKWQuerySongRequest::startToPage(), MusicKWQueryToplistRequest::startToPage(), MusicKWQueryMovieRequest::startToPage(), MusicNewAlbumsRecommendRequest::startToPage(), MusicKGQuerySongRequest::startToPage(), MusicKGQueryAlbumRequest::startToPage(), MusicWYSongCommentsRequest::startToPage(), MusicKGQueryToplistRequest::startToPage(), MusicWYQueryAlbumRequest::startToPage(), MusicWYQueryArtistListRequest::startToPage(), MusicKGQueryArtistListRequest::startToPage(), MusicWYQueryArtistRequest::startToPage(), MusicWYQueryMovieRequest::startToPage(), MusicKWQueryPlaylistRequest::startToPage(), MusicKWQueryAlbumRequest::startToPage(), MusicWYQueryPlaylistRequest::startToPage(), MusicKGQueryArtistRequest::startToPage(), MusicWYQuerySongRequest::startToPage(), MusicKWQueryArtistListRequest::startToPage(), MusicKGQueryMovieRequest::startToPage(), MusicKWQueryArtistRequest::startToPage(), MusicWYQueryToplistRequest::startToPage(), MusicDJRadioProgramCategoryRequest::startToPage(), MusicKGQueryPlaylistRequest::startToPage(), MusicWYQueryHotArtistListRequest::startToPage(), MusicKWQueryHotArtistListRequest::startToPage(), MusicKGPlaylistCommentsRequest::startToPage(), MusicKWPlaylistCommentsRequest::startToPage(), MusicWYPlaylistCommentsRequest::startToPage(), MusicKGQueryArtistAlbumRequest::startToPage(), MusicWYQueryArtistAlbumRequest::startToPage(), MusicKGQueryHotArtistListRequest::startToPage(), MusicKWQueryArtistAlbumRequest::startToPage(), MusicArtistsRecommendRequest::startToPage(), MusicKGQueryNewSongRequest::startToPage(), MusicWYQueryNewSongRequest::startToPage(), MusicKWQueryNewSongRequest::startToPage(), MusicKGQueryArtistMovieRequest::startToPage(), MusicKWQueryArtistMovieRequest::startToPage(), MusicKGQueryPlaylistRecommendRequest::startToPage(), MusicWYQueryPlaylistRecommendRequest::startToPage(), MusicWYQueryArtistMovieRequest::startToPage(), MusicKGQueryNewAlbumRequest::startToPage(), MusicWYQueryNewAlbumRequest::startToPage(), MusicKWQueryNewAlbumRequest::startToPage(), MusicKWQueryPlaylistRecommendRequest::startToPage(), MusicKGQueryPlaylistHighRequest::startToPage(), MusicPlaylistRecommendRequest::startToPage(), MusicWYQueryPlaylistHighRequest::startToPage(), MusicKWQueryPlaylistHighRequest::startToPage(), MusicPlaylistHQRecommendRequest::startToPage(), MusicKGQueryPlaylistRequest::startToQueryInfo(), MusicWYQueryPlaylistRequest::startToQueryInfo(), MusicKWQueryPlaylistRequest::startToQueryInfo(), MusicKGQueryPlaylistRecommendRequest::startToQueryInfo(), MusicWYQueryPlaylistRecommendRequest::startToQueryInfo(), MusicKWQueryPlaylistRecommendRequest::startToQueryInfo(), MusicKGQueryPlaylistHighRequest::startToQueryInfo(), MusicWYQueryPlaylistHighRequest::startToQueryInfo(), MusicKWQueryPlaylistHighRequest::startToQueryInfo(), MusicSongRecommendRequest::startToQueryResult(), MusicKGQueryArtistRequest::startToQueryResult(), MusicKGQueryAlbumRequest::startToQueryResult(), MusicWYQueryArtistRequest::startToQueryResult(), MusicKWQueryAlbumRequest::startToQueryResult(), MusicKWQueryArtistRequest::startToQueryResult(), MusicWYQueryAlbumRequest::startToQueryResult(), MusicKWQueryToplistRequest::startToQueryResult(), MusicWYQueryToplistRequest::startToQueryResult(), MusicKGQuerySongRequest::startToQueryResult(), MusicWYQuerySongRequest::startToQueryResult(), MusicNewAlbumsRecommendRequest::startToQueryResult(), MusicKGQueryPlaylistRequest::startToQueryResult(), MusicKGQueryToplistRequest::startToQueryResult(), MusicKWQuerySongRequest::startToQueryResult(), MusicKWQueryPlaylistRequest::startToQueryResult(), MusicWYQueryPlaylistRequest::startToQueryResult(), MusicDJRadioProgramCategoryRequest::startToQueryResult(), MusicWYQueryNewSongRequest::startToQueryResult(), MusicKWQueryNewSongRequest::startToQueryResult(), MusicKGQueryNewSongRequest::startToQueryResult(), MusicArtistsRecommendRequest::startToQueryResult(), MusicPlaylistRecommendRequest::startToQueryResult(), MusicPlaylistHQRecommendRequest::startToQueryResult(), MusicYDTranslationRequest::startToRequest(), MusicBPDownloadBackgroundRequest::startToRequest(), MusicWYTranslationRequest::startToRequest(), MusicPVCounterRequest::startToRequest(), MusicBingTranslationRequest::startToRequest(), MusicKGDownloadBackgroundRequest::startToRequest(), MusicKWDownloadBackgroundRequest::startToRequest(), MusicBarrageRequest::startToRequest(), MusicWYCoverSourceRequest::startToRequest(), MusicBDTranslationRequest::startToRequest(), ToolQTFM::startToRequest(), MusicTXDownloadBackgroundRequest::startToRequest(), ToolXIFM::startToRequest(), MusicQuerySongRequest::startToSearch(), MusicQueryArtistRequest::startToSearch(), MusicSongRecommendRequest::startToSearch(), MusicQueryArtistListRequest::startToSearch(), MusicSongSuggestRequest::startToSearch(), MusicQueryAlbumRequest::startToSearch(), MusicQueryToplistRequest::startToSearch(), MusicKGDiscoverListRequest::startToSearch(), MusicKWDiscoverListRequest::startToSearch(), MusicQueryMovieRequest::startToSearch(), MusicCommentsRequest::startToSearch(), MusicWYDiscoverListRequest::startToSearch(), MusicKGSongCommentsRequest::startToSearch(), MusicKWSongCommentsRequest::startToSearch(), MusicNewAlbumsRecommendRequest::startToSearch(), MusicDJRadioProgramCategoryRequest::startToSearch(), MusicWYSongCommentsRequest::startToSearch(), MusicKWQueryPlaylistRequest::startToSearch(), MusicKGQueryPlaylistRequest::startToSearch(), MusicWYQueryPlaylistRequest::startToSearch(), MusicArtistsRecommendRequest::startToSearch(), MusicKGQueryPlaylistRecommendRequest::startToSearch(), MusicWYQueryPlaylistRecommendRequest::startToSearch(), MusicKWQueryPlaylistRecommendRequest::startToSearch(), MusicKGQueryPlaylistHighRequest::startToSearch(), MusicPlaylistRecommendRequest::startToSearch(), MusicWYQueryPlaylistHighRequest::startToSearch(), MusicKWQueryPlaylistHighRequest::startToSearch(), MusicPlaylistHQRecommendRequest::startToSearch(), MusicQueryPlaylistRequest::startToSearchByID(), MusicWYQuerySongRequest::startToSearchByID(), MusicKGQuerySongRequest::startToSearchByID(), MusicKWQuerySongRequest::startToSearchByID(), MusicWYQueryMovieRequest::startToSearchByID(), MusicKGQueryMovieRequest::startToSearchByID(), MusicDJRadioProgramCategoryRequest::startToSearchByID(), MusicKWQueryMovieRequest::startToSearchByID(), TTK::syncNetworkQueryForGet(), TTK::syncNetworkQueryForPatch(), TTK::syncNetworkQueryForPost(), TTK::syncNetworkQueryForPut(), MusicSongDlnaTransferWidget::timeout(), ToolSkin::writeClicked(), and MusicSongDlnaTransferWidget::~MusicSongDlnaTransferWidget().

#define TTK_INFO_STREAM_COND (   cond,
  msg 
)    { __TTK_COND_STREAM__(cond, "I", msg) }

Definition at line 88 of file ttklogger.h.

#define TTK_INFO_STREAM_COUNT (   count,
  msg 
)    { __TTK_COUNT_STREAM__(count, "I", msg) }

Definition at line 95 of file ttklogger.h.

#define TTK_INFO_STREAM_ONCE (   msg)    { __TTK_ONCE_STREAM__("I", msg) }

Definition at line 81 of file ttklogger.h.

#define TTK_INFO_STREAM_PERIOD (   period,
  msg 
)    { __TTK_PERIOD_STREAM__(period, "I", msg) }

Definition at line 102 of file ttklogger.h.

#define TTK_LOG_STREAM (   msg)    __TTK_LOG_OUTPUT__ << msg
#define TTK_TRACE_STREAM (   msg)    { __TTK_BASE_STREAM__("T", msg); }

Definition at line 72 of file ttklogger.h.

#define TTK_TRACE_STREAM_COND (   cond,
  msg 
)    { __TTK_COND_STREAM__(cond, "T", msg) }

Definition at line 86 of file ttklogger.h.

#define TTK_TRACE_STREAM_COUNT (   count,
  msg 
)    { __TTK_COUNT_STREAM__(count, "T", msg) }

Definition at line 93 of file ttklogger.h.

#define TTK_TRACE_STREAM_ONCE (   msg)    { __TTK_ONCE_STREAM__("T", msg) }

Definition at line 79 of file ttklogger.h.

#define TTK_TRACE_STREAM_PERIOD (   period,
  msg 
)    { __TTK_PERIOD_STREAM__(period, "T", msg) }

Definition at line 100 of file ttklogger.h.

#define TTK_WARN_STREAM (   msg)    { __TTK_BASE_STREAM__("W", msg); }
#define TTK_WARN_STREAM_COND (   cond,
  msg 
)    { __TTK_COND_STREAM__(cond, "W", msg) }

Definition at line 89 of file ttklogger.h.

#define TTK_WARN_STREAM_COUNT (   count,
  msg 
)    { __TTK_COUNT_STREAM__(count, "W", msg) }

Definition at line 96 of file ttklogger.h.

#define TTK_WARN_STREAM_ONCE (   msg)    { __TTK_ONCE_STREAM__("W", msg) }

Definition at line 82 of file ttklogger.h.

#define TTK_WARN_STREAM_PERIOD (   period,
  msg 
)    { __TTK_PERIOD_STREAM__(period, "W", msg) }

Definition at line 103 of file ttklogger.h.