tlocale.c 1.5 KB
Newer Older
S
slguan 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/*
 * 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/>.
 */

#define _DEFAULT_SOURCE
#include "os.h"
S
Shengliang Guan 已提交
18
#include "ulog.h"
S
slguan 已提交
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
#include "tglobal.h"
#include "tconfig.h"
#include "tutil.h"

/**
 * In some Linux systems, setLocale(LC_CTYPE, "") may return NULL, in which case the launch of
 * both the TDengine Server and the Client may be interrupted.
 *
 * In case that the setLocale failed to be executed, the right charset needs to be set.
 */
void tsSetLocale() {
  char *locale = setlocale(LC_CTYPE, tsLocale);

  // default locale or user specified locale is not valid, abort launch
  if (locale == NULL) {
34
    uError("Invalid locale:%s, please set the valid locale in config file", tsLocale);
S
slguan 已提交
35 36 37
  }

  if (strlen(tsCharset) == 0) {
38
    uError("failed to get charset, please set the valid charset in config file");
S
slguan 已提交
39 40 41 42
    exit(-1);
  }

  if (!taosValidateEncodec(tsCharset)) {
43
    uError("Invalid charset:%s, please set the valid charset in config file", tsCharset);
S
slguan 已提交
44 45 46
    exit(-1);
  }
}