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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
/*
* Copyright 2014 Canonical Ltd.
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 3, as published
* by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranties of
* MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program. If not, see <http://www.gnu.org/licenses/>.
*
* Authors:
* Charles Kerr <charles.kerr@canonical.com>
*/
#include <datetime/planner-snooze.h>
#include <libedataserver/libedataserver.h> // e_uid_new()
namespace ayatana {
namespace indicator {
namespace datetime {
/***
****
***/
class SnoozePlanner::Impl
{
public:
Impl(SnoozePlanner* owner,
const std::shared_ptr<Settings>& settings,
const std::shared_ptr<Clock>& clock):
m_owner(owner),
m_settings(settings),
m_clock(clock)
{
}
~Impl()
{
}
core::Property<std::vector<Appointment>>& appointments()
{
return m_appointments;
}
void add(const Appointment& appt_in, const Alarm& alarm)
{
// make a copy of the appointment with only this alarm
Appointment appt = appt_in;
appt.alarms.clear();
appt.alarms.push_back(alarm);
// reschedule the alarm to go off N minutes from now
const auto offset = std::chrono::minutes(m_settings->snooze_duration.get());
appt.begin += offset;
appt.end += offset;
appt.alarms[0].time += offset;
// give it a new ID
gchar* uid = e_uid_new();
appt.uid = uid;
g_free(uid);
// add it to our appointment list
auto tmp = appointments().get();
tmp.push_back(appt);
m_owner->sort(tmp);
m_appointments.set(tmp);
}
private:
const SnoozePlanner* const m_owner;
const std::shared_ptr<Settings> m_settings;
const std::shared_ptr<Clock> m_clock;
core::Property<std::vector<Appointment>> m_appointments;
};
/***
****
***/
SnoozePlanner::SnoozePlanner(const std::shared_ptr<Settings>& settings,
const std::shared_ptr<Clock>& clock):
impl(new Impl{this, settings, clock})
{
}
SnoozePlanner::~SnoozePlanner()
{
}
void
SnoozePlanner::add(const Appointment& appointment, const Alarm& alarm)
{
impl->add(appointment, alarm);
}
core::Property<std::vector<Appointment>>&
SnoozePlanner::appointments()
{
return impl->appointments();
}
/***
****
***/
} // namespace datetime
} // namespace indicator
} // namespace ayatana
|