tlog.c 20.6 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;
L
Liu Jicong 已提交
71

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

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

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

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

static int32_t taosStartLog() {
wafwerar's avatar
wafwerar 已提交
117 118 119
  TdThreadAttr threadAttr;
  taosThreadAttrInit(&threadAttr);
  if (taosThreadCreate(&(tsLogObj.logHandle->asyncThread), &threadAttr, taosAsyncOutputLog, tsLogObj.logHandle) != 0) {
H
hzcheng 已提交
120 121
    return -1;
  }
wafwerar's avatar
wafwerar 已提交
122
  taosThreadAttrDestroy(&threadAttr);
H
hzcheng 已提交
123 124 125
  return 0;
}

S
Shengliang Guan 已提交
126
int32_t taosInitLog(const char *logName, int32_t maxFiles) {
S
Shengliang Guan 已提交
127
  if (atomic_val_compare_exchange_8(&tsLogInited, 0, 1) != 0) return 0;
S
osenv  
Shengliang Guan 已提交
128
  osUpdate();
S
Shengliang Guan 已提交
129

S
Shengliang Guan 已提交
130
  char fullName[PATH_MAX] = {0};
dengyihao's avatar
dengyihao 已提交
131 132 133 134 135
  if (strlen(tsLogDir) != 0) {
    snprintf(fullName, PATH_MAX, "%s" TD_DIRSEP "%s", tsLogDir, logName);
  } else {
    snprintf(fullName, PATH_MAX, "%s", logName);
  }
S
Shengliang Guan 已提交
136

S
ulog  
Shengliang Guan 已提交
137
  tsLogObj.logHandle = taosLogBuffNew(LOG_DEFAULT_BUF_SIZE);
S
slguan 已提交
138
  if (tsLogObj.logHandle == NULL) return -1;
S
Shengliang Guan 已提交
139
  if (taosOpenLogFile(fullName, tsNumOfLogLines, maxFiles) < 0) return -1;
H
hzcheng 已提交
140 141 142 143
  if (taosStartLog() < 0) return -1;
  return 0;
}

S
slguan 已提交
144 145 146 147
static void taosStopLog() {
  if (tsLogObj.logHandle) {
    tsLogObj.logHandle->stop = 1;
  }
H
hzcheng 已提交
148 149
}

S
slguan 已提交
150
void taosCloseLog() {
151 152 153 154
  if (tsLogObj.logHandle != NULL) {
    taosStopLog();
    if (tsLogObj.logHandle != NULL && taosCheckPthreadValid(tsLogObj.logHandle->asyncThread)) {
      taosThreadJoin(tsLogObj.logHandle->asyncThread, NULL);
155
      taosThreadClear(&tsLogObj.logHandle->asyncThread);
156 157 158 159 160 161 162 163 164 165 166
    }
    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 已提交
167
  }
H
hzcheng 已提交
168 169
}

170 171
static bool taosLockLogFile(TdFilePtr pFile) {
  if (pFile == NULL) return false;
H
hzcheng 已提交
172

S
slguan 已提交
173
  if (tsLogObj.fileNum > 1) {
174
    int32_t ret = taosLockFile(pFile);
H
hzcheng 已提交
175 176 177 178 179 180 181 182
    if (ret == 0) {
      return true;
    }
  }

  return false;
}

183 184
static void taosUnLockLogFile(TdFilePtr pFile) {
  if (pFile == NULL) return;
H
hzcheng 已提交
185

S
slguan 已提交
186
  if (tsLogObj.fileNum > 1) {
187
    taosUnLockFile(pFile);
H
hzcheng 已提交
188 189 190
  }
}

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

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

S
Shengliang Guan 已提交
198
  taosRenameFile(oldName, fileName);
S
TD-1574  
Shengliang Guan 已提交
199 200 201 202
  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) {
203
      (void)taosRemoveFile(fileName);
S
TD-1574  
Shengliang Guan 已提交
204 205 206
    }
  }

S
os env  
Shengliang Guan 已提交
207
  taosRemoveOldFiles(tsLogDir, TABS(tsLogKeepDays));
S
TD-1263  
Shengliang Guan 已提交
208 209
}

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

S
slguan 已提交
214 215
  tsLogObj.flag ^= 1;
  tsLogObj.lines = 0;
S
TD-1263  
Shengliang Guan 已提交
216
  char name[LOG_FILE_NAME_LEN + 20];
