tlog.c 21.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"
S
Shengliang Guan 已提交
19
#include "tutil.h"
20
#include "tconfig.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;
S
Shengliang Guan 已提交
67 68
static int8_t  tsLogInited = 0;
static SLogObj tsLogObj = {.fileNum = 1};
S
Shengliang Guan 已提交
69 70
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;
S
Shengliang Guan 已提交
85
int32_t mDebugFlag = 131;
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};
S
os env  
Shengliang Guan 已提交
131
  snprintf(fullName, PATH_MAX, "%s" TD_DIRSEP "%s", tsLogDir, logName);
S
Shengliang Guan 已提交
132

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

S
slguan 已提交
140 141 142 143
static void taosStopLog() {
  if (tsLogObj.logHandle) {
    tsLogObj.logHandle->stop = 1;
  }
H
hzcheng 已提交
144 145
}

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

166 167
static bool taosLockLogFile(TdFilePtr pFile) {
  if (pFile == NULL) return false;
H
hzcheng 已提交
168

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

  return false;
}

179 180
static void taosUnLockLogFile(TdFilePtr pFile) {
  if (pFile == NULL) return;
H
hzcheng 已提交
181

S
slguan 已提交
182
  if (tsLogObj.fileNum > 1) {
183
    taosUnLockFile(pFile);
H
hzcheng 已提交
184 185 186
  }
}

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

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

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

S
os env  
Shengliang Guan 已提交
203
  taosRemoveOldFiles(tsLogDir, TABS(tsLogKeepDays));
S
TD-1263  
Shengliang Guan 已提交
204 205
}

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

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

S
Shengliang Guan 已提交
215
  taosUmaskFile(0);
H
hzcheng 已提交
216

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

225 226
  taosLockLogFile(pFile);
  (void)taosLSeekFile(pFile, 0, SEEK_SET);
H
hzcheng 已提交
227

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

S
TD-1263  
Shengliang Guan 已提交
235 236
  uInfo("   new log file:%d is opened", tsLogObj.flag);
  uInfo("==================================");
S
TD-1263  
Shengliang Guan 已提交
237 238
  taosKeepOldLog(keepName);

H
hzcheng 已提交
239 240 241
  return NULL;
}

S
slguan 已提交
242
static int32_t taosOpenNewLogFile() {
wafwerar's avatar
wafwerar 已提交
243
  taosThreadMutexLock(&tsLogObj.logMutex);
H
hzcheng 已提交
244

S
slguan 已提交
245 246
  if (tsLogObj.lines > tsLogObj.maxLines && tsLogObj.openInProgress == 0) {
    tsLogObj.openInProgress = 1;
H
hzcheng 已提交
247

248
    uInfo("open new log file ......");
249
    TdThread     thread;
wafwerar's avatar
wafwerar 已提交
250 251 252
    TdThreadAttr attr;
    taosThreadAttrInit(&attr);
    taosThreadAttrSetDetachState(&attr, PTHREAD_CREATE_DETACHED);
H
hzcheng 已提交
253

wafwerar's avatar
wafwerar 已提交
254 255
    taosThreadCreate(&thread, &attr, taosThreadToOpenNewFile, NULL);
    taosThreadAttrDestroy(&attr);
H
hzcheng 已提交
256 257
  }

wafwerar's avatar
wafwerar 已提交
258
  taosThreadMutexUnlock(&tsLogObj.logMutex);
H
hzcheng 已提交
259 260 261 262

  return 0;
}

S
slguan 已提交
263 264 265
void taosResetLog() {
  char lastName[LOG_FILE_NAME_LEN + 20];
  sprintf(lastName, "%s.%d", tsLogObj.logName, tsLogObj.flag);
H
hzcheng 已提交
266 267

  // force create a new log file
S
slguan 已提交
268
  tsLogObj.lines = tsLogObj.maxLines + 10;
H
hzcheng 已提交
269 270

  taosOpenNewLogFile();
271
  (void)taosRemoveFile(lastName);
H
hzcheng 已提交
272

273 274
  uInfo("==================================");
  uInfo("   reset log file ");
H
hzcheng 已提交
275 276
}

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

