tlog.c 21.5 KB
Newer Older
H
hzcheng 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 * Copyright (c) 2019 TAOS Data, Inc. <jhtao@taosdata.com>
 *
 * This program is free software: you can use, redistribute, and/or modify
 * it under the terms of the GNU Affero General Public License, version 3
 * or later ("AGPL"), 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.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */

S
slguan 已提交
16
#define _DEFAULT_SOURCE
S
log  
Shengliang Guan 已提交
17
#include "tlog.h"
H
Hongze Cheng 已提交
18
#include "os.h"
19
#include "tconfig.h"
dengyihao's avatar
dengyihao 已提交
20
#include "tutil.h"
L
Liu Jicong 已提交
21

S
Shengliang Guan 已提交
22 23 24 25
#define LOG_MAX_LINE_SIZE             (1024)
#define LOG_MAX_LINE_BUFFER_SIZE      (LOG_MAX_LINE_SIZE + 3)
#define LOG_MAX_LINE_DUMP_SIZE        (65 * 1024)
#define LOG_MAX_LINE_DUMP_BUFFER_SIZE (LOG_MAX_LINE_DUMP_SIZE + 3)
S
slguan 已提交
26

S
ulog  
Shengliang Guan 已提交
27 28
#define LOG_FILE_NAME_LEN    300
#define LOG_DEFAULT_BUF_SIZE (20 * 1024 * 1024)  // 20MB
H
hzcheng 已提交
29

S
ulog  
Shengliang Guan 已提交
30 31 32 33 34
#define LOG_DEFAULT_INTERVAL 25
#define LOG_INTERVAL_STEP    5
#define LOG_MIN_INTERVAL     5
#define LOG_MAX_INTERVAL     25
#define LOG_MAX_WAIT_MSEC    1000
D
fix bug  
dapan1121 已提交
35

S
slguan 已提交
36
#define LOG_BUF_BUFFER(x) ((x)->buffer)
S
ulog  
Shengliang Guan 已提交
37 38 39 40
#define LOG_BUF_START(x)  ((x)->buffStart)
#define LOG_BUF_END(x)    ((x)->buffEnd)
#define LOG_BUF_SIZE(x)   ((x)->buffSize)
#define LOG_BUF_MUTEX(x)  ((x)->buffMutex)
S
slguan 已提交
41

H
hzcheng 已提交
42
typedef struct {
dengyihao's avatar
dengyihao 已提交
43
  char         *buffer;
44 45 46 47 48 49 50
  int32_t       buffStart;
  int32_t       buffEnd;
  int32_t       buffSize;
  int32_t       minBuffSize;
  TdFilePtr     pFile;
  int32_t       stop;
  TdThread      asyncThread;
wafwerar's avatar
wafwerar 已提交
51
  TdThreadMutex buffMutex;
H
hzcheng 已提交
52 53
} SLogBuff;

S
slguan 已提交
54
typedef struct {
55 56 57 58 59 60 61
  int32_t       fileNum;
  int32_t       maxLines;
  int32_t       lines;
  int32_t       flag;
  int32_t       openInProgress;
  pid_t         pid;
  char          logName[LOG_FILE_NAME_LEN];
dengyihao's avatar
dengyihao 已提交
62
  SLogBuff     *logHandle;
wafwerar's avatar
wafwerar 已提交
63
  TdThreadMutex logMutex;
S
slguan 已提交
64 65
} SLogObj;

66
extern SConfig *tsCfg;
dengyihao's avatar
dengyihao 已提交
67 68 69 70
static int8_t   tsLogInited = 0;
static SLogObj  tsLogObj = {.fileNum = 1};
static int64_t  tsAsyncLogLostLines = 0;
static int32_t  tsWriteInterval = LOG_DEFAULT_INTERVAL;
dengyihao's avatar
dengyihao 已提交
71
static int32_t  tsDaylightActive; /* Currently in daylight saving time. */
L
Liu Jicong 已提交
72

S
Shengliang Guan 已提交
73
bool    tsLogEmbedded = 0;
S
Shengliang Guan 已提交
74
bool    tsAsyncLog = true;
S
Shengliang Guan 已提交
75
int32_t tsNumOfLogLines = 10000000;
S
Shengliang Guan 已提交
76
int32_t tsLogKeepDays = 0;
S
Shengliang Guan 已提交
77
LogFp   tsLogFp = NULL;
S
Shengliang Guan 已提交
78 79 80 81
int64_t tsNumOfErrorLogs = 0;
int64_t tsNumOfInfoLogs = 0;
int64_t tsNumOfDebugLogs = 0;
int64_t tsNumOfTraceLogs = 0;
D
fix bug  
dapan1121 已提交
82

S
Shengliang Guan 已提交
83
// log
S
Shengliang Guan 已提交
84 85 86
int32_t dDebugFlag = 131;
int32_t vDebugFlag = 131;
int32_t mDebugFlag = 131;
S
Shengliang Guan 已提交
87 88
int32_t cDebugFlag = 131;
int32_t jniDebugFlag = 131;
S
Shengliang Guan 已提交
89
int32_t tmrDebugFlag = 131;
S
Shengliang Guan 已提交
90
int32_t uDebugFlag = 131;
S
Shengliang Guan 已提交
91 92
int32_t rpcDebugFlag = 131;
int32_t qDebugFlag = 131;
S
Shengliang Guan 已提交
93 94
int32_t wDebugFlag = 131;
int32_t sDebugFlag = 131;
S
Shengliang Guan 已提交
95
int32_t tsdbDebugFlag = 131;
H
Hongze Cheng 已提交
96
int32_t tdbDebugFlag = 131;
S
Shengliang Guan 已提交
97 98 99 100
int32_t tqDebugFlag = 131;
int32_t fsDebugFlag = 131;
int32_t metaDebugFlag = 131;
int32_t udfDebugFlag = 131;
C
Cary Xu 已提交
101
int32_t smaDebugFlag = 131;
S
Shengliang Guan 已提交
102
int32_t idxDebugFlag = 131;
D
dapan1121 已提交
103