S
slguan 已提交
217
  sprintf(name, "%s.%d", tsLogObj.logName, tsLogObj.flag);
H
hzcheng 已提交
218

S
Shengliang Guan 已提交
219
  taosUmaskFile(0);
H
hzcheng 已提交
220

221
  TdFilePtr pFile = taosOpenFile(name, TD_FILE_CREATE | TD_FILE_WRITE | TD_FILE_TRUNC);
222
  if (pFile == NULL) {
223 224
    tsLogObj.openInProgress = 0;
    tsLogObj.lines = tsLogObj.maxLines - 1000;
225
    uError("open new log file fail! reason:%s, reuse lastlog", strerror(errno));
H
Hui Li 已提交
226 227
    return NULL;
  }
S
TD-1263  
Shengliang Guan 已提交
228

229 230
  taosLockLogFile(pFile);
  (void)taosLSeekFile(pFile, 0, SEEK_SET);
H
hzcheng 已提交
231

232 233
  TdFilePtr pOldFile = tsLogObj.logHandle->pFile;
  tsLogObj.logHandle->pFile = pFile;
S
slguan 已提交
234 235
  tsLogObj.lines = 0;
  tsLogObj.openInProgress = 0;
wafwerar's avatar
wafwerar 已提交
236
  taosSsleep(20);
237
  taosCloseLogByFd(pOldFile);
L
Liu Jicong 已提交
238

S
TD-1263  
Shengliang Guan 已提交
239 240
  uInfo("   new log file:%d is opened", tsLogObj.flag);
  uInfo("==================================");
S
TD-1263  
Shengliang Guan 已提交
241 242
  taosKeepOldLog(keepName);

H
hzcheng 已提交
243 244 245
  return NULL;
}

S
slguan 已提交
246
static int32_t taosOpenNewLogFile() {
wafwerar's avatar
wafwerar 已提交
247
  taosThreadMutexLock(&tsLogObj.logMutex);
H
hzcheng 已提交
248

S
slguan 已提交
249 250
  if (tsLogObj.lines > tsLogObj.maxLines && tsLogObj.openInProgress == 0) {
    tsLogObj.openInProgress = 1;
H
hzcheng 已提交
251

252
    uInfo("open new log file ......");
253
    TdThread     thread;
wafwerar's avatar
wafwerar 已提交
254 255 256
    TdThreadAttr attr;
    taosThreadAttrInit(&attr);
    taosThreadAttrSetDetachState(&attr, PTHREAD_CREATE_DETACHED);
H
hzcheng 已提交
257

wafwerar's avatar
wafwerar 已提交
258 259
    taosThreadCreate(&thread, &attr, taosThreadToOpenNewFile, NULL);
    taosThreadAttrDestroy(&attr);
H
hzcheng 已提交
260 261
  }

wafwerar's avatar
wafwerar 已提交
262
  taosThreadMutexUnlock(&tsLogObj.logMutex);
H
hzcheng 已提交
263 264 265 266

  return 0;
}

S
slguan 已提交
267 268 269
void taosResetLog() {
  char lastName[LOG_FILE_NAME_LEN + 20];
  sprintf(lastName, "%s.%d", tsLogObj.logName, tsLogObj.flag);
H
hzcheng 已提交
270 271

  // force create a new log file
S
slguan 已提交
272
  tsLogObj.lines = tsLogObj.maxLines + 10;
H
hzcheng 已提交
273 274

  taosOpenNewLogFile();
275
  (void)taosRemoveFile(lastName);
H
hzcheng 已提交
276

277 278
  uInfo("==================================");
  uInfo("   reset log file ");
H
hzcheng 已提交
279 280
}

S
slguan 已提交
281
static bool taosCheckFileIsOpen(char *logFileName) {
282 283
  TdFilePtr pFile = taosOpenFile(logFileName, TD_FILE_WRITE);
  if (pFile == NULL) {
284 285 286 287 288 289
    if (errno == ENOENT) {
      return false;
    } else {
      printf("\nfailed to open log file:%s, reason:%s\n", logFileName, strerror(errno));
      return true;
    }
H
hzcheng 已提交
290 291
  }

292 293 294
  if (taosLockLogFile(pFile)) {
    taosUnLockLogFile(pFile);
    taosCloseFile(&pFile);
H
hzcheng 已提交
295 296
    return false;
  } else {
297
    taosCloseFile(&pFile);
H
hzcheng 已提交
298 299 300 301
    return true;
  }
}

