osString.h 1.7 KB
Newer Older
S
Shengliang Guan 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
/*
 * 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 TDENGINE_OS_STRING_H
#define TDENGINE_OS_STRING_H

#ifdef __cplusplus
extern "C" {
#endif

S
TD-4088  
Shengliang Guan 已提交
23 24 25 26 27 28 29 30
#if defined(_TD_WINDOWS_64) || defined(_TD_WINDOWS_32)
  #define tstrdup(str) _strdup(str)
  #define tstrndup(str, size) _strndup(str, size)  
  int32_t tgetline(char **lineptr, size_t *n, FILE *stream);
  int32_t twcslen(const wchar_t *wcs);
#else
  #define tstrdup(str) strdup(str)
  #define tstrndup(str, size) strndup(str, size)
S
TD-4088  
Shengliang Guan 已提交
31
  #define tgetline(lineptr, n, stream) getline(lineptr, n, stream)
S
Shengliang Guan 已提交
32
  #define twcslen wcslen
S
TD-4088  
Shengliang Guan 已提交
33
#endif
S
Shengliang Guan 已提交
34

S
TD-4088  
Shengliang Guan 已提交
35 36 37 38
#define tstrncpy(dst, src, size) \
  do {                              \
    strncpy((dst), (src), (size));  \
    (dst)[(size)-1] = 0;            \
39
  } while (0)
S
Shengliang Guan 已提交
40

S
TD-4088  
Shengliang Guan 已提交
41
int64_t taosStr2int64(char *str);
S
Shengliang Guan 已提交
42 43 44

// USE_LIBICONV
int32_t taosUcs4ToMbs(void *ucs4, int32_t ucs4_max_len, char *mbs);
S
TD-4088  
Shengliang Guan 已提交
45 46
bool    taosMbsToUcs4(char *mbs, size_t mbs_len, char *ucs4, int32_t ucs4_max_len, int32_t *len);
int32_t tasoUcs4Compare(void *f1_ucs4, void *f2_ucs4, int32_t bytes);
S
Shengliang Guan 已提交
47 48 49 50 51 52 53 54
bool    taosValidateEncodec(const char *encodec);
char *  taosCharsetReplace(char *charsetstr);

#ifdef __cplusplus
}
#endif

#endif