D
fix bug  
dapan1121 已提交
104
int64_t dbgEmptyW = 0;
D
fix bug  
dapan1121 已提交
105 106 107
int64_t dbgWN = 0;
int64_t dbgSmallWN = 0;
int64_t dbgBigWN = 0;
D
fix bug  
dapan1121 已提交
108 109
int64_t dbgWSize = 0;

dengyihao's avatar
dengyihao 已提交
110
static void     *taosAsyncOutputLog(void *param);
111
static int32_t   taosPushLogBuffer(SLogBuff *pLogBuf, const char *msg, int32_t msgLen);
S
slguan 已提交
112
static SLogBuff *taosLogBuffNew(int32_t bufSize);
113
static void      taosCloseLogByFd(TdFilePtr pFile);
S
slguan 已提交
114
static int32_t   taosOpenLogFile(char *fn, int32_t maxLines, int32_t maxFileNum);
S
Shengliang Guan 已提交
115
static int32_t   taosCompressFile(char *srcFileName, char *destFileName);
S
slguan 已提交
116

dengyihao's avatar
dengyihao 已提交
117 118 119 120 121 122 123 124 125 126
static FORCE_INLINE void taosUpdateDaylight() {
  struct tm      Tm, *ptm;
  struct timeval timeSecs;
  taosGetTimeOfDay(&timeSecs);
  time_t curTime = timeSecs.tv_sec;
  ptm = taosLocalTime(&curTime, &Tm);
  tsDaylightActive = ptm->tm_isdst;
}
static FORCE_INLINE int32_t taosGetDaylight() { return tsDaylightActive; }

S
slguan 已提交
127
static int32_t taosStartLog() {
wafwerar's avatar
wafwerar 已提交
128 129 130
  TdThreadAttr threadAttr;
  taosThreadAttrInit(&threadAttr);
  if (taosThreadCreate(&(tsLogObj.logHandle->asyncThread), &threadAttr, taosAsyncOutputLog, tsLogObj.logHandle) != 0) {
H
hzcheng 已提交
131 132
    return -1;
  }
wafwerar's avatar
wafwerar 已提交
133
  taosThreadAttrDestroy(&threadAttr);
H
hzcheng 已提交
134 135 136
  return 0;
}

S
Shengliang Guan 已提交
137
int32_t taosInitLog(const char *logName, int32_t maxFiles) {
S
Shengliang Guan 已提交
138
  if (atomic_val_compare_exchange_8(&tsLogInited, 0, 1) != 0) return 0;
S
osenv  
Shengliang Guan 已提交
139
  osUpdate();
S
Shengliang Guan 已提交
140

S
Shengliang Guan 已提交
141
  char fullName[PATH_MAX] = {0};
dengyihao's avatar
dengyihao 已提交
142 143 144 145 146
  if (strlen(tsLogDir) != 0) {
    snprintf(fullName, PATH_MAX, "%s" TD_DIRSEP "%s", tsLogDir, logName);
  } else {
    snprintf(fullName, PATH_MAX, "%s", logName);
  }
dengyihao's avatar
dengyihao 已提交
147
  taosUpdateDaylight();
S
Shengliang Guan 已提交
148

S
ulog  
Shengliang Guan 已提交
149
  tsLogObj.logHandle = taosLogBuffNew(LOG_DEFAULT_BUF_SIZE);
S
slguan 已提交
150
  if (tsLogObj.logHandle == NULL) return -1;
S
Shengliang Guan 已提交
151
  if (taosOpenLogFile(fullName, tsNumOfLogLines, maxFiles) < 0) return -1;
H
hzcheng 已提交
152 153 154 155
  if (taosStartLog() < 0) return -1;
  return 0;
}

S
slguan 已提交
156 157 158 159
static void taosStopLog() {
  if (tsLogObj.logHandle) {
    tsLogObj.logHandle->stop = 1;
  }
H
hzcheng 已提交
160 161
}

S
slguan 已提交
162
void taosCloseLog() {
163 164 165 166
  if (tsLogObj.logHandle != NULL) {
    taosStopLog();
    if (tsLogObj.logHandle != NULL && taosCheckPthreadValid(tsLogObj.logHandle->asyncThread)) {
      taosThreadJoin(tsLogObj.logHandle->asyncThread, NULL);
167
      taosThreadClear(&tsLogObj.logHandle->asyncThread);
168 169 170 171 172 173 174 175 176 177 178
    }
    tsLogInited = 0;

    taosThreadMutexDestroy(&tsLogObj.logHandle->buffMutex);
    taosCloseFile(&tsLogObj.logHandle->pFile);
    taosMemoryFreeClear(tsLogObj.logHandle->buffer);
    memset(&tsLogObj.logHandle->buffer, 0, sizeof(tsLogObj.logHandle->buffer));
    taosThreadMutexDestroy(&tsLogObj.logMutex);
    taosMemoryFreeClear(tsLogObj.logHandle);
    memset(&tsLogObj.logHandle, 0, sizeof(tsLogObj.logHandle));
    tsLogObj.logHandle = NULL;
S
slguan 已提交
179
  }
H
hzcheng 已提交
180 181
}

182 183
static bool taosLockLogFile(TdFilePtr pFile) {
  if (pFile == NULL) return false;
H
hzcheng 已提交
184

S
slguan 已提交
185
  if (tsLogObj.fileNum > 1) {
186
    int32_t ret = taosLockFile(pFile);
H
hzcheng 已提交
187 188 189 190 191 192 193 194
    if (ret == 0) {
      return true;
    }
  }

  return false;
}