S
slguan 已提交
302 303 304
static void taosGetLogFileName(char *fn) {
  if (tsLogObj.fileNum > 1) {
    for (int32_t i = 0; i < tsLogObj.fileNum; i++) {
H
hzcheng 已提交
305 306 307 308 309 310 311 312 313
      char fileName[LOG_FILE_NAME_LEN];

      sprintf(fileName, "%s%d.0", fn, i);
      bool file1open = taosCheckFileIsOpen(fileName);

      sprintf(fileName, "%s%d.1", fn, i);
      bool file2open = taosCheckFileIsOpen(fileName);

      if (!file1open && !file2open) {
S
slguan 已提交
314
        sprintf(tsLogObj.logName, "%s%d", fn, i);
H
hzcheng 已提交
315 316 317 318 319
        return;
      }
    }
  }

H
Hui Li 已提交
320 321 322
  if (strlen(fn) < LOG_FILE_NAME_LEN) {
    strcpy(tsLogObj.logName, fn);
  }
H
hzcheng 已提交
323 324
}

S
slguan 已提交
325
static int32_t taosOpenLogFile(char *fn, int32_t maxLines, int32_t maxFileNum) {
S
slguan 已提交
326 327
#ifdef WINDOWS
  /*
L
Liu Jicong 已提交
328 329 330
   * always set maxFileNum to 1
   * means client log filename is unique in windows
   */
S
slguan 已提交
331 332 333
  maxFileNum = 1;
#endif

S
Shengliang Guan 已提交
334 335 336
  char    name[LOG_FILE_NAME_LEN + 50] = "\0";
  int32_t logstat0_mtime, logstat1_mtime;
  int32_t size;
H
hzcheng 已提交
337

S
slguan 已提交
338 339
  tsLogObj.maxLines = maxLines;
  tsLogObj.fileNum = maxFileNum;
H
hzcheng 已提交
340 341
  taosGetLogFileName(fn);

H
Hui Li 已提交
342 343 344 345
  if (strlen(fn) < LOG_FILE_NAME_LEN + 50 - 2) {
    strcpy(name, fn);
    strcat(name, ".0");
  }
S
Shengliang Guan 已提交
346
  bool log0Exist = taosStatFile(name, NULL, &logstat0_mtime) >= 0;
H
hzcheng 已提交
347

S
TD-1263  
Shengliang Guan 已提交
348 349 350 351
  if (strlen(fn) < LOG_FILE_NAME_LEN + 50 - 2) {
    strcpy(name, fn);
    strcat(name, ".1");
  }
S
Shengliang Guan 已提交
352 353
  bool log1Exist = taosStatFile(name, NULL, &logstat1_mtime) >= 0;

H
hzcheng 已提交
354
  // if none of the log files exist, open 0, if both exists, open the old one
S
TD-1263  
Shengliang Guan 已提交
355 356 357
  if (!log0Exist && !log1Exist) {
    tsLogObj.flag = 0;
  } else if (!log1Exist) {
S
slguan 已提交
358
    tsLogObj.flag = 0;
S
TD-1263  
Shengliang Guan 已提交
359 360
  } else if (!log0Exist) {
    tsLogObj.flag = 1;
H
hzcheng 已提交
361
  } else {
S
Shengliang Guan 已提交
362
    tsLogObj.flag = (logstat0_mtime > logstat1_mtime) ? 0 : 1;
H
hzcheng 已提交
363 364
  }

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

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

372
  if (tsLogObj.logHandle->pFile == NULL) {
H
Hui Li 已提交
373
    printf("\nfailed to open log file:%s, reason:%s\n", fileName, strerror(errno));
H
hzcheng 已提交
374 375
    return -1;
  }
376
  taosLockLogFile(tsLogObj.logHandle->pFile);
H
hzcheng 已提交
377 378

  // only an estimate for number of lines
S
Shengliang Guan 已提交
379
  int64_t filesize = 0;
380
  if (taosFStatFile(tsLogObj.logHandle->pFile, &filesize, NULL) < 0) {
H
Hui Li 已提交
381
    printf("\nfailed to fstat log file:%s, reason:%s\n", fileName, strerror(errno));
H
Hui Li 已提交
382 383
    return -1;
  }
S
Shengliang Guan 已提交
384
  size = (int32_t)filesize;
S
slguan 已提交
385
  tsLogObj.lines = size / 60;
H
hzcheng 已提交
386

387
  taosLSeekFile(tsLogObj.logHandle->pFile, 0, SEEK_END);
H
hzcheng 已提交
388 389

  sprintf(name, "==================================================\n");
390
  taosWriteFile(tsLogObj.logHandle->pFile, name, (uint32_t)strlen(name));
H
hzcheng 已提交
391
  sprintf(name, "                new log file                      \n");
392
  taosWriteFile(tsLogObj.logHandle->pFile, name, (uint32_t)strlen(name));
H
hzcheng 已提交
393
  sprintf(name, "==================================================\n");
394
  taosWriteFile(tsLogObj.logHandle->pFile, name, (uint32_t)strlen(name));
H
hzcheng 已提交
395 396 397 398

  return 0;
}

