-
Notifications
You must be signed in to change notification settings - Fork 73
/
Copy pathfile.hpp
80 lines (66 loc) · 2.09 KB
/
file.hpp
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/*
* Copyright (c) 2019 by flomesh.io
*
* Unless prior written consent has been obtained from the copyright
* owner, the following shall not be allowed.
*
* 1. The distribution of any source codes, header files, make files,
* or libraries of the software.
*
* 2. Disclosure of any source codes pertaining to the software to any
* additional parties.
*
* 3. Alteration or removal of any notices in or on the software or
* within the documentation included within the software.
*
* ALL SOURCE CODE AS WELL AS ALL DOCUMENTATION INCLUDED WITH THIS
* SOFTWARE IS PROVIDED IN AN “AS IS” CONDITION, WITHOUT WARRANTY OF ANY
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#ifndef FILE_HPP
#define FILE_HPP
#include "os-platform.hpp"
#include "data.hpp"
#include "fstream.hpp"
#include "signal.hpp"
#include <memory>
namespace pipy {
//
// File
//
class File :
public pjs::RefCount<File>,
public pjs::Pooled<File>
{
public:
static auto make(const std::string &path) -> File* {
return new File(path);
}
void open_read(const std::function<void(FileStream*)> &cb);
void open_read(size_t seek, const std::function<void(FileStream*)> &cb);
void open_read(size_t seek, size_t size, const std::function<void(FileStream*)> &cb);
void open_write(bool append);
void write(const Data &data);
void close();
void unlink();
private:
File(const std::string &path)
: m_path(path) {}
~File() {}
std::string m_path;
pjs::Ref<FileStream> m_stream;
std::unique_ptr<Signal> m_open_signal;
os::FileHandle m_f;
Data m_buffer;
bool m_writing = false;
bool m_closed = false;
bool mkdir_p(const std::string &path);
friend class pjs::RefCount<File>;
};
} // namespace pipy
#endif // FILE_HPP