osEnv.c 3.3 KB
Newer Older
S
Shengliang Guan 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/*
 * 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
S
Shengliang Guan 已提交
17 18
#include "osEnv.h"

wafwerar's avatar
wafwerar 已提交
19 20 21 22 23 24 25 26 27
char            configDir[PATH_MAX] = {0};
char            tsDataDir[PATH_MAX] = {0};
char            tsLogDir[PATH_MAX] = {0};
char            tsTempDir[PATH_MAX] = {0};
SDiskSpace      tsDataSpace = {0};
SDiskSpace      tsLogSpace = {0};
SDiskSpace      tsTempSpace = {0};
char            tsOsName[16] = {0};
char            tsTimezoneStr[TD_TIMEZONE_LEN] = {0};
wafwerar's avatar
wafwerar 已提交
28
enum TdTimezone tsTimezone = TdZeroZone;
wafwerar's avatar
wafwerar 已提交
29 30 31 32 33 34 35 36 37
char            tsLocale[TD_LOCALE_LEN] = {0};
char            tsCharset[TD_CHARSET_LEN] = {0};
int8_t          tsDaylight = 0;
bool            tsEnableCoreFile = 0;
int64_t         tsPageSizeKB = 0;
int64_t         tsOpenMax = 0;
int64_t         tsStreamMax = 0;
float           tsNumOfCores = 0;
int64_t         tsTotalMemoryKB = 0;
S
slzhou 已提交
38
char*           tsProcPath = NULL;
wafwerar's avatar
wafwerar 已提交
39 40

void osDefaultInit() {
wafwerar's avatar
wafwerar 已提交
41
  taosSeedRand(taosSafeRand());
S
os env  
Shengliang Guan 已提交
42
  taosGetSystemLocale(tsLocale, tsCharset);
wafwerar's avatar
wafwerar 已提交
43 44
  taosGetSystemTimezone(tsTimezoneStr, &tsTimezone);
  taosSetSystemTimezone(tsTimezoneStr, tsTimezoneStr, &tsDaylight, &tsTimezone);
S
Shengliang Guan 已提交
45
  taosGetSystemInfo();
S
config  
Shengliang Guan 已提交
46

S
Shengliang Guan 已提交
47 48 49 50 51
  // deadlock in query
  if (tsNumOfCores < 2) {
    tsNumOfCores = 2;
  }

wafwerar's avatar
wafwerar 已提交
52
#ifdef WINDOWS
S
Shengliang Guan 已提交
53 54 55 56 57 58 59
  taosWinSocketInit();

  const char *tmpDir = getenv("tmp");
  if (tmpDir == NULL) {
    tmpDir = getenv("temp");
  }
  if (tmpDir != NULL) {
S
os env  
Shengliang Guan 已提交
60
    strcpy(tsTempDir, tmpDir);
S
Shengliang Guan 已提交
61
  }
S
os env  
Shengliang Guan 已提交
62

S
Shengliang Guan 已提交
63 64 65
  if (configDir[0] == 0) {
    strcpy(configDir, "C:\\TDengine\\cfg");
  }
S
os env  
Shengliang Guan 已提交
66 67 68 69
  strcpy(tsDataDir, "C:\\TDengine\\data");
  strcpy(tsLogDir, "C:\\TDengine\\log");
  strcpy(tsTempDir, "C:\\Windows\\Temp");
  strcpy(tsOsName, "Windows");
S
Shengliang Guan 已提交
70 71

#elif defined(_TD_DARWIN_64)
S
Shengliang Guan 已提交
72
  if (configDir[0] == 0) {
wafwerar's avatar
wafwerar 已提交
73
    strcpy(configDir, "/usr/local/etc/taos");
S
Shengliang Guan 已提交
74
  }
S
os env  
Shengliang Guan 已提交
75 76
  strcpy(tsDataDir, "/usr/local/var/lib/taos");
  strcpy(tsLogDir, "/usr/local/var/log/taos");
wafwerar's avatar
wafwerar 已提交
77
  strcpy(tsTempDir, "/tmp/taosd");
S
os env  
Shengliang Guan 已提交
78
  strcpy(tsOsName, "Darwin");
S
Shengliang Guan 已提交
79

S
config  
Shengliang Guan 已提交
80
#else
S
Shengliang Guan 已提交
81 82 83
  if (configDir[0] == 0) {
    strcpy(configDir, "/etc/taos");
  }
S
os env  
Shengliang Guan 已提交
84 85 86 87
  strcpy(tsDataDir, "/var/lib/taos");
  strcpy(tsLogDir, "/var/log/taos");
  strcpy(tsTempDir, "/tmp");
  strcpy(tsOsName, "Linux");
S
Shengliang Guan 已提交
88

S
config  
Shengliang Guan 已提交
89
#endif
S
os env  
Shengliang Guan 已提交
90 91 92 93 94 95 96 97 98 99 100 101 102 103
}

void osUpdate() {
  if (tsLogDir[0] != 0) {
    taosGetDiskSize(tsLogDir, &tsLogSpace.size);
  }
  if (tsDataDir[0] != 0) {
    taosGetDiskSize(tsDataDir, &tsDataSpace.size);
  }
  if (tsTempDir[0] != 0) {
    taosGetDiskSize(tsTempDir, &tsTempSpace.size);
  }
}

S
shm  
Shengliang Guan 已提交
104 105
void osCleanup() {}

S
os env  
Shengliang Guan 已提交
106 107
bool osLogSpaceAvailable() { return tsLogSpace.reserved <= tsLogSpace.size.avail; }

wafwerar's avatar
wafwerar 已提交
108 109 110 111 112 113
void osSetTimezone(const char *timezone) { taosSetSystemTimezone(timezone, tsTimezoneStr, &tsDaylight, &tsTimezone); }

void osSetSystemLocale(const char *inLocale, const char *inCharSet) {
  memcpy(tsLocale, inLocale, strlen(inLocale) + 1);
  memcpy(tsCharset, inCharSet, strlen(inCharSet) + 1);
}