399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418
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 已提交
419
static inline int32_t taosBuildLogHead(char *buffer, const char *flags) {
H
hzcheng 已提交
420 421 422
  struct tm      Tm, *ptm;
  struct timeval timeSecs;

S
Shengliang Guan 已提交
423
  taosGetTimeOfDay(&timeSecs);
S
Shengliang Guan 已提交
424
  time_t curTime = timeSecs.tv_sec;
wafwerar's avatar
wafwerar 已提交
425
  ptm = taosLocalTime(&curTime, &Tm);
S
slguan 已提交
426

S
Shengliang Guan 已提交
427 428 429
  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 已提交
430

S
Shengliang Guan 已提交
431
static inline void taosPrintLogImp(ELogLevel level, int32_t dflag, const char *buffer, int32_t len) {
wafwerar's avatar
wafwerar 已提交
432
  if ((dflag & DEBUG_FILE) && tsLogObj.logHandle && tsLogObj.logHandle->pFile != NULL && osLogSpaceAvailable()) {
433
    taosUpdateLogNums(level);
H
hzcheng 已提交
434
    if (tsAsyncLog) {
S
slguan 已提交
435
      taosPushLogBuffer(tsLogObj.logHandle, buffer, len);
H
hzcheng 已提交
436
    } else {
437
      taosWriteFile(tsLogObj.logHandle->pFile, buffer, len);
H
hzcheng 已提交
438 439
    }

S
slguan 已提交
440 441
    if (tsLogObj.maxLines > 0) {
      atomic_add_fetch_32(&tsLogObj.lines, 1);
S
Shengliang Guan 已提交
442 443 444
      if ((tsLogObj.lines > tsLogObj.maxLines) && (tsLogObj.openInProgress == 0)) {
        taosOpenNewLogFile();
      }
H
hzcheng 已提交
445 446 447
    }
  }

448 449 450
  if (dflag & DEBUG_SCREEN) {
    write(1, buffer, (uint32_t)len);
  }
H
hzcheng 已提交
451 452
}

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

S
Shengliang Guan 已提交
456 457
  char    buffer[LOG_MAX_LINE_BUFFER_SIZE];
  int32_t len = taosBuildLogHead(buffer, flags);
H
hzcheng 已提交
458

S
Shengliang Guan 已提交
459 460
  va_list argpointer;
  va_start(argpointer, format);
S
Shengliang Guan 已提交
461
  int32_t writeLen = len + vsnprintf(buffer + len, LOG_MAX_LINE_BUFFER_SIZE - len, format, argpointer);
S
Shengliang Guan 已提交
462
  va_end(argpointer);
H
hzcheng 已提交
463

S
Shengliang Guan 已提交
464 465 466
  if (writeLen > LOG_MAX_LINE_SIZE) writeLen = LOG_MAX_LINE_SIZE;
  buffer[writeLen++] = '\n';
  buffer[writeLen] = 0;
H
hzcheng 已提交
467

S
Shengliang Guan 已提交
468 469 470 471 472 473
  taosPrintLogImp(level, dflag, buffer, writeLen);

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

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

S
Shengliang Guan 已提交
480 481
  char    buffer[LOG_MAX_LINE_DUMP_BUFFER_SIZE];
  int32_t len = taosBuildLogHead(buffer, flags);
H
hzcheng 已提交
482

S
Shengliang Guan 已提交
483
  va_list argpointer;
H
hzcheng 已提交
484
  va_start(argpointer, format);
S
Shengliang Guan 已提交
485
  len += vsnprintf(buffer + len, LOG_MAX_LINE_DUMP_BUFFER_SIZE - len, format, argpointer);
H
hzcheng 已提交
486 487
  va_end(argpointer);

S
Shengliang Guan 已提交
488
  if (len > LOG_MAX_LINE_DUMP_SIZE) len = LOG_MAX_LINE_DUMP_SIZE;
H
hzcheng 已提交
489 490 491
  buffer[len++] = '\n';
  buffer[len] = 0;

S
Shengliang Guan 已提交
492 493
  taosPrintLogImp(level, dflag, buffer, len);
}
L
Liu Jicong 已提交
494