195 196
static void taosUnLockLogFile(TdFilePtr pFile) {
  if (pFile == NULL) return;
H
hzcheng 已提交
197

S
slguan 已提交
198
  if (tsLogObj.fileNum > 1) {
199
    taosUnLockFile(pFile);
H
hzcheng 已提交
200 201 202
  }
}

S
TD-1263  
Shengliang Guan 已提交
203
static void taosKeepOldLog(char *oldName) {
S
TD-1574  
Shengliang Guan 已提交
204
  if (tsLogKeepDays == 0) return;
S
TD-1263  
Shengliang Guan 已提交
205

S
TD-1263  
Shengliang Guan 已提交
206
  int64_t fileSec = taosGetTimestampSec();
S
TD-1263  
Shengliang Guan 已提交
207
  char    fileName[LOG_FILE_NAME_LEN + 20];
S
TD-1263  
Shengliang Guan 已提交
208
  snprintf(fileName, LOG_FILE_NAME_LEN + 20, "%s.%" PRId64, tsLogObj.logName, fileSec);
S
TD-1263  
Shengliang Guan 已提交
209

A
Alex Duan 已提交
210
  (void)taosRenameFile(oldName, fileName);
211

S
TD-1574  
Shengliang Guan 已提交
212 213 214 215
  if (tsLogKeepDays < 0) {
    char compressFileName[LOG_FILE_NAME_LEN + 20];
    snprintf(compressFileName, LOG_FILE_NAME_LEN + 20, "%s.%" PRId64 ".gz", tsLogObj.logName, fileSec);
    if (taosCompressFile(fileName, compressFileName) == 0) {
216
      (void)taosRemoveFile(fileName);
S
TD-1574  
Shengliang Guan 已提交
217 218 219
    }
  }

S
os env  
Shengliang Guan 已提交
220
  taosRemoveOldFiles(tsLogDir, TABS(tsLogKeepDays));
S
TD-1263  
Shengliang Guan 已提交
221 222
}

S
slguan 已提交
223
static void *taosThreadToOpenNewFile(void *param) {
S
TD-1263  
Shengliang Guan 已提交
224 225
  char keepName[LOG_FILE_NAME_LEN + 20];
  sprintf(keepName, "%s.%d", tsLogObj.logName, tsLogObj.flag);
H
hzcheng 已提交
226

S
slguan 已提交
227 228
  tsLogObj.flag ^= 1;
  tsLogObj.lines = 0;
S
TD-1263  
Shengliang Guan 已提交
229
  char name[LOG_FILE_NAME_LEN + 20];
S
slguan 已提交
230
  sprintf(name, "%s.%d", tsLogObj.logName, tsLogObj.flag);
H
hzcheng 已提交
231

S
Shengliang Guan 已提交
232
  taosUmaskFile(0);
H
hzcheng 已提交
233

234
  TdFilePtr pFile = taosOpenFile(name, TD_FILE_CREATE | TD_FILE_WRITE | TD_FILE_TRUNC);
235
  if (pFile == NULL) {
236 237
    tsLogObj.openInProgress = 0;
    tsLogObj.lines = tsLogObj.maxLines - 1000;
238
    uError("open new log file fail! reason:%s, reuse lastlog", strerror(errno));
H
Hui Li 已提交
239 240
    return NULL;
  }
S
TD-1263  
Shengliang Guan 已提交
241

242 243
  taosLockLogFile(pFile);
  (void)taosLSeekFile(pFile, 0, SEEK_SET);
H
hzcheng 已提交
244

245 246
  TdFilePtr pOldFile = tsLogObj.logHandle->pFile;
  tsLogObj.logHandle->pFile = pFile;
S
slguan 已提交
247 248
  tsLogObj.lines = 0;
  tsLogObj.openInProgress = 0;
wafwerar's avatar
wafwerar 已提交
249
  taosSsleep(20);
250
  taosCloseLogByFd(pOldFile);
L
Liu Jicong 已提交
251

S
TD-1263  
Shengliang Guan 已提交
252 253
  uInfo("   new log file:%d is opened", tsLogObj.flag);
  uInfo("==================================");
S
TD-1263  
Shengliang Guan 已提交
254 255
  taosKeepOldLog(keepName);

H
hzcheng 已提交
256 257 258
  return NULL;
}

S
slguan 已提交
259
static int32_t taosOpenNewLogFile() {
wafwerar's avatar
wafwerar 已提交
260
  taosThreadMutexLock(&tsLogObj.logMutex);
H
hzcheng 已提交
261

S
slguan 已提交
262 263
  if (tsLogObj.lines > tsLogObj.maxLines && tsLogObj.openInProgress == 0) {
    tsLogObj.openInProgress = 1;
H
hzcheng 已提交
264

265
    uInfo("open new log file ......");
266
    TdThread     thread;
wafwerar's avatar
wafwerar 已提交
267 268 269
    TdThreadAttr attr;
    taosThreadAttrInit(&attr);
    taosThreadAttrSetDetachState(&attr, PTHREAD_CREATE_DETACHED);
H
hzcheng 已提交
270

wafwerar's avatar
wafwerar 已提交
271 272
    taosThreadCreate(&thread, &attr, taosThreadToOpenNewFile, NULL);
    taosThreadAttrDestroy(&attr);
H
hzcheng 已提交
273 274
  }

wafwerar's avatar
wafwerar 已提交
275
  taosThreadMutexUnlock(&tsLogObj.logMutex);
H
hzcheng 已提交
276 277 278 279

  return 0;
}

