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

S
Shengliang Guan 已提交
16 17
#ifndef _TD_OS_FILE_H_
#define _TD_OS_FILE_H_
S
Shengliang Guan 已提交
18 19 20 21 22

#ifdef __cplusplus
extern "C" {
#endif

23 24
#include "osSocket.h"

25 26 27 28 29
#ifndef ALLOW_FORBID_FUNC
    #define open OPEN_FUNC_TAOS_FORBID
    #define fopen FOPEN_FUNC_TAOS_FORBID
    // #define close CLOSE_FUNC_TAOS_FORBID
    // #define fclose FCLOSE_FUNC_TAOS_FORBID
S
TD-4088  
Shengliang Guan 已提交
30 31
#endif

S
Shengliang Guan 已提交
32 33 34 35
#ifndef PATH_MAX
#define PATH_MAX 256
#endif

36 37 38 39 40 41 42 43 44 45
typedef struct TdFile *TdFilePtr;
 
#define TD_FILE_CTEATE    0x0001
#define TD_FILE_WRITE     0x0002
#define TD_FILE_READ      0x0004
#define TD_FILE_TRUNC     0x0008
#define TD_FILE_APPEND    0x0010
#define TD_FILE_TEXT      0x0020
#define TD_FILE_AUTO_DEL  0x0040
#define TD_FILE_EXCL      0x0080
46
#define TD_FILE_STREAM    0x0100   // Only support taosFprintfFile, taosGetLineFile, taosGetLineFile, taosEOFFile
47 48 49 50 51 52
 
int32_t taosLockFile(TdFilePtr pFile);
int32_t taosUnLockFile(TdFilePtr pFile);
 
int32_t taosUmaskFile(int32_t maskVal);
 
S
Shengliang Guan 已提交
53
int32_t taosStatFile(const char *path, int64_t *size, int32_t *mtime);
54 55 56 57 58 59 60 61 62 63 64 65
int32_t taosFStatFile(TdFilePtr pFile, int64_t *size, int32_t *mtime);
 
TdFilePtr taosOpenFile(const char *path,int32_t tdFileOptions);
 
int64_t taosLSeekFile(TdFilePtr pFile, int64_t offset, int32_t whence);
int32_t taosFtruncateFile(TdFilePtr pFile, int64_t length);
int32_t taosFsyncFile(TdFilePtr pFile);
 
int64_t taosReadFile(TdFilePtr pFile, void *buf, int64_t count);
int64_t taosPReadFile(TdFilePtr pFile, void *buf, int64_t count, int64_t offset);
int64_t taosWriteFile(TdFilePtr pFile, const void *buf, int64_t count);
void taosFprintfFile(TdFilePtr pFile, const char *format, ...);
66
int64_t taosGetLineFile(TdFilePtr pFile, char ** __restrict__ ptrBuf);
67 68 69 70
int32_t taosEOFFile(TdFilePtr pFile);
 
int64_t taosCloseFile(TdFilePtr *ppFile);
 
S
Shengliang Guan 已提交
71 72
int32_t taosRenameFile(const char *oldName, const char *newName);
int64_t taosCopyFile(const char *from, const char *to);
73
 
S
Shengliang Guan 已提交
74
void taosGetTmpfilePath(const char *inputTmpDir, const char *fileNamePrefix, char *dstPath);
75 76 77 78 79 80
 
int64_t taosSendFile(SocketFd fdDst, TdFilePtr pFileSrc, int64_t *offset, int64_t size);
int64_t taosFSendFile(TdFilePtr pFileOut, TdFilePtr pFileIn, int64_t *offset, int64_t size);

void *taosMmapReadOnlyFile(TdFilePtr pFile, int64_t length);
bool taosValidFile(TdFilePtr pFile);
S
TD-4088  
Shengliang Guan 已提交
81

82
int taosGetErrorFile(TdFilePtr pFile);
S
TD-1912  
Shengliang Guan 已提交
83

S
Shengliang Guan 已提交
84 85 86 87
#ifdef __cplusplus
}
#endif

S
Shengliang Guan 已提交
88
#endif /*_TD_OS_FILE_H_*/