/* * Copyright (c) 2019 TAOS Data, Inc. * * 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 . */ #if !defined(_TD_TSDB_FILE_H_) #define _TD_TSDB_FILE_H_ #include // #include "tstring.h" #ifdef __cplusplus extern "C" { #endif typedef int32_t file_id_t; typedef enum { TSDB_FILE_TYPE_HEAD, // .head file type TSDB_FILE_TYPE_DATA, // .data file type TSDB_FILE_TYPE_LAST, // .last file type TSDB_FILE_TYPE_META // .meta file type } TSDB_FILE_TYPE; const char *tsdbFileSuffix[] = { ".head", // TSDB_FILE_TYPE_HEAD ".data", // TSDB_FILE_TYPE_DATA ".last", // TSDB_FILE_TYPE_LAST ".meta" // TSDB_FILE_TYPE_META }; typedef struct { int64_t fileSize; } SFileInfo; typedef struct { char * fname; SFileInfo fInfo; } SFILE; // typedef struct { // int64_t offset; // int64_t skey; // int64_t ekey; // int16_t numOfBlocks; // } SDataBlock; char *tsdbGetFileName(char *dirName, char *fname, TSDB_FILE_TYPE type); #ifdef __cplusplus } #endif #endif // _TD_TSDB_FILE_H_