288 289 290
  if (taosLockLogFile(pFile)) {
    taosUnLockLogFile(pFile);
    taosCloseFile(&pFile);
H
hzcheng 已提交
291 292
    return false;
  } else {
293
    taosCloseFile(&pFile);
H
hzcheng 已提交
294 295 296 297
    return true;
  }
}

S
slguan 已提交
298 299 300
static void taosGetLogFileName(char *fn) {
  if (tsLogObj.fileNum > 1) {
    for (int32_t i = 0; i < tsLogObj.fileNum; i++) {
H
hzcheng 已提交
301 302 303 304 305 306 307 308 309
      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 已提交
310
        sprintf(tsLogObj.logName, "%s%d", fn, i);
H
hzcheng 已提交
311 312 313 314 315
        return;
      }
    }
  }

H
Hui Li 已提交
316 317 318
  if (strlen(fn) < LOG_FILE_NAME_LEN) {
    strcpy(tsLogObj.logName, fn);
  }
H
hzcheng 已提交
319 320
}

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

S
Shengliang Guan 已提交
330 331 332
  char    name[LOG_FILE_NAME_LEN + 50] = "\0";
  int32_t logstat0_mtime, logstat1_mtime;
  int32_t size;
H
hzcheng 已提交
333

S
slguan 已提交
334 335
  tsLogObj.maxLines = maxLines;
  tsLogObj.fileNum = maxFileNum;
H
hzcheng 已提交
336 337
  taosGetLogFileName(fn);

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

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

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

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

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

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

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

383
  taosLSeekFile(tsLogObj.logHandle->pFile, 0, SEEK_END);
H
hzcheng 已提交
384 385

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

  return 0;
}

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

S
Shengliang Guan 已提交
419
  taosGetTimeOfDay(&timeSecs);
S
Shengliang Guan 已提交
420
  time_t curTime = timeSecs.tv_sec;
wafwerar's avatar
wafwerar 已提交
421
  ptm = taosLocalTime(&curTime, &Tm);
S
slguan 已提交
422

S
Shengliang Guan 已提交
423 424 425
  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 已提交
426