S
slguan 已提交
280 281 282
void taosResetLog() {
  char lastName[LOG_FILE_NAME_LEN + 20];
  sprintf(lastName, "%s.%d", tsLogObj.logName, tsLogObj.flag);
H
hzcheng 已提交
283 284

  // force create a new log file
S
slguan 已提交
285
  tsLogObj.lines = tsLogObj.maxLines + 10;
H
hzcheng 已提交
286 287

  taosOpenNewLogFile();
288
  (void)taosRemoveFile(lastName);
H
hzcheng 已提交
289

290 291
  uInfo("==================================");
  uInfo("   reset log file ");
H
hzcheng 已提交
292 293
}

S
slguan 已提交
294
static bool taosCheckFileIsOpen(char *logFileName) {
295 296
  TdFilePtr pFile = taosOpenFile(logFileName, TD_FILE_WRITE);
  if (pFile == NULL) {
297 298 299 300 301 302
    if (errno == ENOENT) {
      return false;
    } else {
      printf("\nfailed to open log file:%s, reason:%s\n", logFileName, strerror(errno));
      return true;
    }
H
hzcheng 已提交
303 304
  }

305 306 307
  if (taosLockLogFile(pFile)) {
    taosUnLockLogFile(pFile);
    taosCloseFile(&pFile);
H
hzcheng 已提交
308 309
    return false;
  } else {
310
    taosCloseFile(&pFile);
H
hzcheng 已提交
311 312 313 314
    return true;
  }
}

S
slguan 已提交
315 316 317
static void taosGetLogFileName(char *fn) {
  if (tsLogObj.fileNum > 1) {
    for (int32_t i = 0; i < tsLogObj.fileNum; i++) {
H
hzcheng 已提交
318 319
      char fileName[LOG_FILE_NAME_LEN];

H
Haojun Liao 已提交
320
      snprintf(fileName, LOG_FILE_NAME_LEN, "%s%d.0", fn, i);
H
hzcheng 已提交
321 322
      bool file1open = taosCheckFileIsOpen(fileName);

H
Haojun Liao 已提交
323
      snprintf(fileName, LOG_FILE_NAME_LEN, "%s%d.1", fn, i);
H
hzcheng 已提交
324 325 326
      bool file2open = taosCheckFileIsOpen(fileName);

      if (!file1open && !file2open) {
H
Haojun Liao 已提交
327
        snprintf(tsLogObj.logName, LOG_FILE_NAME_LEN, "%s%d", fn, i);
H
hzcheng 已提交
328 329 330 331 332
        return;
      }
    }
  }

H
Hui Li 已提交
333 334 335
  if (strlen(fn) < LOG_FILE_NAME_LEN) {
    strcpy(tsLogObj.logName, fn);
  }
H
hzcheng 已提交
336 337
}

S
slguan 已提交
338
static int32_t taosOpenLogFile(char *fn, int32_t maxLines, int32_t maxFileNum) {
S
slguan 已提交
339 340
#ifdef WINDOWS
  /*
L
Liu Jicong 已提交
341 342 343
   * always set maxFileNum to 1
   * means client log filename is unique in windows
   */
S
slguan 已提交
344 345 346
  maxFileNum = 1;
#endif

S
Shengliang Guan 已提交
347 348 349
  char    name[LOG_FILE_NAME_LEN + 50] = "\0";
  int32_t logstat0_mtime, logstat1_mtime;
  int32_t size;
H
hzcheng 已提交
350

S
slguan 已提交
351 352
  tsLogObj.maxLines = maxLines;
  tsLogObj.fileNum = maxFileNum;
H
hzcheng 已提交
353 354
  taosGetLogFileName(fn);

H
Hui Li 已提交
355 356 357 358
  if (strlen(fn) < LOG_FILE_NAME_LEN + 50 - 2) {
    strcpy(name, fn);
    strcat(name, ".0");
  }
S
Shengliang Guan 已提交
359
  bool log0Exist = taosStatFile(name, NULL, &logstat0_mtime) >= 0;
H
hzcheng 已提交
360

S
TD-1263  
Shengliang Guan 已提交
361 362 363 364
  if (strlen(fn) < LOG_FILE_NAME_LEN + 50 - 2) {
    strcpy(name, fn);
    strcat(name, ".1");
  }
S
Shengliang Guan 已提交
365 366
  bool log1Exist = taosStatFile(name, NULL, &logstat1_mtime) >= 0;

H
hzcheng 已提交
367
  // if none of the log files exist, open 0, if both exists, open the old one
S
TD-1263  
Shengliang Guan 已提交
368 369 370
  if (!log0Exist && !log1Exist) {
    tsLogObj.flag = 0;
  } else if (!log1Exist) {
S
slguan 已提交
371
    tsLogObj.flag = 0;
S
TD-1263  
Shengliang Guan 已提交
372 373
  } else if (!log0Exist) {
    tsLogObj.flag = 1;
H
hzcheng 已提交
374
  } else {
S
Shengliang Guan 已提交
375
    tsLogObj.flag = (logstat0_mtime > logstat1_mtime) ? 0 : 1;
H
hzcheng 已提交
376 377
  }

H
Hui Li 已提交
378 379
  char fileName[LOG_FILE_NAME_LEN + 50] = "\0";
  sprintf(fileName, "%s.%d", tsLogObj.logName, tsLogObj.flag);
wafwerar's avatar
wafwerar 已提交
380
  taosThreadMutexInit(&tsLogObj.logMutex, NULL);
H
hzcheng 已提交
381

S
Shengliang Guan 已提交
382
  taosUmaskFile(0);
383
  tsLogObj.logHandle->pFile = taosOpenFile(fileName, TD_FILE_CREATE | TD_FILE_WRITE);
H
hzcheng 已提交
384

385
  if (tsLogObj.logHandle->pFile == NULL) {
H
Hui Li 已提交
386
    printf("\nfailed to open log file:%s, reason:%s\n", fileName, strerror(errno));
H
hzcheng 已提交
387 388
    return -1;
  }
389
  taosLockLogFile(tsLogObj.logHandle->pFile);
H
hzcheng 已提交
390 391

  // only an estimate for number of lines
S
Shengliang Guan 已提交
392
  int64_t filesize = 0;
393
  if (taosFStatFile(tsLogObj.logHandle->pFile, &filesize, NULL) < 0) {
H
Hui Li 已提交
394
    printf("\nfailed to fstat log file:%s, reason:%s\n", fileName, strerror(errno));
H
Hui Li 已提交
395 396
    return -1;
  }
S
Shengliang Guan 已提交
397
  size = (int32_t)filesize;
S
slguan 已提交
398
  tsLogObj.lines = size / 60;
H
hzcheng 已提交
399

400
  taosLSeekFile(tsLogObj.logHandle->pFile, 0, SEEK_END);
H
hzcheng 已提交
401 402

  sprintf(name, "==================================================\n");
403
  taosWriteFile(tsLogObj.logHandle->pFile, name, (uint32_t)strlen(name));
H
hzcheng 已提交
404
  sprintf(name, "                new log file                      \n");
405
  taosWriteFile(tsLogObj.logHandle->pFile, name, (uint32_t)strlen(name));
H
hzcheng 已提交
406
  sprintf(name, "==================================================\n");
407
  taosWriteFile(tsLogObj.logHandle->pFile, name, (uint32_t)strlen(name));
H
hzcheng 已提交
408 409 410 411

  return 0;
}