S
Shengliang Guan 已提交
495 496 497
void taosDumpData(unsigned char *msg, int32_t len) {
  if (!osLogSpaceAvailable()) return;
  taosUpdateLogNums(DEBUG_DUMP);
H
hzcheng 已提交
498

499
  char    temp[256] = {0};
S
Shengliang Guan 已提交
500 501 502 503 504 505 506 507 508 509 510
  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 已提交
511 512 513
    }
  }

S
Shengliang Guan 已提交
514 515 516
  temp[pos++] = '\n';

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

519 520 521 522
static void taosCloseLogByFd(TdFilePtr pFile) {
  if (pFile != NULL) {
    taosUnLockLogFile(pFile);
    taosCloseFile(&pFile);
H
hzcheng 已提交
523 524 525
  }
}

S
slguan 已提交
526
static SLogBuff *taosLogBuffNew(int32_t bufSize) {
527
  SLogBuff *pLogBuf = NULL;
H
hzcheng 已提交
528

529 530
  pLogBuf = taosMemoryCalloc(1, sizeof(SLogBuff));
  if (pLogBuf == NULL) return NULL;
H
hzcheng 已提交
531

532 533
  LOG_BUF_BUFFER(pLogBuf) = taosMemoryMalloc(bufSize);
  if (LOG_BUF_BUFFER(pLogBuf) == NULL) goto _err;
H
hzcheng 已提交
534

535 536 537 538
  LOG_BUF_START(pLogBuf) = LOG_BUF_END(pLogBuf) = 0;
  LOG_BUF_SIZE(pLogBuf) = bufSize;
  pLogBuf->minBuffSize = bufSize / 10;
  pLogBuf->stop = 0;
H
hzcheng 已提交
539

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

543
  return pLogBuf;
H
hzcheng 已提交
544 545

_err:
546 547
  taosMemoryFreeClear(LOG_BUF_BUFFER(pLogBuf));
  taosMemoryFreeClear(pLogBuf);
H
hzcheng 已提交
548 549 550
  return NULL;
}

551
static void taosCopyLogBuffer(SLogBuff *pLogBuf, int32_t start, int32_t end, const char *msg, int32_t msgLen) {
D
fix bug  
dapan1121 已提交
552
  if (start > end) {
553
    memcpy(LOG_BUF_BUFFER(pLogBuf) + end, msg, msgLen);
D
fix bug  
dapan1121 已提交
554
  } else {
555 556 557
    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 已提交
558
    } else {
559
      memcpy(LOG_BUF_BUFFER(pLogBuf) + end, msg, msgLen);
D
fix bug  
dapan1121 已提交
560 561
    }
  }
562
  LOG_BUF_END(pLogBuf) = (LOG_BUF_END(pLogBuf) + msgLen) % LOG_BUF_SIZE(pLogBuf);
D
fix bug  
dapan1121 已提交
563 564
}