S
Shengliang Guan 已提交
427
static inline void taosPrintLogImp(ELogLevel level, int32_t dflag, const char *buffer, int32_t len) {
428
  if ((dflag & DEBUG_FILE) && tsLogObj.logHandle && tsLogObj.logHandle->pFile != NULL) {
429
    taosUpdateLogNums(level);
H
hzcheng 已提交
430
    if (tsAsyncLog) {
S
slguan 已提交
431
      taosPushLogBuffer(tsLogObj.logHandle, buffer, len);
H
hzcheng 已提交
432
    } else {
433
      taosWriteFile(tsLogObj.logHandle->pFile, buffer, len);
H
hzcheng 已提交
434 435
    }

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

444 445 446
  if (dflag & DEBUG_SCREEN) {
    write(1, buffer, (uint32_t)len);
  }
H
hzcheng 已提交
447 448
}

S
Shengliang Guan 已提交
449
void taosPrintLog(const char *flags, ELogLevel level, int32_t dflag, const char *format, ...) {
S
os env  
Shengliang Guan 已提交
450
  if (!osLogSpaceAvailable()) return;
S
Shengliang Guan 已提交
451
  if (!(dflag & DEBUG_FILE) && !(dflag & DEBUG_SCREEN)) return;
S
slguan 已提交
452

S
Shengliang Guan 已提交
453 454
  char    buffer[LOG_MAX_LINE_BUFFER_SIZE];
  int32_t len = taosBuildLogHead(buffer, flags);
H
hzcheng 已提交
455

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

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

S
Shengliang Guan 已提交
465 466 467 468 469 470
  taosPrintLogImp(level, dflag, buffer, writeLen);

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

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

S
Shengliang Guan 已提交
477 478
  char    buffer[LOG_MAX_LINE_DUMP_BUFFER_SIZE];
  int32_t len = taosBuildLogHead(buffer, flags);
H
hzcheng 已提交
479

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

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

S
Shengliang Guan 已提交
489 490
  taosPrintLogImp(level, dflag, buffer, len);
}
L
Liu Jicong 已提交
491

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

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

S
Shengliang Guan 已提交
511 512 513
  temp[pos++] = '\n';

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

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

S
slguan 已提交
523
static SLogBuff *taosLogBuffNew(int32_t bufSize) {
524
  SLogBuff *pLogBuf = NULL;
H
hzcheng 已提交
525

526 527
  pLogBuf = taosMemoryCalloc(1, sizeof(SLogBuff));
  if (pLogBuf == NULL) return NULL;
H
hzcheng 已提交
528

529 530
  LOG_BUF_BUFFER(pLogBuf) = taosMemoryMalloc(bufSize);
  if (LOG_BUF_BUFFER(pLogBuf) == NULL) goto _err;
H
hzcheng 已提交
531

532 533 534 535
  LOG_BUF_START(pLogBuf) = LOG_BUF_END(pLogBuf) = 0;
  LOG_BUF_SIZE(pLogBuf) = bufSize;
  pLogBuf->minBuffSize = bufSize / 10;
  pLogBuf->stop = 0;
H
hzcheng 已提交
536

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

540
  return pLogBuf;
H
hzcheng 已提交
541 542

_err:
543 544
  taosMemoryFreeClear(LOG_BUF_BUFFER(pLogBuf));
  taosMemoryFreeClear(pLogBuf);
H
hzcheng 已提交
545 546 547
  return NULL;
}

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

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

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

572 573 574
  taosThreadMutexLock(&LOG_BUF_MUTEX(pLogBuf));
  start = LOG_BUF_START(pLogBuf);
  end = LOG_BUF_END(pLogBuf);
H
hzcheng 已提交
575

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

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

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

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

595
  taosCopyLogBuffer(pLogBuf, LOG_BUF_START(pLogBuf), LOG_BUF_END(pLogBuf), msg, msgLen);
H
hzcheng 已提交
596

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

607
  taosThreadMutexUnlock(&LOG_BUF_MUTEX(pLogBuf));
H
hzcheng 已提交
608 609 610 611

  return 0;
}

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

615
  return rSize >= 0 ? rSize : LOG_BUF_SIZE(pLogBuf) + rSize;
D
fix bug  
dapan1121 已提交
616
}
H
hzcheng 已提交
617

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

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

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

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

D
fix bu  
dapan1121 已提交
642 643 644 645
      lastDuration = 0;
    }

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

651
      taosWriteFile(pLogBuf->pFile, LOG_BUF_BUFFER(pLogBuf), end);
H
hzcheng 已提交
652
    }
D
fix bug  
dapan1121 已提交
653 654

    dbgWN++;
L
Liu Jicong 已提交
655 656
    dbgWSize += pollSize;

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

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

673 674
    start = LOG_BUF_START(pLogBuf);
    end = LOG_BUF_END(pLogBuf);
D
fix bu  
dapan1121 已提交
675

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

S
Shengliang Guan 已提交
681
    tsWriteInterval = LOG_MIN_INTERVAL;
D
fix bu  
dapan1121 已提交
682 683

    remainChecked = 1;
L
Liu Jicong 已提交
684
  } while (1);
H
hzcheng 已提交
685 686
}

