OmniSciDB  c1a53651b2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
File.h
Go to the documentation of this file.
1 /*
2  * Copyright 2022 HEAVY.AI, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
23 #pragma once
24 
25 #define DATA_FILE_EXT ".data"
26 
27 #include <cstdint>
28 #include <cstdio>
29 #include <iostream>
30 #include <string>
31 
32 #include "Shared/types.h"
33 
34 namespace File_Namespace {
35 
36 constexpr auto kLegacyDataFileExtension{".mapd"};
37 
38 std::string get_data_file_path(const std::string& base_path,
39  int file_id,
40  size_t page_size);
41 
42 std::string get_legacy_data_file_path(const std::string& new_data_file_path);
43 
44 std::pair<FILE*, std::string> create(const std::string& basePath,
45  const int fileId,
46  const size_t pageSize,
47  const size_t npages);
48 
49 FILE* create(const std::string& fullPath, const size_t requestedFileSize);
50 
57 FILE* open(int fileId);
58 
59 FILE* open(const std::string& path);
60 
66 void close(FILE* f);
67 
75 bool removeFile(const std::string basePath, const std::string filename);
76 
87 size_t read(FILE* f,
88  const size_t offset,
89  const size_t size,
90  int8_t* buf,
91  const std::string& file_path);
92 
103 size_t write(FILE* f, const size_t offset, const size_t size, const int8_t* buf);
104 
114 size_t append(FILE* f, const size_t size, const int8_t* buf);
115 
126 size_t readPage(FILE* f,
127  const size_t pageSize,
128  const size_t pageNum,
129  int8_t* buf,
130  const std::string& file_path);
131 
142 size_t writePage(FILE* f, const size_t pageSize, const size_t pageNum, int8_t* buf);
143 
153 size_t appendPage(FILE* f, const size_t pageSize, int8_t* buf);
154 
160 size_t fileSize(FILE* f);
161 
166 void renameForDelete(const std::string directoryName);
167 
168 } // namespace File_Namespace
size_t appendPage(FILE *f, const size_t pageSize, int8_t *buf)
Appends a page from buf to the file.
Definition: File.cpp:222
size_t append(FILE *f, const size_t size, const int8_t *buf)
Appends the specified number of bytes to the end of the file f from buf.
Definition: File.cpp:178
std::string get_legacy_data_file_path(const std::string &new_data_file_path)
Definition: File.cpp:51
size_t writePage(FILE *f, const size_t pageSize, const size_t pageNum, int8_t *buf)
Writes a page from buf to the file.
Definition: File.cpp:203
std::pair< FILE *, std::string > create(const std::string &basePath, const int fileId, const size_t pageSize, const size_t numPages)
Definition: File.cpp:57
constexpr double f
Definition: Utm.h:31
size_t write(FILE *f, const size_t offset, const size_t size, const int8_t *buf)
Writes the specified number of bytes to the offset position in file f from buf.
Definition: File.cpp:160
size_t read(FILE *f, const size_t offset, const size_t size, int8_t *buf, const std::string &file_path)
Reads the specified number of bytes from the offset position in file f into buf.
Definition: File.cpp:142
size_t fileSize(FILE *f)
Returns the size of the specified file.
Definition: File.cpp:230
FILE * open(int fileId)
Opens/creates the file with the given id; returns NULL on error.
Definition: File.cpp:107
void close(FILE *f)
Closes the file pointed to by the FILE pointer.
Definition: File.cpp:128
bool removeFile(const std::string basePath, const std::string filename)
Deletes the file pointed to by the FILE pointer.
Definition: File.cpp:134
std::string get_data_file_path(const std::string &base_path, int file_id, size_t page_size)
Definition: File.cpp:44
void renameForDelete(const std::string directoryName)
Renames a directory to DELETE_ME_&lt;EPOCH&gt;_&lt;oldname&gt;.
Definition: File.cpp:242
constexpr auto kLegacyDataFileExtension
Definition: File.h:36
size_t readPage(FILE *f, const size_t pageSize, const size_t pageNum, int8_t *buf, const std::string &file_path)
Reads the specified page from the file f into buf.
Definition: File.cpp:185