565
static int32_t taosPushLogBuffer(SLogBuff *pLogBuf, const char *msg, int32_t msgLen) {
L
Liu Jicong 已提交
566 567 568
  int32_t        start = 0;
  int32_t        end = 0;
  int32_t        remainSize = 0;
D
fix bug  
dapan1121 已提交
569
  static int64_t lostLine = 0;
L
Liu Jicong 已提交
570 571
  char           tmpBuf[40] = {0};
  int32_t        tmpBufLen = 0;
H
hzcheng 已提交
572

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

575 576 577
  taosThreadMutexLock(&LOG_BUF_MUTEX(pLogBuf));
  start = LOG_BUF_START(pLogBuf);
  end = LOG_BUF_END(pLogBuf);
H
hzcheng 已提交
578

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

D
fix bug  
dapan1121 已提交
581
  if (lostLine > 0) {
L
Liu Jicong 已提交
582
    sprintf(tmpBuf, "...Lost %" PRId64 " lines here...\n", lostLine);
D
dapan1121 已提交
583
    tmpBufLen = (int32_t)strlen(tmpBuf);
D
fix bug  
dapan1121 已提交
584 585 586 587
  }

  if (remainSize <= msgLen || ((lostLine > 0) && (remainSize <= (msgLen + tmpBufLen)))) {
    lostLine++;
S
Shengliang Guan 已提交
588
    tsAsyncLogLostLines++;
589
    taosThreadMutexUnlock(&LOG_BUF_MUTEX(pLogBuf));
H
hzcheng 已提交
590 591 592
    return -1;
  }

D
fix bug  
dapan1121 已提交
593
  if (lostLine > 0) {
594
    taosCopyLogBuffer(pLogBuf, start, end, tmpBuf, tmpBufLen);
D
fix bug  
dapan1121 已提交
595
    lostLine = 0;
H
hzcheng 已提交
596
  }
D
fix bug  
dapan1121 已提交
597

598
  taosCopyLogBuffer(pLogBuf, LOG_BUF_START(pLogBuf), LOG_BUF_END(pLogBuf), msg, msgLen);
H
hzcheng 已提交
599

L
Liu Jicong 已提交
600
  // int32_t w = atomic_sub_fetch_32(&waitLock, 1);
D
fix bug  
dapan1121 已提交
601
  /*
602 603
  if (w <= 0 || ((remainSize - msgLen - tmpBufLen) < (LOG_BUF_SIZE(pLogBuf) * 4 /5))) {
    tsem_post(&(pLogBuf->buffNotEmpty));
D
fix bug  
dapan1121 已提交
604 605 606
    dbgPostN++;
  } else {
    dbgNoPostN++;
D
fix bug  
dapan1121 已提交
607
  }
D
fix bug  
dapan1121 已提交
608
  */
H
hzcheng 已提交
609

610
  taosThreadMutexUnlock(&LOG_BUF_MUTEX(pLogBuf));
H
hzcheng 已提交
611 612 613 614

  return 0;
}

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

618
  return rSize >= 0 ? rSize : LOG_BUF_SIZE(pLogBuf) + rSize;
D
fix bug  
dapan1121 已提交
619
}
H
hzcheng 已提交
620

