summaryrefslogtreecommitdiff
path: root/buffer.cpp
blob: ba3f87ce93446691beba7db5aad163d4753f3655 (plain)
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
struct Buffer {
	const char *name;
	Page *storage;

	Buffer(const char *name) : name(name), storage(new Page()) {}

	void read_file(const char *pathname) {
		int file = open(pathname, O_RDONLY);
		Page *iter = storage;
		int bytes_read = read(file, iter->elements, PAGE_SIZE);
		iter->gap_start = bytes_read;
		iter->element_count = bytes_read;
		while (bytes_read == PAGE_SIZE) {
			iter->next = new Page();
			iter = iter->next;
			bytes_read = read(file, iter->elements, PAGE_SIZE);
			iter->gap_start = bytes_read;
			iter->element_count = bytes_read;
		}
		close(file);
	}

	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;
		}
		close(file);
	}
};