412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431
static void taosUpdateLogNums(ELogLevel level) {
  switch (level) {
    case DEBUG_ERROR:
      atomic_add_fetch_64(&tsNumOfErrorLogs, 1);
      break;
    case DEBUG_INFO:
      atomic_add_fetch_64(&tsNumOfInfoLogs, 1);
      break;
    case DEBUG_DEBUG:
      atomic_add_fetch_64(&tsNumOfDebugLogs, 1);
      break;
    case DEBUG_DUMP:
    case DEBUG_TRACE:
      atomic_add_fetch_64(&tsNumOfTraceLogs, 1);
      break;
    default:
      break;
  }
}

S
Shengliang Guan 已提交
432
static inline int32_t taosBuildLogHead(char *buffer, const char *flags) {
H
hzcheng 已提交
433 434 435
  struct tm      Tm, *ptm;
  struct timeval timeSecs;

S
Shengliang Guan 已提交
436
  taosGetTimeOfDay(&timeSecs);
S
Shengliang Guan 已提交
437
  time_t curTime = timeSecs.tv_sec;
dengyihao's avatar
enh log  
dengyihao 已提交
438
  ptm = taosLocalTime(&curTime, &Tm);
S
slguan 已提交
439

S
Shengliang Guan 已提交
440 441 442
  return sprintf(buffer, "%02d/%02d %02d:%02d:%02d.%06d %08" PRId64 " %s", ptm->tm_mon + 1, ptm->tm_mday, ptm->tm_hour,
                 ptm->tm_min, ptm->tm_sec, (int32_t)timeSecs.tv_usec, taosGetSelfPthreadId(), flags);
}
H
hzcheng 已提交
443

S
Shengliang Guan 已提交
444
static inline void taosPrintLogImp(ELogLevel level, int32_t dflag, const char *buffer, int32_t len) {
wafwerar's avatar
wafwerar 已提交
445
  if ((dflag & DEBUG_FILE) && tsLogObj.logHandle && tsLogObj.logHandle->pFile != NULL && osLogSpaceAvailable()) {
446
    taosUpdateLogNums(level);
B
Benguang Zhao 已提交
447
    if (tsAsyncLog && level != DEBUG_FATAL) {
S
slguan 已提交
448
      taosPushLogBuffer(tsLogObj.logHandle, buffer, len);
H
hzcheng 已提交
449
    } else {
450
      taosWriteFile(tsLogObj.logHandle->pFile, buffer, len);
B
Benguang Zhao 已提交
451 452 453
      if (level == DEBUG_FATAL) {
        taosFsyncFile(tsLogObj.logHandle->pFile);
      }
H
hzcheng 已提交
454 455
    }

S
slguan 已提交
456 457
    if (tsLogObj.maxLines > 0) {
      atomic_add_fetch_32(&tsLogObj.lines, 1);
S
Shengliang Guan 已提交
458 459 460
      if ((tsLogObj.lines > tsLogObj.maxLines) && (tsLogObj.openInProgress == 0)) {
        taosOpenNewLogFile();
      }
H
hzcheng 已提交
461 462 463
    }
  }

464
  if (dflag & DEBUG_SCREEN) {
465 466
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wunused-result"
S
Shengliang Guan 已提交
467
    write(1, buffer, (uint32_t)len);
468
#pragma GCC diagnostic pop
469
  }
H
hzcheng 已提交
470 471
}

S
Shengliang Guan 已提交
472
void taosPrintLog(const char *flags, ELogLevel level, int32_t dflag, const char *format, ...) {
S
Shengliang Guan 已提交
473
  if (!(dflag & DEBUG_FILE) && !(dflag & DEBUG_SCREEN)) return;
S
slguan 已提交
474

S
Shengliang Guan 已提交
475 476
  char    buffer[LOG_MAX_LINE_BUFFER_SIZE];
  int32_t len = taosBuildLogHead(buffer, flags);
H
hzcheng 已提交
477

S
Shengliang Guan 已提交
478 479
  va_list argpointer;
  va_start(argpointer, format);
S
Shengliang Guan 已提交
480
  int32_t writeLen = len + vsnprintf(buffer + len, LOG_MAX_LINE_BUFFER_SIZE - len, format, argpointer);
S
Shengliang Guan 已提交
481
  va_end(argpointer);
H
hzcheng 已提交
482

S
Shengliang Guan 已提交
483 484 485
  if (writeLen > LOG_MAX_LINE_SIZE) writeLen = LOG_MAX_LINE_SIZE;
  buffer[writeLen++] = '\n';
  buffer[writeLen] = 0;
H
hzcheng 已提交
486

S
Shengliang Guan 已提交
487 488 489 490 491 492
  taosPrintLogImp(level, dflag, buffer, writeLen);

  if (tsLogFp && level <= DEBUG_INFO) {
    buffer[writeLen - 1] = 0;
    (*tsLogFp)(taosGetTimestampMs(), level, buffer + len);
  }
H
hzcheng 已提交
493 494
}

