osSysinfo.h 2.2 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();
S
Shengliang Guan 已提交
38 39
int32_t taosGetEmail(char *email, int32_t maxLen);
int32_t taosGetOsReleaseName(char *releaseName, int32_t maxLen);
S
Shengliang Guan 已提交
40 41
int32_t taosGetCpuInfo(char *cpuModel, int32_t maxLen, float *numOfCores);
int32_t taosGetCpuCores(float *numOfCores);
42
void    taosGetCpuUsage(double *cpu_system, double *cpu_engine);
S
Shengliang Guan 已提交
43 44 45
int32_t taosGetTotalMemory(int64_t *totalKB);
int32_t taosGetProcMemory(int64_t *usedKB);
int32_t taosGetSysMemory(int64_t *usedKB);
46
int32_t taosGetDiskSize(char *dataDir, SDiskSize *diskSize);
47 48
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);
49

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

55
#if !defined(LINUX)
56

H
Hongze Cheng 已提交
57
#define _UTSNAME_LENGTH         65
58 59
#define _UTSNAME_MACHINE_LENGTH _UTSNAME_LENGTH

H
Hongze Cheng 已提交
60
#endif  // WINDOWS
61

S
Shengliang Guan 已提交
62
typedef struct {
H
Haojun Liao 已提交
63 64 65 66 67
  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 已提交
68 69 70
} SysNameInfo;

SysNameInfo taosGetSysNameInfo();
H
Hongze Cheng 已提交
71
bool        taosCheckCurrentInDll();
S
Shengliang Guan 已提交
72 73 74 75 76 77

#ifdef __cplusplus
}
#endif

#endif