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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
use std::{
collections::hash_map::DefaultHasher,
hash::{Hash, Hasher},
str::FromStr,
};
use anchor_lang::prelude::*;
use chrono::{DateTime, NaiveDateTime, Utc};
use clockwork_cron::Schedule;
use clockwork_network_program::state::{Worker, WorkerAccount};
use clockwork_utils::thread::Trigger;
use crate::{errors::*, state::*};
#[derive(Accounts)]
pub struct ThreadKickoff<'info> {
#[account(mut)]
pub signatory: Signer<'info>,
#[account(
mut,
seeds = [
SEED_THREAD,
thread.authority.as_ref(),
thread.id.as_slice(),
],
bump = thread.bump,
constraint = !thread.paused @ ClockworkError::ThreadPaused,
constraint = thread.next_instruction.is_none() @ ClockworkError::ThreadBusy,
)]
pub thread: Box<Account<'info, Thread>>,
#[account(address = worker.pubkey())]
pub worker: Account<'info, Worker>,
}
pub fn handler(ctx: Context<ThreadKickoff>) -> Result<()> {
let thread = &mut ctx.accounts.thread;
let clock = Clock::get().unwrap();
match thread.trigger.clone() {
Trigger::Account {
address,
offset,
size,
} => {
match ctx.remaining_accounts.first() {
None => {}
Some(account_info) => {
require!(
address.eq(account_info.key),
ClockworkError::TriggerNotActive
);
let mut hasher = DefaultHasher::new();
let data = &account_info.try_borrow_data().unwrap();
let offset = offset as usize;
let range_end = offset.checked_add(size as usize).unwrap() as usize;
if data.len().gt(&range_end) {
data[offset..range_end].hash(&mut hasher);
} else {
data[offset..].hash(&mut hasher)
}
let data_hash = hasher.finish();
if let Some(exec_context) = thread.exec_context {
match exec_context.trigger_context {
TriggerContext::Account {
data_hash: prior_data_hash,
} => {
require!(
data_hash.ne(&prior_data_hash),
ClockworkError::TriggerNotActive
)
}
_ => return Err(ClockworkError::InvalidThreadState.into()),
}
}
thread.exec_context = Some(ExecContext {
exec_index: 0,
execs_since_reimbursement: 0,
execs_since_slot: 0,
last_exec_at: clock.slot,
trigger_context: TriggerContext::Account { data_hash },
})
}
}
}
Trigger::Cron {
schedule,
skippable,
} => {
let reference_timestamp = match thread.exec_context.clone() {
None => thread.created_at.unix_timestamp,
Some(exec_context) => match exec_context.trigger_context {
TriggerContext::Cron { started_at } => started_at,
_ => return Err(ClockworkError::InvalidThreadState.into()),
},
};
let threshold_timestamp = next_timestamp(reference_timestamp, schedule.clone())
.ok_or(ClockworkError::TriggerNotActive)?;
require!(
clock.unix_timestamp.ge(&threshold_timestamp),
ClockworkError::TriggerNotActive
);
let started_at = if skippable {
clock.unix_timestamp
} else {
threshold_timestamp
};
thread.exec_context = Some(ExecContext {
exec_index: 0,
execs_since_reimbursement: 0,
execs_since_slot: 0,
last_exec_at: clock.slot,
trigger_context: TriggerContext::Cron { started_at },
});
}
Trigger::Now => {
require!(
thread.exec_context.is_none(),
ClockworkError::InvalidThreadState
);
thread.exec_context = Some(ExecContext {
exec_index: 0,
execs_since_reimbursement: 0,
execs_since_slot: 0,
last_exec_at: clock.slot,
trigger_context: TriggerContext::Now,
});
}
Trigger::Slot { slot } => {
require!(clock.slot.ge(&slot), ClockworkError::TriggerNotActive);
thread.exec_context = Some(ExecContext {
exec_index: 0,
execs_since_reimbursement: 0,
execs_since_slot: 0,
last_exec_at: clock.slot,
trigger_context: TriggerContext::Slot { started_at: slot },
});
}
Trigger::Epoch { epoch } => {
require!(clock.epoch.ge(&epoch), ClockworkError::TriggerNotActive);
thread.exec_context = Some(ExecContext {
exec_index: 0,
execs_since_reimbursement: 0,
execs_since_slot: 0,
last_exec_at: clock.slot,
trigger_context: TriggerContext::Epoch { started_at: epoch },
})
}
}
if let Some(kickoff_instruction) = thread.instructions.first() {
thread.next_instruction = Some(kickoff_instruction.clone());
}
thread.realloc()?;
Ok(())
}
fn next_timestamp(after: i64, schedule: String) -> Option<i64> {
Schedule::from_str(&schedule)
.unwrap()
.next_after(&DateTime::<Utc>::from_utc(
NaiveDateTime::from_timestamp(after, 0),
Utc,
))
.take()
.map(|datetime| datetime.timestamp())
}