diff options
author | Juan Manuel Tomás <jtomas1815@gmail.com> | 2020-07-10 21:54:04 -0300 |
---|---|---|
committer | Juan Manuel Tomás <jtomas1815@gmail.com> | 2020-07-10 21:54:04 -0300 |
commit | c4c5be557abb30166dbc49770a0151671ab1bf07 (patch) | |
tree | a642972e425533e91e3d46eb6fb71d2bc276f076 /buffer.cpp | |
parent | 5c8326ae953eee1cd36711a7769cff624f312864 (diff) | |
download | jet-c4c5be557abb30166dbc49770a0151671ab1bf07.tar.gz jet-c4c5be557abb30166dbc49770a0151671ab1bf07.zip |
Implement file writing using the write syscall
Diffstat (limited to 'buffer.cpp')
-rw-r--r-- | buffer.cpp | 13 |
1 files changed, 8 insertions, 5 deletions
@@ -20,11 +20,14 @@ struct Buffer { close(file); } - void write_file(const char *file) { - FILE *f = fopen(file, "w+"); - for (Point p(storage, 0); !p.at_end(); p++) { - fputc(p.element(), f); + void write_file(const char *pathname) { + int file = open(pathname, O_WRONLY | O_CREAT, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH); + Page *iter = storage; + while (iter) { + write(file, iter->elements, iter->gap_start); + write(file, iter->elements + iter->gap_end, PAGE_SIZE - iter->gap_end); + iter = iter->next; } - fclose(f); + close(file); } }; |