S
slguan 已提交
687
static void *taosAsyncOutputLog(void *param) {
688
  SLogBuff *pLogBuf = (SLogBuff *)param;
H
Haojun Liao 已提交
689
  setThreadName("log");
L
Liu Jicong 已提交
690

H
hzcheng 已提交
691
  while (1) {
S
Shengliang Guan 已提交
692
    taosMsleep(tsWriteInterval);
H
hzcheng 已提交
693 694

    // Polling the buffer
695
    taosWriteLog(pLogBuf);
H
hzcheng 已提交
696

697
    if (pLogBuf->stop) break;
H
hzcheng 已提交
698 699 700 701
  }

  return NULL;
}
S
Shengliang Guan 已提交
702 703 704 705 706

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

710 711 712
  // srcFp = fopen(srcFileName, "r");
  TdFilePtr pSrcFile = taosOpenFile(srcFileName, TD_FILE_READ);
  if (pSrcFile == NULL) {
S
Shengliang Guan 已提交
713 714 715 716
    ret = -1;
    goto cmp_end;
  }

717
  TdFilePtr pFile = taosOpenFile(destFileName, TD_FILE_CREATE | TD_FILE_WRITE | TD_FILE_TRUNC);
718
  if (pFile == NULL) {
S
Shengliang Guan 已提交
719 720 721 722
    ret = -2;
    goto cmp_end;
  }

S
ulog  
Shengliang Guan 已提交
723 724 725 726 727 728 729 730 731 732 733
  //  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 已提交
734 735

cmp_end:
736 737
  if (pSrcFile) {
    taosCloseFile(&pSrcFile);
S
Shengliang Guan 已提交
738
  }
S
ulog  
Shengliang Guan 已提交
739 740 741
  //  if (dstFp) {
  //    gzclose(dstFp);
  //  }
wafwerar's avatar
wafwerar 已提交
742
  taosMemoryFree(data);
S
Shengliang Guan 已提交
743 744 745 746

  return ret;
}

747 748 749 750 751 752 753 754
void taosSetDebugFlag(int32_t *pFlagPtr, const char *flagName, int32_t flagVal) {
  SConfigItem *pItem = cfgGetItem(tsCfg, flagName);
  if (pItem != NULL) {
    pItem->i32 = flagVal;
  }
  *pFlagPtr = flagVal;
}

S
Shengliang Guan 已提交
755
void taosSetAllDebugFlag(int32_t flag) {
S
Shengliang Guan 已提交
756
  if (flag <= 0) return;
S
Shengliang Guan 已提交
757

758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773
  taosSetDebugFlag(&uDebugFlag, "uDebugFlag", flag);
  taosSetDebugFlag(&rpcDebugFlag, "rpcDebugFlag", flag);
  taosSetDebugFlag(&jniDebugFlag, "jniDebugFlag", flag);
  taosSetDebugFlag(&qDebugFlag, "qDebugFlag", flag);
  taosSetDebugFlag(&cDebugFlag, "cDebugFlag", flag);
  taosSetDebugFlag(&dDebugFlag, "dDebugFlag", flag);
  taosSetDebugFlag(&vDebugFlag, "vDebugFlag", flag);
  taosSetDebugFlag(&mDebugFlag, "mDebugFlag", flag);
  taosSetDebugFlag(&wDebugFlag, "wDebugFlag", flag);
  taosSetDebugFlag(&sDebugFlag, "sDebugFlag", flag);
  taosSetDebugFlag(&tsdbDebugFlag, "tsdbDebugFlag", flag);
  taosSetDebugFlag(&tqDebugFlag, "tqDebugFlag", flag);
  taosSetDebugFlag(&fsDebugFlag, "fsDebugFlag", flag);
  taosSetDebugFlag(&udfDebugFlag, "udfDebugFlag", flag);
  taosSetDebugFlag(&smaDebugFlag, "smaDebugFlag", flag);
  taosSetDebugFlag(&idxDebugFlag, "idxDebugFlag", flag);
S
Shengliang Guan 已提交
774
  uInfo("all debug flag are set to %d", flag);
L
temp  
Liu Jicong 已提交
775
}