495
void taosPrintLongString(const char *flags, ELogLevel level, int32_t dflag, const char *format, ...) {
S
os env  
Shengliang Guan 已提交
496
  if (!osLogSpaceAvailable()) return;
S
Shengliang Guan 已提交
497
  if (!(dflag & DEBUG_FILE) && !(dflag & DEBUG_SCREEN)) return;
S
slguan 已提交
498

S
Shengliang Guan 已提交
499 500
  char    buffer[LOG_MAX_LINE_DUMP_BUFFER_SIZE];
  int32_t len = taosBuildLogHead(buffer, flags);
H
hzcheng 已提交
501

S
Shengliang Guan 已提交
502
  va_list argpointer;
H
hzcheng 已提交
503
  va_start(argpointer, format);
S
Shengliang Guan 已提交
504
  len += vsnprintf(buffer + len, LOG_MAX_LINE_DUMP_BUFFER_SIZE - len, format, argpointer);
H
hzcheng 已提交
505 506
  va_end(argpointer);

S
Shengliang Guan 已提交
507
  if (len > LOG_MAX_LINE_DUMP_SIZE) len = LOG_MAX_LINE_DUMP_SIZE;
H
hzcheng 已提交
508 509 510
  buffer[len++] = '\n';
  buffer[len] = 0;

S
Shengliang Guan 已提交
511 512
  taosPrintLogImp(level, dflag, buffer, len);
}
L
Liu Jicong 已提交
513

S
Shengliang Guan 已提交
514 515 516
void taosDumpData(unsigned char *msg, int32_t len) {
  if (!osLogSpaceAvailable()) return;
  taosUpdateLogNums(DEBUG_DUMP);
H
hzcheng 已提交
517

518
  char    temp[256] = {0};
S
Shengliang Guan 已提交
519 520 521 522 523 524 525 526 527 528 529
  int32_t i, pos = 0, c = 0;

  for (i = 0; i < len; ++i) {
    sprintf(temp + pos, "%02x ", msg[i]);
    c++;
    pos += 3;
    if (c >= 16) {
      temp[pos++] = '\n';
      taosWriteFile(tsLogObj.logHandle->pFile, temp, (uint32_t)pos);
      c = 0;
      pos = 0;
H
hzcheng 已提交
530 531 532
    }
  }

S
Shengliang Guan 已提交
533 534 535
  temp[pos++] = '\n';

  taosWriteFile(tsLogObj.logHandle->pFile, temp, (uint32_t)pos);
H
hzcheng 已提交
536 537
}

538 539 540 541
static void taosCloseLogByFd(TdFilePtr pFile) {
  if (pFile != NULL) {
    taosUnLockLogFile(pFile);
    taosCloseFile(&pFile);
H
hzcheng 已提交
542 543 544
  }
}

S
slguan 已提交
545
static SLogBuff *taosLogBuffNew(int32_t bufSize) {
546
  SLogBuff *pLogBuf = NULL;
H
hzcheng 已提交
547

548 549
  pLogBuf = taosMemoryCalloc(1, sizeof(SLogBuff));
  if (pLogBuf == NULL) return NULL;
H
hzcheng 已提交
550

551 552
  LOG_BUF_BUFFER(pLogBuf) = taosMemoryMalloc(bufSize);
  if (LOG_BUF_BUFFER(pLogBuf) == NULL) goto _err;
H
hzcheng 已提交
553

554 555 556 557
  LOG_BUF_START(pLogBuf) = LOG_BUF_END(pLogBuf) = 0;
  LOG_BUF_SIZE(pLogBuf) = bufSize;
  pLogBuf->minBuffSize = bufSize / 10;
  pLogBuf->stop = 0;
H
hzcheng 已提交
558

559 560
  if (taosThreadMutexInit(&LOG_BUF_MUTEX(pLogBuf), NULL) < 0) goto _err;
  // tsem_init(&(pLogBuf->buffNotEmpty), 0, 0);
H
hzcheng 已提交
561

562
  return pLogBuf;
H
hzcheng 已提交
563 564

_err:
565 566
  taosMemoryFreeClear(LOG_BUF_BUFFER(pLogBuf));
  taosMemoryFreeClear(pLogBuf);
H
hzcheng 已提交
567 568 569
  return NULL;
}

570
static void taosCopyLogBuffer(SLogBuff *pLogBuf, int32_t start, int32_t end, const char *msg, int32_t msgLen) {
D
fix bug  
dapan1121 已提交
571
  if (start > end) {
572
    memcpy(LOG_BUF_BUFFER(pLogBuf) + end, msg, msgLen);
D
fix bug  
dapan1121 已提交
573
  } else {
574 575 576
    if (LOG_BUF_SIZE(pLogBuf) - end < msgLen) {
      memcpy(LOG_BUF_BUFFER(pLogBuf) + end, msg, LOG_BUF_SIZE(pLogBuf) - end);
      memcpy(LOG_BUF_BUFFER(pLogBuf), msg + LOG_BUF_SIZE(pLogBuf) - end, msgLen - LOG_BUF_SIZE(pLogBuf) + end);
D
fix bug  
dapan1121 已提交
577
    } else {
578
      memcpy(LOG_BUF_BUFFER(pLogBuf) + end, msg, msgLen);
D
fix bug  
dapan1121 已提交
579 580
    }
  }
581
  LOG_BUF_END(pLogBuf) = (LOG_BUF_END(pLogBuf) + msgLen) % LOG_BUF_SIZE(pLogBuf);
D
fix bug  
dapan1121 已提交
582 583
}

