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 23 24 25 26 27 28 29
/*
 * 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

#ifndef TAOS_OS_FUNC_STRING_STRDUP
  #define taosStrdupImp(str) strdup(str)
  #define taosStrndupImp(str, size) strndup(str, size)
#endif

#ifndef TAOS_OS_FUNC_STRING_GETLINE
  #define taosGetlineImp(lineptr, n, stream) getline(lineptr, n , stream)
S
slguan 已提交
30 31
#else 
  int taosGetlineImp(char **lineptr, size_t *n, FILE *stream);
S
Shengliang Guan 已提交
32 33
#endif

S
Shengliang Guan 已提交
34
#ifndef TAOS_OS_FUNC_STRING_WCHAR
S
Shengliang Guan 已提交
35 36 37 38 39 40 41
  #define twcslen wcslen
#endif  

#define tstrncpy(dst, src, size)   \
  do {                             \
    strncpy((dst), (src), (size)); \
    (dst)[(size)-1] = 0;           \
42
  } while (0)
S
Shengliang Guan 已提交
43

S
Shengliang Guan 已提交
44 45 46
#ifndef TAOS_OS_FUNC_STRING_STR2INT64
  int64_t tsosStr2int64(char *str);
#endif  
S
Shengliang Guan 已提交
47 48 49

// USE_LIBICONV
int32_t taosUcs4ToMbs(void *ucs4, int32_t ucs4_max_len, char *mbs);
50
bool    taosMbsToUcs4(char *mbs, size_t mbs_len, char *ucs4, int32_t ucs4_max_len, int *len);
S
Shengliang Guan 已提交
51 52 53 54 55 56 57 58 59
int     tasoUcs4Compare(void *f1_ucs4, void *f2_ucs4, int bytes);
bool    taosValidateEncodec(const char *encodec);
char *  taosCharsetReplace(char *charsetstr);

#ifdef __cplusplus
}
#endif

#endif