621
static void taosWriteLog(SLogBuff *pLogBuf) {
D
fix bu  
dapan1121 已提交
622
  static int32_t lastDuration = 0;
L
Liu Jicong 已提交
623 624 625
  int32_t        remainChecked = 0;
  int32_t        start, end, pollSize;

D
fix bug  
dapan1121 已提交
626
  do {
D
fix bu  
dapan1121 已提交
627
    if (remainChecked == 0) {
628 629
      start = LOG_BUF_START(pLogBuf);
      end = LOG_BUF_END(pLogBuf);
D
fix bu  
dapan1121 已提交
630 631 632

      if (start == end) {
        dbgEmptyW++;
S
Shengliang Guan 已提交
633
        tsWriteInterval = LOG_MAX_INTERVAL;
D
fix bu  
dapan1121 已提交
634 635
        return;
      }
H
hzcheng 已提交
636

637 638
      pollSize = taosGetLogRemainSize(pLogBuf, start, end);
      if (pollSize < pLogBuf->minBuffSize) {
S
Shengliang Guan 已提交
639
        lastDuration += tsWriteInterval;
D
fix bug  
dapan1121 已提交
640
        if (lastDuration < LOG_MAX_WAIT_MSEC) {
D
fix bu  
dapan1121 已提交
641 642 643
          break;
        }
      }
D
fix bug  
dapan1121 已提交
644

D
fix bu  
dapan1121 已提交
645 646 647 648
      lastDuration = 0;
    }

    if (start < end) {
649
      taosWriteFile(pLogBuf->pFile, LOG_BUF_BUFFER(pLogBuf) + start, pollSize);
H
hzcheng 已提交
650
    } else {
651 652
      int32_t tsize = LOG_BUF_SIZE(pLogBuf) - start;
      taosWriteFile(pLogBuf->pFile, LOG_BUF_BUFFER(pLogBuf) + start, tsize);
D
fix bug  
dapan1121 已提交
653

654
      taosWriteFile(pLogBuf->pFile, LOG_BUF_BUFFER(pLogBuf), end);
H
hzcheng 已提交
655
    }
D
fix bug  
dapan1121 已提交
656 657

    dbgWN++;
L
Liu Jicong 已提交
658 659
    dbgWSize += pollSize;

660
    if (pollSize < pLogBuf->minBuffSize) {
D
fix bug  
dapan1121 已提交
661
      dbgSmallWN++;
S
Shengliang Guan 已提交
662 663
      if (tsWriteInterval < LOG_MAX_INTERVAL) {
        tsWriteInterval += LOG_INTERVAL_STEP;
D
fix bug  
dapan1121 已提交
664
      }
665
    } else if (pollSize > LOG_BUF_SIZE(pLogBuf) / 3) {
D
fix bug  
dapan1121 已提交
666
      dbgBigWN++;
S
Shengliang Guan 已提交
667
      tsWriteInterval = LOG_MIN_INTERVAL;
668
    } else if (pollSize > LOG_BUF_SIZE(pLogBuf) / 4) {
S
Shengliang Guan 已提交
669 670
      if (tsWriteInterval > LOG_MIN_INTERVAL) {
        tsWriteInterval -= LOG_INTERVAL_STEP;
D
fix bug  
dapan1121 已提交
671
      }
D
fix bug  
dapan1121 已提交
672 673
    }

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

676 677
    start = LOG_BUF_START(pLogBuf);
    end = LOG_BUF_END(pLogBuf);
D
fix bu  
dapan1121 已提交
678

679 680
    pollSize = taosGetLogRemainSize(pLogBuf, start, end);
    if (pollSize < pLogBuf->minBuffSize) {
D
fix bug  
dapan1121 已提交
681 682 683
      break;
    }

S
Shengliang Guan 已提交
684
    tsWriteInterval = LOG_MIN_INTERVAL;
D
fix bu  
dapan1121 已提交
685 686

    remainChecked = 1;
L
Liu Jicong 已提交
687
  } while (1);
H
hzcheng 已提交
688 689
}

S
slguan 已提交
690
static void *taosAsyncOutputLog(void *param) {
691
  SLogBuff *pLogBuf = (SLogBuff *)param;
H
Haojun Liao 已提交
692
  setThreadName("log");
wafwerar's avatar
wafwerar 已提交
693
  int32_t count = 0;
H
hzcheng 已提交
694
  while (1) {
wafwerar's avatar
wafwerar 已提交
695
    count += tsWriteInterval;
S
Shengliang Guan 已提交
696
    taosMsleep(tsWriteInterval);
wafwerar's avatar
wafwerar 已提交
697 698 699 700
    if (count > 1000) {
      osUpdate();
      count = 0;
    }
H
hzcheng 已提交
701 702

    // Polling the buffer
703
    taosWriteLog(pLogBuf);
H
hzcheng 已提交
704

705
    if (pLogBuf->stop) break;
H
hzcheng 已提交
706 707 708 709
  }

  return NULL;
}
S
Shengliang Guan 已提交
710 711 712 713 714

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

718 719 720
  // srcFp = fopen(srcFileName, "r");
  TdFilePtr pSrcFile = taosOpenFile(srcFileName, TD_FILE_READ);
  if (pSrcFile == NULL) {
S
Shengliang Guan 已提交
721 722 723 724
    ret = -1;
    goto cmp_end;
  }

725
  TdFilePtr pFile = taosOpenFile(destFileName, TD_FILE_CREATE | TD_FILE_WRITE | TD_FILE_TRUNC);
726
  if (pFile == NULL) {
S
Shengliang Guan 已提交
727 728 729 730
    ret = -2;
    goto cmp_end;
  }

S
ulog  
Shengliang Guan 已提交
731 732 733 734 735 736 737 738 739 740 741
  //  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 已提交
742 743

cmp_end:
744 745
  if (pSrcFile) {
    taosCloseFile(&pSrcFile);
S
Shengliang Guan 已提交
746
  }
S
ulog  
Shengliang Guan 已提交
747 748 749
  //  if (dstFp) {
  //    gzclose(dstFp);
  //  }
wafwerar's avatar
wafwerar 已提交
750
  taosMemoryFree(data);
S
Shengliang Guan 已提交
751 752 753

  return ret;
}