584
static int32_t taosPushLogBuffer(SLogBuff *pLogBuf, const char *msg, int32_t msgLen) {
L
Liu Jicong 已提交
585 586 587
  int32_t        start = 0;
  int32_t        end = 0;
  int32_t        remainSize = 0;
D
fix bug  
dapan1121 已提交
588
  static int64_t lostLine = 0;
H
Haojun Liao 已提交
589
  char           tmpBuf[128] = {0};
L
Liu Jicong 已提交
590
  int32_t        tmpBufLen = 0;
H
hzcheng 已提交
591

592
  if (pLogBuf == NULL || pLogBuf->stop) return -1;
H
hzcheng 已提交
593

594 595 596
  taosThreadMutexLock(&LOG_BUF_MUTEX(pLogBuf));
  start = LOG_BUF_START(pLogBuf);
  end = LOG_BUF_END(pLogBuf);
H
hzcheng 已提交
597

598
  remainSize = (start > end) ? (start - end - 1) : (start + LOG_BUF_SIZE(pLogBuf) - end - 1);
H
hzcheng 已提交
599

D
fix bug  
dapan1121 已提交
600
  if (lostLine > 0) {
H
Haojun Liao 已提交
601
    snprintf(tmpBuf, tListLen(tmpBuf), "...Lost %" PRId64 " lines here...\n", lostLine);
D
dapan1121 已提交
602
    tmpBufLen = (int32_t)strlen(tmpBuf);
D
fix bug  
dapan1121 已提交
603 604 605 606
  }

  if (remainSize <= msgLen || ((lostLine > 0) && (remainSize <= (msgLen + tmpBufLen)))) {
    lostLine++;
S
Shengliang Guan 已提交
607
    tsAsyncLogLostLines++;
608
    taosThreadMutexUnlock(&LOG_BUF_MUTEX(pLogBuf));
H
hzcheng 已提交
609 610 611
    return -1;
  }

D
fix bug  
dapan1121 已提交
612
  if (lostLine > 0) {
613
    taosCopyLogBuffer(pLogBuf, start, end, tmpBuf, tmpBufLen);
D
fix bug  
dapan1121 已提交
614
    lostLine = 0;
H
hzcheng 已提交
615
  }
D
fix bug  
dapan1121 已提交
616

617
  taosCopyLogBuffer(pLogBuf, LOG_BUF_START(pLogBuf), LOG_BUF_END(pLogBuf), msg, msgLen);
H
hzcheng 已提交
618

L
Liu Jicong 已提交
619
  // int32_t w = atomic_sub_fetch_32(&waitLock, 1);
D
fix bug  
dapan1121 已提交
620
  /*
621 622
  if (w <= 0 || ((remainSize - msgLen - tmpBufLen) < (LOG_BUF_SIZE(pLogBuf) * 4 /5))) {
    tsem_post(&(pLogBuf->buffNotEmpty));
D
fix bug  
dapan1121 已提交
623 624 625
    dbgPostN++;
  } else {
    dbgNoPostN++;
D
fix bug  
dapan1121 已提交
626
  }
D
fix bug  
dapan1121 已提交
627
  */
H
hzcheng 已提交
628

629
  taosThreadMutexUnlock(&LOG_BUF_MUTEX(pLogBuf));
H
hzcheng 已提交
630 631 632 633

  return 0;
}

634
static int32_t taosGetLogRemainSize(SLogBuff *pLogBuf, int32_t start, int32_t end) {
D
fix bug  
dapan1121 已提交
635
  int32_t rSize = end - start;
H
hzcheng 已提交
636

637
  return rSize >= 0 ? rSize : LOG_BUF_SIZE(pLogBuf) + rSize;
D
fix bug  
dapan1121 已提交
638
}
H
hzcheng 已提交
639

