summaryrefslogtreecommitdiff
path: root/Userland/Applications/Browser/History.cpp
blob: c738ad53ec9a595d508bd68ad8d3ec5e3289c773 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/*
 * Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#include "History.h"

namespace Browser {

void History::dump() const
{
    dbgln("Dump {} items(s)", m_items.size());
    int i = 0;
    for (auto& item : m_items) {
        dbgln("[{}] {} {}", i, item, m_current == i ? '*' : ' ');
        ++i;
    }
}

void History::push(const URL& url)
{
    m_items.shrink(m_current + 1);
    m_items.append(url);
    m_current++;
}

URL History::current() const
{
    if (m_current == -1)
        return {};
    return m_items[m_current];
}

void History::go_back()
{
    VERIFY(can_go_back());
    m_current--;
}

void History::go_forward()
{
    VERIFY(can_go_forward());
    m_current++;
}

void History::clear()
{
    m_items = {};
    m_current = -1;
}

}