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

#ifndef _TD_OS_SYSINFO_H_
#define _TD_OS_SYSINFO_H_

S
os  
Shengliang Guan 已提交
19 20
#include "os.h"

S
Shengliang Guan 已提交
21 22 23 24
#ifdef __cplusplus
extern "C" {
#endif

S
Shengliang Guan 已提交
25 26 27 28 29 30
typedef struct {
  int64_t total;
  int64_t used;
  int64_t avail;
} SDiskSize;

S
os  
Shengliang Guan 已提交
31
typedef struct {
S
Shengliang Guan 已提交
32 33 34 35
  int64_t   reserved;
  SDiskSize size;
} SDiskSpace;

D
dapan1121 已提交
36
bool    taosCheckSystemIsLittleEnd();
S
Shengliang Guan 已提交
37
void    taosGetSystemInfo();
K
kailixu 已提交
38
int64_t taosGetOsUptime();
S
Shengliang Guan 已提交
39
int32_t taosGetEmail(char *email, int32_t maxLen);
K
kailixu 已提交
40
int32_t taosGetOsReleaseName(char *releaseName, char* sName, char* ver, int32_t maxLen);
S
Shengliang Guan 已提交
41 42
int32_t taosGetCpuInfo(char *cpuModel, int32_t maxLen, float *numOfCores);
int32_t taosGetCpuCores(float *numOfCores);
43
void    taosGetCpuUsage(double *cpu_system, double *cpu_engine);
H
Haojun Liao 已提交
44
int32_t taosGetCpuInstructions(char* sse42, char* avx, char* avx2, char* fma);
S
Shengliang Guan 已提交
45 46 47
int32_t taosGetTotalMemory(int64_t *totalKB);
int32_t taosGetProcMemory(int64_t *usedKB);
int32_t taosGetSysMemory(int64_t *usedKB);
48
int32_t taosGetDiskSize(char *dataDir, SDiskSize *diskSize);
49 50
void    taosGetProcIODelta(int64_t *rchars, int64_t *wchars, int64_t *read_bytes, int64_t *write_bytes);
void    taosGetCardInfoDelta(int64_t *receive_bytes, int64_t *transmit_bytes);
51

S
Shengliang Guan 已提交
52
void    taosKillSystem();
H
Haojun Liao 已提交
53
int32_t taosGetSystemUUID(char *uid, int32_t uidlen);
54
char   *taosGetCmdlineByPID(int32_t pid);
S
Shengliang Guan 已提交
55 56
void    taosSetCoreDump(bool enable);

57
#if !defined(LINUX)
58

H
Hongze Cheng 已提交
59
#define _UTSNAME_LENGTH         65
60 61
#define _UTSNAME_MACHINE_LENGTH _UTSNAME_LENGTH

H
Hongze Cheng 已提交
62
#endif  // WINDOWS
63

sangshuduo's avatar
sangshuduo 已提交
64 65 66 67 68 69 70
#if defined(_ALPINE)

#define _UTSNAME_LENGTH         65
#define _UTSNAME_MACHINE_LENGTH _UTSNAME_LENGTH

#endif

S
Shengliang Guan 已提交
71
typedef struct {
H
Haojun Liao 已提交
72 73 74 75 76
  char sysname[_UTSNAME_MACHINE_LENGTH];
  char nodename[_UTSNAME_MACHINE_LENGTH];
  char release[_UTSNAME_MACHINE_LENGTH];
  char version[_UTSNAME_MACHINE_LENGTH];
  char machine[_UTSNAME_MACHINE_LENGTH];
S
Shengliang Guan 已提交
77 78 79
} SysNameInfo;

SysNameInfo taosGetSysNameInfo();
H
Hongze Cheng 已提交
80
bool        taosCheckCurrentInDll();
81
int         taosGetlocalhostname(char *hostname, size_t maxLen);
S
Shengliang Guan 已提交
82 83 84 85 86 87

#ifdef __cplusplus
}
#endif

#endif