640
static void taosWriteLog(SLogBuff *pLogBuf) {
D
fix bu  
dapan1121 已提交
641
  static int32_t lastDuration = 0;
L
Liu Jicong 已提交
642 643 644
  int32_t        remainChecked = 0;
  int32_t        start, end, pollSize;

D
fix bug  
dapan1121 已提交
645
  do {
D
fix bu  
dapan1121 已提交
646
    if (remainChecked == 0) {
647 648
      start = LOG_BUF_START(pLogBuf);
      end = LOG_BUF_END(pLogBuf);
D
fix bu  
dapan1121 已提交
649 650 651

      if (start == end) {
        dbgEmptyW++;
S
Shengliang Guan 已提交
652
        tsWriteInterval = LOG_MAX_INTERVAL;
D
fix bu  
dapan1121 已提交
653 654
        return;
      }
H
hzcheng 已提交
655

656 657
      pollSize = taosGetLogRemainSize(pLogBuf, start, end);
      if (pollSize < pLogBuf->minBuffSize) {
S
Shengliang Guan 已提交
658
        lastDuration += tsWriteInterval;
D
fix bug  
dapan1121 已提交
659
        if (lastDuration < LOG_MAX_WAIT_MSEC) {
D
fix bu  
dapan1121 已提交
660 661 662
          break;
        }
      }
D
fix bug  
dapan1121 已提交
663

D
fix bu  
dapan1121 已提交
664 665 666 667
      lastDuration = 0;
    }

    if (start < end) {
668
      taosWriteFile(pLogBuf->pFile, LOG_BUF_BUFFER(pLogBuf) + start, pollSize);
H
hzcheng 已提交
669
    } else {
670 671
      int32_t tsize = LOG_BUF_SIZE(pLogBuf) - start;
      taosWriteFile(pLogBuf->pFile, LOG_BUF_BUFFER(pLogBuf) + start, tsize);
D
fix bug  
dapan1121 已提交
672

673
      taosWriteFile(pLogBuf->pFile, LOG_BUF_BUFFER(pLogBuf), end);
H
hzcheng 已提交
674
    }
D
fix bug  
dapan1121 已提交
675 676

    dbgWN++;
L
Liu Jicong 已提交
677 678
    dbgWSize += pollSize;

679
    if (pollSize < pLogBuf->minBuffSize) {
D
fix bug  
dapan1121 已提交
680
      dbgSmallWN++;
S
Shengliang Guan 已提交
681 682
      if (tsWriteInterval < LOG_MAX_INTERVAL) {
        tsWriteInterval += LOG_INTERVAL_STEP;
D
fix bug  
dapan1121 已提交
683
      }
684
    } else if (pollSize > LOG_BUF_SIZE(pLogBuf) / 3) {
D
fix bug  
dapan1121 已提交
685
      dbgBigWN++;
S
Shengliang Guan 已提交
686
      tsWriteInterval = LOG_MIN_INTERVAL;
687
    } else if (pollSize > LOG_BUF_SIZE(pLogBuf) / 4) {
S
Shengliang Guan 已提交
688 689
      if (tsWriteInterval > LOG_MIN_INTERVAL) {
        tsWriteInterval -= LOG_INTERVAL_STEP;
D
fix bug  
dapan1121 已提交
690
      }
D
fix bug  
dapan1121 已提交
691 692
    }

693
    LOG_BUF_START(pLogBuf) = (LOG_BUF_START(pLogBuf) + pollSize) % LOG_BUF_SIZE(pLogBuf);
D
fix bug  
dapan1121 已提交
694

695 696
    start = LOG_BUF_START(pLogBuf);
    end = LOG_BUF_END(pLogBuf);
D
fix bu  
dapan1121 已提交
697

698 699
    pollSize = taosGetLogRemainSize(pLogBuf, start, end);
    if (pollSize < pLogBuf->minBuffSize) {
D
fix bug  
dapan1121 已提交
700 701 702
      break;
    }

S
Shengliang Guan 已提交
703
    tsWriteInterval = LOG_MIN_INTERVAL;
D
fix bu  
dapan1121 已提交
704 705

    remainChecked = 1;
L
Liu Jicong 已提交
706
  } while (1);
H
hzcheng 已提交
707 708
}

S
slguan 已提交
709
static void *taosAsyncOutputLog(void *param) {
710
  SLogBuff *pLogBuf = (SLogBuff *)param;
H
Haojun Liao 已提交
711
  setThreadName("log");
wafwerar's avatar
wafwerar 已提交
712
  int32_t count = 0;
dengyihao's avatar
dengyihao 已提交
713
  int32_t updateCron = 0;
H
hzcheng 已提交
714
  while (1) {
wafwerar's avatar
wafwerar 已提交
715
    count += tsWriteInterval;
dengyihao's avatar
dengyihao 已提交
716
    updateCron++;
S
Shengliang Guan 已提交
717
    taosMsleep(tsWriteInterval);
wafwerar's avatar
wafwerar 已提交
718 719 720 721
    if (count > 1000) {
      osUpdate();
      count = 0;
    }
H
hzcheng 已提交
722 723

    // Polling the buffer
724
    taosWriteLog(pLogBuf);
H
hzcheng 已提交
725

dengyihao's avatar
dengyihao 已提交
726 727 728 729 730
    if (updateCron >= 3600 * 24 * 40 / 2) {
      taosUpdateDaylight();
      updateCron = 0;
    }

731
    if (pLogBuf->stop) break;
H
hzcheng 已提交
732 733 734 735
  }

  return NULL;
}
S
Shengliang Guan 已提交
736 737 738 739 740

int32_t taosCompressFile(char *srcFileName, char *destFileName) {
  int32_t compressSize = 163840;
  int32_t ret = 0;
  int32_t len = 0;
dengyihao's avatar
dengyihao 已提交
741
  char   *data = taosMemoryMalloc(compressSize);
S
ulog  
Shengliang Guan 已提交
742
  //  gzFile  dstFp = NULL;
S
Shengliang Guan 已提交
743

744 745 746
  // srcFp = fopen(srcFileName, "r");
  TdFilePtr pSrcFile = taosOpenFile(srcFileName, TD_FILE_READ);
  if (pSrcFile == NULL) {
S
Shengliang Guan 已提交
747 748 749 750
    ret = -1;
    goto cmp_end;
  }

751
  TdFilePtr pFile = taosOpenFile(destFileName, TD_FILE_CREATE | TD_FILE_WRITE | TD_FILE_TRUNC);
752
  if (pFile == NULL) {
S
Shengliang Guan 已提交
753 754 755 756
    ret = -2;
    goto cmp_end;
  }

S
ulog  
Shengliang Guan 已提交
757 758 759 760 761 762 763 764 765 766 767
  //  dstFp = gzdopen(fd, "wb6f");
  //  if (dstFp == NULL) {
  //    ret = -3;
  //    close(fd);
  //    goto cmp_end;
  //  }
  //
  //  while (!feof(srcFp)) {
  //    len = (int32_t)fread(data, 1, compressSize, srcFp);
  //    (void)gzwrite(dstFp, data, len);
  //  }
S
Shengliang Guan 已提交
768 769

cmp_end:
770 771
  if (pSrcFile) {
    taosCloseFile(&pSrcFile);
S
Shengliang Guan 已提交
772
  }
S
ulog  
Shengliang Guan 已提交
773 774 775
  //  if (dstFp) {
  //    gzclose(dstFp);
  //  }
wafwerar's avatar
wafwerar 已提交
776
  taosMemoryFree(data);
S
Shengliang Guan 已提交
777 778 779

  return ret;
}