osFile.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 19 20 21 22 23 24 25 26 27 28
/*
 * 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_FILE_H
#define TDENGINE_OS_FILE_H

#ifdef __cplusplus
extern "C" {
#endif

ssize_t taosTReadImp(int fd, void *buf, size_t count);
ssize_t taosTWriteImp(int fd, void *buf, size_t count);

ssize_t taosTSendFileImp(int dfd, int sfd, off_t *offset, size_t size);
int     taosFSendFileImp(FILE* out_file, FILE* in_file, int64_t* offset, int32_t count);

S
slguan 已提交
29
#ifndef TAOS_OS_FUNC_FILE_SENDIFLE
S
slguan 已提交
30 31 32
  #define taosTSendFile(dfd, sfd, offset, size) taosTSendFileImp(dfd, sfd, offset, size)
  #define taosFSendFile(outfile, infile, offset, count) taosTSendFileImp(fileno(outfile), fileno(infile), offset, size)
#endif
S
Shengliang Guan 已提交
33

S
Shengliang Guan 已提交
34 35 36 37 38
#define taosTRead(fd, buf, count) taosTReadImp(fd, buf, count)
#define taosTWrite(fd, buf, count) taosTWriteImp(fd, buf, count)
#define taosLSeek(fd, offset, whence) lseek(fd, offset, whence)

#ifdef TAOS_RANDOM_FILE_FAIL
S
Shengliang Guan 已提交
39 40
  void taosSetRandomFileFailFactor(int factor);
  void taosSetRandomFileFailOutput(const char *path);
S
Shengliang Guan 已提交
41 42 43 44 45 46 47 48 49 50 51
  #ifdef TAOS_RANDOM_FILE_FAIL_TEST
    ssize_t taosReadFileRandomFail(int fd, void *buf, size_t count, const char *file, uint32_t line);
    ssize_t taosWriteFileRandomFail(int fd, void *buf, size_t count, const char *file, uint32_t line);
    off_t taosLSeekRandomFail(int fd, off_t offset, int whence, const char *file, uint32_t line);
    #undef taosTRead
    #undef taosTWrite
    #undef taosLSeek
    #define taosTRead(fd, buf, count) taosReadFileRandomFail(fd, buf, count, __FILE__, __LINE__)
    #define taosTWrite(fd, buf, count) taosWriteFileRandomFail(fd, buf, count, __FILE__, __LINE__)
    #define taosLSeek(fd, offset, whence) taosLSeekRandomFail(fd, offset, whence, __FILE__, __LINE__)
  #endif  
S
Shengliang Guan 已提交
52 53
#endif 

S
Shengliang Guan 已提交
54 55
int32_t taosFileRename(char *fullPath, char *suffix, char delimiter, char **dstPath);

S
Shengliang Guan 已提交
56 57 58
// TAOS_OS_FUNC_FILE_GETTMPFILEPATH
void taosGetTmpfilePath(const char *fileNamePrefix, char *dstPath);

59 60 61 62
#ifndef TAOS_OS_FUNC_FILE_FTRUNCATE
  #define taosFtruncate ftruncate
#endif

S
Shengliang Guan 已提交
63 64 65 66 67
#ifdef __cplusplus
}
#endif

#endif