summaryrefslogtreecommitdiff
path: root/src/history.cpp
blob: a6d316bf10f6e28c3fb674711fa8b06bd061ca70 (plain) (blame)
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
81
#include "history.h"

#include <fstream>

namespace newsboat {

History::History()
	: idx(0)
{
}

History::~History() {}

void History::add_line(const std::string& line)
{
	/*
	 * When a line is added, we need to do so and
	 * reset the index so that the next prev/next
	 * operations start from the beginning again.
	 */
	if (line.length() > 0) {
		lines.insert(lines.begin(), line);
	}
	idx = 0;
}

std::string History::prev()
{
	if (idx < lines.size()) {
		return lines[idx++];
	}
	if (lines.size() == 0) {
		return "";
	}
	return lines[idx - 1];
}

std::string History::next()
{
	if (idx > 0) {
		return lines[--idx];
	}
	return "";
}

void History::load_from_file(const std::string& file)
{
	std::fstream f;
	f.open(file.c_str(), std::fstream::in);
	if (f.is_open()) {
		std::string line;
		do {
			std::getline(f, line);
			if (!f.eof() && line.length() > 0) {
				add_line(line);
			}
		} while (!f.eof());
	}
}

void History::save_to_file(const std::string& file, unsigned int limit)
{
	if (limit == 0) {
		return;
	}

	std::fstream f;
	f.open(file.c_str(), std::fstream::out | std::fstream::trunc);
	if (f.is_open()) {
		if (limit > lines.size())
			limit = lines.size();
		if (limit > 0) {
			for (unsigned int i = limit - 1; i > 0; i--) {
				f << lines[i] << std::endl;
			}
			f << lines[0] << std::endl;
		}
	}
}

} // namespace newsboat